@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: "Manrope", sans-serif;
    --color-or: #F0510E;
    --color-black: #1A1311;
    --header-height: 160px;
    --inner-outer-width: calc(50vw - min(1590px, 100vw) * 0.44);
}
@media (max-width: 1280px) {
    :root {
        --header-height: 100px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 80px;
        --inner-outer-width: calc(50vw - min(1590px, 100vw) * 0.46);
    }
}

.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;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    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;
}
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%, 1590px);
    margin: 0 auto;
    padding: 0 min(6%, 95px);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

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

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

@media (max-width: 1280px) {
    .pc1280 {
        display: none;
    }
}

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

.m0a {
    margin: 0 auto;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/  テキストアニメーション
/* ------------------------------------- */
.text-slideup .slide-line {
    overflow: hidden; /* 行外は隠す */
}

.text-slideup .slide-line span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.text-animate span {
    display: inline-block;
}

#debugPanel {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: lime;
    font-family: monospace;
    font-size: 12px;
    padding: 5px;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 9999;
    white-space: pre;
}

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

#mask {
    visibility: hidden;
    transition: all 0.6s;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: pointer;
}
#mask.active {
    visibility: visible;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    font-weight: 800;
    transition: height 0.2s;
}

.header__logo__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.25;
    font-size: 1.6rem;
}
@media (max-width: 1280px) {
    .header__logo__wrapper {
        gap: 10px;
        font-size: 1.4rem;
    }
}

.header__logo {
    width: 320px;
}
@media (max-width: 1280px) {
    .header__logo {
        width: 250px;
    }
}
@media (max-width: 768px) {
    .header__logo {
        width: 200px;
    }
}

.header__logo__txt {
    font-weight: 700;
}
@media (max-width: 768px) {
    .header__logo__txt {
        display: none;
    }
}

.header__logo__bg {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .header__logo__bg {
        font-size: 1.8rem;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media (max-width: 1400px) {
    .header__menu {
        gap: 30px;
    }
}
@media (max-width: 1280px) {
    .header__menu {
        display: none;
    }
}

.header__contact {
    border: 4px solid var(--color-black);
    border-radius: 10px;
    padding: 15px 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}
.header__contact::before {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 22/16;
    background: var(--color-black);
    -webkit-mask: url(../img/common/mail.svg) center/contain no-repeat;
            mask: url(../img/common/mail.svg) center/contain no-repeat;
    transition: inherit;
}
.header__contact:hover {
    opacity: unset;
    background: var(--color-black);
    color: #fff;
}
.header__contact:hover::before {
    background: #fff;
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: 80px 45px 0;
    }
    .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__menu {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        font-size: 2rem;
    }
}
@media (max-width: 1280px) and (max-width: 768px) {
    .nav .wrapper .nav__menu {
        font-size: 1.8rem;
    }
}
@media (max-width: 1280px) {
    .nav .wrapper .nav__menu li {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }
}

.cta {
    position: fixed;
    z-index: 1000;
    bottom: 10px;
    right: 4%;
    width: 179px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.13);
    -webkit-backdrop-filter: blur(6.7611699104px);
            backdrop-filter: blur(6.7611699104px);
    --webkit-backdrop-filter: blur(6.761169910430908px);
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
}
.cta:hover {
    opacity: unset;
}
@media (max-width: 1280px) {
    .cta {
        width: 150px;
        font-size: 1.6rem;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .cta {
        right: 10px;
        width: 100px;
        font-size: 1.4rem;
        gap: 0;
    }
}

.cta__popup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    height: 35px;
    background: #03C755;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17.5px;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .cta__popup {
        width: 120px;
        height: 32px;
        border-radius: 16px;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .cta__popup {
        width: 100px;
        height: 22px;
        border-radius: 11px;
        font-size: 1.3rem;
    }
}
.cta__popup::before {
    content: "";
    position: absolute;
    width: 15px;
    aspect-ratio: 15/11;
    background: #03C755;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 70%);
}
@media (max-width: 1280px) {
    .cta__popup::before {
        width: 12px;
    }
}
@media (max-width: 768px) {
    .cta__popup::before {
        width: 10px;
    }
}

.cta__img {
    width: 69px;
}
@media (max-width: 1280px) {
    .cta__img {
        width: 58px;
    }
}
@media (max-width: 768px) {
    .cta__img {
        width: 46px;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #000;
    color: #fff;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    footer .inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 768px) {
    .footer__right {
        align-items: center;
    }
}

.footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 60px;
    font-weight: 800;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .footer__menu {
        gap: 20px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .footer__menu {
        font-size: 1.6rem;
        justify-content: center;
    }
}

.footer__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 63px;
    border: 4px solid #fff;
    border-radius: 10px;
    font-size: 1.8rem;
    display: flex;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .footer__contact {
        font-size: 1.7rem;
        border-width: 3px;
        width: 180px;
        height: 58px;
    }
}
@media (max-width: 768px) {
    .footer__contact {
        font-size: 1.6rem;
        border-width: 2px;
        width: 160px;
        height: 50px;
        border-radius: 6px;
    }
}
.footer__contact::before {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 22/16;
    -webkit-mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
            mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
    background: #fff;
    transition: inherit;
}
@media (max-width: 768px) {
    .footer__contact::before {
        width: 18px;
    }
}
.footer__contact:hover {
    opacity: unset;
    background: #fff;
    color: var(--color-black);
}
.footer__contact:hover::before {
    background: var(--color-black);
}

.footer__logo {
    display: block;
    max-width: 320px;
}
@media (max-width: 1280px) {
    .footer__logo {
        max-width: 250px;
    }
}
@media (max-width: 768px) {
    .footer__logo {
        max-width: 200px;
    }
}

.footer__copyright {
    font-size: 1.5rem;
    font-weight: 800;
}
@media (max-width: 768px) {
    .footer__copyright {
        font-size: 1.3rem;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.h2__en {
    font-family: var(--font-en);
    font-size: 7.5rem;
    line-height: 1.37;
    font-weight: 800;
    color: var(--color-or);
}
@media (max-width: 1280px) {
    .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .h2__en {
        font-size: 3.6rem;
    }
}

h2 {
    font-size: 3rem;
    line-height: 1.47;
    font-weight: 800;
    color: var(--color-or);
}
@media (max-width: 1280px) {
    h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    h2 {
        font-size: 1.9rem;
    }
}

.lower__header {
    position: relative;
    overflow: hidden;
}

.lower__header__bg {
    position: absolute;
    background: #FFCEB9;
    top: 0;
    bottom: 0;
    right: 0;
    width: 71%;
    z-index: -1;
}

.h1__en {
    font-size: 10rem;
    font-weight: 800;
    font-family: var(--font-en);
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .h1__en {
        font-size: 7.5rem;
    }
}
@media (max-width: 768px) {
    .h1__en {
        font-size: 5rem;
    }
}

.h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.47;
}
@media (max-width: 1280px) {
    .h1 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .h1 {
        font-size: 1.8rem;
    }
}

.top__btn {
    color: #FF7A27;
    background: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-en);
    border: 4px solid #FF7A27;
    border-radius: 20px;
    width: 360px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .top__btn {
        font-size: 1.9rem;
        border-width: 3px;
        border-radius: 15px;
        width: 260px;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .top__btn {
        font-size: 1.6rem;
        border-width: 2px;
        border-radius: 10px;
        width: 180px;
        height: 60px;
    }
}
.top__btn:hover {
    opacity: unset;
    background: #FF7A27;
    color: #fff;
}

.lower__txt {
    max-width: 900px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .lower__txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .lower__txt {
        font-size: 1.6rem;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-weight: 700;
    gap: 6px;
}
.breadcrumb li:not(:first-child) {
    position: relative;
    padding-left: 10px;
}
.breadcrumb li:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 1px;
    top: 50%;
    left: 0;
    background: var(--color-black);
}
.breadcrumb .this {
    color: var(--color-or);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb__wrapper.orange li:not(:first-child)::before {
    background: #fff;
}
.breadcrumb__wrapper.orange .this {
    color: #FFBEA3;
}

.lower__h3 {
    font-size: 4.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .lower__h3 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .lower__h3 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 80px;
}
@media (max-width: 1280px) {
    .top__mv {
        padding-bottom: 60px;
    }
}
@media (max-width: 768px) {
    .top__mv {
        padding-bottom: 50px;
    }
}
.top__mv img {
    display: block;
    width: 78%;
    margin-left: auto;
}
@media (max-width: 768px) {
    .top__mv img {
        width: 100%;
        aspect-ratio: 400/800;
        -o-object-fit: cover;
           object-fit: cover;
        max-height: calc(100vh - var(--header-height));
    }
}

.mv__orange {
    content: "";
    position: absolute;
    background: var(--color-or);
    bottom: 0;
    left: 0;
    width: 30%;
    height: 25%;
    z-index: -1;
}

.mv__txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    font-weight: 800;
}

.mv__txt__bg {
    font-size: 10rem;
    font-family: var(--font-en);
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .mv__txt__bg {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .mv__txt__bg {
        font-size: 5rem;
    }
}

.mv__txt__bottom {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1280px) {
    .mv__txt__bottom {
        gap: 20px;
    }
}

.mv__txt__bottom__en {
    font-family: var(--font-en);
    font-size: 1.8rem;
    writing-mode: vertical-rl;
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .mv__txt__bottom__en {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .mv__txt__bottom__en {
        font-size: 1.4rem;
    }
}

.mv__txt__bottom__right {
    font-size: 3.4rem;
    line-height: 1.59;
}
@media (max-width: 1280px) {
    .mv__txt__bottom__right {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .mv__txt__bottom__right {
        font-size: 2rem;
    }
}

.top__service__ttl {
    color: var(--color-or);
    text-align: center;
}

.top__service__section h3 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .top__service__section h3 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__service__section h3 {
        font-size: 2.4rem;
    }
}

.top__service__container {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
@media (max-width: 768px) {
    .top__service__container {
        gap: 2%;
    }
}

.top__service__container__box {
    width: 30%;
}
@media (max-width: 768px) {
    .top__service__container__box {
        width: 32%;
    }
}
.top__service__container__box .img__wrapper {
    height: 205px;
}
@media (max-width: 1280px) {
    .top__service__container__box .img__wrapper {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .top__service__container__box .img__wrapper {
        height: 100px;
    }
}
.top__service__container__box .img__wrapper img {
    width: auto;
    margin: 0 auto;
    max-height: 100%;
}
.top__service__container__box h4 {
    color: var(--color-or);
    font-weight: 800;
    font-size: 3.5rem;
    text-align: center;
    line-height: 1.5;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .top__service__container__box h4 {
        font-size: 2rem;
        height: 100px;
    }
}
@media (max-width: 768px) {
    .top__service__container__box h4 {
        font-size: 1.2rem;
        height: 70px;
    }
}
.top__service__container__box h5 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .top__service__container__box h5 {
        font-size: 2.2rem;
        height: 80px;
    }
}
@media (max-width: 768px) {
    .top__service__container__box h5 {
        font-size: 1.8rem;
        height: 60px;
    }
}
.top__service__container__box p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .top__service__container__box p {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__service__container__box p {
        font-size: 1.6rem;
    }
}

.top__philosophy__section {
    color: #fff;
    background: var(--color-or);
}

.top__philosophy__ttl {
    text-align: center;
}
.top__philosophy__ttl .h2__en, .top__philosophy__ttl h2 {
    color: #fff;
}
.top__philosophy__ttl h3 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .top__philosophy__ttl h3 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__philosophy__ttl h3 {
        font-size: 2.4rem;
    }
}
.top__philosophy__ttl .txt {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2;
}
@media (max-width: 1280px) {
    .top__philosophy__ttl .txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__philosophy__ttl .txt {
        font-size: 1.6rem;
        text-align: left;
    }
}

.top__btn.philosophy {
    color: #fff;
    border: 4px solid #fff;
    background: var(--color-or);
}
@media (max-width: 1280px) {
    .top__btn.philosophy {
        border: 3px solid #fff;
    }
}
@media (max-width: 768px) {
    .top__btn.philosophy {
        border: 2px solid #fff;
    }
}
.top__btn.philosophy:hover {
    background: #fff;
    color: var(--color-or);
}

.top__company__section {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.top__company__section .inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.top__company__section h3 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.44;
    margin-top: 90px;
}
@media (max-width: 1280px) {
    .top__company__section h3 {
        font-size: 2.4rem;
        margin-top: 60px;
    }
}
@media (max-width: 768px) {
    .top__company__section h3 {
        font-size: 2.2rem;
        margin-top: 0;
    }
}
.top__company__section .top__btn {
    margin: 0 auto;
}

.top__company__left,
.top__company__right {
    width: 50%;
}
@media (max-width: 768px) {
    .top__company__left,
    .top__company__right {
        width: 100%;
    }
}

.top__company__left {
    padding-right: 10%;
}
@media (max-width: 1280px) {
    .top__company__left {
        padding-right: 3%;
    }
}

.company__img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 60%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 768px) {
    .company__img {
        display: none;
    }
}

.top__column__section {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.top__column__section .top__btn {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .top__column__section .top__btn.pc {
        display: none;
    }
}
.top__column__section .top__btn.sp {
    display: none;
}
@media (max-width: 768px) {
    .top__column__section .top__btn.sp {
        display: flex;
    }
}

.top__column__section__bg {
    position: absolute;
    top: 5%;
    height: 40%;
    right: 0;
    width: 52%;
    background: #FFCEB9;
    z-index: -1;
}

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

.column__list {
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .column__list {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .column__list {
        font-size: 1.6rem;
    }
}
.column__list a:hover {
    opacity: unset;
}
.column__list .thumbnail img {
    aspect-ratio: 420/272;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}
.column__list .date {
    color: #FF7A27;
}

.top__recruit__section {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.top__recruit__section h3 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .top__recruit__section h3 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__recruit__section h3 {
        font-size: 2.8rem;
    }
}
.top__recruit__section h4 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.43;
}
@media (max-width: 1280px) {
    .top__recruit__section h4 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .top__recruit__section h4 {
        font-size: 1.8rem;
    }
}
.top__recruit__section .lower__txt {
    max-width: min(700px, 50%);
}
@media (max-width: 768px) {
    .top__recruit__section .lower__txt {
        max-width: unset;
    }
}
@media (max-width: 768px) {
    .top__recruit__section .top__btn {
        margin: 0 auto;
    }
}

.top__recruit__section__bg {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 18%;
    height: 40%;
    background: #FFCEB9;
}
@media (max-width: 768px) {
    .top__recruit__section__bg {
        width: 30%;
        height: 20%;
    }
}

.top__recruit__section__img {
    position: absolute;
    z-index: -1;
    top: 90px;
    height: calc(100% - 90px);
    right: 0;
    width: 43%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 26px;
}
@media (max-width: 1280px) {
    .top__recruit__section__img {
        top: 60px;
        height: calc(100% - 60px);
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .top__recruit__section__img {
        height: unset;
        margin-top: 50px;
        position: unset;
        padding: 0 4%;
        width: 100%;
        gap: 10px;
    }
}
.top__recruit__section__img .img__2, .top__recruit__section__img .img__1 {
    width: calc((100% - 26px) / 2);
}
@media (max-width: 1280px) {
    .top__recruit__section__img .img__2, .top__recruit__section__img .img__1 {
        width: calc((100% - 16px) / 2);
    }
}
@media (max-width: 768px) {
    .top__recruit__section__img .img__2, .top__recruit__section__img .img__1 {
        width: calc((100% - 10px) / 2);
    }
}
.top__recruit__section__img .img__1 {
    margin-top: 100px;
}
@media (max-width: 1280px) {
    .top__recruit__section__img .img__1 {
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    .top__recruit__section__img .img__1 {
        margin-top: 0;
    }
}

/* ------------------------------------- /
/  事業内容ページ
/* ------------------------------------- */
.page-template-page-service .top__service__ttl {
    text-align: center;
}

.service__sales__container {
    padding: 70px 20px;
    border: 1px solid var(--color-or);
    border-radius: 20px;
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    display: flex;
}
@media (max-width: 1280px) {
    .service__sales__container {
        padding: 40px 20px;
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .service__sales__container {
        flex-direction: column;
        padding: 20px 20px 0;
    }
}

.service__sales__container__ttl {
    position: absolute;
    background: var(--color-or);
    height: 60px;
    width: 250px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 1280px) {
    .service__sales__container__ttl {
        font-size: 2rem;
        height: 50px;
        width: 200px;
        border-radius: 25px;
    }
}
@media (max-width: 768px) {
    .service__sales__container__ttl {
        font-size: 1.7rem;
        height: 40px;
        width: 160px;
        border-radius: 20px;
    }
}

.service__sales__container__box {
    padding: 10px;
    flex: 1 1;
    text-align: center;
}
.service__sales__container__box:nth-child(n+3) {
    border-left: 1px solid var(--color-or);
}
@media (max-width: 768px) {
    .service__sales__container__box:nth-child(n+3) {
        border-left: unset;
        border-top: 1px solid var(--color-or);
    }
}
.service__sales__container__box h4 {
    color: var(--color-or);
    font-size: 2.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .service__sales__container__box h4 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .service__sales__container__box h4 {
        font-size: 1.8rem;
    }
}
.service__sales__container__box p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .service__sales__container__box p {
        font-size: 1.6rem;
        line-height: 1.8;
    }
}
@media (max-width: 768px) {
    .service__sales__container__box p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

.service__call, .service__contact {
    background: var(--color-or);
    color: #fff;
}
.service__call .h2__en, .service__call h2, .service__contact .h2__en, .service__contact h2 {
    color: #fff;
}

.service__contact .lower__txt {
    text-align: center;
}
@media (max-width: 1280px) {
    .service__contact .lower__txt {
        text-align: left;
    }
}
.service__contact .top__btn {
    color: #fff;
    background: var(--color-or);
    border-color: #fff;
    position: relative;
    gap: 10px;
}
.service__contact .top__btn::before {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 24/18;
    -webkit-mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
            mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
    background: #fff;
}
@media (max-width: 768px) {
    .service__contact .top__btn::before {
        width: 19px;
    }
}
.service__contact .top__btn:hover {
    background: #fff;
    color: var(--color-or);
}
.service__contact .top__btn:hover::before {
    background: var(--color-or);
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.page-template-page-company .top__service__ttl {
    text-align: center;
}

.company__greeting__container {
    max-width: 1920px;
    display: flex;
}
@media (max-width: 768px) {
    .company__greeting__container {
        flex-direction: column-reverse;
        row-gap: 30px;
    }
}

.company__greeting__container__img {
    width: 50%;
    padding-right: 7%;
}
@media (max-width: 768px) {
    .company__greeting__container__img {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}

.company__greeting__container__txt {
    width: 50%;
    padding-right: var(--inner-outer-width);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    padding-right: 7%;
}
@media (max-width: 1280px) {
    .company__greeting__container__txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .company__greeting__container__txt {
        width: 100%;
        padding: 0 var(--inner-outer-width);
        font-size: 1.6rem;
    }
}

.company__philosophy {
    background: var(--color-or);
    color: #fff;
}
.company__philosophy .h2__en, .company__philosophy h2 {
    color: #fff;
}
.company__philosophy .lower__txt {
    text-align: center;
}
@media (max-width: 768px) {
    .company__philosophy .lower__txt {
        text-align: left;
    }
}

.company__profile__table {
    width: 100%;
    max-width: 1100px;
}
.company__profile__table th, .company__profile__table td {
    font-weight: 700;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-or);
}
@media (max-width: 1280px) {
    .company__profile__table th, .company__profile__table td {
        padding: 15px 0;
    }
}
.company__profile__table th {
    color: var(--color-or);
    font-size: 2.5rem;
    width: 250px;
}
@media (max-width: 1280px) {
    .company__profile__table th {
        font-size: 2rem;
        width: 200px;
    }
}
@media (max-width: 768px) {
    .company__profile__table th {
        font-size: 1.8rem;
        width: 150px;
    }
}
.company__profile__table td {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .company__profile__table td {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .company__profile__table td {
        font-size: 1.6rem;
    }
}

.company__map__wrapper {
    max-width: 1100px;
}
.company__map__wrapper iframe {
    width: 100%;
    height: 515px;
}

/* ------------------------------------- /
/  採用情報ページ
/* ------------------------------------- */
.page-template-page-recruit main {
    overflow: hidden;
}
.page-template-page-recruit .top__service__ttl {
    text-align: center;
}

.recruit__environment__container {
    max-width: 1920px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    overflow: hidden;
}
.recruit__environment__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.recruit__environment__container:nth-child(2n+1) .recruit__environment__container__img {
    padding-right: unset;
    padding-left: 7%;
}
.recruit__environment__container:nth-child(2n+1) .recruit__environment__container__txt {
    padding-right: unset;
    padding-left: var(--inner-outer-width);
}
@media (max-width: 768px) {
    .recruit__environment__container:nth-child(n) {
        flex-direction: column;
        row-gap: 30px;
    }
    .recruit__environment__container:nth-child(n) .recruit__environment__container__img,
    .recruit__environment__container:nth-child(n) .recruit__environment__container__txt {
        width: 100%;
    }
    .recruit__environment__container:nth-child(n) .recruit__environment__container__img {
        padding: 0 var(--inner-outer-width);
    }
    .recruit__environment__container:nth-child(n) .recruit__environment__container__txt {
        padding: 0 var(--inner-outer-width);
    }
}

.recruit__environment__container__img {
    width: 50%;
    padding-right: 7%;
    padding-top: 80px;
}
@media (max-width: 768px) {
    .recruit__environment__container__img {
        padding-top: unset;
    }
}

.recruit__environment__container__txt {
    width: 50%;
    padding-right: var(--inner-outer-width);
}

.recruit__environment__container__txt__h3 {
    color: var(--color-or);
    display: flex;
    align-items: baseline;
    gap: 45px;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .recruit__environment__container__txt__h3 {
        font-size: 3rem;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .recruit__environment__container__txt__h3 {
        font-size: 2.2rem;
        gap: 15px;
    }
}

.recruit__environment__container__txt__h3__num {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.38;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .recruit__environment__container__txt__h3__num {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .recruit__environment__container__txt__h3__num {
        font-size: 3rem;
    }
}

.recruit__voice,
.recruit__information {
    background: var(--color-or);
}
.recruit__voice h2, .recruit__voice .h2__en,
.recruit__information h2,
.recruit__information .h2__en {
    color: #fff;
}

.recruit__voice__box {
    background: #fff;
    padding: 120px 70px;
    display: flex;
}
.recruit__voice__box:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.recruit__voice__box:nth-child(2n+1) .recruit__voice__box__img {
    padding-right: unset;
    padding-left: 6%;
}
.recruit__voice__box:nth-child(2n+1) .recruit__voice__box__img__name {
    right: unset;
    left: -1px;
    padding: 30px 30px 0 0;
}
@media (max-width: 1280px) {
    .recruit__voice__box:nth-child(2n+1) .recruit__voice__box__img__name {
        padding: 20px 20px 0 0;
    }
}
@media (max-width: 768px) {
    .recruit__voice__box:nth-child(n) {
        flex-direction: column;
        row-gap: 50px;
        padding: 60px 20px;
    }
}
@media (max-width: 1280px) {
    .recruit__voice__box {
        padding: 80px 40px;
    }
}
.recruit__voice__box__img {
    width: 50%;
    padding-right: 10%;
}
@media (max-width: 1280px) {
    .recruit__voice__box__img {
        padding-right: 6%;
    }
}
@media (max-width: 768px) {
    .recruit__voice__box__img {
        width: 100%;
        padding-right: unset;
    }
}

.recruit__voice__box__img__wrapper {
    position: relative;
}

.recruit__voice__box__img__name {
    background: #fff;
    position: absolute;
    bottom: -1px;
    right: -1px;
    padding: 30px 0 0 30px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.42;
}
@media (max-width: 1280px) {
    .recruit__voice__box__img__name {
        padding: 20px 0 0 20px;
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .recruit__voice__box__img__name {
        padding: 15px 0 0 15px;
        font-size: 1.8rem;
    }
}

.recruit__voice__box__img__name__position {
    color: var(--color-or);
    font-size: 2rem;
    line-height: 2;
}
@media (max-width: 1280px) {
    .recruit__voice__box__img__name__position {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__voice__box__img__name__position {
        font-size: 1.6rem;
    }
}

.recruit__voice__box__txt {
    width: 50%;
}
@media (max-width: 768px) {
    .recruit__voice__box__txt {
        width: 100%;
    }
}

.recruit__voice__box__txt__h3 {
    font-size: clamp(2.8rem, -0.6rem + 2.66vw, 4.5rem);
    font-weight: 700;
    color: var(--color-or);
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .recruit__voice__box__txt__h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__voice__box__txt__h3 {
        font-size: 2.2rem;
    }
}

.recruit__flow__box {
    border: 2px solid var(--color-or);
    padding: 60px 90px;
    display: flex;
    align-items: center;
    gap: 100px;
}
@media (max-width: 1280px) {
    .recruit__flow__box {
        padding: 40px 60px;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .recruit__flow__box {
        border-width: 1px;
        padding: 20px 15px;
        gap: 20px;
    }
}

.recruit__flow__box__step {
    width: 186px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-or);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-en);
    color: #fff;
    position: relative;
}
@media (max-width: 1280px) {
    .recruit__flow__box__step {
        width: 150px;
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .recruit__flow__box__step {
        width: 90px;
        font-size: 1.7rem;
    }
}
.recruit__flow__box__step::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    background: var(--color-or);
    width: 20%;
    aspect-ratio: 38/43;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.recruit__flow__box__txt {
    flex: 1 1;
}

.recruit__flow__h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-or);
    line-height: 1.46;
}
@media (max-width: 1280px) {
    .recruit__flow__h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__flow__h3 {
        font-size: 2.2rem;
    }
}

.triangle__or {
    width: 40px;
    aspect-ratio: 40/21;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    background: var(--color-or);
    margin: 30px auto;
}
@media (max-width: 768px) {
    .triangle__or {
        width: 25px;
        margin: 15px auto;
    }
}

.recruit__information__inner {
    max-width: 1150px;
    margin: 0 auto;
}

.recruit__information__h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}
@media (max-width: 1280px) {
    .recruit__information__h3 {
        font-size: 2rem;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
}
@media (max-width: 768px) {
    .recruit__information__h3 {
        font-size: 1.8rem;
        border-top-width: 2px;
        border-bottom-width: 2px;
    }
}

.recruit__accordion {
    border-bottom: 2px solid #fff;
}
.recruit__accordion.border__none {
    border-bottom: none;
}
.recruit__accordion.active .faq__q::after {
    transform: translateY(-50%);
}

.faq__q {
    color: #fff;
    padding: 20px 0;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .faq__q {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .faq__q {
        font-size: 1.8rem;
        padding: 15px 0;
    }
}
.faq__q::before, .faq__q::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #fff;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform 0.2s;
}
@media (max-width: 1280px) {
    .faq__q::before, .faq__q::after {
        width: 20px;
    }
}
@media (max-width: 768px) {
    .faq__q::before, .faq__q::after {
        width: 16px;
    }
}
.faq__q::after {
    transform: translateY(-50%) rotate(90deg);
}

.recruit__information__accordion__box__inner {
    padding: 90px;
    background: #fff;
    border-radius: 4px;
}
@media (max-width: 1280px) {
    .recruit__information__accordion__box__inner {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .recruit__information__accordion__box__inner {
        padding: 20px;
    }
}

.recruit__information__table {
    width: 100%;
}
.recruit__information__table tr {
    border-left: 4px solid var(--color-or);
}
@media (max-width: 768px) {
    .recruit__information__table tr {
        display: flex;
        flex-direction: column;
    }
}
.recruit__information__table th {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-or);
    line-height: 1.44;
    padding: 15px 30px 15px 50px;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .recruit__information__table th {
        font-size: 2rem;
        padding: 10px 25px 10px 40px;
    }
}
@media (max-width: 768px) {
    .recruit__information__table th {
        font-size: 1.7rem;
        padding: 20px 10px 10px 10px;
    }
}
.recruit__information__table td {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .recruit__information__table td {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .recruit__information__table td {
        font-size: 1.6rem;
        padding: 10px;
    }
}

.recruit__btn {
    color: #fff;
    background: var(--color-or);
    border-color: #fff;
    height: 100px;
    line-height: 1;
    text-align: center;
    position: relative;
}
@media (max-width: 1280px) {
    .recruit__btn {
        height: 80px;
    }
}
@media (max-width: 768px) {
    .recruit__btn {
        height: 60px;
    }
}
.recruit__btn::before {
    content: "";
    position: absolute;
    width: 19px;
    aspect-ratio: 1;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    -webkit-mask: url(../img/recruit/link.svg) center/contain no-repeat;
            mask: url(../img/recruit/link.svg) center/contain no-repeat;
    background: #fff;
}
@media (max-width: 1280px) {
    .recruit__btn::before {
        width: 15px;
        right: 20px;
    }
}
@media (max-width: 768px) {
    .recruit__btn::before {
        width: 12px;
        right: 10px;
    }
}
.recruit__btn:hover {
    color: var(--color-or);
    background: #fff;
}
.recruit__btn:hover::before {
    background: var(--color-or);
}

.recruit__btn__sm {
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .recruit__btn__sm {
        font-size: 1.4rem;
    }
}

.recruit__message__container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
}
@media (max-width: 768px) {
    .recruit__message__container {
        flex-direction: column;
        row-gap: 50px;
    }
}

.recruit__message__img {
    width: 50%;
    padding-right: 7%;
}
@media (max-width: 768px) {
    .recruit__message__img {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}

.recruit__message__txt {
    width: 50%;
    padding-right: var(--inner-outer-width);
}
@media (max-width: 768px) {
    .recruit__message__txt {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}

.recruit__represent {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: right;
}
@media (max-width: 1280px) {
    .recruit__represent {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .recruit__represent {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- /
/  プライバシーポリシーページ
/* ------------------------------------- */
.privacy__section__border {
    border-top: 1px solid var(--color-or);
}

.privacy__h2 {
    font-size: 4.5rem;
}
@media (max-width: 1280px) {
    .privacy__h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .privacy__h2 {
        font-size: 2.4rem;
    }
}

.page-template-page-privacy .lower__txt {
    max-width: unset;
}

.privary__ul {
    list-style: disc;
    list-style-position: inside;
}
.privary__ul li {
    margin-left: 20px;
    text-indent: -20px;
}

/* ------------------------------------- /
/  コラム一覧ページ
/* ------------------------------------- */
.archive__container {
    display: flex;
    flex-wrap: wrap;
    gap: 90px 5%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .archive__container {
        font-size: 1.8rem;
        gap: 50px 6%;
    }
}
@media (max-width: 768px) {
    .archive__container {
        font-size: 1.6rem;
        gap: 30px;
    }
}

.archive__a {
    width: 30%;
}
@media (max-width: 1280px) {
    .archive__a {
        width: 47%;
    }
}
@media (max-width: 768px) {
    .archive__a {
        width: 100%;
    }
}

.archive__thumbnail img {
    aspect-ratio: 420/272;
    -o-object-fit: cover;
       object-fit: cover;
}

.archive__ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden;
}

.archive__date {
    color: #FF7A27;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    font-family: var(--font-en);
    font-size: 2.4rem;
    font-weight: 800;
    color: #FF7A27;
}
@media (max-width: 1280px) {
    .pagination-list {
        gap: 40px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .pagination-list {
        gap: 15px;
        font-size: 1.8rem;
    }
}
.pagination-list .current {
    width: 80px;
    aspect-ratio: 1;
    border-radius: 20px;
    border: 4px solid #FF7A27;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .pagination-list .current {
        width: 60px;
        border-radius: 10px;
        border-width: 2px;
    }
}
@media (max-width: 768px) {
    .pagination-list .current {
        width: 30px;
        border-radius: 5px;
        border-width: 1px;
    }
}
.pagination-list .next a,
.pagination-list .previous a {
    display: block;
    width: 16px;
    aspect-ratio: 16/21;
    background: url(../img/column/next.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .pagination-list .next a,
    .pagination-list .previous a {
        width: 13px;
    }
}
@media (max-width: 768px) {
    .pagination-list .next a,
    .pagination-list .previous a {
        width: 10px;
    }
}
.pagination-list .previous a {
    background: url(../img/column/previous.svg) center/contain no-repeat;
}
.pagination-list .last a,
.pagination-list .first a {
    display: block;
    width: 33px;
    aspect-ratio: 33/21;
    background: url(../img/column/last.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .pagination-list .last a,
    .pagination-list .first a {
        width: 26px;
    }
}
@media (max-width: 768px) {
    .pagination-list .last a,
    .pagination-list .first a {
        width: 21px;
    }
}
.pagination-list .first a {
    background: url(../img/column/first.svg) center/contain no-repeat;
}

/* ------------------------------------- /
/  コラム単体ページ
/* ------------------------------------- */
.single__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.single__date {
    color: #FF7A27;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 1280px) {
    .single__date {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single__date {
        font-size: 1.6rem;
    }
}

.single__h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.44;
    border-bottom: 1px solid var(--color-or);
}
@media (max-width: 1280px) {
    .single__h1 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .single__h1 {
        font-size: 2.2rem;
    }
}

.single__pagination__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FF7A27;
}
@media (max-width: 1280px) {
    .single__pagination__wrapper {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .single__pagination__wrapper {
        font-size: 1.6rem;
    }
}
.single__pagination__wrapper .previous,
.single__pagination__wrapper .next {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}
@media (max-width: 768px) {
    .single__pagination__wrapper .previous,
    .single__pagination__wrapper .next {
        gap: 10px;
    }
}
.single__pagination__wrapper .previous::before {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 16/21;
    background: url(../img/column/previous.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single__pagination__wrapper .previous::before {
        width: 9px;
    }
}
.single__pagination__wrapper .next::after {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 16/21;
    background: url(../img/column/next.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .single__pagination__wrapper .next::after {
        width: 9px;
    }
}
.single__pagination__wrapper .disabled {
    width: 174px;
}
@media (max-width: 1280px) {
    .single__pagination__wrapper .disabled {
        width: 160px;
    }
}
@media (max-width: 768px) {
    .single__pagination__wrapper .disabled {
        width: unset;
    }
}

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

.single__content p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 70px;
}
@media (max-width: 1280px) {
    .single__content p {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .single__content p {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}
.single__content h2 {
    font-size: 2.6rem;
    line-height: 1.42;
    background: #FFEEE3;
    padding: 15px 30px;
    margin-bottom: 50px;
}
@media (max-width: 1280px) {
    .single__content h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single__content h2 {
        padding: 10px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}
.single__content h3 {
    color: var(--color-or);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}
@media (max-width: 1280px) {
    .single__content h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-left: 24px;
    }
}
@media (max-width: 768px) {
    .single__content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-left: 20px;
    }
}
.single__content h3::before {
    content: "";
    position: absolute;
    width: 13px;
    aspect-ratio: 1;
    background: var(--color-or);
    top: 14px;
    left: 0;
}
@media (max-width: 1280px) {
    .single__content h3::before {
        width: 11px;
        top: 13px;
    }
}
@media (max-width: 768px) {
    .single__content h3::before {
        width: 9px;
        top: 12px;
    }
}/*# sourceMappingURL=style.css.map */