@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/


/* =========================
   Intro Curtain（TOPだけ）
   ========================= */

:root {
    /* デフォルトは普通のvh */
    --vh: 1vh;
}


/* iOS Safari 対策：アドレスバー込みで計算される 100vh を避ける */

@supports (-webkit-touch-callout: none) {
     :root {
        --vh: 1svh;
    }
}

html,
body {
    height: auto;
    min-height: 100%;
}

body {
    overscroll-behavior-y: none;
}

.site-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

body.is-loaded .site-wrapper {
    opacity: 1;
    visibility: visible;
}


/* 後ろのコンテンツ全体を包むラッパー */

.site-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}


/* カーテン終了後（bodyにis-loadedが付いたら）表示 */

body.is-loaded .site-wrapper {
    opacity: 1;
    visibility: visible;
}

.intro-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh) * 100);
    background: var(--white-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: opacity;
}

@supports (height: 100dvh) {
    .intro-curtain {
        height: 100dvh;
    }
}


/* ロゴ：ふわっと */

.intro-logo {
    width: 70dvw;
    max-width: 16rem;
    width: auto;
    height: auto;
    opacity: 0;
    filter: grayscale(1);
    transform: translateY(10px) scale(.96);
    animation: introLogo 1000ms cubic-bezier(.8, .8, .8, .8) forwards 1100ms;
}

.intro-logo img {
    width: 100%;
    height: auto;
}

@keyframes introLogo {
    40% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: grayscale(0);
    }
}

.intro-mask {
    position: absolute;
    width: 600vmax;
    height: 600vmax;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotate(-20deg);
    will-change: transform;
    animation: curtainSlide 2400ms cubic-bezier(.7, 0, .3, 1) 200ms forwards;
}


/* 斜めの角度はそのまま、上方向にスーッと抜けさせる */

@keyframes curtainSlide {
    0% {
        transform: translate(-50%, -50%) rotate(-20deg);
    }
    100% {
        /* 上に大きく抜ける */
        transform: translate(-50%, -180%) rotate(-20deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-mask {
        animation: none;
        transform: translate(-50%, -180%) rotate(-20deg);
    }
    .intro-logo {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media screen and (min-width: 768px) {
    .intro-mask {
        animation-duration: 3200ms;
    }
    .intro-logo {
        animation-duration: 2s;
    }
}

@media screen and (min-width: 992px) {
    .intro-mask {
        animation-duration: 4s;
    }
    .intro-logo {
        animation-duration: 2.5s;
    }
}


/*  fv-area
------------------------------------------------------------------*/

.fv-area {
    position: relative;
    margin: 11rem 0 4rem;
}

.fv-area .carousel {
    margin: 20px auto;
    overflow: hidden;
    display: flex;
}

.carousel>* {
    flex: 0 0 100%;
}

@media screen and (max-width: 575px) {
    .carousel>* {
        flex: 0 0 auto;
        height: 55vh;
    }
}

.card {
    justify-content: center;
    align-items: center;
    flex: 0 0 calc((100% - 40px) / 3);
    height: 100%;
    width: 100%;
    aspect-ratio: 1;
    background-color: #f9f9f9 !important;
    border: none;
    border-radius: var(--radius-thumb);
    overflow: hidden;
}


/* タブレット：2枚表示 */

@media screen and (max-width: 991px) {
    .fv-area .carousel .card {
        flex: 0 0 calc((100% - 20px) / 2);
        /* gap 20px × 1 を引いて 2 等分 */
    }
}


/* スマホ：1枚表示 */

@media screen and (max-width: 575px) {
    .fv-area {
        position: relative;
        margin: 15vh 0 0;
    }
    .fv-area .carousel .card {
        width: 55vh;
        flex: inherit;
        /* flex: 0 0 calc((100% - 20px)); */
        /* ← ここを 55vh から変更してみる */
        aspect-ratio: 1;
    }
    .fv-area .carousel .card img {
        width: 55vh;
        height: 55vh;
        aspect-ratio: 1;
    }
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    /* transform: scale(1.2); */
}

.group {
    display: flex;
    gap: 20px;
    margin-right: 20px;
    flex-wrap: nowrap;
    will-change: transform;
    flex-shrink: 0;
    /* ← 幅を縮めさせない */
    animation: scrolling 60s linear infinite reverse;
}

@media screen and (max-width: 991px) {
    .group {
        animation: scrolling 60s linear infinite reverse;
    }
}

@media screen and (max-width: 575px) {
    .group {
        animation: scrolling 80s linear infinite reverse;
    }
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.fv-area .txtanimation {
    position: absolute;
    bottom: 0;
    left: 0;
}

.fv-area .txtanimation p {
    /* font-size: 15rem; */
    line-height: 1;
    flex: 0 0 auto;
    text-shadow: none;
    color: var(--white-color);
}

.fv-area .txtanimation p:nth-of-type(1) {
    animation: loop_01 240s -120s linear infinite;
}

.fv-area .txtanimation p:nth-of-type(2) {
    animation: loop_02 240s linear infinite;
}

.fv .txt {
    text-align: right;
    margin-right: 6rem;
}

.fv .catch {
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: -1rem;
    margin-bottom: 1.25rem;
}

@media screen and (max-width: 575px) {
    .fv-area {
        position: relative;
        margin: 15dvh 0 0;
    }
}

@media screen and (max-width:991px) {
    .fv .catch {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:575px) {
    .fv .txt {
        margin: 0 0 4rem;
    }
    .fv .catch {
        font-size: 1.5rem;
        text-align: left;
        margin: 0 2rem;
    }
}


/*------------------------------------------------------------------
  bg-sticky
------------------------------------------------------------------*/

.bg_sticky {
    position: relative;
}

.bg_sticky::before {
    content: "";
    display: block;
    position: sticky;
    top: 4rem;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 60vw;
    height: 100svh;
    z-index: -1;
    background-image: url(../images/bg-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -2.3vw 0;
}

@media screen and (max-width:1199px) {
    .bg_sticky::before {
        opacity: .4;
    }
    .bg_sticky::before {
        top: 50%;
        left: 0;
        width: 80vw;
        height: 100svh;
        z-index: -1;
        background-position: 0 20%;
        margin: 0 auto;
    }
}

.bg_sticky>main {
    margin-top: -100svh;
}

.child-page .bg_sticky::before {
    top: 10rem;
    width: 100vw;
    height: 50svh;
    z-index: -1;
    background-image: url(../images/child_bg-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -2.3vw 0;
}

.child-page .bg_sticky>main {
    margin-top: -50svh;
}

@media screen and (max-width:1199px) {
    .child-page .bg_sticky::before {
        opacity: .4;
    }
}


/*------------------------------------------------------------------
  concept
------------------------------------------------------------------*/

#sec-concept .container-wide {
    overflow: visible;
}

.concept {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-block: 12rem;
    margin-right: -3vw;
    gap: 4rem;
}

.concept-ttl {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-wrap: wrap;
    line-height: 1;
    position: relative;
    margin-right: 11.5rem;
}

.concept-ttl .title-english .en {
    font-size: 3.75rem;
    font-weight: 400;
    margin-left: -7rem;
    letter-spacing: 0;
}

@media screen and (max-width:991px) {
    .concept-ttl .title-english .en {
        font-size: 3.5rem;
    }
}

@media screen and (max-width:575px) {
    .concept-ttl .title-english .en {
        font-size: 3.25rem;
    }
}

.concept-ttl p {
    display: flex;
    align-items: center;
    font-size: 2.25rem;
    white-space: nowrap;
    position: relative;
    padding-left: 1.75rem;
}

.concept-ttl p::before {
    content: "";
    position: relative;
    width: 5.625rem;
    height: 1px;
    background: var(--black-color);
    margin-right: 1.25rem;
}

.concept-txt {
    font-size: 1.3rem;
    line-height: 1.8;
}

@media screen and (max-width:575px) {
    .concept-ttl p {
        font-size: 1.5rem;
    }
    .concept-txt {
        font-size: 1.125rem;
    }
}

.concept-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media screen and (max-width:991px) {
    .concept {
        align-items: center;
        margin-block: 6rem;
        margin-right: 0;
        gap: 4rem;
    }
    .concept-ttl {
        margin-right: 0;
    }
    .concept-ttl .title-english .en {
        margin-left: 0;
    }
}

@media screen and (max-width:575px) {
    .concept-ttl .title-english .en {
        font-size: 3.25rem;
    }
}


/*------------------------------------------------------------------
  news
------------------------------------------------------------------*/

#sec-information {
    background-color: rgba(255, 255, 255, .95);
    padding-block: 8rem;
    margin: 0 auto;
}

.information-ttl {
    width: fit-content;
}

.information-ttl .title-english .en {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0;
}

.information-ttl .title-english .jp {
    text-align: start;
    line-height: 2;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
}

@media screen and (max-width:991px) {
    #sec-information {
        padding-block: 6rem;
    }
    .information-ttl .title-english .jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .information-ttl .title-english .jp {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .information-ttl .title-english .jp {
        font-size: 0.875rem;
    }
}

.information {
    width: 100%;
}

.news-list {
    width: 100%;
    overflow-x: scroll;
}

.news-item {
    border-top: 1px solid var(--gray-light-color);
    margin-right: 6%;
    display: flex;
    padding: 30px 10px;
    text-align: justify;
}

.newsitem-date {
    font-size: 1.25rem;
    color: var(--gray-color);
    letter-spacing: 0;
    width: 14%;
}

.newsitem-text-area {
    width: 65%;
}

.newsitem-ttl {
    font-size: 1.25rem;
    font-weight: 600;
}

.newsitem-image {
    margin-left: 5%;
    width: 20%;
    height: fit-content;
    aspect-ratio: 3 / 2;
    background-color: var(--gray-light-color);
    border-radius: 1rem;
    overflow: hidden;
}

.newsitem-txt {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}

.newsitem-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

@media screen and (max-width:991px) {
    .newsitem-date,
    .newsitem-ttl,
    .newsitem-txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .newsitem-date,
    .newsitem-ttl,
    .newsitem-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .newsitem-date,
    .newsitem-ttl,
    .newsitem-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width:991px) {
    .news-item {
        flex-direction: column;
        gap: 1.75rem;
    }
    .newsitem-date,
    .newsitem-text-area,
    .newsitem-ttl,
    .newsitem-txt {
        width: 100%;
    }
    .newsitem-txt {
        margin-top: .75rem;
    }
    .newsitem-image {
        margin-left: 0;
        width: 40%;
    }
}

@media screen and (max-width:575px) {
    .concept-ttl .title-english .en {
        font-size: 3.25rem;
    }
}


/*------------------------------------------------------------------
  card
------------------------------------------------------------------*/

.card-wrapper {
    margin-block: 12rem;
}

.js-scroll-overlap:not(.is-disabled) {
    --sticky-offset: -1px;
    position: sticky;
    top: var(--sticky-offset);
}

.js-scroll-overlap {
    width: 95vw;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-card);
}

.js-scroll-overlap .service,
.js-scroll-overlap .construction,
.js-scroll-overlap .staff {
    display: flex;
    gap: 6.5625rem;
    justify-content: center;
    align-items: center;
    padding-block: 6rem;
}

.js-scroll-overlap .text-area {
    width: 32vw;
}

.js-scroll-overlap .title-english .en {
    color: var(--white-color);
    font-size: 7rem;
    font-weight: 400;
    letter-spacing: 0;
}

@media screen and (max-width:1999px) {
    .js-scroll-overlap .title-english .en {
        font-size: 6.25rem;
    }
    .card-wrapper {
        margin-block: 7rem;
    }
}

@media screen and (max-width:1499px) {
    .js-scroll-overlap .title-english .en {
        font-size: 5.25rem;
    }
}

@media screen and (max-width:1199px) {
    .js-scroll-overlap .title-english .en {
        font-size: 5.25rem;
    }
}

@media screen and (max-width:991px) {
    .js-scroll-overlap .title-english .en {
        font-size: 4.5rem;
    }
}

@media screen and (max-width:575px) {
    .js-scroll-overlap .title-english .en {
        font-size: 3.75rem;
    }
}

.js-scroll-overlap .title-english .jp {
    color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 1rem;
}

@media screen and (max-width:991px) {
    .js-scroll-overlap .title-english .jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .js-scroll-overlap .title-english .jp {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .js-scroll-overlap .title-english .jp {
        font-size: 0.875rem;
    }
}

.js-scroll-overlap .txt {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: justify;
    border-top: 1px solid var(--white-color);
    padding-block: 4rem;
}

@media screen and (max-width:991px) {
    .js-scroll-overlap .txt {
        font-size: 1.375rem;
        padding-block: 2rem;
    }
}

@media screen and (max-width:767px) {
    .js-scroll-overlap .txt {
        font-size: 1.25rem;
        padding-block: 1.5rem;
    }
}

@media screen and (max-width:575px) {
    .js-scroll-overlap .txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .js-scroll-overlap .txt {
        font-size: 1rem;
    }
}

.js-scroll-overlap .image {
    width: 35vw;
    border-radius: var(--radius-section);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.js-scroll-overlap .image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1199px) {
    .js-scroll-overlap .service,
    .js-scroll-overlap .construction,
    .js-scroll-overlap .staff {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding-block: 3rem;
    }
    .js-scroll-overlap .text-area,
    .js-scroll-overlap .image {
        width: 100%;
    }
    .js-scroll-overlap .image {
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }
}

@media screen and (max-width:991px) {
    .js-scroll-overlap .txt {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .js-scroll-overlap .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .js-scroll-overlap .txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .js-scroll-overlap .txt {
        font-size: 1rem;
    }
}


/*------------------------------------------------------------------
  service
------------------------------------------------------------------*/

.js-scroll-overlap.service {
    background-color: var(--gray-dark-color);
}


/*------------------------------------------------------------------
  construction
------------------------------------------------------------------*/

.js-scroll-overlap.construction {
    background-color: var(--gray-color);
}


/*------------------------------------------------------------------
  staff
------------------------------------------------------------------*/

.js-scroll-overlap.staff {
    background-color: var(--gray-dark-color);
}


/*------------------------------------------------------------------
  recruit
------------------------------------------------------------------*/

#sec-recruit .container-wide {
    overflow: visible;
}

.recruit {
    display: flex;
    align-items: center;
    margin-block: 12rem;
}

.recruit-imgs {
    position: relative;
    width: 45vw;
    height: 50vw;
}

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

.recruit-imgs>div {
    border-radius: var(--radius-thumb);
    overflow: hidden;
}

.recruit-imgs .img_1 {
    width: 28vw;
    height: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.recruit-imgs .img_2 {
    width: 14vw;
    height: auto;
    position: absolute;
    bottom: 10vw;
    left: 1vw;
}

.recruit-imgs .img_3 {
    width: 17vw;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}

.recruit-txt-area {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.recruit-ttl .title-english .en {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.recruit-ttl .title-english .jp {
    text-align: center;
    font-weight: 500;
}

.recruit-txt {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
}

@media screen and (max-width:1991px) {
    .recruit-txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:1204px) {
    .recruit {
        flex-direction: column;
        align-items: center;
        margin: 0 0 7rem;
        gap: 3rem;
    }
    .recruit-imgs {
        position: relative;
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 2 / 3;
    }
    .recruit-imgs .img_1 {
        width: 80%;
    }
    .recruit-imgs .img_2 {
        width: 40%;
        height: auto;
        position: absolute;
        bottom: 10vw;
        left: 1vw;
    }
    .recruit-imgs .img_3 {
        width: 49%;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

@media screen and (max-width:991px) {
    .recruit-txt {
        font-size: 1.25rem;
        text-align: justify;
    }
    .newsitem-date,
    .newsitem-text-area,
    .newsitem-ttl,
    .newsitem-txt {
        width: 100%;
    }
    .newsitem-txt {
        margin-top: .75rem;
    }
    .newsitem-image {
        margin-left: 0;
        width: 40%;
    }
}

@media screen and (max-width:575px) {
    .concept-ttl .title-english .en {
        font-size: 3.25rem;
    }
    .newsitem-image {
        margin-left: 0;
        width: 100%;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/


/* sec-greeting */

.sec-greeting {
    margin: 0 auto;
    width: 95vw;
    border-radius: 4rem;
}

.sec-greeting .container {
    display: flex;
    justify-content: space-between;
}

.sec-greeting .text-area {
    width: 55%;
}

.sec-greeting .image {
    width: 36%;
    overflow: hidden;
    border-radius: 4rem;
    aspect-ratio: 1;
}

.sec-greeting .title-english .jp {
    color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 1rem;
}

@media screen and (max-width:991px) {
    .sec-greeting .title-english .jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .sec-greeting .title-english .jp {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .sec-greeting .title-english .jp {
        font-size: 0.875rem;
    }
}

.sec-greeting .text-area .txt {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: justify;
    border-top: 1px solid var(--white-color);
    padding-block: 4rem;
}

@media screen and (max-width:991px) {
    .sec-greeting .text-area .txt {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .sec-greeting .text-area .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-greeting .text-area .txt {
        font-size: 1.125rem;
        padding: 2rem 0;
    }
}

@media screen and (max-width:374px) {
    .sec-greeting .text-area .txt {
        font-size: 1rem;
    }
}

.sec-greeting .text-area .txt p:last-of-type {
    text-align: right;
    margin-top: 2rem;
    font-size: 1rem;
}

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

@media screen and (max-width:1199px) {
    .sec-greeting .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .sec-greeting .text-area {
        width: 90%;
    }
    .sec-greeting .image {
        width: 90%;
        overflow: hidden;
        border-radius: var(--radius-section);
        aspect-ratio: 2;
    }
}

@media screen and (max-width:767px) {
    .sec-greeting .container {
        gap: 0;
    }
    .sec-greeting .image {
        width: 90%;
        overflow: hidden;
        aspect-ratio: 3 / 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec-greeting .image img {
        object-fit: inherit;
        width: 120%;
        height: auto;
    }
}

.sec-greeting .title-english .en {
    color: var(--white-color);
    font-size: 7rem;
    font-weight: 400;
    letter-spacing: 0;
}

@media screen and (max-width:1199px) {
    .sec-greeting .title-english .en {
        font-size: 6rem;
    }
}

@media screen and (max-width:991px) {
    .sec-greeting .title-english .en {
        font-size: 4.5rem;
    }
}

@media screen and (max-width:575px) {
    .sec-greeting .title-english .en {
        font-size: 4rem;
    }
}


/* sec-company */

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

.company-wrap .access {
    width: 38%;
}

.company-wrap .access .company-map {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.company-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.company-wrap .access .text-area {
    gap: 2rem;
    justify-content: center;
}

@media screen and (max-width:1199px) {
    .company-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .company-wrap .table01 {
        width: 80%;
    }
    .company-wrap .access {
        width: 80%;
    }
    .company-wrap .access .company-map {
        position: relative;
        width: 100%;
        aspect-ratio: 2 / 1;
    }
}

@media screen and (max-width:767px) {
    .company-wrap .table01,
    .company-wrap .access {
        width: 100%;
    }
    .company-wrap .access .text-area {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        margin: 0 auto;
        width: fit-content;
        align-items: center;
    }
    .company-wrap .access .text-area .txt {
        display: flex;
        gap: 3rem;
    }
    .company-wrap .access .text-area .text-justify {
        text-align: center !important;
    }
    .company-wrap .access .text-area a {
        width: fit-content;
    }
}


/* sec-wanted */

.wanted {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wanted .business-partner,
.wanted .outsourcing {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    text-align: justify;
    color: var(--white-color);
    padding: 6rem;
    border-radius: var(--radius-card);
}

@media screen and (max-width:767px) {
    .wanted .business-partner,
    .wanted .outsourcing {
        padding: 4rem;
    }
}

@media screen and (max-width:575px) {
    .wanted .business-partner,
    .wanted .outsourcing {
        padding: 4rem 2.25rem;
    }
}

.wanted .business-partner {
    position: relative;
    background-color: var(--gray-color);
    overflow: hidden;
}

.wanted .business-partner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(/images/wanted-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: opacity(.15);
}

.wanted .outsourcing {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

.wanted .outsourcing::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(/images/wanted-02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: opacity(.15);
}

.wanted .title-english .en,
.wanted .title-english .jp {
    color: var(--white-color);
    z-index: 2;
}

.wanted .business-partner .txt-area,
.wanted .outsourcing .txt-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2;
}

.wanted .business-partner p:first-of-type,
.wanted .outsourcing p:first-of-type {
    font-size: 1.5rem;
    text-align: center;
}

@media screen and (max-width:991px) {
    .wanted .business-partner p:first-of-type,
    .wanted .outsourcing p:first-of-type {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .wanted .business-partner p:first-of-type,
    .wanted .outsourcing p:first-of-type {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .wanted .business-partner p:first-of-type,
    .wanted .outsourcing p:first-of-type {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .wanted .business-partner p:first-of-type,
    .wanted .outsourcing p:first-of-type {
        font-size: 1rem;
    }
}

.wanted .business-partner p,
.wanted .outsourcing p {
    font-size: 1.25rem;
}

@media screen and (max-width:1199px) {
    .wanted {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .wanted .business-partner,
    .wanted .outsourcing {
        width: 100%;
    }
    .wanted .business-partner p:first-of-type,
    .wanted .outsourcing p:first-of-type {
        font-size: 1.25rem;
        text-align: center;
    }
    .wanted .business-partner p,
    .wanted .outsourcing p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:991px) {
    .wanted .business-partner p,
    .wanted .outsourcing p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .wanted .business-partner p,
    .wanted .outsourcing p {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .wanted .business-partner p,
    .wanted .outsourcing p {
        font-size: 0.875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

.sec-service {
    margin: 0 auto;
    width: 95vw;
    border-radius: 4rem;
}

.sec-service-6 {
    padding: 0 !important;
}

.sec-service .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-wrap {
    padding-block: 5rem;
}

.sec-service .title-english .en {
    text-align: left;
}

.sec-service .text-area {
    width: 58%;
}

.sec-service .image {
    width: 36%;
}

.sec-service .text-area .title-english .en {
    font-size: 5rem;
}

.sec-service-odd .image {
    border-radius: var(--radius-card);
    aspect-ratio: 1;
    overflow: hidden;
}

.sec-service-even .image {
    width: 36%;
    position: relative;
    aspect-ratio: 4 / 3 !important;
    margin-bottom: 0;
    overflow: visible;
}

.sec-service-even .image>div:first-of-type {
    position: absolute;
    inset: 0 auto auto 0;
    width: 80%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.sec-service-even .image>div:last-of-type {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.sec-service.sec-service-4 .text-area .txt {
    padding-bottom: 0;
}

.sec-service-4.sec-service-even .image {
    aspect-ratio: 2 / 3 !important;
}

.sec-service-4.sec-service-even .image>div:first-of-type {
    position: absolute;
    top: 0;
    left: 5%;
    width: 75%;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.sec-service-4.sec-service-even .image>div:last-of-type {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.sec-service .title-english .en {
    color: var(--black-color);
    font-size: 7rem;
    font-weight: 400;
    letter-spacing: 0;
}

@media screen and (max-width:1199px) {
    .sec-service .text-area .title-english .en {
        font-size: 6rem;
    }
}

@media screen and (max-width:991px) {
    .sec-service .text-area .title-english .en {
        font-size: 4.5rem;
    }
}

@media screen and (max-width:575px) {
    .sec-service .text-area .title-english .en {
        font-size: 4rem;
    }
}

.sec-service .title-english .jp {
    color: var(--black-color);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 1rem;
}

@media screen and (max-width:991px) {
    .sec-service .title-english .jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .sec-service .title-english .jp {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .sec-service .title-english .jp {
        font-size: 0.875rem;
    }
}

.sec-service .text-area .txt {
    color: var(--black-color);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: justify;
    border-top: 1px solid var(--black-color);
    padding-block: 4rem;
}

@media screen and (max-width:991px) {
    .sec-service .text-area .txt,
    .sec-service.sec-service-4 .text-area .txt {
        font-size: 1.375rem;
        padding-block: 2rem;
    }
}

@media screen and (max-width:767px) {
    .sec-service .text-area .txt,
    .sec-service.sec-service-4 .text-area .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-service .text-area .txt,
    .sec-service.sec-service-4 .text-area .txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .sec-service .text-area .txt,
    .sec-service.sec-service-4 .text-area .txt {
        font-size: 1rem;
    }
}

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

.sec-service .merit-area {
    padding: 3rem;
    border-radius: var(--radius-card);
    font-size: 1.25rem;
    text-align: center;
}

@media screen and (max-width:991px) {
    .sec-service .merit-area {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .sec-service .merit-area {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .sec-service .merit-area {
        font-size: 0.875rem;
    }
}

.sec-service .merit-area .merit-list {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.sec-service .merit-area .merit-list .merit-item {
    background-color: var(--gray-dark-color);
    padding: 2rem;
    border-radius: 2rem;
    color: var(--white-color);
    width: calc((100% - 2rem) / 3);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sec-service .merit-area .merit-list .merit-img {
    width: 40%;
}

.sec-service .merit-area .merit-list .merit-txt span {
    font-size: 2rem;
    font-weight: 600;
    margin-right: .5rem;
    display: block;
    height: fit-content;
    line-height: 1;
}

.sec-service .merit-area .merit-list .merit-txt>div:first-of-type {
    display: flex;
    justify-content: center;
    margin-bottom: .5rem;
    align-items: center;
    line-height: 1;
}

.sec-service .merit-area .merit-list .merit-txt>div:last-of-type {
    font-size: 1rem;
}

@media screen and (max-width:1199px) {
    .sec-service .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .sec-service-even .container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .sec-service .text-area {
        width: 90%;
    }
    .sec-service .image {
        width: 90%;
        aspect-ratio: 2;
    }
    .sec-service .merit-area .merit-list .merit-item {
        padding: 1.125rem;
    }
    .sec-service-even.sec-service-4 .container {
        justify-content: center;
        align-items: center;
    }
    .sec-service-even.sec-service-4 .txt {
        padding-bottom: 0;
    }
    /* 太陽光（sec-service-4）だけ調整 */
    .sec-service-even.sec-service-4 .image {
        position: relative;
        left: auto;
        transform: none;
        width: min(60%, 480px);
        margin: 0 auto;
        aspect-ratio: 2 / 3;
    }
    .sec-service-even.sec-service-4 .image>div:first-of-type {
        position: absolute;
        top: 0;
        left: 5%;
        width: 75%;
        aspect-ratio: 2 / 3;
    }
    .sec-service-even.sec-service-4 .image>div:last-of-type {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        aspect-ratio: 2 / 3;
    }
}

@media screen and (max-width:949px) {
    /* .sec-service-even .image>div:last-of-type {
        overflow: hidden;
        aspect-ratio: 1;
        position: absolute;
        top: 80%;
        right: 0;
        width: 60%;
        aspect-ratio: 3 / 2;
    } */
    .sec-service .merit-area .merit-list {
        flex-direction: column;
        width: 100%;
    }
    .sec-service .merit-area .merit-list .merit-item {
        flex-direction: row;
        width: 100%;
        aspect-ratio: initial;
        padding: 2rem;
        gap: 10%;
    }
    .sec-service .merit-area .merit-list .merit-img {
        width: 15%;
    }
}

@media screen and (max-width:767px) {
    .sec-service .merit-area {
        text-align: justify;
        padding: 1.5rem;
    }
}

@media screen and (max-width:575px) {
    .sec-service .container {
        gap: 0;
    }
    .sec-service .merit-area .merit-list .merit-item {
        flex-direction: column;
        width: 100%;
        aspect-ratio: initial;
        padding: 12%;
        gap: 1.5rem;
    }
    .sec-service .merit-area .merit-list .merit-img {
        width: 25%;
        min-width: 80px;
    }
}

@media screen and (max-width:374px) {}

@media screen and (max-width:1199px) {
    /* 偶数はテキスト→画像の順にしたいなら column-reverse */
    .sec-service-even .container {
        flex-direction: column-reverse;
    }
    .sec-service .text-area {
        width: 90%;
    }
    .sec-service .image {
        width: 90%;
        max-width: 640px;
    }
    .sec-service-even .image {
        /* 縦方向も少し余裕を出す */
        /* aspect-ratio: 4 / 5; */
    }
}

@media screen and (max-width:575px) {
    .sec-service .container {
        gap: 0;
    }
    .sec-service .image {
        width: 100%;
    }
}


/*/////////////////////////////////////////////////////////////////
  construction.html
/////////////////////////////////////////////////////////////////*/


/* const-cate */

.section-large.const-cate {
    padding-block: 5rem !important;
}

.const-cate .l-flex-row-xs>div {
    text-align: center;
    font-size: 1.25rem;
    line-height: 3.5;
    background-clip: content-box;
    opacity: 1;
    transition: .3s ease;
}

@media screen and (max-width:991px) {
    .const-cate .l-flex-row-xs>div {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .const-cate .l-flex-row-xs>div {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .const-cate .l-flex-row-xs>div {
        font-size: 0.875rem;
    }
}

.const-cate .l-flex-row-xs>div:hover {
    opacity: .8;
}

.const-cate .l-flex-row-xs>div a {
    color: var(--white-color);
    display: block;
}

.material-symbols-rounded {
    display: inline flex;
    vertical-align: sub;
    align-items: center;
    font-size: 1.25em;
    font-family: "Material Symbols Rounded";
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}


/* const-item-list */

.const-item {
    padding: 6rem;
    border-radius: 4rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.const-item .text-area {
    width: 60%;
}

.const-item .text-area h4 {
    font-size: 2rem;
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    padding-block: 1rem;
}

.const-item .text-area .txt-list .txt-item {
    display: flex;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    line-height: normal;
}

@media screen and (max-width:991px) {
    .const-item .text-area .txt-list .txt-item {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:767px) {
    .const-item .text-area .txt-list .txt-item {
        font-size: 1rem;
    }
}

@media screen and (max-width:374px) {
    .const-item .text-area .txt-list .txt-item {
        font-size: 0.875rem;
    }
}

.const-item .text-area .txt-list .txt-item .ttl {
    background-color: var(--gray-light-color);
    width: 25%;
    text-align: center;
    align-content: center;
    padding: .5rem;
}

.const-item .text-area .txt-list .txt-item .value {
    background-color: var(--white-color);
    width: 75%;
    padding: .5rem 1rem;
    text-align: justify;
}

.const-item .gallery-btnlist {
    width: 36%;
}

.gallery-slider .prev,
.gallery-slider .next,
.gallery-slider .thumbnail-slide {
    opacity: 1;
    transition: opacity .5s;
}

.gallery-slider .prev:hover,
.gallery-slider .next:hover,
.gallery-slider .thumbnail-slide :hover {
    opacity: 0.8;
}

.gallery-slider .main-slide {
    display: none;
}

.gallery-slider .main-slide.active {
    display: block;
}

.gallery-slider .main-slides {
    position: relative;
}

.gallery-slider .main-slides img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background-color: var(--gray-light-color);
    object-fit: contain;
}

.gallery-slider .prev,
.gallery-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-color);
    border-radius: 5rem;
    color: var(--white-color);
    cursor: pointer;
    user-select: none;
    filter: opacity(.8);
}

.gallery-slider .prev {
    left: 1rem;
}

.gallery-slider .next {
    right: 1rem;
}

.gallery-slider .caption {
    padding: .25rem .5rem;
    font-size: 1rem;
    line-height: 2;
    color: var(--white-color);
    letter-spacing: .02em;
    word-break: break-word;
    /* 1行までで省略（不要なら削除） */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-bottom: 1px solid var(--white-color);
}

.gallery-slider .thumbnail-slides-wrapper {
    overflow: auto;
    white-space: nowrap;
    margin-top: 1.25rem;
}

.gallery-slider .thumbnail-slides {
    display: flex;
    gap: .5rem;
}

.gallery-slider .thumbnail-slide {
    flex: 0 0 auto;
    border: 2px solid transparent;
    cursor: pointer;
}

.gallery-slider .thumbnail-slide.active {
    border-color: var(--gray-dark-color);
}

.gallery-slider .thumbnail-slide {
    width: calc((100% - 2rem) / 5);
}

.gallery-slider .thumbnail-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    background-color: var(--gray-light-color);
}

.gallery-btnlist .btn-list {
    display: flex;
    width: 100%;
    gap: .5rem;
}

.gallery-btnlist .btn-list .btn-item {
    margin-top: 2rem;
    padding-block: .5rem;
    width: calc((100% - .5rem) / 3);
    background-color: var(--black-color);
    border-radius: 2rem;
    text-align: center;
    opacity: 1;
    transition: .3s ease;
}

.gallery-btnlist .btn-list .btn-item a {
    font-size: 1rem;
    color: var(--white-color);
    cursor: pointer;
    display: block;
}

.gallery-btnlist .btn-list .btn-item:hover {
    opacity: .8;
}

@media screen and (max-width:1199px) {
    .const-item {
        flex-direction: column;
    }
    .const-item>div {
        width: 100% !important;
    }
    .const-item>div:last-of-type {
        margin-top: 3rem;
    }
}

@media screen and (max-width:991px) {
    .const-item>div:last-of-type {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width:575px) {
    .const-item {
        padding: 2rem 2.5rem 3rem;
    }
    .const-item .text-area h4 {
        font-size: 1.5rem;
    }
    .const-item .text-area .txt-list .txt-item {
        display: flex;
        flex-direction: column;
    }
    .const-item .text-area .txt-list .txt-item .ttl {
        width: 100%;
    }
    .const-item .text-area .txt-list .txt-item .value {
        width: 100%;
    }
    .gallery-slider .prev,
    .gallery-slider .next {
        width: 2rem;
        height: 2rem;
    }
    .const-item>div:last-of-type {
        margin-top: 1rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  staff.html
/////////////////////////////////////////////////////////////////*/

.sec-staff {
    margin: 0 auto;
    padding-block: 8rem !important;
}

.sec-staff .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-staff .text-area {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-staff .image {
    width: 45%;
    position: relative;
    margin-bottom: 5rem;
}

.sec-staff .image>div:first-of-type {
    overflow: hidden;
    border-radius: 4rem;
    aspect-ratio: 4 / 3;
}

.sec-staff .image>div:last-of-type {
    overflow: hidden;
    border-radius: 4rem;
    aspect-ratio: 1;
    width: 30%;
    position: absolute;
    bottom: -5rem;
    right: -5rem;
}

.sec-staff .image>div:last-of-type img {
    padding: 2rem;
    object-fit: contain;
}

.child-page .sec-staff .title-english {
    margin-bottom: 2rem;
}

.sec-staff .title-english .en {
    color: var(--white-color);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.sec-staff .text-area .txt {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width:991px) {
    .sec-staff .text-area .txt {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .sec-staff .text-area .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-staff .text-area .txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .sec-staff .text-area .txt {
        font-size: 1rem;
    }
}

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

@media screen and (max-width:1422px) {
    .sec-staff .container {
        flex-direction: column;
        gap: 4rem;
    }
    .sec-staff .image>div:last-of-type {
        border-radius: 3.5rem;
    }
    .sec-staff .image>div:last-of-type {
        bottom: -5%;
        right: -5%;
    }
    .sec-staff .text-area {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .sec-staff .image>div:last-of-type {
        border-radius: 2rem;
    }
    .sec-staff .image>div:last-of-type img {
        padding: 1.5rem;
        object-fit: contain;
    }
}

@media screen and (max-width:575px) {
    .sec-staff .text-area .txt {
        text-align: justify;
    }
}

@media screen and (max-width:1199px) {
    .sec-staff .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .sec-staff .text-area {
        width: 90%;
    }
    .sec-staff .image {
        width: 90%;
        border-radius: 4rem;
        aspect-ratio: 2;
    }
    .sec-staff .title-english .en {
        font-size: 6rem;
    }
}

@media screen and (max-width:991px) {
    .sec-staff .title-english .en {
        font-size: 4rem;
    }
}

@media screen and (max-width:767px) {
    .sec-staff .title-english .en {
        font-size: 3.5rem;
    }
    .sec-staff .text-area .txt {
        font-size: 1.25rem;
    }
    .sec-staff .image {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width:575px) {
    .sec-staff .title-english .en {
        font-size: 3.25rem;
    }
}

@media screen and (max-width:374px) {
    .sec-staff .title-english {
        font-size: 3rem;
    }
}

.interview-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.interview-list .interview-cate .cate-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.interview-list .interview-cate .cate-ttl span {
    background-color: var(--black-color);
    width: 2.25rem !important;
    height: 2.25rem !important;
    aspect-ratio: 1;
    border-radius: 5rem;
    margin-right: .75rem;
    font-size: 1.5rem;
    line-height: normal;
    color: var(--white-color);
}

.interview-list .interview-cate .cate-ttl div {
    font-size: 1.5rem;
}

@media screen and (max-width:991px) {
    .interview-list .interview-cate .cate-ttl span,
    .interview-list .interview-cate .cate-ttl div {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .interview-list .interview-cate .cate-ttl span,
    .interview-list .interview-cate .cate-ttl div {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .interview-list .interview-cate .cate-ttl span,
    .interview-list .interview-cate .cate-ttl div {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .interview-list .interview-cate .cate-ttl span,
    .interview-list .interview-cate .cate-ttl div {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .interview-list .interview-cate .cate-ttl div {
        text-align: justify;
    }
}

.interview-item {
    border-radius: 4rem;
    overflow: hidden;
}

.interview-item .question {
    font-size: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 4rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    line-height: normal;
}

@media screen and (max-width:991px) {
    .interview-item .question {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .interview-item .question {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .interview-item .question {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .interview-item .question {
        font-size: 1rem;
    }
}

.interview-item .question span {
    font-size: 4rem;
    margin-right: 2rem;
}

@media screen and (max-width:991px) {
    .interview-item .question span {
        font-size: 4rem;
    }
}

@media screen and (max-width:767px) {
    .interview-item .question span {
        font-size: 3.75rem;
    }
}

@media screen and (max-width:575px) {
    .interview-item .question span {
        font-size: 3.25rem;
    }
}

@media screen and (max-width:374px) {
    .interview-item .question span {
        font-size: 3rem;
    }
}

.answer-list .answer-item {
    display: flex;
    margin: 2rem 4rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light-color);
}

.answer-list .answer-item:last-of-type {
    padding-bottom: 0;
    border: none;
}

.answer-list .answer-item .img-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    min-height: 100px;
    font-size: 1rem;
    line-height: normal;
}

.answer-list .answer-item .img-area .img {
    background-color: var(--white-color);
    border-radius: 2rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
}

.answer-list .answer-item .img-area .img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.answer-list .answer-item .txt-area {
    width: calc(90% - 2rem);
    display: flex;
    align-items: center;
}

.answer-list .answer-item .txt-area .value {
    font-size: 1.5rem;
}

@media screen and (max-width:991px) {
    .answer-list .answer-item .txt-area .value {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .answer-list .answer-item .txt-area .value {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .answer-list .answer-item .txt-area .value {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .answer-list .answer-item .txt-area .value {
        font-size: 1rem;
    }
}

@media screen and (max-width:991px) {
    .answer-list .answer-item .img-area .img {
        border-radius: 1rem;
    }
}

@media screen and (max-width:767px) {
    .answer-list .answer-item {
        flex-direction: column;
        gap: 1rem;
    }
    .answer-list .answer-item .txt-area {
        justify-content: center;
        text-align: justify;
        width: 100%;
    }
    .answer-list .answer-item .img-area {
        width: 30%;
        min-width: 100px;
    }
    .answer-list .answer-item {
        margin: 2rem 2rem;
    }
}

@media screen and (max-width:575px) {}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

.sec-message {
    margin: 0 auto;
}

.sec-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-message .text-area {
    width: 55%;
}

.sec-message .image {
    width: 40%;
    overflow: hidden;
    border-radius: var(--radius-card);
    aspect-ratio: 1;
}

.sec-message .title-english .en {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.sec-message .title-english .jp {
    text-align: center;
    font-weight: 500;
}

.sec-message .text-area .txt {
    color: var(--black-color);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width:991px) {
    .sec-message .text-area .txt {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .sec-message .text-area .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-message .text-area .txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .sec-message .text-area .txt {
        font-size: 1rem;
    }
}

.sec-message .text-area .txt span {
    display: block;
}

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

@media screen and (max-width:991px) {
    .sec-message .title-english .en {
        font-size: 4rem;
    }
}

@media screen and (max-width:767px) {
    .sec-message .title-english .en {
        font-size: 3.5rem;
    }
    .sec-message .text-area .txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-message .title-english .en {
        font-size: 3.25rem;
    }
}

@media screen and (max-width:374px) {
    .sec-message .title-english {
        font-size: 3rem;
    }
}

@media screen and (max-width:1422px) {
    .sec-message .container {
        flex-direction: column;
        gap: 4rem;
        justify-content: center;
        align-items: center;
    }
    .sec-message .text-area {
        width: 100%;
    }
}

@media screen and (max-width:1199px) {
    .sec-message .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sec-message .image {
        width: 90%;
        overflow: hidden;
        aspect-ratio: 3 / 2;
    }
}

@media screen and (max-width: 575px) {
    .sec-message .text-area .txt {
        text-align: justify;
    }
    .sec-message .text-area .txt span {
        display: none;
    }
}

.sec-value .ttl-wrap h3,
.sec-who-cotents .ttl-wrap h3,
.why .ttl-wrap h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black-color);
}

@media screen and (max-width:991px) {
    .sec-value .ttl-wrap h3,
    .sec-who-cotents .ttl-wrap h3,
    .why .ttl-wrap h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width:576px) {
    .sec-value .ttl-wrap h3,
    .sec-who-cotents .ttl-wrap h3,
    .why .ttl-wrap h3 {
        font-size: 1.5rem;
    }
}

.txtanimation-wrap {
    margin-bottom: 4rem;
}

.txtanimation_3 {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    z-index: -1;
}

.txtanimation_3 p {
    color: var(--gray-color);
    text-shadow: none;
    /* font-size: 15rem; */
    padding-top: 6rem;
}

.sec-value {
    /* padding-bottom: 9rem !important; */
}

.sec-value-cotents {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-list {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.value-list .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48%;
    text-align: justify;
    color: var(--white-color);
    padding: 4rem;
    border-radius: var(--radius-card);
}

.value-list .value-item {
    position: relative;
    overflow: hidden;
}

.value-list .value-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -50%;
    left: 0;
    right: 0;
    background-image: url(/images/common/logo_g.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 50%;
    transform: translateY(50%);
    z-index: 1;
    filter: opacity(.25);
}

.value-list .value-item .txt-area {
    font-size: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
}

@media screen and (max-width:991px) {
    .value-list .value-item .txt-area {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .value-list .value-item .txt-area {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .value-list .value-item .txt-area {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .value-list .value-item .txt-area {
        font-size: 1rem;
    }
}

@media screen and (max-width:1199px) {
    .value-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    .value-list .value-item {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .value-list .value-item .txt-area {
        text-align: justify;
    }
}

.txtanimation_4 {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    z-index: -1;
}

.txtanimation_4 p {
    color: var(--gray-light-color-color);
    text-shadow: none;
    /* font-size: 15rem; */
    padding-top: 6rem;
}

.sec-who-cotents {
    padding-bottom: 9rem !important;
}

.sec-who-cotents .who-list {
    display: flex;
    gap: 5%;
}

.sec-who-cotents .who-list .who-item {
    padding: 4rem;
    border-radius: var(--radius-card);
    color: var(--white-color);
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0;
    background-color: var(--gray-dark-color);
    width: 30%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media screen and (max-width:991px) {
    .sec-who-cotents .who-list .who-item {
        font-size: 1.375rem;
    }
}

@media screen and (max-width:767px) {
    .sec-who-cotents .who-list .who-item {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .sec-who-cotents .who-list .who-item {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .sec-who-cotents .who-list .who-item {
        font-size: 1rem;
    }
}

.sec-who-cotents .who-list .who-item .img {
    width: 60%;
    height: auto;
}

@media screen and (max-width:1419px) {
    .sec-who-cotents .who-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .sec-who-cotents .who-list .who-item {
        flex-direction: row;
        gap: 10%;
        width: 100%;
        aspect-ratio: initial;
        padding: 2rem;
    }
    .sec-who-cotents .who-list .who-item .img {
        width: 15%;
        height: auto;
    }
}

@media screen and (max-width:767px) {
    .value-list .value-item .txt-area {
        text-align: justify;
    }
}

.txtanimation_5 {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    z-index: -1;
}

.txtanimation_5 p {
    color: var(--gray-color);
    text-shadow: none;
    /* font-size: 15rem; */
}

.why {
    position: relative;
    /* padding: 8rem 0; */
}

.why .js-scroll-overlap .txt {
    padding: 3rem 0 0;
}

.why.card-wrapper {
    margin: 7rem 0 0;
}

.ttl-wrap {
    position: relative;
    padding: 6rem 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.why .ttl-wrap {
    margin-bottom: 0;
}

.ttl-wrap h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
}

.ttl-wrap h3.why-h3 {
    transform: translateY(-90%);
}

.ttl-wrap .txtanimation-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.ttl-wrap .txtanimation_3,
.ttl-wrap .txtanimation_4,
.ttl-wrap .txtanimation_5 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    opacity: .2;
    z-index: 1;
}


/* =========================
   PC共通：普通のテーブル
   ========================= */

.career-table-wrapper {
    margin-bottom: 6em;
}

.career-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1rem;
    line-height: 1.6;
    background-color: var(--white-color);
}

.career-table th,
.career-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
    text-align: justify;
}

.career-table thead th {
    background: #f5f5f5;
    font-weight: 700;
    text-align: center;
}

.career-table tbody tr:nth-child(even) td {
    background-color: #fafafa;
}

.career-table th:nth-child(1),
.career-table td:nth-child(1) {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
}


/* PC時の列幅指定 */

@media (min-width: 1199px) {
    .career-table {
        table-layout: fixed;
    }
    .career-table th:nth-child(1),
    .career-table td:nth-child(1) {
        width: 10%;
        white-space: nowrap;
    }
    .career-table th:nth-child(2),
    .career-table td:nth-child(2) {
        width: 35%;
    }
    .career-table th:nth-child(3),
    .career-table td:nth-child(3) {
        width: 15%
    }
    .career-table th:nth-child(4),
    .career-table td:nth-child(4),
    .career-table th:nth-child(5),
    .career-table td:nth-child(5) {
        width: 20%;
    }
    .career-table tbody tr {
        opacity: 0;
        transform: translateY(16px);
    }
    .career-table tbody tr.pc-row-show {
        animation: pcFadeUp 0.6s ease forwards;
    }
    .career-table tbody tr.pc-row-show:nth-child(1) {
        animation-delay: 0.1s;
    }
    .career-table tbody tr.pc-row-show:nth-child(2) {
        animation-delay: 0.2s;
    }
    .career-table tbody tr.pc-row-show:nth-child(3) {
        animation-delay: 0.3s;
    }
    .career-table tbody tr.pc-row-show:nth-child(4) {
        animation-delay: 0.4s;
    }
    .career-table tbody tr.pc-row-show:nth-child(5) {
        animation-delay: 0.5s;
    }
    .career-table tbody tr.pc-row-show:nth-child(6) {
        animation-delay: 0.6s;
    }
    .career-table tbody tr.pc-row-show:nth-child(7) {
        animation-delay: 0.7s;
    }
    .career-table tbody tr.pc-row-show:nth-child(8) {
        animation-delay: 0.8s;
    }
    @keyframes pcFadeUp {
        0% {
            opacity: 0;
            transform: translateY(16px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* =========================
   〜1199px 共通：カード化の共通処理
   ========================= */

@media (max-width: 1198px) {
    .career-table thead {
        display: none;
    }
    .career-table,
    .career-table tbody,
    .career-table tr,
    .career-table td {
        display: block;
        width: 100%;
    }
    /* カードの共通スタイル */
    .career-table tbody tr {
        border: 1px solid #ddd;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
    }
    .career-table td {
        border: none;
        border-bottom: 1px solid #eee;
        padding: 10px 14px;
        line-height: 1.6;
    }
    .career-table td:last-child {
        border-bottom: none;
    }
    .career-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: #666;
        margin-bottom: 4px;
    }
    .career-table td[data-label="STAGE"]::before {
        content: "";
        margin: 0;
    }
    .career-table tbody tr:nth-child(even) td {
        background-color: #fff;
    }
    .career-table tbody tr {
        background-color: #fff;
    }
    .career-table td {
        background-color: transparent;
    }
    .career-table tbody tr:nth-child(even) td[data-label="STAGE"],
    .career-table td[data-label="STAGE"] {
        background: #f5f5f5;
        border-bottom: 1px solid #ddd;
    }
}


/* =========================
   スマホ（〜575px）：1列
   ========================= */

@media (max-width: 575px) {
    .career-table tbody tr {
        margin-bottom: 20px;
    }
}


/* =========================
   タブレット（576〜991px）：2列
   ========================= */

@media (min-width: 576px) and (max-width: 1199px) {
    .career-table tbody {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .career-table tbody tr {
        width: calc(50% - 8px);
    }
}


/* PC用：*/

.pc-row-hidden {
    opacity: 0;
    transform: translateY(24px);
}

.pc-row-show {
    animation: pcRowFade .6s ease forwards;
}

@keyframes pcRowFade {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* SP/TBカードアニメ */

.sp-card-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.sp-card-show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}


/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

.sec-tel-fax .tel-fax {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8rem;
}

.sec-tel-fax .tel p,
.sec-tel-fax .fax p {
    margin-left: 3rem;
    text-align: left;
}

.word2-other {
    display: flex;
}

#word3[disabled] {
    background: #eee;
    color: #999;
    cursor: not-allowed;
}

@media screen and (max-width:1199px) {
    .sec-tel-fax .tel-fax {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}