@charset "utf-8";

:root {
    --blue: #0027a2;
    --light-blue: #1794e2;
    --yellow: #ffd700;
    --ink: #1b2631;
    --slate: #455a64;
    --charcoal: #2e3142;
    --gray: #f8f8f8;
    --white: #fff;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
p,
img,
a,
button,
header,
footer,
article {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    font-weight: 400;
    line-height: 1.6;
}

html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) {
    html {
        font-size: calc(100vw / 192);
    }
    .is-sp {
        display: none;
    }
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.8;
    letter-spacing: .2rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    background: transparent;
    font: inherit;
}

.font_en {
    /*font-family: "Oswald", "Noto Sans JP", sans-serif;*/
}

body.home {
    --blue: #0027a2;
    --light-blue: #1794e2;
    --yellow: #ffd700;
    --ink: #1b2631;
    --slate: #455a64;
    --charcoal: #2e3142;
    --gray: #f8f8f8;
    --white: #fff;
}

#wrapper {
    position: relative;
    width: 192rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
    padding-top: 80px;
}

#wrapper::before {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 3rem;
    height: 100%;
    background: var(--blue);
    content: "";
    pointer-events: none;
}

/* ==========================================================================
   WordPressログイン時の管理バー(Admin Bar)競合回避
   ========================================================================== */

/* 管理バーが存在する場合、ヘッダーと全体コンテナが管理バー(PC: 32px / SP: 46px)に潜り込まないよう補正 */
.admin-bar #header {
    top: 32px !important;
}
.admin-bar #wrapper {
    padding-top: calc(80px + 32px) !important;
}

@media (max-width: 782px) {
    .admin-bar #header {
        top: 46px !important;
    }
    .admin-bar #wrapper {
        padding-top: calc(80px + 46px) !important;
    }
}

/* header */
#header {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    height: 8.8rem;
    background: transparent;
    transition: background .35s;
}
#header.is_fixed{
    background: #B8C6E1;
}

.header-inner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 3rem);
    height: 100%;
    padding: 0 1rem 0 6.6rem;
    margin-left: 3rem;
    background-color: #fff;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.header-logo img {
    width: 13.7rem;
}

.header-logo span {
    color: var(--charcoal);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .2rem;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 1rem;
}

.header-links a {
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .2rem;
    white-space: nowrap;
}

.header-contact {
    width: 25.4rem;
    color: var(--blue);
    flex: 0 0 auto;
    text-align: center;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    height: 3.8rem;
}

.header-phone img {
    width: 3rem;
    height: 2.9rem;
}

.header-phone span {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .3rem;
    white-space: nowrap;
}

.header-contact p {
    width: 24.5rem;
    margin-top: .5rem;
    padding: 1px 1rem;
    border: 1px solid var(--blue);
    border-radius: 5rem;
    background: #f5f5f5;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: .2rem;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 6.5rem;
    border: 1px solid transparent;
    border-radius: .5rem;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .2rem;
}

.header-btn img {
    width: 2.4rem;
    height: 2.4rem;
}

.header-btn-recruit {
    width: 16rem;
    background: var(--blue);
}

.header-btn-contact {
    width: 17.3rem;
    background: var(--slate);
}

.btn-menu,
#g-navi {
    display: none;
}

/* common parts */
.section-en {
    color: var(--blue);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: .3rem;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    color: var(--blue);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .2rem;
    margin-bottom:15px;
}

.section-heading.has-heading-mark .section-en {
    padding-left: 7.1rem;
}

.heading-mark {
    display: block;
    width: 5.8rem;
    height: 5.3rem;
    background: url("../img/home/icon_heading.svg") center / contain no-repeat;
    flex: 0 0 auto;
}

.heading-motion {
    opacity: 0;
    translate: 0 2.4rem;
}

.heading-motion.isActive {
    opacity: 1;
    translate: 0;
    transition: opacity 1s cubic-bezier(.22, 1, .36, 1),
                translate 1.35s cubic-bezier(.22, 1, .36, 1);
}

.advanced {
    opacity: 0;
    translate: 0 7rem;
}

.advanced.isActive {
    opacity: 1;
    translate: 0;
    transition: opacity 1.15s cubic-bezier(.22, 1, .36, 1),
                translate 1.5s cubic-bezier(.22, 1, .36, 1);
}

.outline-link {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 50rem;
    padding: 1.9rem 4rem;
    border: 1px solid var(--blue);
    background: var(--white);
    color: var(--blue);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .2rem;
}

.outline-link::before {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    width: .7rem;
    border: 1px solid var(--blue);
    background: var(--yellow);
    content: "";
    transition: background .35s ease;
}

.outline-link img,
.dark-link img {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
}

/* main visual */
#main-visual {
    position: relative;
    height: 85.6rem;
    overflow: hidden;
    background: var(--gray);
}

.mv-slider,
.mv-slider .slick-list,
.mv-slider .slick-track {
    height: 100%;
}

.mv-slider:not(.slick-initialized) .mv-slide:not(:first-child) {
    display: none;
}

.mv-slide {
    position: relative;
    height: 85.6rem;
    overflow: hidden;
}

.mv-bg {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.mv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-person {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 119.7rem;
    height: 85.6rem;
    overflow: hidden;
}

.mv-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mv-en {
    position: absolute;
    z-index: 3;
    top: 32.2rem;
    left: 12.5rem;
    color: var(--slate);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .2rem;
    opacity: .5;
    white-space: nowrap;
}

.mv-copy-line {
    position: absolute;
    z-index: 1;
    top: 36rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(69, 90, 100, .5);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
}

.mv-copy h1 {
    position: absolute;
    top: 52rem;
    left: 13.4rem;
    width: 57rem;
    color: var(--charcoal);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
}

.mv-copy-sub,
.mv-copy-main {
    position: absolute;
    left: 11.6rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .5rem;
    mix-blend-mode: difference;
    white-space: nowrap;
}

.mv-copy-sub {
    top: 56.3rem;
    font-size: 6.5rem;
}

.mv-copy-main {
    top: 64.8rem;
    font-size: 10.6rem;
}

.mv-en,
.mv-copy h1,
.mv-copy-sub,
.mv-copy-main {
    opacity: 0;
    clip-path: inset(0% 100% 0% 0%);
}

/* vision */
.vision-block {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 9.6rem 14rem 10.4rem 10.8rem;
    background: var(--gray);
}

.vision-main {
    display: grid;
    flex: 0 0 97.2rem;
}

.vision-deco {
    z-index: 0;
    grid-area: 1 / 1;
    width: 79rem;
    height: 65rem;
    margin: -2rem 0 0 -.8rem;
    overflow: hidden;
    opacity: .65;
}

.vision-deco img {
    width: 100%;
    height: 100%;
}

.vision-text {
    z-index: 2;
    grid-area: 1 / 1;
    padding-top: 2.5rem;
}

.vision-text h2 {
    position: relative;
    margin: 3.2rem 0;
    color: var(--blue);
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .3rem;
    display: block;
}

.vision-text h2::before {
    position: absolute;
    bottom: .8rem;
    left: 0;
    z-index: -1;
    width: 49.3rem;
    height: 1.3rem;
    background: #ffef97;
    content: "";
}
.vision-text .section-heading,
.vision-mark{
    margin-left: 1rem;
}

.vision-mark {
    display: block;
    width: 7rem;
    height: 6rem;
    background: url(../img/home/icon_heading_blue.svg) center / contain no-repeat;
    margin-bottom: 3.2rem;
}

.vision-text > p:not(.section-en) {
    margin-bottom: 3.6rem;
    max-width: 78.6rem;
    color: #455A64;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: .2rem;
}
.vision-text .section-en {
    color: #455A64;
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
}

.vision-photo {
    position: relative;
    z-index: 1;
    flex: 0 0 66rem;
    width: 66rem;
    height: 66rem;
    border-radius: 1rem;
}

.vision-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-photo::after {
    position: absolute;
    z-index: -1;
    width: 34rem;
    height: 41rem;
    right: -3rem;
    bottom: -2.4rem;
    background: url("../img/home/bg_yellow.png") center / contain no-repeat;
    content: "";
}

.vision-photo-label {
    position: absolute;
    top: 1.2rem;
    left: 4.7rem;
    color: var(--white);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    letter-spacing: .2rem;
    display: flex;
    align-items: center;
    grid-gap: .6rem;
}
.vision-photo-label:before{
    width: 1rem;
    height: 1rem;
    content: '';
    background: #FFD700;
}

/* reason */
.reason-block {
    display: flex;
    flex-direction: column;
    padding: 11rem 0 0;
    background: var(--white);
}

.reason-head {
    display: flex;
    position: relative;
    z-index: 3;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 13rem 0 10.9rem;
}

.reason-heading {
    flex: 0 0 auto;
}

.reason-heading h2 {
    margin-top: .8rem;
}

.reason-list {
    display: grid;
    position: relative;
    z-index: 3;
    grid-template-columns: repeat(3, 57rem);
    gap: 0;
    /*width: 171rem;*/
    padding: 0 11rem;
    margin: 6.8rem 0 0;
}
.reason-list:after{
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 88rem;
    background: #F3F5FB;
    clip-path: polygon(0 0, 100% 24%, 100% 100%, 0 76%)
}

.reason-item {
    display: flex;
    flex-direction: column;
    /*background: url("../img/home/bg_item_gray.png")no-repeat bottom center;*/
    /*background-size: 100% 67rem;*/
    position: relative;
    padding-bottom: 16.5rem;
}

.reason-item-middle {
    margin-top: 5.3rem;
    background: #fff;
}

.reason-item-last {
    margin-top: 10.6rem;
}
.reason-item-last .dark-link,
.reason-item-last.reason-item h3{
    margin-top: 5rem;
}

.reason-photo {
    width: 57rem;
    height: 67rem;
}

.reason-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-item__cont{
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-item h3 {
    max-width: 100%;
    min-width: 43rem;
    margin:  3.4rem 0 2rem;
    color: var(--blue);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .2rem;
}

.reason-item  p {
    max-width: 43rem;
    margin: 0 1rem;
    color: var(--charcoal);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.3;
    letter-spacing: .2rem;
}

.dark-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 43rem;
    margin: 3.5rem 1rem 0;
    padding: 1.5rem 4rem;
    border: 1px solid transparent;
    background: var(--charcoal);
    color: var(--white);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .2rem;
}

.reason-sky {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 88rem;
    margin: -22rem 0;
    background: url("../img/home/bg_reason.png") center top / cover no-repeat, linear-gradient(180deg, #5aa2df, #dceeff);
    clip-path: polygon(0 0, 100% 24%, 100% 76%, 0 100%);
}

.reason-more {
    flex: 0 0 auto;
    margin-top: 4.1rem;
}

/* service */
.service-block {
    display: grid;
    padding: 32rem 11.6rem 13.6rem 15.8rem;
    background: url("../img/home/bg_service_deco.svg")no-repeat bottom 5rem left var(--gray);
    background-size: 95.8rem auto;
}

.service-heading {
    z-index: 2;
    grid-area: 1 / 1;
    width: 68rem;
    margin: -8.6rem 0 0 91.1rem;
}

.service-heading .section-heading h2 {
    margin-top: .6rem;
    font-size: 7rem;
}

.service-heading .outline-link {
    margin-top: 2rem;
}

.service-list {
    display: grid;
    z-index: 1;
    grid-area: 1 / 1;
    align-items: flex-start;
    grid-template-columns: repeat(2, 73.8rem);
    column-gap: 12.6rem;
    width: 160.2rem;
}

.service-item {
    width: 73.8rem;
}

.service-item:nth-child(1) {
    grid-area: 1 / 1;
}

.service-item:nth-child(2) {
    grid-area: 1 / 2;
    margin-top: 25.2rem;
}

.service-item:nth-child(3) {
    grid-area: 1 / 1;
    margin-top: 64.8rem;
}

.service-item:nth-child(4) {
    grid-area: 1 / 2;
    margin-top: 102.8rem;
}

.service-list.isActive .service-item {
    opacity: 1;
    translate: 0;
    transition: opacity 1.15s cubic-bezier(.22, 1, .36, 1),
                translate 1.5s cubic-bezier(.22, 1, .36, 1);
}

.service-list.isActive .service-item:nth-child(2) {
    transition-delay: .2s;
}

.service-list.isActive .service-item:nth-child(3) {
    transition-delay: .4s;
}

.service-list.isActive .service-item:nth-child(4) {
    transition-delay: .6s;
}

.service-photo {
    width: 73rem;
    height: 36rem;
    overflow: hidden;
    border-radius: .5rem;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem 8rem 2rem 0;
    border-bottom: 1px solid var(--blue);
}

.service-title span {
    padding-top: .9rem;
    color: var(--blue);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.3;
    letter-spacing: .2rem;
    width:2rem;
}

 h3 {
    color: var(--blue);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .45rem;
}

.service-item > p {
    padding: 1rem 5rem;
    color: var(--charcoal);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.4;
    letter-spacing: .2rem;
}

/* case */
.case-block {
    display: flex;
    align-items: flex-start;
    padding: 14rem 0 14rem 10.7rem;
    overflow: hidden;
    background: var(--white);
}

.case-copy {
    flex: 0 0 66.5rem;
    width: 66.5rem;
    margin-top: 4.7rem;
    margin-right: -7.7rem;
    padding: 3.2rem 6.5rem 5.6rem 0;
    background: #fff;
    border-radius: 1rem;
    position: relative;
    z-index: 3;
}

.case-copy .section-heading {
    display: flex;
    align-items: flex-end;
    gap: 8rem;
}

.case-copy .section-heading h2 {
    font-size: 6.4rem;
    white-space: nowrap;
}

.case-copy .section-heading .section-en {
    white-space: nowrap;
}
.case-copy .heading-mark{
    height: 4.4rem;
}

.case-copy h3 {
    margin: 4rem 0 3rem;
    color: #2E3142;
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: .2rem;
}

.case-copy > p {
    width: 59.8rem;
    color: var(--slate);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.8;
    letter-spacing: .05rem;
}

.case-copy .outline-link {
    width: 41.6rem;
    margin-top: 4rem;
    gap: 2rem;
    height: 8rem;
    background: #F8F8F8;
}

.case-photos {
    /*width: 120rem;*/
}
.case-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.js-image-scroll {
    display: flex;
}
.js-image-scroll ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.js-image-scroll ul:nth-child(odd) {
    animation-name: image-loop-left1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
    animation-name: image-loop-left2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.js-image-scroll.is-vertical,
.js-image-scroll.is-vertical ul {
    flex-direction: row;
}

.js-image-scroll.is-vertical ul:nth-child(odd) {
  animation-name: image-loop-left1;
}

.js-image-scroll.is-vertical ul:nth-child(even) {
  animation-name: image-loop-left2;
}

@keyframes image-loop-left1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes image-loop-left2 {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.about_slider {
  overflow: hidden;
  pointer-events: none;
}
.about_slider ul li {
  width: 37rem;
  height: 67rem;
  font-size: 1px;
  line-height: 1;
  margin-right: 4.3rem;
  border-radius: .5rem;
  overflow: hidden;
}
.about_slider:nth-child(even),
.about_slider:nth-child(even) ul {
  align-items: flex-end;
  top: auto;
  bottom: 50px;
}
.special_slider:nth-child(even) ul {
  margin-top: 1.7rem;
}
.about_slider:nth-child(even),
.about_slider:nth-child(even) img{
    transform: scaleX(-1);
}

/* company */
.company-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    gap: 21.1rem;
    padding: 21.8rem 10rem 14.9rem;
    background: url("../img/home/bg_company.svg")no-repeat left 3rem bottom -21rem #F8F8F8;
    background-size:  82rem auto;
}

.company-block::before {
    content: none;
}

.company-block::after {
    content: none;
}

.company-card {
    display: grid;
    z-index: 1;
    width: 56.6rem;
    position: relative;
}
.company-card:before{
    content: '';
    position: absolute;
    left: 50%;
    top: -50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 1px;
    height: 1000rem;
    background: #B8C6E1;
        opacity: .4;
}
.company-card:after{
    content: '';
    position: absolute;
    left: -1.4rem;
    bottom: -1.4rem;
    width: 19rem;
    height: 19rem;
    background: url(../img/home/bg_card.png)no-repeat left bottom;
    background-size: 100% auto;
    z-index: -1;
}
.company-card-office:after{
    left: auto;
    right: -1.4rem;
}
.company-card-office {
    margin-top: 10rem;
}

.company-card-office.isActive {
    transition-delay: .16s;
}

.company-image {
    grid-area: 1 / 1;
    width: 100%;
    height: 51.3rem;
    overflow: hidden;
    border-radius: 1rem;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-card-text {
    z-index: 1;
    grid-area: 1 / 1;
    align-self: start;
    width: 48rem;
    padding: 4.2rem 3rem 2rem;
    border-radius: 1rem;
    background: var(--white);
    position: absolute;
    z-index: 3;
    left: 16rem;
    top: -8rem;
    text-align: right;
}

.company-card-text > p {
    color: var(--blue);
    font-size: 3.6rem;
    font-weight: 200;
    line-height: 1.4;
    letter-spacing: .3rem;
    position: absolute;
    left: 2.5rem;
    top: 0;
    transform: translateY(-50%);
    text-align: left;
}

.company-card-text h2 {
    padding: .4rem 0 .8rem;
    border-bottom: 1px solid var(--blue);
    color: var(--blue);
    font-size: 4.2rem;
    line-height: 1.3;
    letter-spacing: .2rem;
    text-align: left;
}

.company-card-text a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.6rem;
    padding-top: 1.2rem;
    color: var(--blue);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    letter-spacing: .2rem;
    border-bottom: 1px solid transparent;
}

.company-card-text a img {
    width: 2.4rem;
    height: 2.4rem;
    transition: all .3s ease;
}

/* recruit */
.recruit-block {
    display: flex;
    margin-top: 10rem;
    position: relative;
    align-items: flex-start;
    padding: 8rem 16.7rem 17.8rem 6.8rem;
    overflow: hidden;
    background: url("../img/home/bg_recruit01.png") left 0 bottom 20.4rem / 54rem 34rem no-repeat,
                url("../img/home/bg_recruit02.png") left 66rem top 14rem / 32rem 22rem no-repeat,
                url("../img/home/bg_recruit03.png") left 70.6rem top 21.4rem / 17.1rem 11rem no-repeat,
                url("../img/home/bg_recruit04.png") right top 6rem / 64rem 43rem no-repeat,
                url("../img/home/bg_recruit05.png") left 50% bottom 20.3rem / 23rem 11rem no-repeat,
                url("../img/home/bg_recruit06.png") left 0 top 12.7rem / 6.7rem 7.6rem no-repeat,
                #f9fdff;
}

.recruit-block::before {
    content: none;
}

.recruit-visual {
    display: grid;
    position: relative;
    z-index: 1;
    flex: 0 0 95.8rem;
    grid-template-columns: 22rem 3.4rem 38.4rem 9.6rem 22.4rem;
    grid-template-rows: 6.4rem 21.6rem 6.4rem 7.1rem 18.5rem 3.5rem;
    width: 95.8rem;
}

.recruit-deco {
    z-index: 0;
    grid-area: 1 / 1 / -1 / -1;
    width: 107rem;
    height: 89.4rem;
    margin: -8rem 0 0 -6.8rem;
    transform: rotate(180deg);
}

.recruit-deco img {
    width: 100%;
    height: 100%;
}

.recruit-photo {
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 .4rem 2.4rem rgba(227, 227, 227, .25);
}

.recruit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-photo-large {
    grid-area: 1 / 3 / 6 / 5;
    width: 48rem;
    height: 60rem;
}

.recruit-photo-small {
    grid-area: 2 / 1 / 4 / 2;
    width: 22rem;
    height: 28rem;
}

.recruit-photo-sub {
    grid-area: 6 / 5 / 7 / 6;
    width: 27rem;
    height: 15rem;
    margin: -2.4rem 0 0 2.8rem;
}

.recruit-front {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.recruit-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recruit-front01 {
    top: 10.8rem;
    left: 6.8rem;
    width: 15.3rem;
    height: 7.5rem;
}

.recruit-front02 {
    top: 19.9rem;
    left: 74.2rem;
    width: 14rem;
    height: 8rem;
}

.recruit-front03 {
    top: 11.7rem;
    left: 93.5rem;
    width: 8rem;
    height: 5rem;
}

.recruit-front04 {
    top: 57.8rem;
    left: 55rem;
    width: 30.9rem;
    height: 15.1rem;
}

.recruit-copy {
    position: relative;
    z-index: 2;
    flex: 0 0 83.5rem;
    width: 83.5rem;
    margin: 8.6rem 0 0 -1.3rem;
}

.recruit-copy .section-en {
    position: static;
    margin-bottom: 0;
    color: var(--light-blue);
    flex: 0 0 auto;
    white-space: nowrap;
}

.recruit-heading {
    display: flex;
    align-items: center;
}

.recruit-heading-line {
    height: 1px;
    margin: 0 1rem 0 3rem;
    background: var(--light-blue);
    flex: 1 1 auto;
}

.recruit-copy h2 {
    color: var(--light-blue);
    font-size: 8rem;
    line-height: 1.3;
    letter-spacing: .5rem;
    white-space: nowrap;
}

.recruit-copy h3 {
    margin: 1.7rem 0 3rem;
    color: var(--ink);
    font-size: 3.8rem;
    line-height: 1.5;
    letter-spacing: .11rem;
}

.recruit-copy > p {
    width: 62.2rem;
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    line-height: 1.8;
    letter-spacing: .05rem;
}

.recruit-copy .outline-link {
    width: 40.6rem;
    margin-top: 4rem;
    gap: 2rem;
}

/* social */
.social-block {
    display: grid;
    position: relative;
    height: 94.8rem;
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    background: var(--gray);
    grid-template-columns: 1fr 1fr;
}

.social-column {
    position: relative;
    padding: 0 11rem 8.6rem;
}

.social-column-tiktok {
    border-left: 1px solid var(--blue);
}

.social-heading {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-bottom: 6rem;
}

.social-heading > img {
    width: 8rem;
}

.social-heading h2 {
    color: var(--charcoal);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: .4rem;
}

.social-account {
    margin-left: auto;
}

.social-account p {
    color: var(--blue);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    letter-spacing: .2rem;
}

.social-account a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 23.4rem;
    height: 5rem;
    margin-top: .4rem;
    background: var(--blue);
    color: var(--white);
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 700;
    letter-spacing: .2rem;
}

.social-account a span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
    border-right: .5rem solid #F8F8F8;
}

.social-account a img {
    width: 5.4rem;
    height: 5rem;
    padding: 1.3rem 1.5rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.instagram-mock {
    display: grid;
    width: 59.3rem;
    height: 58rem;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.instagram-mock span {
    background: #a9a9a9;
}

.tiktok-mock {
    width: 59.3rem;
    margin: 0 auto;
}

/* footer */
#footer {
    display: grid;
    position: relative;
    z-index: 22;
    height: 49rem;
    margin-left: 0;
    padding-left: 56.4rem;
    background: var(--blue);
    color: var(--white);
    margin-top: 5rem;
}

#footer::before {
    position: absolute;
    z-index: 1;
    top: 24.2rem;
    right: 0;
    left: 56.4rem;
    height: 1px;
    background: rgba(255, 255, 255, .5);
    content: "";
    pointer-events: none;
}

.footer-brand {
    position: absolute;
    top: 0;
    left: 0;
    width: 56.4rem;
    height: 49rem;
    padding: 13.2rem 0 3.4rem;
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 3rem;
}

.footer-brand img {
    width: 38.4rem;
    max-width: 200px;
}

.footer-brand p {
    margin-top: 1.4rem;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: .2rem;
}

.footer-inner {
    position: relative;
    padding: 6.4rem 7.4rem;
}

.footer-nav {
    display: block;
}

.footer-nav-list {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 1.7rem;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
}

.footer-nav a {
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .2rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.footer-nav a::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: .9rem;
    background: var(--yellow);
    content: "";
    vertical-align: middle;
}

.footer-nav .footer-nav-sub {
    font-weight: 500;
}

.footer-nav .footer-nav-sub::before {
    width: 1rem;
    height: 1px;
    background: var(--white);
}

.footer-nav .is-current {
    display: inline-flex;
    align-items: center;
    padding: .2rem .7rem;
    background: var(--yellow);
    color: var(--charcoal);
}

.footer-nav .is-current::before {
    background: var(--charcoal);
}

.footer-address {
    position: absolute;
    top: 29.2rem;
    left: 7.4rem;
    margin-top: 0;
    font-size: clamp(16px, 15.6px + 0.125vw, 18px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .2rem;
}

.footer-address p:nth-child(2) {
    font-size: 2rem;
}

.footer-links {
    display: grid;
    position: absolute;
    top: 4.8rem;
    right: 11.4rem;
    gap: 2rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    width: 32rem;
    height: 6.5rem;
    padding: 0 1rem;
    border: 1px solid transparent;
    border-radius: .5rem;
    background: var(--white);
    color: var(--blue);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: .2rem;
}

.footer-links a::before {
    width: 4px;
    height: 4px;
    background: currentColor;
    content: "";
    flex: 0 0 auto;
}

.footer-links a::after {
    width: 2.4rem;
    height: 1.2rem;
    background: currentColor;
    clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
    content: "";
    flex: 0 0 auto;
}

.footer-links a:last-child {
    background: #2E3142;
    color: var(--white);
}
.footer-links a:last-child::before{
    background: #FFD700;
}

.footer-social {
    display: flex;
    position: absolute;
    bottom: 4rem;
    left: 7.4rem;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--white);
}

.footer-social img {
    width: 2.7rem;
    height: 2.7rem;
    object-fit: contain;
}

#copyright {
    position: absolute;
    text-align: center;
    bottom: 3.4rem;
    left: 0;
    right: 0;
    color: var(--slate);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.footer-banner {
    position: absolute;
    right: 11.4rem;
    bottom: 7rem;
    width: 32rem;
}

.page-top {
    display: flex;
    position: fixed;
    z-index: 5;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: center;
    color: var(--yellow);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}
.page-top.is_fixed {
    pointer-events: auto;
    opacity: 1;
}

.page-top img {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: .2rem;
    transform: rotate(-90deg);
}

.h2_24{
    font-size: 4.5rem!important;
}

.h2_deco {
    width: max-content;
    align-items: center;
    gap: 1.3rem;
    color: var(--blue);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .2rem;
    margin: auto;
    margin-bottom: 15px;
    border-bottom: solid 4px #ffd700;
}

.h3_deco {
    align-items: center;
    gap: 1.3rem;
    color: var(--blue);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .2rem;
    margin: auto;
    margin-bottom: 15px;
    border-bottom: solid 4px #ffd700;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  height: 630px; /* 表示させたい実際の高さ */
}

.map-wrapper iframe {
  position: absolute;
  top: -70px;    /* 上部の黒/白ヘッダー（約40〜50px）を上に押し出して隠す */
  left: -2px;
  width: 100%;
  height: 700px; /* (元の高さ480px + 押し出した50px) */
}

/* PC hover */
@media screen and (min-width: 960px) {
    a {
        transition: opacity .35s ease,
                    border-color .35s ease,
                    background-color .35s ease,
                    color .35s ease;
    }

    a:hover {
        opacity: .5;
    }

    .outline-link:hover {
        background: var(--yellow);
        color: var(--blue);
        opacity: 1;
    }

    .outline-link:hover::before {
        border-color: var(--blue);
        background: var(--blue);
    }

    .dark-link:hover {
        border-color: var(--charcoal);
        background: var(--white);
        color: var(--charcoal);
        opacity: 1;
    }

    .dark-link:hover img {
        content: url("../img/home/icon_arrow04.svg");
        background: var(--charcoal);
    }

    .header-btn-recruit:hover {
        background: var(--yellow);
        color: var(--blue);
        opacity: 1;
    }

    .header-btn-recruit:hover img {
        content: url("../img/home/icon_arrow03.svg");
    }

    .header-btn-contact:hover {
        border-color: var(--charcoal);
        background: var(--white);
        color: var(--charcoal);
        opacity: 1;
    }

    .header-btn-contact:hover img {
        content: url("../img/home/icon_arrow04.svg");
        background: var(--charcoal);
    }

    .company-card-text a:hover {
        opacity: 1;
        border-bottom: 1px solid #0027A2;
    }

    .company-card-text a:hover img {
        content: url("../img/home/icon_arrow03.svg");
    }

    .social-account a:hover {
        background: var(--yellow);
        color: var(--blue);
        opacity: 1;
    }

    .social-account a:hover img {
        filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(3662%) hue-rotate(229deg) brightness(78%) contrast(123%);
    }

    .footer-nav a {
        padding: .2rem .7rem;
    }

    .footer-nav a:hover {
        background: var(--yellow);
        color: var(--charcoal);
        opacity: 1;
    }

    .footer-nav a:not(.is-current):hover::before {
        background: var(--charcoal);
    }

    .footer-links a:first-child:hover {
        border-color: var(--yellow);
        background: var(--yellow);
        color: var(--blue);
        opacity: 1;
    }

    .footer-links a:last-child:hover {
        border-color: var(--charcoal);
        background: var(--white);
        color: var(--charcoal);
        opacity: 1;
    }
    .footer-links a:last-child:hover:before{
        background: currentColor;
    }

    .footer-social a:hover,
    .footer-banner:hover,
    .page-top:hover {
        opacity: .5;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .heading-motion,
    .advanced,
    .mv-copy-line,
    .mv-en,
    .mv-copy h1,
    .mv-copy-sub,
    .mv-copy-main {
        opacity: 1;
        clip-path: none;
        translate: none;
        transform: none;
        transition: none;
    }
}

/* マップ全体を囲むコンテナ */
.map-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
}

.pc_none{
    display: none;
}

.sp_none{
    display: block;
}

.h_box{
    width: 48%;
}

.client_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* marginの代わりにgapで余白を一括管理 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.client_list li {
  width: calc(25% - 9px); /* gapを考慮した正確な4列計算 */
  box-sizing: border-box;
  background-color: #f8f9fa; /* 薄いグレーの背景 */
  border: 1px solid #e9ecef;   /* 薄い枠線 */
  border-radius: 6px;         /* 角丸 */
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  
  /* 高さの統一と上下中央揃え */
  display: flex;
  align-items: center;
}

/* スマホ表示対応（2列） */
@media (max-width: 768px) {
  .client_list li {
    width: calc(50% - 6px);
  }
}

.history tr td {
    padding:15px 20px;
}

/* 上にかぶせる画像の設定 */
.overlay-image {
  position: absolute;
  top: 20px;         /* 上からの位置 */
  right: 20px;        /* 左からの位置（右下に置く場合は right: 20px; bottom: 20px; など） */
  width: 240px;      /* 画像の幅 */
  height: auto;
  z-index: 10;        /* 地図より前面に表示 */
  pointer-events: none; /* 画像の下にある地図を操作可能にする設定 */
}

@media screen and (max-width: 750px) {
    .overlay-image {
  position: absolute;
  top: 10px;         /* 上からの位置 */
  right: auto;        /* 左からの位置（右下に置く場合は right: 20px; bottom: 20px; など） */
  width: 100%;      /* 画像の幅 */
  height: auto;
  z-index: 10;        /* 地図より前面に表示 */
  pointer-events: none; /* 画像の下にある地図を操作可能にする設定 */
  max-width: 335px;
  left: 50%;
  transform: translateX(-50%);
}

.h2_deco {
    font-size: 3.5rem;
}

.pc_none{
    display: block;
}

.sp_none{
    display: none;
}

.h_box{
    width: 100%;
    margin-bottom: 60px;
}

}

p.txt404{
	padding-top: 30px;
}

.news-list {
    margin-bottom: 30px;
}


.news-list li {
	display: flex;
	align-items: center;
	gap: 0 3rem;
	padding: 3rem 2.4rem;
	border-bottom: 1px solid #373737;
}
.news-list .dt {
	display: flex;
	align-items: center;
	gap: 0 1rem;
	color: #9A9A9A;
}
.news-list .date {
	/*width: 6.8rem;*/
	font-size: 2rem;
}
.news-list .cate {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0;
	width: 14rem;
	border: 1px solid;
	border-radius: 2rem;
	text-align: center;
	font-size: 1.8rem;
}

.contact-section {
	padding: 10rem 2rem;
	background-size: cover;
	border-radius: 1rem;
	text-align: center;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	.news-list .dd a:hover {
		text-decoration: underline;
	}
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	gap: 0 0.8rem;
	margin: 8rem auto 0;
	font-weight: 500;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border: 1px solid #8B8583;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink {
	display: none;
}
.wp-pagenavi .current {
	border-color: #0027a2 !important;
	color: #0027a2;
}
.wp-pagenavi .nextpostslink {
	margin-left: 2.4rem;
	font-size: 0;
}

.news-head {
    width: 100%;
    max-width: 114rem;
    margin: 0 auto 5rem;
    padding: 0 7rem;
}
.news-head .news-cate {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}
.news-cate__item {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    border: .1rem solid #000;
    border-radius: 2rem;
    padding: .8rem 2rem;
}

.news-head .news-title {
	display: block;
	width: 100%;
    font-size: 3.6rem;
    line-height: 1.778;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.news-head .news-date {
    font-size: 1.6rem;
    letter-spacing: .1em;
    line-height: 1.5;
}

.news-body {
	background: #fff;
    padding: 8rem 7rem;
    line-height: 2.5;
    color: #333;
    width: 100%;
    max-width: 114rem;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.news-body h2 {
	font-size: 2.8rem;
	font-weight: bold;
	border-bottom: 3px solid #D95A33;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.news-body h3 {
	font-size: 2.4rem;
	border-left: 8px solid #D95A33;
	padding: 0 2rem;
	margin-bottom: 2rem;
}

.news-body p {
	font-size: 2rem;
	margin-bottom: 4rem;
}

.found_txt {
	text-align: center;
	font-size: 1.6rem;
	line-height: 2.4;
	margin-bottom: 3rem;
}

.pageTurn{
	text-align: center;
	padding-top: 30px;
}

.pageTurn a{
	margin: auto;
}
