@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic New", sans-serif;
    --font-head: "Zen Old Mincho", serif;
    --font-en: "Inter", sans-serif;
    --color-black: #242424;
    --color-blue: #1C55AD;
    --color-light-blue: #BCD6FF;
    --color-dark-blue: #213450;
}

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

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

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

html {
    font-size: 62.5%;
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.375;
    font-weight: 500;
    font-family: var(--font-jp);
    color: var(--color-black);
    background-color: #ffffff;
}
html body p {
    line-height: 2.25;
}
html body main {
    margin-top: 80px;
}
@media (max-width: 1280px) {
    html {
        scroll-padding-top: 70px;
    }
    html body main {
        margin-top: 70px;
    }
}
@media (max-width: 768px) {
    html body p {
        line-height: 1.8;
    }
}

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;
}

.fwB {
    font-weight: bold;
}

.iB {
    display: inline-block;
}

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

/* ------------------------------------- /
/   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: fixed;
    right: 20px;
    top: 35px;
    transform: translateY(-50%);
    z-index: 10001;
    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: #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;
    }
}
@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);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
header .header__logo {
    max-width: 224px;
}
header .header__right {
    display: flex;
    gap: 30px;
}
header .header__right .header__menu {
    display: flex;
    gap: 30px;
}
header .header__right .header__tel {
    color: var(--color-blue);
    font-family: var(--font-en);
    font-weight: 700;
}
header .header__right .header__tel a {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    header {
        height: 70px;
        padding: 0 20px;
    }
    header .header__right {
        display: none;
    }
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: var(--color-blue);
        color: #fff;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding-top: 70px;
    }
    .nav .wrapper .btn__wrapper {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav .wrapper .btn__wrapper .nav__sp__logo {
        display: block;
        width: min(100%, 200px);
    }
    .nav .wrapper .header__menu {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: calc(100% - 40px - 20px);
    }
    .nav .wrapper .header__menu li {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid #fff;
    }
    .nav .wrapper .nav__sp__tel {
        margin-top: 40px;
        font-family: var(--font-en);
        font-weight: 700;
        font-size: 2rem;
        text-align: center;
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.ttl__box {
    color: var(--color-blue);
    text-align: center;
}
.ttl__box h2 {
    font-size: 3.8rem;
    font-weight: 700;
    font-family: var(--font-head);
    line-height: 0.9;
}
.ttl__box .sub__ttl {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .ttl__box h2 {
        font-size: 3rem;
    }
    .ttl__box .sub__ttl {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .ttl__box h2 {
        font-size: 2.6rem;
    }
    .ttl__box .sub__ttl {
        font-size: 1.4rem;
    }
}

.lower__ttl__box {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
}
.lower__ttl__box::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background: var(--color-blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.lower__ttl__box h2 {
    color: var(--color-blue);
    font-size: 3.8rem;
    font-weight: 700;
    font-family: var(--font-head);
    line-height: 0.9;
}
@media (max-width: 1280px) {
    .lower__ttl__box h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .lower__ttl__box::after {
        width: 80px;
    }
    .lower__ttl__box h2 {
        font-size: 2.6rem;
    }
}

.btn {
    color: #fff;
    font-size: 1.8rem;
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 5px;
    width: 340px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn:hover {
    opacity: unset;
    color: var(--color-blue);
    background: #fff;
}
@media (max-width: 1280px) {
    .btn {
        font-size: 1.6rem;
        width: 220px;
        height: 60px;
    }
}

.btn--sm {
    font-size: 1.8rem;
    color: #fff;
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 5px;
    width: 240px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn--sm:hover {
    opacity: unset;
    color: var(--color-blue);
    background: #fff;
}
.btn--sm.sp {
    display: none;
}
@media (max-width: 1280px) {
    .btn--sm {
        width: 200px;
        height: 50px;
        font-size: 1.6rem;
    }
}

.lower__header .inner .wrapper .header__ttl__box {
    text-align: left;
    position: relative;
}
.lower__header .inner .wrapper .header__ttl__box h1 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 5.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.lower__header .inner .wrapper .header__ttl__box h1::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0%;
    bottom: 0%;
}
.lower__header .inner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    color: #fff;
    gap: 4px;
}
.lower__header .inner .breadcrumb li {
    position: relative;
    display: flex;
    gap: 4px;
}
.lower__header .inner .breadcrumb li:not(:last-child)::after {
    content: ">";
    display: block;
    color: #ECECEC;
}
@media (max-width: 1280px) {
    .lower__header .inner .wrapper .header__ttl__box h1 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .lower__header .inner .wrapper .header__ttl__box h1 {
        font-size: 3rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .main-visual {
    height: calc(100vh - 80px);
    max-height: 1200px;
    background: url(../img/top/mv_2.webp) center center/cover no-repeat;
}
.page-template-front-page .main-visual .inner {
    display: flex;
    align-items: center;
    height: 100%;
}
.page-template-front-page .main-visual .inner h2 {
    position: relative;
    z-index: 0;
    color: #fff;
    font-family: var(--font-head);
    font-size: 3.8rem;
    line-height: 1.75;
    font-weight: 700;
}
.page-template-front-page .main-visual .inner h2::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -38%;
    right: -6%;
    width: 77%;
    aspect-ratio: 529/108;
    background: url(../img/top/mv_before.svg) center center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .main-visual {
        height: calc(100vh - 70px);
    }
    .page-template-front-page .main-visual .inner h2 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .main-visual .inner h2 {
        font-size: 2rem;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .main-visual {
        background: url(../img/top/mv_sp_2.webp) center center/cover no-repeat;
    }
    .page-template-front-page .main-visual .inner h2 {
        font-size: 1.8rem;
    }
    .page-template-front-page .main-visual .inner h2::before {
        right: 0%;
    }
}
.page-template-front-page .news .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px 60px;
}
.page-template-front-page .news .inner .left {
    display: flex;
    flex-direction: column;
    gap: 70px 40px;
}
.page-template-front-page .news .inner .left .ttl__box {
    display: flex;
    gap: 15px;
    align-items: baseline;
}
.page-template-front-page .news .inner .left .ttl__box .sub__ttl {
    color: var(--color-light-blue);
}
.page-template-front-page .news .inner .news__list {
    max-width: 760px;
}
.page-template-front-page .news .inner .news__list ul li {
    padding: 30px 0 30px 0;
    border-bottom: 1px solid var(--color-blue);
}
.page-template-front-page .news .inner .news__list ul li:first-of-type {
    padding-top: 0;
}
.page-template-front-page .news .inner .news__list ul li a {
    padding-right: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    font-size: 1.6rem;
    line-height: 1.75;
    position: relative;
}
.page-template-front-page .news .inner .news__list ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_right_bl.svg) center center/100% 100% no-repeat;
}
.page-template-front-page .news .inner .news__list ul li a .day {
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .page-template-front-page .news .inner .left {
        gap: 40px 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news .inner {
        flex-direction: column;
    }
    .page-template-front-page .news .inner .news__list ul li {
        padding: 20px 0 20px 0;
    }
    .page-template-front-page .news .inner .news__list ul li a {
        flex-direction: column;
        padding-right: 20px;
        gap: 5px;
    }
    .page-template-front-page .news .inner .news__list ul li a::after {
        width: 10px;
    }
    .page-template-front-page .news .inner .btn--sm.pc {
        display: none;
    }
    .page-template-front-page .news .inner .btn--sm.sp {
        display: flex;
        margin: 0 auto;
    }
}
.page-template-front-page .greeting {
    background: url(../img/top/top_01.webp) center center/cover no-repeat;
}
.page-template-front-page .greeting .inner {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.page-template-front-page .greeting .inner .txt {
    align-items: center;
    line-height: 2;
}
.page-template-front-page .greeting .inner .btn {
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-template-front-page .greeting .txt {
        text-align: left;
    }
}
.page-template-front-page .business {
    background: linear-gradient(rgba(188, 214, 255, 0.2509803922), #fff, #fff, #fff);
    overflow: hidden;
}
.page-template-front-page .business .inner .ttl__box {
    text-align: center;
}
.page-template-front-page .business .inner .ttl__box .sub__ttl {
    color: var(--color-light-blue);
}
.page-template-front-page .business .wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}
.page-template-front-page .business .wrapper .container {
    width: min(100%, 1366px);
    padding: 0 0 0 min(6.08%, 83px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page-template-front-page .business .wrapper .container .txt {
    width: calc(53.2481363152% - min(6.08%, 83px));
    padding: 0 5% 0 0;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box h3 {
    position: relative;
    color: var(--color-dark-blue);
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    z-index: 1;
    margin-right: 40px;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box h3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box h3.num--01::before {
    top: -45%;
    right: -13%;
    width: 18%;
    aspect-ratio: 66/57;
    background: url(../img/top/num_01.svg) center center/contain no-repeat;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box h3.num--02::before {
    top: 0;
    right: -10%;
    width: 19%;
    aspect-ratio: 83/55;
    background: url(../img/top/num_02.svg) center center/contain no-repeat;
}
.page-template-front-page .business .wrapper .container .txt .ttl__box h3.num--03::before {
    top: -47%;
    right: -60%;
    width: 79%;
    aspect-ratio: 88/56;
    background: url(../img/top/num_03.svg) center center/contain no-repeat;
}
.page-template-front-page .business .wrapper .container .img {
    width: 53.2481363152%;
    padding: 0 0 0 3%;
}
.page-template-front-page .business .wrapper .container:nth-child(odd) {
    flex-direction: row-reverse;
    padding: 0 min(6.08%, 83px) 0 0;
}
.page-template-front-page .business .wrapper .container:nth-child(odd) .txt {
    padding: 0 0 0 5%;
}
.page-template-front-page .business .wrapper .container:nth-child(odd) .img {
    padding: 0 3% 0 0;
}
@media (max-width: 1280px) {
    .page-template-front-page .business .wrapper {
        row-gap: 40px;
    }
    .page-template-front-page .business .wrapper .container .txt .ttl__box h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .business .wrapper .container:nth-child(n) {
        flex-direction: column;
        row-gap: 30px;
        padding: 0;
    }
    .page-template-front-page .business .wrapper .container:nth-child(n) .txt, .page-template-front-page .business .wrapper .container:nth-child(n) .img {
        width: 100%;
        padding: 0;
    }
    .page-template-front-page .business .wrapper .container:nth-child(n) .txt {
        padding: 0 4%;
    }
    .page-template-front-page .business .wrapper .container:nth-child(n) .txt .ttl__box h3 {
        font-size: 1.8rem;
    }
}
.page-template-front-page .recruit {
    background: url(../img/top/top_recruit.webp) center center/cover no-repeat;
}
.page-template-front-page .recruit .inner .ttl__box {
    text-align: center;
}
.page-template-front-page .recruit .inner h3 {
    color: var(--color-dark-blue);
    font-size: 2.4rem;
    text-align: center;
}
.page-template-front-page .recruit .inner .btn {
    margin: 0 auto;
}
.page-template-front-page .recruit .inner .txt {
    text-align: center;
}
.page-template-front-page .recruit .inner .box {
    color: #fff;
    background: var(--color-blue);
    border-radius: 10px;
    padding: 0 7.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.page-template-front-page .recruit .inner .box .ttl__box {
    text-align: left;
}
.page-template-front-page .recruit .inner .box .ttl__box h2 {
    color: #fff;
}
.page-template-front-page .recruit .inner .box .ttl__box .sub__ttl {
    color: var(--color-light-blue);
    font-weight: 700;
}
.page-template-front-page .recruit .inner .box .tel__box {
    text-align: center;
    font-family: var(--font-en);
}
.page-template-front-page .recruit .inner .box .tel__box .tel {
    font-size: 3rem;
    line-height: 1.13;
}
.page-template-front-page .recruit .inner .box .tel__box .fax {
    font-size: 2rem;
    line-height: 1.7;
}
.page-template-front-page .recruit .inner .box .btn {
    background: var(--color-dark-blue);
    border: 1px solid var(--color-dark-blue);
    margin: unset;
    width: 300px;
}
.page-template-front-page .recruit .inner .box .btn:hover {
    opacity: unset;
    color: var(--color-dark-blue);
    background: #fff;
}
@media (max-width: 1280px) {
    .page-template-front-page .recruit .inner h3 {
        font-size: 2rem;
    }
    .page-template-front-page .recruit .inner .box {
        flex-direction: column;
        justify-content: center;
        padding: 0 5%;
        row-gap: 40px;
    }
    .page-template-front-page .recruit .inner .box .ttl__box {
        text-align: center;
    }
    .page-template-front-page .recruit .inner .box .tel__box .tel {
        font-size: 2.6rem;
    }
    .page-template-front-page .recruit .inner .box .tel__box .fax {
        font-size: 1.8rem;
    }
    .page-template-front-page .recruit .inner .box .btn {
        width: 240px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .recruit .inner h3 {
        font-size: 1.8rem;
        text-align: left;
    }
    .page-template-front-page .recruit .inner .txt {
        text-align: left;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    color: #fff;
    background: var(--color-dark-blue);
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px 40px;
}
footer .inner .left .logo {
    display: block;
    max-width: 224px;
}
footer .inner .left .address {
    font-size: 1.6rem;
}
footer .inner .left .tel {
    font-size: 1.4rem;
    font-family: var(--font-en);
}
footer .inner .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
footer .inner .right ul {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 5px 30px;
    flex-grow: 1;
}
footer .inner .right .copyright {
    font-size: 1.4rem;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    footer .inner .right ul {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    footer .inner {
        flex-direction: column;
    }
    footer .inner .right {
        align-items: flex-start;
        row-gap: 30px;
    }
    footer .inner .right ul {
        justify-content: flex-start;
    }
    footer .inner .right .copyright {
        text-align: left;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .lower__header .inner .wrapper .header__ttl__box h1 {
    color: var(--color-blue);
}
.page-template-home .lower__header .inner .wrapper .header__ttl__box h1::before {
    width: 48%;
    right: -18%;
    bottom: -5%;
    aspect-ratio: 104/43;
    background: url(../img/news/news_before.svg) center center/contain no-repeat;
}
.page-template-home .lower__header .inner .breadcrumb {
    color: var(--color-black);
}
.page-template-home .lower__header .inner .breadcrumb li:not(:last-child)::after {
    color: var(--color-black);
}
.page-template-home .news__list .inner {
    width: min(100%, 864px);
}
.page-template-home .news__list .inner .news {
    border-bottom: 1px solid var(--color-blue);
}
.page-template-home .news__list .inner .news a {
    display: flex;
    align-items: baseline;
    gap: 30px;
    padding-right: 50px;
    position: relative;
}
.page-template-home .news__list .inner .news a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_right_bl.svg) center center/100% 100% no-repeat;
}
.page-template-home .news__list .inner .news a .day {
    font-family: var(--font-en);
    line-height: 1.75;
}
.page-template-home .news__list .inner .news a .ttl {
    line-height: 1.75;
}
@media (max-width: 768px) {
    .page-template-home .news__list .inner .news a {
        gap: 20px;
        padding-right: 20px;
    }
    .page-template-home .news__list .inner .news a::after {
        width: 10px;
    }
}
@media (max-width: 500px) {
    .page-template-home .news__list .inner .news a {
        flex-direction: column;
        row-gap: 10px;
    }
}
.page-template-home .pagination .inner .pagination-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: var(--font-en);
    font-size: 2rem;
}
.page-template-home .pagination .inner .pagination-list li {
    min-width: 14px;
    display: block;
    text-align: center;
}
.page-template-home .pagination .inner .pagination-list li:has(.disabled) {
    display: none;
}
.page-template-home .pagination .inner .pagination-list .current {
    border-bottom: 2px solid var(--color-blue);
}
.page-template-home .pagination .inner .pagination-list .previous {
    position: relative;
}
.page-template-home .pagination .inner .pagination-list .previous span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_left_bl.svg) center center/100% 100% no-repeat;
}
.page-template-home .pagination .inner .pagination-list .next {
    position: relative;
}
.page-template-home .pagination .inner .pagination-list .next span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_right_bl.svg) center center/100% 100% no-repeat;
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .lower__header .inner .wrapper .header__ttl__box h1 {
    color: var(--color-blue);
}
.single-post .lower__header .inner .wrapper .header__ttl__box h1::before {
    width: 48%;
    right: -18%;
    bottom: -5%;
    aspect-ratio: 104/43;
    background: url(../img/news/news_before.svg) center center/contain no-repeat;
}
.single-post .lower__header .inner .breadcrumb {
    color: var(--color-black);
}
.single-post .lower__header .inner .breadcrumb li:not(:last-child)::after {
    color: var(--color-black);
}
.single-post .post {
    margin: 0 auto;
    max-width: 1023px;
    padding: 0 min(6%, 61px);
}
.single-post .post .post__inner {
    margin: 0 auto;
    max-width: 900px;
}
.single-post .post .post__inner .post--header h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--color-blue);
    font-family: var(--font-head);
    line-height: 1.5;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--color-blue);
}
.single-post .post .post__inner .post--header .date {
    font-family: var(--font-en);
    line-height: 1.75;
}
.single-post .post .post--thumbnail {
    padding: 0 min(50px, 5.56%);
}
.single-post .post .post--content h2 {
    color: var(--color-dark-blue);
    font-size: 2.4rem;
    font-family: var(--font-head);
    font-weight: 700;
    margin: 50px 0 25px;
}
.single-post .post .pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.single-post .post .pagination .wrapper .btn__return {
    padding: 0 15px 5px;
    border-bottom: 2px solid var(--color-blue);
}
.single-post .post .pagination .wrapper .previous {
    position: relative;
    padding-left: 23px;
}
.single-post .post .pagination .wrapper .previous::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_left_bl.svg) center center/100% 100% no-repeat;
}
.single-post .post .pagination .wrapper .next {
    position: relative;
    padding-right: 23px;
}
.single-post .post .pagination .wrapper .next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 13px;
    aspect-ratio: 13/15;
    background: url(../img/common/arrow_right_bl.svg) center center/100% 100% no-repeat;
}
.single-post .post .pagination .wrapper .disabled {
    visibility: hidden;
}
@media (max-width: 1280px) {
    .single-post .post .post__inner .post--header h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .single-post .post {
        padding: 0 4%;
    }
    .single-post .post .post__inner .post--header h1 {
        font-size: 2.2rem;
    }
    .single-post .post .post__inner .post--thumbnail {
        padding: 0;
    }
    .single-post .post .post__inner .post--content h2 {
        font-size: 2rem;
        margin: 30px 0 15px;
    }
}

/* ------------------------------------- /
/  会社概要・事業内容ページ
/* ------------------------------------- */
.page-template-page-company .lower__header {
    background: url(../img/company/company_header.webp) center center/cover no-repeat;
}
.page-template-page-company .lower__header .wrapper .header__ttl__box h1::before {
    width: 84%;
    right: -39%;
    bottom: -100%;
    aspect-ratio: 104/43;
    background: url(../img/company/company_before.svg) center center/contain no-repeat;
}
@media (max-width: 500px) {
    .page-template-page-company .lower__header .wrapper .header__ttl__box h1::before {
        right: 0;
    }
}
.page-template-page-company .toc .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
}
.page-template-page-company .toc .inner .btn--sm {
    color: var(--color-blue);
    background: #fff;
}
.page-template-page-company .toc .inner .btn--sm:hover {
    color: #fff;
    background: var(--color-blue);
}
@media (max-width: 600px) {
    .page-template-page-company .toc .inner {
        flex-direction: column;
    }
}
.page-template-page-company .greeting .inner .txt {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-page-company .greeting .inner .txt {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left;
    }
}
.page-template-page-company .overview {
    background: #F8FBFF;
}
.page-template-page-company .overview .inner table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.page-template-page-company .overview .inner table tr {
    border-bottom: 1px solid var(--color-blue);
}
.page-template-page-company .overview .inner table tr th, .page-template-page-company .overview .inner table tr td {
    padding: 30px 0;
    line-height: 1.75;
}
.page-template-page-company .overview .inner table tr th {
    white-space: nowrap;
    padding-right: 60px;
}
@media (max-width: 1280px) {
    .page-template-page-company .overview .inner table tr th {
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .overview .inner table tr th, .page-template-page-company .overview .inner table tr td {
        padding: 20px 0;
    }
    .page-template-page-company .overview .inner table tr th {
        padding-right: 20px;
    }
}
.page-template-page-company .business .inner .box h3 {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    text-align: center;
}
.page-template-page-company .business .inner .box .txt {
    margin: 0 auto;
    max-width: 1000px;
}
.page-template-page-company .business .inner .box .img__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.page-template-page-company .business .inner .box .img__container img {
    width: calc((100% - 60px) / 3);
}
.page-template-page-company .business .inner .box .btn__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-company .business .inner .box h3 {
        font-size: 2.4rem;
    }
    .page-template-page-company .business .inner .box .img__container {
        gap: 20px;
    }
    .page-template-page-company .business .inner .box .img__container img {
        width: calc((100% - 40px) / 3);
    }
    .page-template-page-company .business .inner .box .btn__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .business .inner .box h3 {
        font-size: 2rem;
    }
    .page-template-page-company .business .inner .box .img__container {
        flex-direction: column;
    }
    .page-template-page-company .business .inner .box .img__container img {
        width: 100%;
    }
    .page-template-page-company .business .inner .box .btn__container {
        flex-direction: column;
    }
}

/* ------------------------------------- /
/  採用情報ページ
/* ------------------------------------- */
.page-template-page-recruit .lower__header {
    background: url(../img/recruit/recruit_header.webp) center center/cover no-repeat;
}
.page-template-page-recruit .lower__header .wrapper .header__ttl__box h1::before {
    width: 68%;
    right: -41%;
    bottom: -19%;
    aspect-ratio: 104/43;
    background: url(../img/recruit/recruit_before.svg) center center/contain no-repeat;
}
.page-template-page-recruit .greeting .inner .txt {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
}
.page-template-page-recruit .greeting .inner .img__container {
    display: flex;
    gap: 30px;
}
.page-template-page-recruit .greeting .inner .img__container img {
    width: calc((100% - 60px) / 3);
}
@media (max-width: 1280px) {
    .page-template-page-recruit .greeting .inner .img__container {
        gap: 20px;
    }
    .page-template-page-recruit .greeting .inner .img__container img {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .greeting .inner .txt {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left;
    }
    .page-template-page-recruit .greeting .inner .img__container {
        flex-direction: column;
    }
    .page-template-page-recruit .greeting .inner .img__container img {
        width: 100%;
    }
}
.page-template-page-recruit .feature {
    background: linear-gradient(rgba(188, 214, 255, 0.2509803922), #fff, #fff, #fff);
}
.page-template-page-recruit .feature h3 {
    position: relative;
    z-index: 1;
    color: var(--color-dark-blue);
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
}
.page-template-page-recruit .feature h3.center {
    text-align: center;
}
.page-template-page-recruit .feature .inner .txt {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 1.8rem;
    line-height: 2;
}
.page-template-page-recruit .feature .inner .txt.center {
    text-align: center;
}
.page-template-page-recruit .feature .inner .txt.sm {
    font-size: 1.6rem;
    line-height: 2.25;
}
.page-template-page-recruit .feature .inner .img__container {
    display: flex;
    gap: 30px;
}
.page-template-page-recruit .feature .inner .img__container img {
    width: calc((100% - 60px) / 3);
}
.page-template-page-recruit .feature .inner .profile__container {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 27px;
}
.page-template-page-recruit .feature .inner .profile__container .profile__box {
    width: calc((100% - 81px) / 4);
}
.page-template-page-recruit .feature .inner .profile__container .profile__box .bottom {
    padding: 30px 10px 10px;
}
.page-template-page-recruit .feature .inner .profile__container .profile__box .bottom .name {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.5;
}
.page-template-page-recruit .feature .inner .profile__container .profile__box .bottom .job {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.5;
}
.page-template-page-recruit .feature .wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}
.page-template-page-recruit .feature .wrapper .container {
    width: min(100%, 1366px);
    padding: 0 0 0 min(6.08%, 83px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page-template-page-recruit .feature .wrapper .container .txt {
    width: calc(53.2481363152% - min(6.08%, 83px));
    padding: 0 5% 0 0;
}
.page-template-page-recruit .feature .wrapper .container .txt .ttl__box {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
}
.page-template-page-recruit .feature .wrapper .container .txt .ttl__box .num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    color: #DBE9FF;
    font-size: 9rem;
    font-family: "Brush Script MT", cursive;
    font-style: italic;
    line-height: 1.2;
}
.page-template-page-recruit .feature .wrapper .container .img {
    width: 53.2481363152%;
    padding: 0 0 0 3%;
}
.page-template-page-recruit .feature .wrapper .container:nth-child(odd) {
    flex-direction: row-reverse;
    padding: 0 min(6.08%, 83px) 0 0;
}
.page-template-page-recruit .feature .wrapper .container:nth-child(odd) .txt {
    padding: 0 0 0 5%;
}
.page-template-page-recruit .feature .wrapper .container:nth-child(odd) .img {
    padding: 0 3% 0 0;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .feature h3 {
        font-size: 2.2rem;
    }
    .page-template-page-recruit .feature .inner .img__container {
        gap: 20px;
    }
    .page-template-page-recruit .feature .inner .img__container img {
        width: calc((100% - 40px) / 3);
    }
    .page-template-page-recruit .feature .inner .profile__container {
        gap: 40px 20px;
    }
    .page-template-page-recruit .feature .inner .profile__container .profile__box {
        width: calc((100% - 40px) / 3);
    }
    .page-template-page-recruit .feature .inner .profile__container .profile__box .bottom .name {
        font-size: 2.2rem;
    }
    .page-template-page-recruit .feature .inner .profile__container .profile__box .bottom .job {
        font-size: 1.6rem;
    }
    .page-template-page-recruit .feature .wrapper {
        row-gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .feature h3 {
        font-size: 1.8rem;
    }
    .page-template-page-recruit .feature .inner .txt {
        font-size: 1.6rem;
        line-height: 1.8;
    }
    .page-template-page-recruit .feature .inner .txt.center {
        text-align: left;
    }
    .page-template-page-recruit .feature .inner .txt.sm {
        line-height: 1.8;
    }
    .page-template-page-recruit .feature .inner .img__container {
        flex-direction: column;
    }
    .page-template-page-recruit .feature .inner .img__container img {
        width: 100%;
    }
    .page-template-page-recruit .feature .inner .profile__container {
        gap: 30px 10px;
    }
    .page-template-page-recruit .feature .inner .profile__container .profile__box {
        width: 100%;
    }
    .page-template-page-recruit .feature .inner .profile__container .profile__box .bottom .name {
        font-size: 2rem;
    }
    .page-template-page-recruit .feature .wrapper .container:nth-child(n) {
        flex-direction: column;
        row-gap: 30px;
        padding: 0;
    }
    .page-template-page-recruit .feature .wrapper .container:nth-child(n) .txt, .page-template-page-recruit .feature .wrapper .container:nth-child(n) .img {
        width: 100%;
        padding: 0;
    }
    .page-template-page-recruit .feature .wrapper .container:nth-child(n) .txt {
        padding: 0 4%;
    }
}
.page-template-page-recruit .requirements {
    background: #F8FBFF;
}
.page-template-page-recruit .requirements .inner table {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}
.page-template-page-recruit .requirements .inner table tr {
    border-bottom: 1px solid var(--color-blue);
}
.page-template-page-recruit .requirements .inner table tr th, .page-template-page-recruit .requirements .inner table tr td {
    padding: 30px 0;
    line-height: 1.75;
}
.page-template-page-recruit .requirements .inner table tr th {
    padding-right: 75px;
    white-space: nowrap;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .requirements .inner table tr th {
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .requirements .inner table tr th, .page-template-page-recruit .requirements .inner table tr td {
        padding: 20px 0;
    }
    .page-template-page-recruit .requirements .inner table tr th {
        padding-right: 20px;
    }
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact .lower__header {
    background: url(../img/contact/contact_header.webp) center center/cover no-repeat;
}
.page-template-page-contact .lower__header .wrapper .header__ttl__box h1::before {
    width: 47%;
    right: -24%;
    bottom: -12%;
    aspect-ratio: 104/43;
    background: url(../img/contact/contact_before.svg) center center/contain no-repeat;
}
.page-template-page-contact .form__outer {
    margin: 0 auto;
    max-width: 1023px;
    padding: 0 min(6%, 61px);
}
.page-template-page-contact .form__outer .form {
    margin: 0 auto;
    max-width: 900px;
}
.page-template-page-contact .form__outer .form .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}
.page-template-page-contact .form__outer .form .wrapper .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 236px;
}
.page-template-page-contact .form__outer .form .wrapper .left .required {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 26px;
    border-radius: 2px;
    background: var(--color-blue);
    color: #fff;
    font-size: 1.4rem;
}
.page-template-page-contact .form__outer .form .wrapper .right {
    width: calc(100% - 236px - 50px);
}
.page-template-page-contact .form__outer .form .wrapper .right textarea,
.page-template-page-contact .form__outer .form .wrapper .right input[type=text],
.page-template-page-contact .form__outer .form .wrapper .right input[type=tel],
.page-template-page-contact .form__outer .form .wrapper .right input[type=email] {
    width: 100%;
    border: none;
    font-size: 1.6rem;
    font-family: var(--font-jp);
    background: #F2F4F7;
    font-weight: 500;
    padding: 5px;
}
.page-template-page-contact .form__outer .form .wrapper .right input[type=text],
.page-template-page-contact .form__outer .form .wrapper .right input[type=tel],
.page-template-page-contact .form__outer .form .wrapper .right input[type=email] {
    height: 40px;
}
.page-template-page-contact .form__outer .form input[type=submit].wpcf7-submit,
.page-template-page-contact .form__outer .form input[type=button].wpcf7-previous {
    display: block;
    width: 240px;
    height: 60px;
    border: 1px solid var(--color-blue);
    font-family: var(--font-jp);
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}
.page-template-page-contact .form__outer .form input[type=submit].wpcf7-submit {
    color: #fff;
    background: var(--color-blue);
}
.page-template-page-contact .form__outer .form input[type=submit].wpcf7-submit:hover {
    color: var(--color-blue);
    background: #fff;
}
.page-template-page-contact .form__outer .form input[type=button].wpcf7-previous {
    color: var(--color-blue);
    background: #fff;
}
.page-template-page-contact .form__outer .form input[type=button].wpcf7-previous:hover {
    color: #fff;
    background: var(--color-blue);
}
.page-template-page-contact .form__outer .form .wpcf7-spinner {
    display: none;
}
.page-template-page-contact .form__outer .form p:has(.wpcf7-submit) {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.page-template-page-contact .form__outer .form p:has(.wpcf7-submit) br {
    display: none;
}
@media (max-width: 1280px) {
    .page-template-page-contact .form__outer .form .wrapper {
        gap: 40px;
        margin-bottom: 30px;
    }
    .page-template-page-contact .form__outer .form .wrapper .left {
        width: 200px;
    }
    .page-template-page-contact .form__outer .form .wrapper .right {
        width: calc(100% - 200px - 40px);
    }
    .page-template-page-contact .form__outer .form input[type=submit].wpcf7-submit,
    .page-template-page-contact .form__outer .form input[type=button].wpcf7-previous {
        width: 200px;
        height: 50px;
        font-size: 1.6rem;
    }
    .page-template-page-contact .form__outer .form p:has(.wpcf7-submit) {
        padding-top: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .form__outer .form .wrapper {
        gap: 20px;
        margin-bottom: 20px;
    }
    .page-template-page-contact .form__outer .form .wrapper .right {
        width: calc(100% - 200px - 20px);
    }
    .page-template-page-contact .form__outer .form p:has(.wpcf7-submit) {
        padding-top: 20px;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .page-template-page-contact .form__outer .form .wrapper {
        flex-direction: column;
        row-gap: 5px;
    }
    .page-template-page-contact .form__outer .form .wrapper .left, .page-template-page-contact .form__outer .form .wrapper .right {
        width: 100%;
    }
    .page-template-page-contact .form__outer .form .wrapper .left {
        justify-content: flex-start;
        gap: 20px;
    }
    .page-template-page-contact .form__outer .form p:has(.wpcf7-submit) {
        flex-direction: column-reverse;
    }
}

/* ------------------------------------- /
/  お問い合わせ送信完了ページ
/* ------------------------------------- */
.page-template-page-thanks .lower__header {
    background: url(../img/contact/contact_header.webp) center center/cover no-repeat;
}
.page-template-page-thanks .lower__header .wrapper .header__ttl__box h1::before {
    width: 47%;
    right: -24%;
    bottom: -12%;
    aspect-ratio: 104/43;
    background: url(../img/contact/contact_before.svg) center center/contain no-repeat;
}/*# sourceMappingURL=style.css.map */