html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Noto Sans JP",
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        sans-serif;
    letter-spacing: 0.04em;
    background: #FFF;
    position: relative;
}

main.page.page-border {
    border-bottom: 1px solid #E6E6E6;
}

:root {
    --main: #D60139;
    --green: #59BAAF;
    --green2: #7EBC76;
    --orange: #EB5F44;
    --yellow: #FDC651;
    --blue: #43A6D0;
    --purple: #5A7FB4;
    --pink: #EC6188;
    --gray: #A6A6A6;
    --black: #1d1d1d;
}

.font-zen,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.font-noto {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

.font-archivo {
    font-family: 'Archivo', sans-serif;
}

.font-web {
    font-family: 'Titillium Web', sans-serif;
    font-weight: bold;
}


header {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    align-items: center;
    background: transparent;

    /* 追加：初期状態（隠す） */
    transform: translateY(-100%);
    opacity: 0;
    /* 変化のスピードを共通化 */
    transition: transform 0.6s ease-out, opacity 0.6s ease-out, background 0.3s ease, padding 0.3s ease;
}

/* JSでこのクラスが付与されたら表示 */
header.is-visible {
    transform: translateY(0);
    opacity: 1;
}

@keyframes slideInHeader {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* スクロール時に付与されるクラス */
header.active {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px #0000000f;
}

@media screen and (min-width:960px) {
    header.active {
        padding: 15px 20px;
    }

    header.active h1 img {
        width: 180px;
    }
}

ul.pc-nav.font-zen {
    display: flex;
    gap: 24px;
}

ul.pc-nav.font-zen li a {
    font-size: 15px;
    transition: all 0.3s;
}

ul.pc-nav.font-zen li a:hover {
    color: var(--main);
}

.pc-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

h1 img {
    width: 200px;
    transition: all 0.3s;
}



/*-------mv--------*/

.mainvisual {
    position: relative;
}

.mainvisual-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 120px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.mainvisual-image.splide__list {
    width: 78%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.mainvisual-image img {
    width: 100%;
}



.catch-copy img {
    width: 100%;
}

.catch-copy {
    position: absolute;
    left: 84px;
    width: 30vw;
}

.catch-copy p {
    font-size: 18px;
    line-height: 2em;
    padding-left: 20px;
    margin-top: 50px;
    letter-spacing: 0.15em;
}

@media screen and (min-width:1441px) {
    .mainvisual-image {
        border-radius: 40px;
    }

    .catch-copy {
        width: 420px;
    }
}

/*-------mvここまで--------*/

main.top {
    padding: 120px 0;
}

.guide-bnr {
    max-width: 1280px;
    margin: auto;
    padding: 0 120px;
}

.guide-bnr img {
    width: 100%;
}

.guide-bnr a {
    transition: all 0.3s;
    display: block;
}



/*-------共通パーツ--------*/

/* ========= 背景レイヤー ========= */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: -5;
    inset: 0;
    padding-top: 2000px;
    overflow: hidden;
}

/* ========= 背景本体 ========= */
.page-bg {
    display: flex;
    flex-direction: column;
    gap: 800px;
    width: 100%;
}



.page-bg .bg-wrap {
    position: static;
}

.bg-wrap.right {
    margin-left: auto;
}

.more-btn-wrap {
    display: flex;
    justify-content: center;
}

.c-title {
    padding-bottom: 80px;
}

.c-title h2 {
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-bottom: 16px;
}

.more-btn {
    margin-top: 40px;
}

.more-btn.more-btn--item {
    margin-top: 32px;
}

.more-btn.more-btn--header {
    margin-top: 0;
}



.more-btn a {
    display: flex;
    background: var(--main);
    color: white;
    width: 180px;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border-radius: 40px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: all 0.3s;
    border: 1px solid var(--main);
}

.more-btn.more-btn--back a {
    width: 260px;
    padding: 24px 18px;
    font-size: 18px;
}

.more-btn.more-btn--back {
    margin-top: 0;
}

.more-btn.more-btn--description {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.more-btn.more-btn--description a {
    width: 220px;
}

.arrow {
    position: absolute;
    right: 16px;
}

.arrow-back {
    position: absolute;
    left: 16px;
    transform: scale(-1);
}

.arrow span,
.arrow-back span {
    height: 1px;
    background: white;
    width: 15px;
    display: block;
    position: relative;
    transition: all 0.3s;
}

.arrow span:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background: white;
    top: -2px;
    transform: rotate(45deg);
    right: -1px;
    transition: all 0.3s;
}

.arrow span:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background: white;
    top: 2px;
    transform: rotate(-45deg);
    right: -1px;
    transition: all 0.3s;
}

.arrow-back span:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background: white;
    top: -3px;
    transform: rotate(45deg);
    right: 0px;
    transition: all 0.3s;
}

.arrow-back span:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background: white;
    top: 3px;
    transform: rotate(-45deg);
    right: 0px;
    transition: all 0.3s;
}

p.font-zen.c-title__sub {
    display: inline-block;
    background: var(--main);
    color: white;
    letter-spacing: 0.1em;
}

p.c-title__desc {
    font-size: 18px;
    margin-top: 32px;
    letter-spacing: 0.1em;
    line-height: 2em;
}

.c-title.c-title--job p.c-title__desc {
    font-size: 16px;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

section.pd-small {
    padding-top: 80px;
}

section.pd-top-none {
    padding-top: 0;
}

.inner-1280 {
    max-width: 1520px;
    margin: auto;
    padding-left: 120px;
    padding-right: 120px;
    /* padding-bottom: 60px; */
}

.inner-1320 {
    max-width: 1560px;
    margin: auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 60px;
}

p.desc {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

.bg-wrap {
    position: absolute;
    z-index: -1;
}

.bg-wrap img {
    width: 100%;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb__item::after {
    content: "/";
    margin: 0 0.5em;
    color: var(--black);
}

.breadcrumb__item:last-child::after {
    content: "";
}

li.breadcrumb__item a {
    text-decoration: underline;
    color: var(--black);
}

li.breadcrumb__item {
    font-size: 16px;
}

/* 現在のページ */
.breadcrumb__item[aria-current="page"] {
    color: var(--main);
}

nav.breadcrumb {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

.page-heading-wrap {
    padding-top: 200px;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}

.page-heading {
    max-width: 1320px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-heading h2 {
    font-size: 76px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-bottom: 16px;
}

.page-heading p {
    display: inline-block;
    background: var(--main);
    color: white;
    letter-spacing: 0.1em;
}

.page-heading__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-heading__cover {
    aspect-ratio: 1080 / 480;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 20px;
    margin: auto;
    margin-top: 20px;
    max-width: 1320px;
}

.page-heading__cover.page-heading__cover--guide {
    aspect-ratio: 1080 / 346;
}

ul.page-navi {
    max-width: 1280px;
    margin: auto;
    padding-left: 120px;
    padding-right: 120px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 60px;
}

ul.page-navi.page-navi--recruit.font-zen {
    justify-content: center;
}

ul.page-navi li {
    flex: 0 0 220px;
}

ul.page-navi li a {
    display: flex;
    align-items: center;
    background: var(--main);
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    height: 60px;
    position: relative;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid var(--main);
}



.page-navi__icon {
    position: absolute;
    background: white;
    right: 18px;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
}

.c-page-title {
    padding-bottom: 60px;
}

.c-page-title h2 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.c-page-title__sub:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--main);
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 30px;
}

p.c-page-title__sub {
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}

p.c-page-title__desc {
    font-size: 18px;
    margin-top: 40px;
    line-height: 1.6em;
    letter-spacing: 0.1em;
}

/*-------共通パーツここまで--------*/


/*-------イントロ--------*/
.intro {
    position: relative;
    padding-top: 40px;
    padding-left: 120px;
    padding-right: 120px;
}

.pitch {
    width: 100%;
    max-width: 800px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.keyword {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 110px;
    position: absolute;
    top: 0;
    left: 0;
}

.keyword__track {
    display: flex;
    width: max-content;
    animation: keyword-scroll 40s linear infinite;
}

/* 2つ目 */
.keyword__track:nth-child(2) {
    animation: keyword-scroll 35s linear infinite;
}

/* 4つ目 */
.keyword__track:nth-child(4) {
    animation: keyword-scroll 30s linear infinite;
}

.keyword ul {
    display: flex;
    gap: 100px;
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 50px 0 0;
}

.keyword li {
    white-space: nowrap;
    padding: 16px 38px;
    font-size: 32px;
    font-weight: 500;
    color: white;
    position: relative;
    letter-spacing: 0.08em;
}

.keyword li:before {
    content: "#";
    font-family: 'Archivo', sans-serif;
    font-size: 54px;
    position: absolute;
    opacity: 0.4;
    top: 0;
    left: 20px;
}

.keyword li.blue {
    background: var(--blue);
}

.keyword li.yellow {
    background: var(--yellow);
}

.keyword li.green {
    background: var(--green);
}

.keyword li.green2 {
    background: var(--green2);
}


.keyword li.purple {
    background: var(--purple);
}

.keyword li.pink {
    background: var(--pink);
}

.keyword li.orange {
    background: var(--orange);
}

/* 右 → 左 */
@keyframes keyword-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-company {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.top-company__image {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: calc(55% - 80px);
    max-width: 525px;
}

.top-company__body {
    width: 45%;
    padding-top: 40px;
}

.top-company__image img {
    width: 100%;
}

.top-company__body h3 {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-bottom: 32px;
    line-height: 1.4em;
}

.top-company__body h3 span.mini {
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
    line-height: 1em;
}

.top-company__body h3 span.strong:before {
    content: "“";
    font-family: 'Rubik', 'Archivo', sans-serif;
}

.top-company__body h3 span.strong:after {
    content: "”";
    font-family: 'Rubik', 'Archivo', sans-serif;
}

.top-company__body h3 span.strong {
    color: var(--main);
}

.top-company__body p {
    font-size: 16px;
    line-height: 2.4em;
    letter-spacing: 0.1em;
}



/*-------イントロここまで--------*/

img.wave {
    width: 100%;
}

section.gradient {
    background: rgb(255 255 255 / 80%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

section.gradient:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 171, 236, 10.02);
    background: linear-gradient(90deg, rgba(0, 171, 236, 1) 0%, rgba(255, 230, 129, 1) 100%);
    z-index: -1;
}


/*-------JOB--------*/

.top-job {
    display: flex;
    align-items: center;
    gap: 80px;
}

.top-job__body {
    width: 35%;
}

.job-card {
    width: calc(65% - 80px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.job-card-item {
    width: calc(50% - 10px);
    border-radius: 16px;
    overflow: hidden;
}


.job-card-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    background: var(--main);
    padding: 30px;
    aspect-ratio: 1 / 1;
    height: 100%;
    transition: all 0.3s;
}



.job-card-item img {
    max-width: 85%;
    max-height: 78%;
}

.job-card-item p {
    padding: 12px;
    background: white;
    width: 90%;
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.05em;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}


.job-card-item.job-card-item--first a {
    background: var(--green);
}

.job-card-item.job-card-item--first a p {
    color: var(--green);
}

.job-card-item.job-card-item--second a {
    background: var(--yellow);
}

.job-card-item.job-card-item--second a p {
    color: var(--yellow);
}

.job-card-item.job-card-item--third a {
    background: var(--blue);
}

.job-card-item.job-card-item--third a p {
    color: var(--blue);
}

.job-card-item.job-card-item--forth a {
    background: var(--orange);
}

.job-card-item.job-card-item--forth a p {
    color: var(--orange);
}

.c-title.c-title--job {
    padding-bottom: 0;
}


/*-------JOBここまで--------*/

/*-------PROJECTS--------*/

.top-projects {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top-projects-item {
    display: flex;
    gap: 80px;
    align-items: center;
}

.top-projects-image img {
    width: 100%;
}

.top-projects-image {
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
}

.top-projects-body {
    width: 50%;
}

p.top-projects-body__num.font-web {
    font-size: 16px;
    color: var(--main);
    letter-spacing: 0.1em;
    padding-bottom: 10px;
}

h4.top-projects-body__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1.4em;
}

p.top-projects-body__desc {
    margin-top: 26px;
    color: #696969;
}

/*-------PROJECTSここまで--------*/



.member-card {
    display: block;
    width: 320px;
    border-radius: 16px;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*-----オレンジカード------*/
a.member-card.member-card--orange {
    background: var(--orange);
}

a.member-card.member-card--orange .member-card__image {
    border-color: var(--orange);
    background: #FFE9E5;
}

a.member-card.member-card--orange .member-card__catch span {
    color: var(--orange);
}

/*-----イエローカード------*/
a.member-card.member-card--yellow {
    background: var(--yellow);
}

a.member-card.member-card--yellow .member-card__image {
    border-color: var(--yellow);
    background: #FFEFCC;
}

a.member-card.member-card--yellow .member-card__catch span {
    color: var(--yellow);
}


/*-----ブルーカード------*/
a.member-card.member-card--blue {
    background: var(--blue);
}

a.member-card.member-card--blue .member-card__image {
    border-color: var(--blue);
    background: #dff3ff;
}

a.member-card.member-card--blue .member-card__catch span {
    color: var(--blue);
}

/*-----グリーンカード------*/
a.member-card.member-card--green {
    background: var(--green);
}

a.member-card.member-card--green .member-card__image {
    border-color: var(--green);
    background: #DAFFFB;
}

a.member-card.member-card--green .member-card__catch span {
    color: var(--green);
}




/* 画像エリア */
.member-card__image {
    border: 5px solid;
    padding: 24px 16px 0;
    position: relative;
    height: 24.5vw;
    max-height: 310px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.member-card__image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

/* テキストエリア */
.member-card__content {
    padding: 20px 24px 24px;
    color: #fff;
}

/* キャッチコピー */
.member-card__catch {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-weight: 600;
    line-height: 1.5;
    font-size: 14px;
    position: absolute;
    bottom: 18px;
    left: 12px;
}

.member-card__catch span {
    white-space: nowrap;
    display: inline-block;
    background: white;
    padding: 4px 0px 4px 10px;
    font-size: clamp(14px, 1.55vw, 20px);
    letter-spacing: 0;
}



/* 部署 */

/* 名前 */
.member-card__name {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: white;
}


.member-card__meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.member-card__meta p {
    font-size: 14px;
    color: white;
}

.splide.member-slider {
    max-width: 1400px;
    margin: auto;
}

.member-slider .splide__slide {
    padding-top: 8vw;
    padding-bottom: 0;
}

.member-slider .splide__slide {
    display: flex;
}

.member-slider .member-card {
    width: 100%;
}

.c-title.c-title--member.inner-1280 {
    padding-bottom: 40px;
}

.splide__list.is-limited {
    justify-content: center;
}

@media screen and (min-width:1441px) {
    .member-card__catch span {
        font-size: 20px;
    }

    .member-slider .splide__slide {
        padding-top: 60px;
    }
}




/*-------働く環境-------*/
a.environment-item {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid var(--black);
    padding: 20px 30px 20px 10px;
    min-height: 200px;

}

a.environment-item:last-of-type {
    border-bottom: 1px solid var(--black);
}

.environment-item__desc p {
    line-height: 1.6em;
}

.environment-item__title,
.environment-item__desc {
    transition: all 0.3s;
}

.environment-item__title h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.environment-item__title p {
    font-size: 14px;
    color: #8D8D8D;
    transition: all 0.3s;
}

.environment-item__image {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.environment-item__title {
    width: 180px;
    position: relative;
}

.environment-item__title:before {
    content: "";
    position: absolute;
    left: -50px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: url(../img/common/environment-icon.svg);
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.3s;
}

.environment-item__desc {
    width: calc(100% - 380px);
}

a.environment-item:nth-child(1) .environment-item__image img {
    max-width: 165px;
}

a.environment-item:nth-child(2) .environment-item__image img {
    max-width: 145px;
}

a.environment-item:nth-child(3) .environment-item__image img {
    max-width: 195px;
}

a.environment-item:nth-child(4) .environment-item__image img {
    max-width: 200px;
}

.workplace-bnr a {
    transition: all 0.3s;
    display: block;
}

.workplace-bnr a:hover {
    transform: translateY(-10px);
}


.recruit-marquee {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 45px;
    z-index: -1;
}

.recruit-marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.recruit-marquee__inner span {
    font-size: 112px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    margin-right: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

main.page.page-border.page--recruitment {
    padding-bottom: 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.recruit-banner h2 {
    font-size: 52px;
    font-weight: bold;
    padding: 40px 0;
    text-align: center;
    letter-spacing: 0.1em;
}


.recruit-banner.inner-1280 img {
    width: 100%;
    transition: all 0.3s;
}


section.footer-recruit {
    position: relative;
}




footer {
    background: white;
}

.footer-inner {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    justify-content: space-between;
    gap: 110px;
    align-items: flex-start;
}

a.footer-body__logo img {
    max-width: 220px;
}

.footer-body {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.more-btn.more-btn--footer {
    margin-top: 0;
}

p.footer-body__info span {
    font-size: 14px;
}

p.footer-body__info {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 500;
}

.footer-nav__item a {
    transition: all 0.3s;
}

.footer-nav__item a:hover {
    color: var(--main);
}

a.footer-body__corporate {
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 48px 26px;
    flex-wrap: wrap;
    max-width: 600px;
}

.footer-nav__item {
    width: calc(100% / 3 - 18px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-nav__item ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav__item ul li a {
    font-size: 14px;
    letter-spacing: 0.05em;
    position: relative;
    color: #a6a6a6;
    font-weight: 400;
    padding-left: 16px;
}

.footer-nav__item ul li a:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    background: #a6a6a6;
    left: 0;
    top: 10px;
}

p.copyright {
    text-align: center;
    padding: 16px;
    background: var(--black);
    color: white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
}


a.fix-btn {
    width: 165px;
    height: 165px;
    border-radius: 165px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--blue);
    background: linear-gradient(90deg, rgba(0, 171, 236, 1) 0%, rgba(255, 230, 129, 1) 100%);
    transition: all 0.2s;
    z-index: 3;
}

a.fix-btn p {
    color: white;
    font-size: 18px;
    font-weight: 500;
}


img.circle {
    position: absolute;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




a.fix-btn:hover {
    transform: scale(1.05);
}


/*------------背景-------------*/

.bg-wrap {
    position: absolute;
    z-index: -1;

}

.bg-wrap.bg01 {
    width: 50vw;
    left: 0;
    top: 45%;
    max-width: 800px;
}

.bg-wrap.bg02 {
    width: 45vw;
    right: 0;
    top: 20%;
    max-width: 750px;
}

.bg-wrap.bg03 {
    width: 53vw;
    left: 0;
    top: 21%;
    max-width: 850px;
}

.bg-wrap.bg03.bg03--location {
    top: 60%;
}

.bg-wrap.bg04 {
    width: 45vw;
    right: 0;
    top: 10%;
    max-width: 750px;
}

.bg-wrap.bg05 {
    width: 45vw;
    top: 10%;
    max-width: 750px;
}

/*------------会社を知る-------------*/

.message {
    display: flex;
    gap: 80px;
}

.message-body {
    width: calc(100% - 440px);
}

.message-image {
    width: 360px;
}

.message-image img {
    width: 100%;
    border-radius: 16px;
}

.message-body h3 {
    font-size: 34px;
    font-weight: bold;
    color: var(--main);
    letter-spacing: 0.05em;
    line-height: 1.4em;
    margin-bottom: 32px;
}

.message-body p {
    line-height: 2.4em;
    letter-spacing: 0.1em;
}

.message-profile {
    margin-top: 24px;
    letter-spacing: 0.1em;
}

p.message-profile__name span {
    font-size: 16px;
    margin-right: 10px;
}

p.message-profile__name {
    margin-top: 4px;
    font-size: 24px;
}

.bg-white {
    background: white;
    border-radius: 60px;
    padding: 100px 60px;
}

.purpose-image {
    max-width: 980px;
    margin: auto;
}

.purpose-image img {
    width: 100%;
}

.mvv {
    max-width: 780px;
    margin: auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mvv-item {
    display: flex;
    gap: 60px;
}

.mvv-item__body h5 span {
    font-size: 20px;
    color: var(--main);
}

.mvv-item__image img {
    max-width: 75px;
}

.mvv-item__body h5 {
    font-size: 30px;
    color: var(--main);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

p.mvv-item__desc {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 600;
}



ul.mvv-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.mvv-list li {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

p.mvv-list__title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--main);
    border-radius: 10px;
}

p.mvv-list__title {
    width: 170px;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: relative;
    padding-left: 14px;
}

ul.mvv-list.mvv-list--coc p.mvv-list__title {
    width: 100%;
}

p.mvv-list__desc {
    letter-spacing: 0.05em;
    width: calc(100% - 190px);
    line-height: 1.3em;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

img.business-item__image {
    max-width: 350px;
}

.business-item__body {
    width: calc(100% - 350px);
}

p.num span:last-of-type {
    font-size: 12px;
}

p.num span {
    font-size: 52px;
}

p.num {
    display: flex;
    flex-direction: column;
}

.business-item__title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.business-item__title h5 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

p.business-item__desc {
    margin-top: 28px;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}

.business-item:nth-child(1) p.num span {
    color: var(--green);
}

.business-item:nth-child(2) p.num span {
    color: var(--blue);
}

.business-item:nth-child(3) p.num span {
    color: var(--yellow);
}

.buisiness {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.business-item:nth-child(2) .business-item__body {
    order: 2;
}

.information-item {
    display: flex;
}

p.information-item__title {
    width: 240px;
}

p.information-item__desc,
ul.information-item__list {
    width: calc(100% - 240px);
    font-size: 18px;
    line-height: 1.4em;
}

.information>div {
    max-width: 860px;
    margin: auto;
}

p.information-item__title {
    width: 240px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.information-item {
    display: flex;
    padding: 40px 10px;
    border-top: 1px solid #E8E8E8;
}

.information-item:first-of-type {
    border: 0;
}

ul.information-item__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.information-item__list li span:last-of-type {
    width: calc(100% - 20px);
}

ul.information-item__list li span:first-of-type {
    display: block;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 5px;
    position: relative;
    top: 10px;
}

ul.information-item__list li {
    gap: 10px;
    display: flex;
}

ul.information-item__list li span:last-of-type a {
    text-decoration: underline;
    font-weight: 500;
}

.location-image img {
    width: 100%;
}

ul.location-icon li p {
    font-weight: 600;
    color: var(--main);
    font-size: 18px;
}

ul.location-icon li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

ul.location-icon {
    display: flex;
    gap: 20px;
}

.location-item {
    width: calc(50% - 20px);
    background: #F8F8F8;
    padding: 54px 50px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item-wrap {
    margin-top: 24px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.location-item h4 {
    font-size: 32px;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: var(--main);
    line-height: 1.4em;
}

ul.location-icon.location-icon--item {
    gap: 10px;
}

.location-item__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.4em;
}

p.location-item__map a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
}

p.location-item__map {
    display: flex;
    gap: 4px 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.location-access ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

p.location-access__title {
    font-weight: 600;
    color: var(--main);
    margin-bottom: 10px;
}

.location-access ul li span.dot {
    display: block;
}

.location-access ul li {
    font-size: 15px;
    line-height: 1.6em;
    display: flex;
}

.location-access ul li span.strong {
    font-weight: bold;
}

ul.location-icon.location-icon--guide {
    padding-left: 50px;
}


.data-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F8F8F8;
    align-items: center;
    border-radius: 16px;
    padding: 32px 48px;

}

.data-block-first .data-item {
    width: calc(50% - 10px);
}

.data-block-second .data-item {
    width: calc(100% / 3 - 14px);
}


h5.data-item__title {
    font-size: 2vw;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
}

.data-item__body {
    display: flex;
}

/* h5.data-item__title span {
    display: block;
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
    position: absolute;
    top: -18px;
    left: 6px;
} */

.data-item__body p.unit {
    font-size: 3.5vw;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 1.2vw;
}

.data-item__body p {
    font-size: 8vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1em;
}

.data-block-first {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.data-block-second {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.data-item__body img {
    margin-right: 6px;
}

.data-item.data-item--first p {
    color: var(--blue);
}

.data-item.data-item--first img {
    max-width: 75px;
    width: 6vw;
}

.data-item.data-item--second p {
    color: var(--pink);
}

.data-item.data-item--second img {
    max-width: 70px;
    width: 6vw;
}

.data-item.data-item--third p {
    color: var(--orange);
}

.data-item.data-item--third img {
    max-width: 80px;
    width: 6vw;
}

.data-item.data-item--fourth p {
    color: var(--yellow);
}

.data-item.data-item--fourth img {
    max-width: 68px;
    width: 5vw;
}

.data-item.data-item--fifth p {
    color: var(--purple);
}

.data-item.data-item--fifth img {
    max-width: 70px;
    width: 5vw;
}

.data-item.data-item--sixth p {
    /* color: #E94570; */
    color: var(--orange);
}

.data-item.data-item--sixth img {
    max-width: 70px;
    width: 5vw;
}

.data-item.data-item--seventh p {
    color: var(--green);
}

.data-item.data-item--seventh img {
    max-width: 110px;
    width: 7vw;
}

@media screen and (min-width:1281px) {
    .data-item__body p {
        font-size: 108px;
    }

    h5.data-item__title {
        font-size: 28px;
    }

    .data-item__body p.unit {
        font-size: 48px;
    }

    .data-item__body p.unit.font-archivo {
        font-size: 52px;
        padding-bottom: 0.8vw;
    }
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 18px;
}

.benefits-item {
    width: calc(100% / 3 - 12px);
    background: white;
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.benefits-item:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../img/environment/check-icon.svg);
    background-size: contain;
    background-position: center;
    right: 14px;
    top: 14px;
}

.benefits-item p span {
    font-size: 13px;
    max-width: 200px;
    line-height: 1.4em;
    display: inline-block;
    margin-top: 4px;
}

p.c-other.font-zen {
    text-align: center;
    font-size: 24px;
    margin-top: 40px;
    font-weight: 600;
}

div#training {
    margin-top: 100px;
}

.training-item {
    width: calc(50% - 20px);
    background: white;
    border-radius: 16px;
    padding: 40px 40px 70px 40px;
}

.training-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

img.training-item__image {
    width: 100%;
    max-width: 460px;
}

.training-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.training-item__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 460px;
}

.training-item__body p {
    font-size: 18px;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}

.training-item__body h5 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.workplace-bnr img {
    width: 100%;
}

@media screen and (min-width:960px) {
    .c-link-item a {
        display: flex;
        align-items: stretch;
        background: #F8F8F8;
        gap: 64px;
        border-radius: 16px;
        overflow: hidden;
    }
}


.c-link-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.c-link-item__image {
    width: 40%;
    overflow: hidden;
    min-width: 350px;
}

.c-link-item__body {
    width: 60%;
    padding-right: 64px;
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-link-item__body h3 {
    font-size: 28px;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.c-link-item__body p {
    line-height: 1.8em;
    letter-spacing: 0.1em;
}

.c-link-item {
    position: relative;
}

.c-link-item__text {
    display: flex;
    position: absolute;
    top: -37px;
    font-size: 52px;
    font-weight: bold;
}

.c-link-item__text {
    display: flex;
    position: absolute;
    top: -90px;
    font-size: 72px;
    font-weight: bold;
    align-items: flex-end;
    gap: 10px;
    left: 10px;
    z-index: -1;
}

.workplace .c-link-item__text {
    display: flex;
    position: absolute;
    top: -69px;
    font-size: 76px;
    font-weight: bold;
    align-items: flex-end;
    gap: 10px;
    left: 30px;
    z-index: -1;
    letter-spacing: 0.05em;
}

.c-link-item__text p {
    font-weight: 600;
}

p.c-link-item__num.font-web {
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 600;
    position: relative;
    top: -4px;
}

.c-link-list {
    display: flex;
    flex-direction: column;
    gap: 180px;
    padding-top: 80px;
}

.more-btn .more-btn__inner {
    display: flex;
    color: white;
    width: 180px;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border-radius: 40px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: all 0.3s;
    border: 1px solid;
}

.more-btn.more-btn--job .more-btn__inner {
    width: 220px;
}

.color-text {
    color: var(--item-color);
}

.color-bg {
    background: var(--item-color);
    border-color: var(--item-color);
}

/*-----------詳細ページ------------*/

.single-wrap {
    display: flex;
    gap: 80px;
}

nav.single-nav {
    width: 240px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

.single-list {
    width: calc(100% - 320px);
}

.single-item__image {
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 720 / 420;
    margin-top: 40px;
}

.single-item__image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

p.single-item__sub-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    margin-bottom: 14px;
}

.single-item h5 {
    font-size: 42px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 26px;
}

p.single-item__desc {
    line-height: 1.8em;
    letter-spacing: 0.05em;
}

.single-item:first-of-type {
    padding-top: 0;
    border: 0;
}

.single-item {
    padding: 80px 0;
    border-top: 1px solid #CFCFCF;
}

nav.single-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

nav.single-nav li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.05em;

    display: flex;
    align-items: center;
    gap: 10px;
    /* white-space: nowrap; */
    white-space: pre-wrap;
}

nav.single-nav li a p {
    width: calc(100% - 22px);
    color: #DBB1BC;
}

nav.single-nav li a span {
    width: 12px;
    height: 12px;
    display: block;
    background: #DBB1BC;
    border-radius: 13px;
}



nav.single-nav li.active a p {
    color: var(--main);
}

nav.single-nav li.active a span {
    background: var(--main);
}

.single-intro {
    padding-bottom: 120px;
    padding-top: 40px;
}

.single-intro p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8em;
}

.heading-line[data-color="main"] span {
    background: var(--main);
}

.heading-line[data-color="green"] span {
    background: var(--green);
}

.heading-line[data-color="blue"] span {
    background: var(--blue);
}

.heading-line[data-color="yellow"] span {
    background: var(--yellow);
}

.heading-line[data-color="orange"] span {
    background: var(--orange);
}

.heading-line[data-color="purple"] span {
    background: var(--purple);
}

.heading-line[data-color="pink"] span {
    background: var(--pink);
}

/*-----------仕事を知る一覧-----------*/

.c-job-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media screen and (min-width:960px) {
    .c-job-item a {
        background: #f8f8f8;
        display: flex;
        padding: 58px 68px;
        border-radius: 32px;
        gap: 68px;
        transition: all 0.3s;
    }

    .c-job-item a:hover {
        transform: translateY(-10px);
    }
}

.c-job-item__body h3 {
    font-size: 28px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 20px;
}

.c-job-item__body p {
    line-height: 1.6em;
    letter-spacing: 0.1em;
}

.c-job-item__body {
    width: calc(100% - 294px);
}

.c-job-item__image {
    width: 226px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-job-item__image>div {
    aspect-ratio: 226 / 157;
    overflow: hidden;
    border-radius: 12px;
}

.c-job-item__image>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}

.heading-copy h2 {
    font-size: 48px;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.4em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heading-copy h2 span.heading-line {
    margin-top: 10px;
}


.heading-copy h2 span {
    color: white;
    /* padding: 4px 12px;
    margin-top: 10px; */
    display: inline-block;
}

.heading-copy {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    padding: 0 160px;
    z-index: 2;
}

.heading-copy__inner {
    max-width: 1200px;
    margin: auto;
}


/*-----------仕事を知る詳細-----------*/

.single-intro.single-intro--job h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--main);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.single-intro.single-intro--job p {
    text-align: left;
}


.single-intro.single-intro--job {
    max-width: 1520px;
    margin: auto;
    padding: 0 160px;
}

.s-job-title {
    text-align: center;
    padding-bottom: 68px;
}

.s-job-title h3 {
    font-size: 38px;
    display: inline-block;
    border-top: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    color: var(--main);
    padding: 28px 60px;
    font-weight: 600;
    line-height: 1em;
}

section.s-job {
    padding-top: 0;
    padding-bottom: 160px;
}


.job-description-item {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    padding: 72px;
    border-radius: 32px;
    gap: 40px;
    transition: all 0.3s;
    position: relative;
}


.job-description-item__image {
    width: 40%;
    aspect-ratio: 414 / 280;
    border-radius: 16px;
    overflow: hidden;

}

.job-description-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-description-item__body {
    width: 60%;
}

.job-description-item__body h3 {
    font-size: 32px;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.job-description-item__body p {
    line-height: 1.6em;
    letter-spacing: 0.1em;
}

.job-description-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}


/* カウンター初期化（親要素） */
.job-description-list {
    counter-reset: job;
}

/* 各アイテムでカウントアップ */
.job-description-item {
    position: relative;
    counter-increment: job;
}

/* 番号表示 */
.job-description-item::before {
    content: counter(job, decimal-leading-zero);
    position: absolute;
    top: -60px;
    font-size: 100px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
}


.job-description-item:nth-child(1)::before {
    color: var(--green);
}

.job-description-item:nth-child(2)::before {
    color: var(--blue);
}

.job-description-item:nth-child(3)::before {
    color: var(--orange);
}




.work-flow-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* .work-flow-list:after {
    content: "";
    position: absolute;
    left: -40px;
    height: calc(100% + 40px);
    border-left: 2px dashed var(--main);
    width: 1px;
    z-index: -2;
    bottom: 50%;
} */


.work-flow-item {
    display: flex;
    gap: 20px;
    align-items: center;
}



.work-flow-item__content {
    width: calc(100% - 160px);
    position: relative;
    display: flex;
    padding: 40px 48px;
    background: #FEF6F2;
    border-radius: 22px;
    align-items: center;
}

.work-flow-item__image {
    width: 254px;
    aspect-ratio: 254 / 172;
    border-radius: 16px;
    overflow: hidden;
}

.work-flow-item__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.work-flow-item.work-flow-item--image .work-flow-item__content {
    gap: 32px;
}

.work-flow-item.work-flow-item--image .work-flow-item__body {
    width: calc(100% - 286px);
}

.work-flow-item__body h5 {
    font-size: 24px;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 14px;
}

.work-flow-item__body p {
    letter-spacing: 0.1em;
    line-height: 1.6em;
}

.work-flow-item__time p {
    font-size: 32px;
    color: var(--main);
    font-weight: 600;
}

.work-flow-item__time {
    width: 140px;
    position: relative;
}

.work-flow-item__time:before {
    content: "";
    position: absolute;
    right: 8px;
    width: 23px;
    height: 23px;
    background: var(--main);
    border-radius: 20px;
    top: 8px;
}

.work-flow-item:first-of-type .work-flow-item__content:after {
    display: none;
}

.work-flow-item__content:before {
    content: "";
    position: absolute;
    left: -40px;
    height: 50%;
    border-left: 2px dashed var(--main);
    width: 1px;
    z-index: -2;
    bottom: calc(50% - 80px);
    bottom: 3px;
}

.work-flow-item__content:after {
    content: "";
    position: absolute;
    left: -40px;
    height: calc(50% + 40px);
    border-left: 2px dashed var(--main);
    width: 1px;
    z-index: -2;
    bottom: 50%;
}

.work-flow-item:last-of-type .work-flow-item__content:before {
    display: none;
}



.inteview-list {
    display: flex;
    max-width: 820px;
    flex-wrap: wrap;
    gap: 140px 80px;
    justify-content: center;
    margin: auto;
}


.interview-intro p {
    font-size: 18px;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}

.interview-intro {
    text-align: center;
    padding-bottom: 120px;
}

.heading-copy--interview h2 span {
    color: var(--heading-color);
}

.heading-copy.heading-copy--interview h2 span {
    font-size: 3vw;
    background: white;
    line-height: 1.4em;
    display: inline-block;
    padding-right: 0;
}

@media screen and (min-width:1441px) {
    .heading-copy.heading-copy--interview h2 span {
        font-size: 42px;
    }
}

.heading-copy.heading-copy--interview {
    position: static;
    padding: 0;
    margin-top: 32px;
}

.interview-heading__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.interview-heading__meta {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.interview-heading__meta p {
    color: white;
    font-size: 18px;
    letter-spacing: 0.05em;
}

p.interview-heading__name {
    font-size: 46px;
    font-weight: 600;
    color: white;
    margin-top: 16px;
}

/* デフォルト設定（変数を用意） */
.interview-heading {
    --bg-color: var(--orange);
    /* デフォルト */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-color);
    /* 変数を使用 */
    padding: 32px 70px;
    border-radius: 40px;
    aspect-ratio: 1080 / 480;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0;
    max-width: 1320px;
}

/* data-colorの値に応じて変数を書き換える */
.interview-heading[data-color="main"] {
    --bg-color: var(--main);
}

.interview-heading[data-color="orange"] {
    --bg-color: var(--orange);
}

.interview-heading[data-color="blue"] {
    --bg-color: var(--blue);
}

.interview-heading[data-color="green"] {
    --bg-color: var(--green);
}

.interview-heading[data-color="purple"] {
    --bg-color: var(--purple);
}

.interview-heading[data-color="pink"] {
    --bg-color: var(--pink);
}

.interview-heading[data-color="yellow"] {
    --bg-color: var(--yellow);
}

.heading-interview__image {
    width: 65%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.heading-interview__image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.triangle {
    width: 20%;
    padding-top: 100%;
    background-color: ココも同じく;
    clip-path: polygon(100% 25%, 100% 100%, 0% 100%);
    position: absolute;
    transform: rotate(180deg);
    left: -1px;
}


p.single-item__question span {
    color: var(--main);
}

p.single-item__question {
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}


p.single-item__question span.num {
    font-size: 1.4em;
    font-weight: 600;
    margin-left: 4px;
    letter-spacing: 0;
}

.single-item.single-item--qa h5 {
    color: var(--black);
    font-size: 32px;
    margin-bottom: 20px;
}


section.other-interview {
    padding-top: 0;
}

.single-list.single-list--interview .single-item:last-of-type {
    padding-bottom: 40px;
}


/*------採用情報------*/

a.job-description__link img {
    width: 100%;
}

a.job-description__link {
    transition: all 0.3s;
}



.job-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flow-list {
    display: flex;
    gap: 32px;
}

.flow-item {
    width: calc(100% / 6 - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
}

.flow-item:before {
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    border-bottom: 2px dashed var(--main);
    bottom: 66px;
    left: calc(50% + 11px);
}

.flow-item:last-of-type:before {
    display: none;
}

.flow-item:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--main);
    bottom: 60px;
    border-radius: 15px;
}

.flow-item__icon img {
    width: 60%;
}

.flow-item__icon {
    display: flex;
    width: 100%;
    background: #F8F8F8;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 100px;
}

.flow-item__body p {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

p.flow-item__subtext {
    font-size: 14px;
    margin-top: 6px;
}

p.flow-note {
    text-align: center;
    margin-top: 50px;
}


/*----歩き方----*/

.guide-title__step {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.guide-title {
    text-align: center;
    padding-bottom: 60px;
}

.guide-title h2 {
    font-size: 40px;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

span.mazuha {
    position: absolute;
    left: -40px;
    top: -50px;
    transform: rotate(-14deg);
}

.guide-title__step p span:first-of-type {
    padding-top: 5px;
}

.guide-title__step p span:last-of-type {
    font-size: 34px;
}

.guide-title__step p span {
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
}

.guide-title__step p {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(0, 171, 236, 1) 0%, rgba(255, 230, 129, 1) 100%);
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 14px;
    align-items: center;
}

.cta-btn {
    display: flex;
    justify-content: center;
    background: var(--main);
    align-items: center;
    gap: 14px;
    max-width: 600px;
    margin: auto;
    font-size: 32px;
    color: white;
    padding: 48px;
    border-radius: 90px;
    box-shadow: 0px 5px 10px #00000054;
    transition: all 0.3s;
}

.cta-btn p {
    color: white;
    font-weight: 500;
    letter-spacing: 0.07em;
}

.cta-btn:hover {
    transform: translateY(-10px);
}


.job-card.job-card--guide {
    display: flex;
    width: 100%;
}


.job-card.job-card--guide .job-card-item {
    width: calc(25% - 15px);
}

.job-card.job-card--guide .job-card-item a {
    aspect-ratio: 248 / 328;
    aspect-ratio: 0;
    padding-bottom: 30px;
    padding-top: 20px;
}

.job-card.job-card--guide .job-card-item img {
    max-width: 95%;
    max-height: 61%;
}

.job-card.job-card--guide .job-card-item p {
    width: 100%;
    font-size: 20px;
}

.card-more {
    display: flex;
    color: white;
    width: 180px;
    justify-content: center;
    align-items: center;
    padding: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 40px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: all 0.3s;
}

.intro.intro--guide {
    max-width: 800px;
    margin: auto;
    padding: 0;
}


.foot-print__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foot-print__inner img:nth-child(3) {
    position: relative;
    left: -50px;
    top: -30px;
}

.foot-print__inner img:nth-child(4) {
    position: relative;
    left: -50px;
    top: -30px;
}


.foot-print.foot-print--right {
    position: relative;
    left: 100px;
}

main.page.page-border.page--guide {
    overflow: hidden;
}

.foot-print.foot-print--left {
    position: relative;
    left: -100px;
    transform: scale(-1, 1);
}

main.page.page--guide section {
    padding-top: 60px;
    padding-bottom: 60px;
}

main.page.page--guide section:first-of-type {
    padding-top: 100px;
}

main.page.page--guide {
    padding-bottom: 100px;
}

/*---------------アニメーション------------------*/
span.curtain-line {
    color: white;
    position: relative;
    display: inline-block;
    padding: 5px 10px;
}

.page-heading__cover.curtain span.curtain-line {
    padding: 0;
}

.curtain.curtain--white span.curtain-line {
    color: white;
}


span.curtain-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--black);

    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s ease;
}


.curtain.on span.curtain-line::before {
    transform: scaleX(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.on {
    opacity: 1;
    transform: translateY(0);
}

.fade-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(.22, 1, .36, 1);
    /* easeOutQuart系 */

}


/* on が付いたら表示 */
.fade-stagger.on>* {
    opacity: 1;
    transform: translateY(0);
}

/* 順番ディレイ */
/* 0.25秒ずつ遅れて発火（バランス重視） */
.fade-stagger.on>*:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-stagger.on>*:nth-child(2) {
    transition-delay: 0.35s;
}

.fade-stagger.on>*:nth-child(3) {
    transition-delay: 0.6s;
}

.fade-stagger.on>*:nth-child(4) {
    transition-delay: 0.85s;
}

.fade-stagger.on>*:nth-child(5) {
    transition-delay: 1.1s;
}

.fade-stagger.on>*:nth-child(6) {
    transition-delay: 1.35s;
}

.fade-stagger.on>*:nth-child(7) {
    transition-delay: 1.6s;
}

.fade-stagger.on>*:nth-child(8) {
    transition-delay: 1.85s;
}

.fade-stagger.on>*:nth-child(9) {
    transition-delay: 2.1s;
}

.fade-stagger.on>*:nth-child(10) {
    transition-delay: 2.35s;
}

.fade-stagger.on>*:nth-child(11) {
    transition-delay: 2.6s;
}

.fade-stagger.on>*:nth-child(12) {
    transition-delay: 2.85s;
}

.fade-stagger.on>*:nth-child(13) {
    transition-delay: 3.1s;
}

.fade-stagger.on>*:nth-child(14) {
    transition-delay: 3.35s;
}


/*---------------アニメーションここまで------------------*/

/*-------- ハンバーガーメニュー全体の設定 --------*/

/* メニュー本体：display:noneは使わずvisibilityで制御 */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    padding: 100px 60px 40px;
    overflow-y: auto;
    /* 初期状態：透明・少し下 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sp-nav nav {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

/* メニュー表示時 */
.sp-nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ボタン本体 */
.hamburger {
    position: fixed;
    top: 18px;
    right: 20px;
    background: var(--main);
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50px;
    display: none;
    /* デフォルト非表示、メディアクエリで出す */
}

/* 3本線の共通設定 */
.hamburger span {
    display: block;
    position: absolute;
    left: 14px;
    width: 22px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s;
}

.hamburger span:nth-child(1) {
    top: 16px;
}

.hamburger span:nth-child(2) {
    top: 24px;
}

.hamburger span:nth-child(3) {
    bottom: 16px;
}

/* ボタン表示時（X印） */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

ul.nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-title {
    position: relative;
    font-size: 20px;
    padding: 10px;
}

.nav-title a {
    cursor: pointer;
    transition: all 0.3s;
}

ul.sub-menu li a {
    transition: all 0.3s;
}

/* ＋アイコンの制御 */
.nav-title__icon {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 30px;
    top: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-title__icon span {
    width: 25px;
    height: 2px;
    background: var(--main);
    position: absolute;
    top: 14px;
    transition: all 0.3s;
}

/* 縦棒を回して＋に見せる */
.nav-title__icon span:last-of-type {
    transform: rotate(90deg);
}

/* active時に縦棒を寝かせてーに見せる */
.nav-item.active .nav-title__icon span:last-of-type {
    transform: rotate(0deg);
}

/* サブメニューのゆっくり開閉（Gridを使用） */
/* サブメニューの土台 */
.sub-menu {
    display: grid;
    grid-template-rows: 0fr;
    /* 最初は高さ0 */
    transition: grid-template-rows 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    overflow: hidden;
    background: #fff5f7;
    border-radius: 16px;
    margin: 0;
    padding: 0 40px 0 60px;
    /* 閉じている時は上下パディングを0に */

    /* gridの隙間が閉じている時に見えないようにする */
    gap: 0;
}

/* アクティブ時（.activeがついた時） */
.sub-menu.active {
    grid-template-rows: 1fr;
    /* 中身に合わせて広がる */
    margin: 10px 0;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 14px;
}

/* Gridを滑らかに動かすための必須設定 */
.sub-menu-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* リスト間の隙間 */
}

.sub-menu-inner li {
    list-style: none;
}

.sub-menu-inner {
    min-height: 0;
}

.sub-menu li {
    list-style: disc;
    padding-left: 0px;
}

/* PC/SPの切り替え */
@media screen and (max-width:1200px) {
    .hamburger {
        display: block;
    }

    .pc-nav-wrapper {
        display: none;
    }
}


.sp-block,
.tb-block {
    display: none;
}


.not-found.inner-1280 {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.not-found.inner-1280 h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--main);
    letter-spacing: 0.05em;
    line-height: 1.4em;
}

.breadcrumb__item:last-child::after {
    display: none;
}

/*-----------タブレット以上のみアニメーション----------*/
@media screen and (min-width:960px) {
    .guide-bnr a:hover {
        transform: translateY(-10px);
    }

    .nav-title a:hover,
    ul.sub-menu li a:hover {
        color: var(--main);
    }

    .job-card-item a:hover {
        background: var(--main);

    }

    .job-card-item a:hover p {
        color: var(--main);
    }

    .more-btn a:hover {
        background: white;
        color: var(--main);
        border: 1px solid var(--main);
    }


    .more-btn a:hover span {
        background: var(--main);
    }

    .more-btn a:hover span:before,
    .more-btn a:hover span:after {
        background: var(--main);
    }

    /* hover */
    .member-card:hover {
        transform: translateY(-8px);
    }

    a.environment-item:hover .environment-item__title,
    a.environment-item:hover .environment-item__desc {
        transform: translateX(40px);
    }

    a.environment-item:hover .environment-item__title * {
        color: var(--main);

    }

    .environment-item:hover .environment-item__title:before {
        opacity: 1;
    }

    .recruit-banner.inner-1280 a:hover img {
        transform: translateY(-8px);
    }


    ul.page-navi li a:hover {
        background: white;
        color: var(--main);
    }

    a:hover .color-bg {
        background: white;
        color: var(--item-color);
        border: 1px solid var(--item-color);
    }

    a:hover .color-bg span,
    a:hover .color-bg span::before,
    a:hover .color-bg span::after {
        background: var(--item-color);
    }

    .c-link-item a:hover .c-link-item__image img {
        transform: scale(1.1);
    }

    a.job-description__link:hover {
        transform: translateY(-10px);
    }

}

/*-----------タブレット以下----------*/
@media screen and (max-width:959px) {


    .catch-copy {
        left: 50px;
        width: 35vw;
    }

    .catch-copy p {
        padding-left: 10px;
    }

    /* .inner-1280 {
        padding-left: 60px;
        padding-right: 60px;
    } */

    .c-title h2 {
        font-size: 48px;
    }

    p.c-title__desc {
        font-size: 16px;
    }

    .guide-bnr {
        padding: 0 60px;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
        position: relative;
    }

    .keyword {
        gap: 64px;
    }

    .keyword li {
        white-space: nowrap;
        padding: 16px 28px;
        font-size: 20px;
    }

    .keyword li:before {
        font-size: 34px;
    }

    .c-title {
        padding-bottom: 40px;
    }

    .top-company {
        flex-direction: column;
    }

    .top-company__body {
        width: 100%;
        padding-top: 0;
        order: 1;
    }

    .top-company__image {
        width: 100%;
        max-width: none;
        order: 2;
    }

    .top-job {
        flex-direction: column;
        gap: 60px;
    }

    .top-job__body {
        width: 100%;
    }

    .job-card {
        width: 100%;
    }

    .top-projects-item {
        flex-direction: column;
        gap: 40px;
    }

    .top-projects-image {
        width: 100%;
    }

    .top-projects-body {
        width: 100%;
    }

    .member-card__image {
        height: 340px;
        max-height: none;
    }

    .member-card__catch span {
        font-size: 20px;
    }

    .environment-item__desc {
        display: none;
    }

    a.environment-item {
        justify-content: space-between;
    }

    .recruit-banner h2 {
        font-size: 38px;
    }

    .recruit-marquee__inner span {
        font-size: 82px;
    }

    .recruit-marquee {
        top: 35px;
    }

    section.gradient {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section.gradient.footer-recruit {
        padding-top: 40px;
    }

    .footer-nav {
        display: none;
    }

    .footer-inner {
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer-body {
        gap: 36px;
        align-items: center;
        text-align: center;
    }

    .environment-item__title h4 {
        font-size: 20px;
    }

    .sp-nav {
        padding-top: 200px;
    }

    .sp-nav nav {
        margin-top: 0;
        max-width: 500px;
    }

    ul.nav-list {
        gap: 28px;
    }

    h1 img {
        width: 160px;
        transition: all 0.3s;
    }

    .hamburger {
        top: 30px;
    }

    section.pd-small {
        padding-top: 40px;
    }

    .top-projects {
        gap: 100px;
    }

    .page-heading-wrap {
        padding-left: 60px;
        padding-right: 60px;
    }

    ul.page-navi {
        padding-left: 60px;
        padding-right: 60px;
    }

    ul.page-navi li {
        flex: 0 0 200px;
    }

    ul.page-navi li a {
        padding: 10px 14px;
        font-size: 16px;
    }

    .message {
        flex-direction: column;
        gap: 40px;
    }

    .message-image {
        order: 1;
        width: 100%;
    }

    .message-body {
        width: 100%;
        order: 2;
    }

    .message-body h3 {
        font-size: 32px;
    }

    .c-page-title h2 {
        font-size: 36px;
    }

    .mvv-item {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .mvv-item__image img {
        max-width: 120px;
    }

    .mvv-item__body h5 {
        text-align: center;
        font-size: 26px;
    }

    .purpose-image {
        max-width: 280px;
    }

    p.c-page-title__desc {
        font-size: 16px;
    }

    .buisiness {
        gap: 80px;
    }

    .business-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .business-item__body {
        width: 100%;
        order: 2;
    }

    img.business-item__image {
        max-width: 100%;
    }

    .information-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0px;
    }

    p.information-item__desc,
    ul.information-item__list {
        width: 100%;
    }

    p.information-item__desc,
    ul.information-item__list {
        font-size: 16px;
    }

    .bg-white {
        background: white;
        border-radius: 40px;
        padding: 60px 60px;
    }

    ul.location-icon.location-icon--guide {
        padding-left: 0;
        margin-top: 30px;
        justify-content: center;
    }

    .location-item {
        width: 100%;
    }

    .location-image-second__title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .location-image-second {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        background: linear-gradient(56deg, rgba(0, 171, 236, 0.2) 0%, rgba(255, 230, 129, 0.2) 100%);
        border-radius: 16px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    img.fictvietnam {
        max-width: 90%;
    }

    .c-job-item {
        background: #f8f8f8;
        display: flex;
        padding: 58px 68px;
        border-radius: 32px;
        gap: 68px;
        transition: all 0.3s;
    }

    .c-job-item {
        flex-direction: column;
        gap: 30px;
    }

    .more-btn.more-btn--job a {
        padding: 0;
        border: 0;
        width: 220px;
        background: none;
    }

    .c-job-item__body {
        width: 100%;
    }

    .c-job-list {
        display: flex;
    }

    .c-job-item__image {
        order: 1;
    }

    .c-job-item__body {
        order: 2;
    }

    .c-job-item__image {
        width: 100%;
    }

    .c-job-item__image>div:last-of-type {
        display: none;
    }

    .c-job-list.tb-block {
        display: flex;
    }

    .c-job-item__body p {
        letter-spacing: 0.1em;
        font-size: 15px;
        line-height: 1.8em;
    }

    .heading-copy {
        padding: 0 90px;
    }

    .heading-copy h2 {
        font-size: 28px;
    }

    .heading-copy {
        bottom: -20px;
    }

    .single-intro.single-intro--job {
        padding: 0 90px;
    }

    .single-intro.single-intro--job h3 {
        font-size: 24px;
    }

    .single-intro p {
        font-size: 16px;
    }

    .s-job-title h3 {
        font-size: 24px;
        padding: 24px 40px;
    }

    .job-description-item {
        flex-direction: column;
    }

    .job-description-item__body {
        width: 100%;
        order: 2;
    }

    .job-description-item__image {
        width: 100%;
    }

    .job-description-item__body h3 {
        font-size: 24px;
    }

    .job-description-item::before {
        top: -50px;
        font-size: 80px;
    }

    .more-btn.more-btn--description {
        margin-top: 20px;
    }

    .work-flow-item__content {
        flex-direction: column;
        gap: 20px;
    }

    .work-flow-item.work-flow-item--image .work-flow-item__body {
        width: 100%;
    }

    .work-flow-item__image {
        width: 100%;
    }

    .c-link-item {
        display: flex;
        align-items: stretch;
        gap: 64px;
    }

    .c-link-item .more-btn a {
        padding: 0;
        border: 0;
        background: none;
    }

    .c-link-item {
        flex-direction: column;
        gap: 0;
    }

    .c-link-item__body {
        width: 100%;
        padding: 40px 60px 60px 60px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        overflow: hidden;
        background: #F8F8F8;
    }

    .c-link-item__image {
        width: 100%;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .projects.c-link-list.inner-1280.tb-block {
        display: flex;
        gap: 120px;
    }

    .c-link-item__text {
        top: -64px;
        font-size: 52px;
        gap: 10px;
        left: 30px;
    }

    .workplace.c-link-list.inner-1280.tb-block {
        display: flex;
    }


    .inteview-list {
        gap: 80px 30px;
    }

    .interview-heading {
        padding: 32px 50px;
    }

    p.interview-heading__name {
        font-size: 36px;
    }

    .interview-heading__meta p {
        font-size: 14px;
    }

    .heading-copy.heading-copy--interview h2 span {
        letter-spacing: 0em;
    }

    .heading-copy.heading-copy--interview {
        margin-top: 0;
    }

    .single-intro p {
        text-align: left;
    }

    .single-wrap {
        flex-direction: column;
        gap: 60px;
    }

    nav.single-nav ul {
        gap: 14px;
        align-items: flex-start;
    }

    nav.single-nav ul li {
        width: 100%;
    }

    .single-list {
        width: 100%;
    }

    nav.single-nav {
        width: 100%;
        padding: 40px 60px;
        background: #F8F8F8;
        border-radius: 16px;
        position: static;
    }

    .data-block-first .data-item {
        width: 100%;
    }

    .data-block-second .data-item {
        width: 100%;
    }

    .data-block-second {
        flex-direction: column;
    }

    .benefits-item {
        width: calc(100% / 2 - 9px);
    }

    .benefits-item {
        font-size: 16px;
    }

    .training-list {
        align-items: center;
        justify-content: center;
    }

    .training-item {
        width: 80%;
    }

    .training-item__body p {
        font-size: 16px;
    }

    .training-item__body h5 {
        font-size: 24px;
    }

    .flow-list {
        flex-direction: column;
    }

    .flow-item {
        flex-direction: row;
    }

    .flow-item {
        flex-direction: row;
        width: 100%;
        gap: 100px;
    }

    .flow-item__body {
        width: calc(100% - 260px);
    }

    .flow-item__icon {
        display: flex;
        width: 160px;
    }

    .flow-item:before {
        content: "";
        position: absolute;
        width: 1px;
        height: calc(100% + 32px);
        border-left: 2px dashed var(--main);
        bottom: calc(-50% + -32px);
        left: 206px;
    }

    .single-item h5 {
        font-size: 32px;
    }

    p.single-item__sub-title {
        font-size: 22px;
    }

    .flow-item:after {
        left: 200px;
        top: calc(50% - 7px);
    }

    p.flow-item__subtext {
        font-size: 18px;
    }

    .flow-item__body p {
        text-align: center;
        font-size: 22px;
    }

    .flow-item:after {
        left: 200px;
    }

    .intro.intro--guide {
        max-width: 80%;
    }

    .guide-title h2 {
        font-size: 28px;
    }

    main.page.page--guide section {
        padding-top: 20px;
    }

    .job-card.job-card--guide .job-card-item {
        width: calc(50% - 10px);
        border-radius: 16px;
        overflow: hidden;
    }

    .location-image-second.tb-block {
        display: flex;
    }

    .tb-none {
        display: none;
    }

    .tb-block {
        display: block;
    }

    .interview-intro p {
        font-size: 16px;
        text-align: left;
    }

    main.page {
        padding-bottom: 120px;
    }

}

/*-----------タブレット以下ここまで----------*/


/*-----------スマホ以下----------*/
@media screen and (max-width:520px) {
    .hamburger {
        width: 40px;
        height: 40px;
        top: 29px;
    }

    .hamburger span {
        width: 17px;
        left: 12px;
    }

    .hamburger span:nth-child(1) {
        top: 13px;
    }

    .hamburger span:nth-child(2) {
        top: 19px;
    }

    .hamburger span:nth-child(3) {
        bottom: 13px;
    }

    .hamburger.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    h1 img {
        width: 120px;
    }

    .sp-none {
        display: none;
    }

    .sp-block {
        display: block;
    }

    .inner-1280 {
        padding-left: 30px;
        padding-right: 30px;
    }

    a.fix-btn {
        width: 100px;
        height: 100px;
    }

    img.circle {
        width: 90px;
        height: 90px;
    }

    a.fix-btn img:first-of-type {
        width: 26px;
    }

    a.fix-btn p {
        font-size: 12px;
    }

    .c-title h2 {
        font-size: 46px;
        letter-spacing: 0.05em;
        padding-bottom: 10px;
    }

    .mainvisual-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 140px;
    }

    .catch-copy {
        position: static;
        width: 85%;
        padding-bottom: 16px;
    }

    .mainvisual-image.splide__list {
        border-radius: 24px;
        width: 100%;
    }

    .catch-copy {
        order: 1;
    }

    div#mvSlider {
        order: 2;
    }

    .catch-copy p {
        display: none;
    }

    .mainvisual {
        padding: 0 20px;
    }

    .bg-wrap.bg01 {
        width: 75vw;
        left: 0;
        top: 50%;
        max-width: 800px;
    }

    .catch-text {
        order: 3;
        line-height: 2em;
        letter-spacing: 0.15em;
        padding-left: 10px;
        font-size: 16px;
    }

    main.top {
        padding: 50px 0;
    }

    .guide-bnr {
        padding: 0 30px 20px;
    }

    p.font-zen.c-title__sub {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    p.c-title__desc {
        font-size: 15px;
        line-height: 1.8em;
        margin-top: 24px;
    }

    .keyword li {
        padding: 10px 20px;
    }

    .keyword li:before {
        left: 8px;
    }

    .intro {
        position: relative;
        padding-top: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .keyword {
        gap: 40px;
    }

    .top-company__body h3 {
        font-size: 28px;
        padding-bottom: 20px;
    }

    .top-company__body p {
        font-size: 15px;
        line-height: 1.8em;
        letter-spacing: 0.1em;
    }

    .more-btn a {
        width: 170px;
        padding: 16px;
        font-size: 15px;
    }

    .more-btn a {
        margin-left: auto;
        margin-right: auto;
    }

    .bg-wrap.bg02,
    .bg-wrap.bg06 {
        width: 70vw;
        top: 40%;
    }

    .job-card-item img {
        max-width: 90%;
        max-height: 72%;
    }

    section.gradient {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .top-job.inner-1280 {
        padding-right: 0;
        padding-left: 0;
    }

    .c-title.c-title--job {
        padding-left: 30px;
        padding-right: 30px;
        gap: 40px;
    }

    .job-card-item a {
        padding: 20px 20px 40px 20px;
        aspect-ratio: auto;
        gap: 20px;
    }

    .job-card-item p {
        font-size: 18px;
        letter-spacing: 0.05em;
        width: 95%;
    }

    .top-job.inner-1280 .more-btn {
        margin-top: 0;
    }

    p.top-projects-body__num.font-web {
        font-size: 14px;
    }

    h4.top-projects-body__title {
        font-size: 20px;
    }

    p.top-projects-body__desc {
        margin-top: 14px;
        font-size: 15px;
    }

    .top-projects.inner-1280 .more-btn {
        margin-top: 32px;
    }

    .bg-wrap.bg03,
    .bg-wrap.bg07 {
        width: 80vw;
        left: 0;
        top: 50%;
        max-width: 850px;
    }

    .top-projects {
        gap: 60px;
    }

    .top-projects-item {
        gap: 20px;
    }

    .member-slider .splide__slide {
        padding-top: 15vw;
    }

    .member-card__image {
        height: 280px;
    }

    .member-card__meta p {
        font-size: 13px;
        white-space: nowrap;
    }

    .member-card__catch span {
        font-size: 16px;
    }

    .member-card__catch {
        bottom: 12px;
    }

    .member-card__content {
        padding: 12px 24px 14px;
    }

    a.environment-item {
        padding: 20px 0px 20px 0px;
        gap: 0;
        min-height: 130px;
    }

    .environment-item__title h4 {
        font-size: 18px;
    }

    a.environment-item:nth-child(1) .environment-item__image img {
        max-width: 120px;
    }

    a.environment-item:nth-child(2) .environment-item__image img {
        max-width: 100px;
    }

    a.environment-item:nth-child(3) .environment-item__image img {
        max-width: 130px;
    }

    a.environment-item:nth-child(4) .environment-item__image img {
        max-width: 134px;
    }

    .bg-wrap.bg04 {
        width: 75vw;
        right: 0;
        top: 61%;
        max-width: 750px;
    }

    .recruit-banner h2 {
        font-size: 32px;
    }

    .recruit-marquee {
        top: 45px;
    }

    .recruit-marquee__inner span {
        font-size: 62px;
    }

    p.copyright {
        font-size: 12px;
    }

    .recruit-banner.inner-1280 a {
        position: relative;
    }

    .recruit-banner.inner-1280 a:before {
        content: "";
        position: absolute;
        width: 68px;
        height: 110px;
        background: url("../img/common/recruit-banner-left.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        bottom: -20px;
        left: -20px;
        z-index: 2;
    }

    .recruit-banner.inner-1280 a:after {
        content: "";
        position: absolute;
        width: 70px;
        height: 87px;
        background: url("../img/common/recruit-bnr-note.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        bottom: -20px;
        right: -20px;
        z-index: 2;
    }

    .sp-nav {
        padding: 100px 30px 60px;
    }

    .nav-title {
        position: relative;
        font-size: 16px;
        padding: 10px;
        font-weight: 600;
    }

    .sub-menu li {
        font-size: 14px;
    }

    .sub-menu {
        border-radius: 12px;
        padding: 0 40px 0 50px;
    }

    .sub-menu.active {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .nav-title__icon span {
        width: 18px;
    }

    .nav-title__icon {
        top: 4px;
    }

    .sub-menu-inner {
        gap: 12px;
    }

    .c-title.c-title--job p.c-title__desc {
        font-size: 15px;
    }

    .page-heading-wrap {
        padding-left: 22px;
        padding-right: 22px;
        padding-top: 140px;
    }

    ul.page-navi {
        padding-left: 30px;
        padding-right: 30px;
    }

    .page-heading h2 {
        font-size: 46px;
        font-weight: bold;
        letter-spacing: 0.05em;
        padding-bottom: 10px;
    }

    .page-heading {
        padding-left: 8px;
        padding-right: 8px;
    }

    .page-heading p {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    .page-heading__cover {
        aspect-ratio: 332 / 165;
        border-radius: 16px;
    }

    .page-heading__cover.curtain span.curtain-line {
        height: 100%;
    }

    .breadcrumb__item:last-child::after {
        display: none;
    }

    li.breadcrumb__item {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .page-heading-wrap .bg-wrap.bg01 {
        top: 60%;
    }

    ul.location-icon li img {
        width: 35px;
    }

    ul.location-icon li p {
        font-size: 15px;
    }

    ul.page-navi li a {
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 6px;
        height: 40px;
    }

    ul.page-navi li {
        flex: 0 0 48%;
    }

    .page-navi__icon {
        right: 8px;
        width: 15px;
        height: 15px;
    }

    .page-navi__icon img {
        width: 7px;
    }

    ul.page-navi {
        gap: 10px;
    }

    .c-page-title h2 {
        font-size: 32px;
    }

    p.c-page-title__sub {
        font-size: 14px;
        padding-left: 15px;
    }

    .c-page-title__sub:before {
        top: 3px;
        width: 8px;
        height: 8px;
    }

    .c-page-title {
        padding-bottom: 40px;
    }

    .message-body h3 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .message-body p {
        letter-spacing: 0.1em;
        font-size: 15px;
        line-height: 1.8em;
    }

    .gradient .inner-1320 {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 0px;
    }

    .bg-white {
        border-radius: 20px;
        padding: 60px 32px;
    }

    .mvv-item {
        gap: 30px;
    }

    .mvv-item__body h5 span {
        font-size: 16px;
    }

    .mvv-item__body h5 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    p.mvv-item__desc {
        font-size: 15px;
        line-height: 1.6em;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .mvv {
        gap: 60px;
    }

    ul.mvv-list {
        gap: 15px;
    }

    ul.mvv-list li {
        flex-direction: column;
        gap: 8px;
        padding-top: 0;
    }

    p.mvv-list__title {
        width: 100%;
        font-size: 15px;
    }

    p.mvv-list__title:before {
        top: 7px;
    }

    p.mvv-list__desc {
        letter-spacing: 0.1em;
        width: 100%;
        line-height: 1.3em;
        font-size: 13px;
        padding-left: 14px;
    }

    ul.page-navi {
        padding-top: 32px;
    }

    .mvv-item__body {
        width: 100%;
    }

    section.pd-small {
        padding-top: 60px;
    }

    p.c-page-title__desc {
        font-size: 15px;
        margin-top: 24px;
        line-height: 1.8em;
        letter-spacing: 0.1em;
    }

    .business-item__title h5 {
        font-size: 26px;
    }

    p.business-item__desc {
        margin-top: 14px;
        line-height: 1.8em;
        letter-spacing: 0.1em;
        font-size: 15px;
    }

    .bg-white {
        padding: 40px 24px;
    }

    p.information-item__desc,
    ul.information-item__list {
        font-size: 15px;
    }

    p.information-item__title {
        width: 100%;
        font-size: 15px;
    }

    .information-item {
        gap: 10px;
        padding: 24px 0px;
    }

    .location-image-second__title img {
        width: 24px;
    }

    .location-image-second__title {
        font-size: 18px;
        padding-right: 20px;
    }

    ul.location-icon.location-icon--guide {
        padding-bottom: 10px;
    }

    .location-item {
        padding: 30px;
    }

    .location-item h4 {
        font-size: 22px;
    }

    .location-item__info {
        font-size: 14px;
    }

    p.location-access__title {
        font-size: 15px;
    }

    .location-access ul p {
        font-size: 14px;
        line-height: 1.6em;
    }

    .c-job-item {
        border-radius: 16px;
        padding: 38px 28px;
    }

    .c-job-item__body h3 {
        font-size: 24px;
    }

    .heading-copy h2 {
        font-size: 18px;
        line-height: 1.4em;
        letter-spacing: 0.05em;
    }

    .heading-copy {
        padding: 0;
        bottom: -60px;
    }

    .heading-copy h2 span.heading-line {
        margin-top: 6px;
    }

    .single-intro.single-intro--job {
        padding: 0px 30px 20px;
        margin-top: 60px;
    }

    .single-intro.single-intro--job h3 {
        font-size: 20px;
    }

    .single-intro p {
        font-size: 15px;
        line-height: 1.8em;
        text-align: left;
    }

    .s-job-title h3 {
        font-size: 20px;
        line-height: 1.4em;
        padding: 16px 30px;
    }

    .job-description-item::before {
        top: -36px;
        font-size: 58px;
    }

    .job-description-item {
        border-radius: 16px;
        padding: 38px 28px;
        gap: 28px;
    }

    .job-description-item__image {
        width: 100%;
        border-radius: 12px;
    }

    .job-description-item__body h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .job-description-item__body p {
        font-size: 15px;
        line-height: 1.8em;
    }

    .more-btn.more-btn--description {
        margin-top: 0px;
    }

    .job-description-list {
        gap: 50px;
    }

    section.s-job {
        padding-top: 0;
        padding-bottom: 80px;
    }

    .work-flow-item__time {
        width: 55px;
    }

    .work-flow-item__time p {
        font-size: 16px;
    }

    .work-flow-item {
        gap: 14px;
    }

    .work-flow-item__content {
        width: calc(100% - 69px);
    }

    .work-flow-item__content {
        border-radius: 16px;
        padding: 28px 24px;
    }

    .work-flow-item.work-flow-item--image .work-flow-item__content {
        gap: 20px;
    }

    .work-flow-item__body h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .work-flow-item__body p {
        font-size: 14px;
    }

    .work-flow-item__time:before {
        right: -2px;
        width: 10px;
        height: 10px;
        top: 5px;
    }

    .work-flow-item__content:before {
        left: -18px;
        border-left: 1px dashed var(--main);
    }

    .work-flow-item__content:after {
        border-left: 1px dashed var(--main);
        left: -18px;
    }

    .work-flow-item__image {
        border-radius: 12px;
    }

    .s-job-title {
        padding-bottom: 40px;
    }

    .bg-wrap.bg05 {
        width: 75vw;
    }

    .page-bg {
        gap: 940px;
    }

    .c-link-item__text {
        top: -45px;
        font-size: 36px;
        gap: 10px;
        left: 16px;
    }

    .c-link-item__body h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .c-link-item__body {
        padding: 32px 28px;
    }

    .c-link-item__image {
        min-width: 0;
        aspect-ratio: 315 / 236;
    }

    .c-link-item__body p {
        font-size: 15px;
    }

    p.c-link-item__num.font-web {
        top: -2px;
    }

    .projects.c-link-list.inner-1280.tb-block {
        gap: 100px;
        padding-top: 40px;
    }

    .more-btn .more-btn__inner {
        padding: 16px;
    }

    .single-intro {
        padding-bottom: 30px;
    }


    nav.single-nav li a p {
        font-size: 15px;
        color: var(--main);
    }

    nav.single-nav li a span {
        width: 10px;
        height: 10px;
        background: var(--main);
    }



    p.single-item__sub-title {
        font-size: 20px;
        letter-spacing: 0.05em;
    }

    .single-item h5 {
        font-size: 24px;
        letter-spacing: 0.05em;
    }

    p.single-item__desc {
        font-size: 15px;
    }

    .single-item__image {
        border-radius: 16px;
        margin-top: 20px;
    }

    .single-item {
        padding: 60px 0;
    }

    .more-btn.more-btn--back a {
        width: 170px;
        padding: 16px;
        font-size: 15px;
    }

    main.page {
        padding-bottom: 60px;
    }


    .workplace .c-link-item__text {
        top: -36px;
        font-size: 40px;
        gap: 10px;
        left: 20px;
    }

    .c-link-list {
        gap: 100px;
        padding-top: 40px;
    }

    .c-link-item .more-btn.more-btn--item {
        margin-top: 20px;
    }

    .member-slider .member-card {
        width: 260px;
    }

    .member-card {
        width: 260px;
    }

    .member-card__catch {
        left: 10px;
    }

    .interview-intro p {
        font-size: 15px;
    }

    .interview-intro {
        text-align: center;
        padding-bottom: 60px;
    }

    section.interview-wrap {
        padding-top: 40px;
    }

    nav.single-nav {
        padding: 30px 28px;
    }

    .single-item.single-item--qa h5 {
        font-size: 24px;
        line-height: 1.4em;
    }

    p.single-item__question {
        font-size: 14px;
    }

    p.single-item__question span.num {
        margin-left: 0;
    }

    .heading-interview__image {
        width: 100%;
        position: static;
        order: 1;
    }

    .interview-heading {
        flex-direction: column;
        padding: 0;
        aspect-ratio: auto;
        border-radius: 16px;
    }

    .interview-heading__body {
        order: 2;
        padding: 40px 40px 26px;
        position: relative;
    }

    .heading-copy.heading-copy--interview {
        margin-top: 0;
        position: absolute;
        top: -64px;
        left: 16px;
    }

    .triangle {
        display: none;
    }

    .heading-copy.heading-copy--interview h2 span {
        font-size: 17px;
    }

    p.interview-heading__name {
        font-size: 32px;
        margin-top: 10px;
    }

    .data-item__body p {
        font-size: 68px;
    }

    .data-item__body p.unit {
        font-size: 32px;
        padding-bottom: 10px;
        margin-left: 6px;
    }

    .data-item.data-item--first img {
        max-width: 75px;
        width: 46px;
    }

    h5.data-item__title {
        font-size: 18px;
    }

    .data-item.data-item--second img {
        width: 46px;
    }

    .data-item.data-item--third img {
        width: 46px;
    }

    .data-item.data-item--fourth img {
        width: 40px;
    }

    .data-item.data-item--fifth img {
        width: 48px;
    }

    .data-item.data-item--sixth img {
        width: 43px;
    }

    .data-item.data-item--seventh img {
        width: 65px;
    }

    .data-item__body img {
        margin-right: 10px;
    }

    h5.data-item__title span {
        white-space: nowrap;
    }

    .data-item.data-item--seventh h5.data-item__title {
        position: relative;
        top: 5px;
    }

    .data-item.data-item--seventh .data-item__body p.unit,
    .data-item.data-item--seventh .data-item__body p.unit {
        font-size: 38px;
    }

    .benefits-item {
        width: 100%;
        min-height: 100px;
    }

    .benefits-list {
        gap: 10px;
    }

    p.c-other.font-zen {
        font-size: 18px;
        margin-top: 32px;
    }

    .training-item {
        width: 100%;
        padding: 40px 28px;
    }

    .training-item__body h5 {
        font-size: 20px;
    }

    .training-item__body p {
        font-size: 15px;
    }

    .workplace-bnr a {
        position: relative;
    }

    .workplace-bnr a:before {
        content: "";
        position: absolute;
        width: 155px;
        height: 100px;
        background: url(../img/environment/workplace-bnr-accent.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        left: -30px;
        bottom: -30px;
    }

    .flow-item {
        gap: 50px;
    }

    .flow-item__icon {
        display: flex;
        width: 80px;
    }

    .flow-item__body {
        width: calc(100% - 130px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }

    .flow-item__body p {
        text-align: center;
        font-size: 20px;
    }

    p.font-zen.flow-item__subtext {
        font-size: 13px;
    }

    .flow-list {
        flex-direction: column;
        padding: 0 30px;
    }

    .flow-item:after {
        left: 115px;
        width: 10px;
        height: 10px;
    }

    .flow-item:before {
        left: 119px;
    }

    .flow-item:before {
        border-left: 1px dashed var(--main);
    }

    p.flow-note {
        text-align: center;
        margin-top: 32px;
        line-height: 1.6em;
    }

    a.job-description__link img {
        border-radius: 16px;
    }

    a.job-description__link {
        position: relative;
    }

    a.job-description__link:first-of-type:before {
        content: "";
        position: absolute;
        width: 70px;
        height: 85px;
        background: url(../img/recruit/recruit-bnr-new-accent.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        left: -19px;
        bottom: -14px;
    }

    a.job-description__link:last-of-type:before {
        content: "";
        position: absolute;
        width: 70px;
        height: 85px;
        background: url(../img/recruit/recruit-bnr-career-accent.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        left: -19px;
        bottom: -14px;
    }

    a.job-description__link:after {
        content: "";
        position: absolute;
        width: 55px;
        height: 68px;
        background: url(../img/recruit/recruit-bnr-note.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        right: -9px;
        bottom: -14px;
    }

    .bg-layer {
        padding-top: 1500px;
    }

    .job-card.job-card--guide.sp-none {
        display: none;
    }

    .guide-title h2 {
        font-size: 20px;
        line-height: 1.4em;
    }

    span.mazuha img {
        width: 100%;
    }

    span.mazuha {
        width: 80px;
        left: -23px;
        top: -30px;
    }

    .page-heading__cover.page-heading__cover--guide {
        aspect-ratio: auto;
        margin-top: 0;
    }

    .guide-title__step p span:first-of-type {
        padding-top: 5px;
        font-size: 15px;
    }

    .guide-title__step p span:last-of-type {
        font-size: 22px;
    }

    .guide-title__step p {
        gap: 5px;
        padding: 10px 30px;
        border-radius: 8px;
    }

    .guide-job.inner-1280 {
        padding: 0;
    }

    .guide-title {
        text-align: center;
        padding-bottom: 40px;
    }

    .foot-print.foot-print--left {
        position: relative;
        left: -60px;
    }

    .foot-print.foot-print--right {
        position: relative;
        left: 70px;
    }

    .cta-btn p {
        font-size: 20px;
    }

    .cta img {
        width: 30px;
    }

    .cta-btn {
        padding: 30px;
    }

    header {
        padding: 14px 20px;
    }

    .hamburger {
        top: 13px;
    }

    ul.nav-list {
        gap: 12px;
    }

    .not-found.inner-1280 {
        font-size: 15px;
    }

    .not-found.inner-1280 h3 {
        font-size: 20px;
    }

    h5.data-item__title span {
        display: block;
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-bottom: 4px;
        position: absolute;
        top: -18px;
        left: 6px;
    }

}