:root {
    /* ブランドカラー */
    --color-primary: #2b3567;
    --color-secondary: #222534;
    --color-accent: #9bc0d2;

    /* テキストカラー */
    --text-primary: #222534;
    --text-secondary: #929292;
    --text-accent: #2b3567;

    /* 境界・背景カラー */
    --border-color: #F3F3F3;
    --bg-grey: #a2a2a2;
    --bg-lightblue: #dde9f0;
    --bg-color: #2b3567;
    --bg-offwhite: #f6f8f7;

    /* フォントファミリー */
    --font-primary: "Zen Kaku Gothic New", sans-serif;
    --font-secondary: "Cormorant", sans-serif;

    /* フォントサイズ */
    --font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);
    --font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
    --font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 1.8rem);
    --font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2.2rem);
    --font-size-main: clamp(2.2rem, 3vw + 0.8rem, 3rem);
    --font-size-heading: clamp(3rem, 3vw + 0.8rem, 4rem);


    /* 行間 */
    --line-height-base: 1.8;
    --line-height-heading: 2;
    --line-height-caption: 1.4;

    /* 装飾 */
    --shadow-primary: 0 0 20px rgba(21, 40, 60, 0.1);
    --shadow-light: drop-shadow(0 0 1px #fff);

    /* 文字間 */
    --letter-spacing-heading: .2em;

    /* ヘッダーの高さ */
    --header-h: 85px;
}

@media (max-width: 840px) {
    :root {
        --header-h: 55px;
    }
}

/* Body
========================================== */
html, body {
    width: 100%;
    font-size: 62.5%;
    overflow-x: clip;
}

body {
    line-height: var(--line-height-base);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
}

@media screen and (max-width: 599px) {
    body {
        word-wrap: break-word;
    }
}

/*pc*/
@media screen and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}

@media screen and (min-width: 599px) {
    .sp2 {
        display: none !important;
    }
}

/*tablet以下*/
@media screen and (min-width:880px) {
    .mobile {
        display: none !important;
    }
}

/*sp*/
@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

/*tabletの時のみ*/
@media (min-width: 845px), (max-width: 599px) {
    .tablet {
        display: none !important;
    }
}



/* header
========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform .25s, opacity .25s;
}

header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.headerArea {
    background-color: transparent;
    transition: background-color 0.8s linear,
        box-shadow 0.8s linear;
}

header.is-scrolled .headerArea {
    background-color: color-mix(in srgb, var(--bg-color), transparent 5%);
}

.headerArea .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    height: 85px;
    color: #fff;
    padding: 0 1em 0 0;
}

.headerLogo a {
    display: block;
    text-decoration: none;
    color: var(--txt-color);
}

.headerLogo img {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
}

body.is-home .headerLogo img {
    filter:
        drop-shadow(0 2px 3px rgba(0, 0, 0, .42)) drop-shadow(0 8px 18px rgba(0, 0, 0, .60));
}

body.is-home .headerLogo a {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .38),
        0 8px 18px rgba(0, 0, 0, .55);
}

body.is-home header.is-scrolled .headerLogo img {
    filter:
        drop-shadow(0 2px 2px rgba(120, 120, 120, .45)) drop-shadow(0 6px 14px rgba(120, 120, 120, .35));
}

body.is-home header.is-scrolled .headerLogo a {
    text-shadow:
        0 2px 2px rgba(120, 120, 120, .45),
        0 6px 14px rgba(120, 120, 120, .35);
}


body.is-sub .headerLogo img {
    filter:
        drop-shadow(0 2px 2px rgba(235, 235, 235, .40)) drop-shadow(0 6px 14px rgba(235, 235, 235, .28));
}

body.is-sub .headerLogo a {
    text-shadow:
        0 2px 2px rgba(235, 235, 235, .40),
        0 6px 14px rgba(235, 235, 235, .28);
}

body.is-sub .headerLogo a:hover {
    opacity: .8;
}


.headerLogo .companyName {
    display: block;
    font-size: var(--font-size-caption);
    text-align: center;
}


.gnavWrap {
    display: flex;
    align-items: center;
}

.gnav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.gnav ul li {
    text-align: center;
}

.gnav ul li+li {
    margin-left: 2em;
}

.gnav ul li a {
    line-height: 1.5;
    display: block;
    transition: 0.3s;
}

.gnav ul li a:hover {
    opacity: .8;
}

.gnav ul li a .en {
    font-size: var(--font-size-subheading);
    font-weight: 600;
}

.gnav ul li a .ja {
    font-size: var(--font-size-caption);
}

body.is-home .gnav ul li a {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .18),
        0 8px 18px rgba(0, 0, 0, .35);
}

body.is-home header.is-scrolled .gnav ul li a {
    text-shadow:
        0 2px 2px rgba(120, 120, 120, .45),
        0 6px 14px rgba(120, 120, 120, .35);
}

body.is-sub .gnav ul li a {
    text-shadow:
        0 2px 2px rgba(235, 235, 235, .40),
        0 6px 14px rgba(235, 235, 235, .28);
}

.spMenuWrap {
    display: none;
}

.spBtn, .spMenu, .overlay {
    opacity: 0;
    pointer-events: none;
}


@media (max-width: 1200px) {
    .headerLogo {
        padding-left: 30px;
    }
}

@media (max-width: 840px) {
    .gnavWrap {
        display: none;
    }

    .headerArea {
        position: absolute;
        background: none;
        z-index: 10;
        width: 100%;
        height: 60px;
    }

    .headerArea .inner {
        padding: 0 10px;
        height: 55px;
    }

    .headerLogo {
        padding-left: 20px;
    }

    .headerLogo a {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .headerLogo .logoImage {
        width: 100px;
        flex: 0 0 100px;
        display: flex;
        align-items: center;
    }

    .headerLogo .logoImage img {
        max-width: 100%;
        height: auto;
        margin-right: 0;
        display: block;
    }

    .headerLogo .companyName {
        margin-left: 10px;
    }

    .spMenuWrap {
        display: block;
    }

    .spBtn {
        opacity: 1;
        pointer-events: auto;
        position: fixed;
        top: 5px;
        right: 5px;
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 20px 13px 15px;
        border-radius: 3px;
        background-color: #fff;
        cursor: pointer;
        z-index: 2000;
    }

    .spBtn div {
        position: relative;
    }

    .spBtn span {
        display: block;
        position: absolute;
        /* height: 2px; */
        width: 100%;
        /* background: var(--color-primary); */
        height: 0;
        left: 0;
        border-top: 2px solid var(--color-primary);
        transition: .3s ease;
    }

    .spBtn span:nth-child(1) {
        top: 0;
    }

    .spBtn span:nth-child(2) {
        top: 8px;
    }

    .spBtn span:nth-child(3) {
        top: 16px;
    }

    .spBtn::after {
        position: absolute;
        left: 0;
        top: 3px;
        content: "MENU";
        text-align: center;
        width: 50px;
        font-size: 8px;
        font-weight: 600;
        color: var(--color-primary);
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(2, 42, 94, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .spMenu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        transition: transform 0.3s ease;
        padding: 80px 2em 0;
    }

    .spMenu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .spBtn.active span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .spBtn.active span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .spBtn.active span:nth-child(3) {
        top: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .spBtn.active::after {
        content: "CLOSE";
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .spMenu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .spNavi {
        margin-bottom: 3em;
        border-top: 1px solid #aaa;
    }

    .spNavi li {
        border-bottom: 1px solid #aaa;
    }

    .spNavi li a {
        display: block;
        padding: 1em 1em;
        font-optical-sizing: auto;
        font-size: 1.5rem;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
    }

    .spInfo {
        margin-bottom: 30px;
        text-align: center;
        color: #fff;
        font-size: 1.4rem;
    }

    .spInfo .spLogo a.spLogoLink {
        margin-bottom: 20px;
        filter: var(--shadow-light);
        display: block;
    }
}

@media (max-width: 599px) {
    .headerLogo {
        padding-left: 10px;
    }
}

@media (max-width: 390px) {
    .headerLogo {
        padding-left: 5px;
    }

    .headerLogo .logoImage {
        width: 70px;
        flex: 0 0 70px;
    }

    .headerLogo .companyName {
        margin-left: 5px;
    }
}

/* contents
========================================== */
.contents {
    margin: 0 auto;
    width: 100%;
}

.contents p+p {
    margin-top: 1.3em;
}

.contentsInner {
    margin: 0 auto;
    padding: 60px 0 60px;
    width: 1200px;
}

@media screen and (max-width:1200px) {
    .contentsInner {
        width: 100%;
        padding: 30px 30px 60px;
    }
}

@media screen and (max-width:599px) {
    .contentsInner {
        padding: 50px 20px;
    }
}


/* トップ：共通
========================================== */
.topArea {
    position: relative;
    overflow: hidden;
    /* padding: 80px 0; */
}

.topArea .contentsInner {
    position: relative;
    z-index: 1;
}

.flexBox {
    gap: 4em;
}

.flexBox.reverse {
    flex-direction: row-reverse;
}

.textBlock {
    width: 55%;
}

.imageBlock {
    padding-top: 1em;
}

.topTitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.topTitle::before {
    position: absolute;
    margin-right: 10px;
    content: url(./images/icn_ttl_deco_blue.svg);
    width: 30px;
    height: 30px;
    top: 5px;
    left: -50px;
}

.topTitle::after {
    position: absolute;
    margin-left: 10px;
    content: url(./images/icn_ttl_deco_blue.svg);
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
    top: 5px;
    right: -50px;
}


.topArea .number {
    font-size: var(--font-size-heading);
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: .1em;
}

.topArea h3 {
    font-size: var(--font-size-subheading);
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 1em;
}

.topBtnArea {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-items: stretch;
    gap: 1em;
    margin: 1em auto;
}

.topBtnArea *+.btnMore {
    margin-top: 0;
}

.topBtnArea .btnMore {
    flex: 1;
    max-width: 350px;
    /* margin-left: 0;
    margin-right: 0; */
    display: flex;
}

.topBtnArea .btnMore a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #fff;
    padding: 1em 3.5rem;
    color: #fff;
    transition: all 0.5s ease;
}

.topBtnArea .btnMore a:hover {
    background: #fff;
    color: var(--color-primary);
}

.topBtnArea .btnMore a::after {
    content: none;
}

@media screen and (max-width:1320px) {

    .topTitle::before {
        left: -10px;
    }

    .ttlMain .topTitle .en {
        padding-left: 1em;
    }
}

@media screen and (max-width:870px) {
    .flexBox {
        gap: 1em;
    }

    .flexBox,
    .flexBox.reverse {
        flex-direction: column;
    }

    .flexBox.topService {
        margin: 5em 1em;
    }

    .textBlock {
        width: 100%;
        order: 2;
    }

    .imageBlock {
        width: 100%;
        order: 0;
    }

    .topArea .btnMore {
        margin: 2em auto;
    }

    .topArea::before {
        top: 26%;
        width: 150%;
    }


    .topArea::after {
        bottom: 25%;
        width: 150%;
    }

    .topArea h3 {
        text-align: center;
    }

    h2.ttlMain {
        text-align: center;
    }

    .ttlMain .topTitle .en {
        padding-left: 0;
    }

    .topTitle::before {
        top: 0;
        left: -50px;
    }

    .topTitle::after {
        top: 0;
    }

}

/* ローディング
========================================== */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 2.0s ease, visibility 2.0s ease;
    visibility: visible;
    opacity: 1;
}

.loading-content {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    overflow: hidden;
}

.loading-img {
    display: block;
    width: 300px;
    clip-path: inset(0 100% 0 0);
    animation: wipeIn 2.0s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
    fadeOutLast 0.5s ease-out 2.0s forwards;
}

.loading-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    animation: lineGrowLeftToRight 2.0s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards;
    fadeOutLast 0.5s ease-out 2.0s forwards;
}

@keyframes fadeOutLast {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


@keyframes wipeIn {
    from {
        clip-path: inset(0 100% 0 0);
        /* 上, 右, 下, 左 の順：右辺だけ100%カット */
    }

    to {
        clip-path: inset(0 0 0 0);
        /* カットなし（全表示） */
    }
}

/* 線の伸長（左から右） */
@keyframes lineGrowLeftToRight {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* 読み込み完了後 */
#loading.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* 下のコンテンツを触れるようにする */
    transition: opacity 1.0s ease, visibility 1.0s ease;
}

.no-loading #loading {
    display: none !important;
}

/* トップMV
========================================== */
.mvArea {
    overflow: hidden;
    position: relative;
}

.mvArea img {
    width: 100%;
}

.mvText {
    max-width: 1200px;
    position: absolute;
    top: calc(var(--header-h) + 130px);
    right: 15%;
    margin: 0 auto;
}

.mvText h1 {
    letter-spacing: 3px;
    color: #fff;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .18),
        0 8px 18px rgba(0, 0, 0, .35);
}

.mvText h1 p {
    font-size: clamp(2.8rem, 2.8rem + 1.4vw, 15rem);
    /* margin-top: 0; */
    line-height: var(--line-height-caption);
    font-weight: 700;
    margin: .3em 0;
}

@media screen and (max-width:1200px) {
    .mvText {
        top: calc(var(--header-h) + 30px);
    }
}

@media screen and (max-width:780px) {
    .mvText {
        top: calc(var(--header-h));
    }
}

@media screen and (max-width:599px) {
    .mvText h1 p {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:380px) {
    .mvText h1 p {
        font-size: 1.8rem;
    }
}


/* トップ：MISSION
========================================== */
.topArea.mission {
    background: url(./images/mission_bg.jpg);
    background-repeat: no-repeat;
    background-position: right 20px bottom 10%;
}

.imageBlock.mission {
    width: calc(50% + (100vw - 1200px) / 2);
    margin-right: calc((100vw - 1200px) / -2);
}

.imageBlock.mission img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (max-width:1200px) {
    .imageBlock.mission {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width:870px) {
    .imageBlock.mission {
        display: none;
    }

    .topArea.mission {
        background-size: 120% auto;
    }
}

@media screen and (max-width:599px) {
    .topArea.mission {
        background-size: 250% auto;
        background-position: right 0px top 40%;
    }
}


/* トップ：SOLUTION
========================================== */
.topArea.solution {
    background: var(--bg-offwhite);
}

.topArea.solution .flexBox {
    gap: 0;
    margin: 3em 0;
}

.topArea.solution .flexBox .titleBlock {
    width: 40%;
}

.topArea.solution .flexBox .textBlock {
    width: 60%;
}

.topArea.solution .flexBox .solutionBox {
    color: #fff;
}

.solutionBox .number {
    font-size: var(--font-size-main);
    font-weight: 400;
}

.solutionBox.one,
.solutionBox.two,
.solutionBox.three {
    position: relative;
}

.solutionBox.one .number,
.solutionBox.two .number,
.solutionBox.three .number {
    position: absolute;
    top: 0;
    left: 10px;
    color: #fff;
}

.solutionBox.one .field,
.solutionBox.two .field,
.solutionBox.three .field {
    position: absolute;
    top: 15%;
    left: 100px;
}

.solutionBox.one .field::before,
.solutionBox.two .field::before,
.solutionBox.three .field::before {
    content: "";
    background: #fff;
    position: absolute;
    top: 45%;
    left: -100px;
    width: 80px;
    height: 1px;
}


.solutionBox.one .vertical,
.solutionBox.two .vertical,
.solutionBox.three .vertical {
    position: absolute;
    top: 30%;
    left: 10px;
    letter-spacing: .12em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: var(--font-size-body);
    line-height: 1;
    white-space: nowrap;
    text-align: start;
}

.solutionBox.one p,
.solutionBox.two p,
.solutionBox.three p {
    position: absolute;
    top: 28%;
    left: 55px;
    padding-right: 1em;
}


.solutionBox.one .topBtnArea,
.solutionBox.two .topBtnArea,
.solutionBox.three .topBtnArea {
    position: absolute;
    bottom: 20px;
    left: 55px;

}

.serviceContainer.js-scrollable {
    overflow: visible;
}

@media screen and (max-width:1200px) {
    .topArea.solution .flexBox {
        gap: .5em;
    }
}

@media screen and (min-width: 871px) {
    .serviceContainer.js-scrollable {
        overflow: visible;
        /* PCではスクロールさせない */
    }

    .serviceContainer .flexBox {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width:870px) {
    .topArea.solution .serviceContainer .flexBox {
        flex-direction: row;
        gap: .5em;
    }

    .topArea.solution .flexBox .titleBlock,
    .topArea.solution .flexBox .textBlock {
        width: 100%;
    }

    .serviceContainer.js-scrollable {
        display: block;
        overflow-x: auto;
        /* ここで初めてスクロールをONにする */
        padding-bottom: 20px;
    }

    .serviceContainer .flexBox {
        width: max-content;
        /* はみ出させる */
    }

    /* スクロールバーのデザイン */
    .serviceContainer.js-scrollable::-webkit-scrollbar {
        display: block;
        width: 8px;
        height: 8px;
    }

    .serviceContainer.js-scrollable::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
        border-radius: 10px;
    }

    .serviceContainer.js-scrollable::-webkit-scrollbar-thumb {
        background: var(--color-secondary) !important;
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }

    .serviceContainer.js-scrollable::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}


/* トップ：公開技術情報
========================================== */
.topArea.skills .contentsInner {
    padding: 0;
}

.topArea.skills .flexBox .textBlock {
    padding: 6em 0 0;
}

.topArea.skills .flexBox p {
    margin-bottom: 5em;
}

.topArea.skills .textBlock.skillsBox {
    background: var(--color-secondary);
    color: #fff;
    padding: 5em 5em 2em;
}

.topArea.skills .textBlock.skillsBox div {
    border-bottom: 1px solid #fff;
    padding: 2em 0;
}

.topArea.skills .textBlock.skillsBox div:nth-of-type(1) {
    border-top: 1px solid #fff;
}

.topArea.skills .textBlock.skillsBox p {
    margin: 0 0 0 1em;
    position: relative;
}

.topArea.skills .textBlock.skillsBox p::after {
    position: absolute;
    content: "";
    background: url(./images/icn_arrow_white.svg)no-repeat center / contain;
    width: 15px;
    height: 15px;
    top: 30%;
    right: 20px;
    transition: all 0.5s;
}

.topArea.skills .textBlock.skillsBox p:hover::after {
    right: 10px;
}

.topArea.skills .textBlock.skillsBox .listMore {
    margin: 2em 0;
    text-align: right;
    padding-right: 3em;
}

@media screen and (max-width: 1200px) {
    .topArea.skills .contentsInner {
        width: 100%;
        padding: 30px 30px 0;
    }
}

@media screen and (max-width: 590px) {
    .topArea.skills .contentsInner {
        padding: 0;
    }

    .topArea.skills .flexBox .textBlock {
        padding: 6em 2em 0;
    }

    .topArea.skills .flexBox p {
        margin-bottom: 3em;
    }

    .topArea.skills .textBlock.skillsBox {
        padding: 5em 3em 2em;
    }
}

/* トップ：採用情報
========================================== */
.topArea.recruit {
    background: url(./images/recruitment_bg.jpg);
    color: #fff;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.topArea.recruit h3 {
    color: #fff;
}

.topArea.recruit p {
    margin-bottom: 3em;
}

.topArea.recruit .textBlock {
    width: 50%;
}

.topArea.recruit .ttlMain .en {
    color: #fff;
}

.topArea.recruit .topTitle::before {
    content: url(./images/icn_ttl_deco_white.svg);
}

.topArea.recruit .topTitle::after {
    content: url(./images/icn_ttl_deco_white.svg);
}


@media screen and (max-width:1250px) {
    .topArea.recruit {
        background-color: var(--bg-color);
    }

    .pcArea {
        display: none;
    }

    .spArea {
        margin-top: 15vw;
    }
}

@media screen and (min-width:1250px) {
    .spArea {
        display: none;
    }
}

@media screen and (max-width:1100px) {
    .spArea {
        margin-top: 10vw;
    }
}

@media screen and (max-width:985px) {


    .topArea.recruit .textBlock {
        width: 100%;
    }

    .topBtnArea .btnMore a {
        padding: 1em 2em;
    }

    .topArea.recruit .btnMore {
        margin: .5em auto;
    }

    .spArea {
        margin-top: 10vw;
    }
}

@media screen and (max-width:870px) {
    .topArea.recruit h2.ttlMain {
        text-align: left;
    }

    .topArea.recruit .ttlMain .topTitle {
        margin-left: 1.5em;
    }

    .topArea.topArea.recruit h3 {
        text-align: left;
    }
}

@media screen and (max-width:599px) {
    .spArea {
        margin-top: 5vw;
    }

    .spArea .topBtnArea .btnMore a {
        padding: 1em;
        font-size: 1.3rem;
    }
}


/* トップ：会社案内
========================================== */
.companyList li {
    display: flex;
    margin: 1em 0;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--border-color);
}

.cListName {
    width: 22%;
    margin-left: 1em;
    color: var(--text-secondary);
    font-weight: 600;
}

.cListItem {
    width: 78%;
}

.topArea.company .accessBox {
    margin: 2em 0;
}

.accessBox .itemTitle {
    margin: .5em 0;
    display: inline-block;
    padding: .5em;
    background-color: var(--bg-color);
    color: #fff;
    font-weight: 500;
    letter-spacing: .3rem;
}

.accessBox .txtColor {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 1200px) and (min-width: 960px) {}

@media (max-width: 870px) {
    .topArea.company .contentsInner .flexBox {
        padding: 0 1em;
    }

    iframe {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .companyList li {
        flex-direction: column;
    }

    .cListName {
        width: 100%;
    }

    .cListItem {
        width: 90%;
        margin-left: 2em;
    }

}


/* トップ：新着情報
========================================== */
.topArea.news {
    background: #f6f8f7;
}

.topArea.news .flexBox {
    background-color: #fff;
    margin: 0 auto;
}

.topArea.news .textBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.topArea.news .ttlMain {
    margin-top: 3em;
}

.topArea.news .topNewsBlock {
    width: 70%;
}

.topArea .newsList {
    margin: 4em 3em 2em 1em;
}

.newsList dl {
    display: flex;
    align-items: center;
    padding: 1.2em 2em;
    border-bottom: 1px solid var(--border-color);
}

.newsList dt {
    width: 20em;
    display: flex;
    align-items: center;
}

.newsList dt .date {
    width: 8em;
}

.newsList dt .category {
    width: 8em;
}

.newsList dt .category span {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: 1.4rem;
    background-color: var(--color-primary);
}

.newsList dd {
    position: relative;
    width: calc(100% - 16em);
}

.newsList .new dd::before {
    content: 'NEW';
    margin-right: 1em;
    padding: 0 1em;
    font-size: 1.4rem;
    font-family: var(--font-secondary);
    background-color: var(--color-accent);
    color: #fff;
}

.newsList dd a:hover {
    text-decoration: underline;
}

.newsListLink {
    text-align: right;
    margin: 0 5em 2em 0;
    position: relative;
}

.newsListLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: url(./images/icn_arrow_blue.svg) no-repeat center / contain;
    width: 13px;
    height: 13px;
    transition: right 0.5s;
}

.newsListLink:hover::after {
    right: -30px;
}


@media (max-width: 870px) {
    .topArea.news .topNewsBlock {
        width: 100%;
    }

    .topArea.news .textBlock {
        order: 0;
        width: 100%;
    }

    .topArea.news .ttlMain {
        margin-bottom: 1em;
    }


    .topArea .newsList {
        margin: 1em 3em 2em 1em;
    }

    .newsList dl {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsList dt {
        margin-bottom: .5em;
    }

    .newsList dt .date {
        width: 5em;
    }

    .newsList dd {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .topArea .newsList {
        margin: 1em 1em 2em 1em;
    }

    .topArea .newsList dl {
        padding: 1.2em 0;
    }

    .topArea .newsListLink {
        margin: 0 2.5em 2em 0;
    }
}

/* footer
========================================== */
footer {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 300;
}

.footerWrap {
    margin: 0 auto;
    padding: 60px 30px;
    max-width: 1200px;
    gap: 2em;
}

.footerInfo {
    text-align: center;
    margin-bottom: 3em;
}

.footerInfo .footerLogo {
    margin: 0 auto;
}

.footerInfo .footerLogo a {
    text-shadow: 0 2px 3px rgba(0, 0, 0, .38), 0 8px 18px rgba(0, 0, 0, .55);
    display: block;
}

.footerLogo img {
    width: 20%;
    height: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .38)) drop-shadow(0 8px 18px rgba(0, 0, 0, .55));
}

.logoText {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-top: 1em;
}

.footerAddress {
    margin: 2em 0;
}

.footerTel,
.footerFax {
    margin: 1em 0;
}

.footerTel a,
.footerFax span {
    font-size: var(--font-size-accent);
    position: relative;
    padding-left: 2em;
}

.footerTel a::before,
.footerFax span::before {
    position: absolute;
    top: 0;
    left: -10px;
    width: 40px;
    height: 40px;
}

.footerTel a::before {
    content: url(./images/icn_contact_tel.svg);
}

.footerFax span::before {
    content: url(./images/icn_contact_fax.svg);
}


.footerNaviWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5em
}

.footerNaviWrap p {
    display: flex;
    justify-content: center;
    gap: 2em;
}

.footerNaviArea {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em 2em;
}

.footerNavi {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footerNavi li {
    position: relative;
    margin: .5em 1em;
}

.footerNavi li a:hover,
.footerNaviWrap p a:hover {
    text-decoration: underline;
}

.footerNavi li.naviHeading {
    font-weight: 500;
    letter-spacing: .3rem;
}

.footerNaviWrap p {
    text-align: center;
}

.copyright {
    text-align: center;
    padding: 1em;
}

@media (max-width: 1160px) {}


@media (max-width: 840px) {
    .footerWrap {
        display: block;
        padding: 60px 30px 30px;
    }

    .footerInfo {
        width: 100%;
        text-align: center;
    }

    .footerNaviWrap {
        width: 100%;
        margin: 2em 0;
    }

    .footerLogo img {
        width: 40%;
        margin-right: 0;
    }


    .footerHour {
        justify-content: center;
    }

    .privacyMark {
        margin: 0 auto;
    }
}

@media (max-width: 599px) {
    .footerWrap {
        padding: 60px 10px 30px;
    }

    .footerNaviArea {
        gap: 1em;
        font-size: 1.5rem;
        margin: 1em;
        justify-content: space-between;
    }

    .footerNavi {
        width: calc((100% - 2em) / 2);
    }


    .footerNavi li {
        margin: .5em;
    }

    .footerNaviWrap p,
    .copyright {
        font-size: 1.5rem;
    }
}

/* pageTop
========================================== */
#pageTop {
    position: fixed;
    line-height: 1;
    right: 10px;
    bottom: 20px;
    z-index: 100;
}

#pageTop a {
    display: block;
    position: relative;
    box-sizing: border-box;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    background-size: 30%;
    border-radius: 3px;
}

#pageTop a::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .3s;
}

#pageTop a:hover {
    background: var(--color-accent);
}

#pageTop a:hover::before {
    top: 15px;
}