@charset "UTF-8";

/* ------------------------------ common style ------------------------------ */
:root {
    /* color */
    --color-base: #040505;

    /* transition */
    --transition-opacity: opacity 0.3s ease;

    /* hover opacity */
    --hover-opacity: 0.4;

    /* z-index */
    --z-menu: 1000;
    --z-header: 2000;
}


/* ------------------------------ common ------------------------------ */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    font-family: heisei-kaku-gothic-std, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 62.5%;
	line-height: 1.8;
    letter-spacing: 0.03em;
    color: var(--color-base);
	-webkit-text-size-adjust: 100%;
}
/* heisei w3:300, w5:500 */
@media screen and (max-width: 1000px) {
    html {
        line-height: 1.7;
    }
}

body {
    position: relative;
    font-size: 16px;
}
@media screen and (max-width: 1000px) {
    body {
        font-size: 15px;
    }
}

.body.is-fixed {
    position: fixed;
    width: 100%;
}

img, svg {
    object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

picture,
figure {
    display: block;
    padding: 0;
    margin: 0;
}

a {
    font-style: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    transition: var(--transition-opacity);
}

button {
    display: block;
    border-radius: 0;
    padding: 0;
    border: none;
    margin: 0;
    font-family: inherit;
    text-align: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    transition: var(--transition-opacity);
}

input, select, textarea {
    display: block;
    border-radius: 0;
    border: none;
    font-size: inherit;
    -webkit-appearance: none;
}

iframe {
    display: block;
    height: 100%;
}

.main {
    display: block;
    font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
    .main {
        font-size: 15px;
    }
}

.wrapper {
    width: 86.11%;
    max-width: 1500px;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 91.5%;
    }
}

.img-fill {
    width: 100%;
    height: 100%;
}

.is-weight5 {
    font-weight: 500;
}

.is-roboto {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
}
/* roboto regular:400, medium:500 */

.is-mincho {
    font-family: "Zen Old Mincho", heisei-kaku-gothic-std, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}
/* zen old mincho medium:500, semiBold:600 */

@media screen and (max-width: 1000px) {
    .is-pc {
        display: none !important;
    }
}

.is-sp {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    .is-sp {
        display: block !important;
    }
}


/* ------------- inview ------------- */
.inview {
    transform: translateY(4px);
    opacity: 0;
    transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}

.inview.is-action {
    transform: translateY(0);
    opacity: 1;
}

.inview-img {
    overflow: hidden;
}

.inview-img img {
    display: block;
    transform: scale(1.02);
    opacity: 0;
    transition: opacity 1.2s 0.4s, transform 1.2s 0.4s;
}

.inview-img.is-action img {
    transform: scale(1);
    opacity: 1;
}


/* ------------------------------ home ------------------------------ */
/* ------------- loading ------------- */
.loading {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.loading.is-load-end {
    pointer-events: none;
}

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 1s cubic-bezier(0.76, 0, 0.24, 1) 1s;
}

.loading.is-load-end .loading-background {
	top: 100%;
}

.loading-logo {
    position: absolute;
    top: 50%;
    left: 49.5%;
    transform: translate(-50%, -50%);
    width: 260px;
    transition: 0.8s 1.1s;
}
@media screen and (max-width: 600px) {
    .loading-logo {
        width: 200px;
    }
}

.loading.is-load-end .loading-logo {
    top: 48%;
	opacity: 0;
}

.loading-bar-frame {
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: 9005;
	width: calc(100% + 3px);
	height: calc(100% + 3px);
    transform: scaleX(-1);
}

.loading-bar {
    position: relative;
	z-index: 9005;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: width 0.6s cubic-bezier(.08,.22,.3,1) 0.1s;
}


/* ------------- home-kv ------------- */
.home-kv {
    position: relative;
    height: 100vh;
    min-height: 680px;
    max-height: 1300px;
    overflow: hidden;
}
@media screen and (max-width: 680px) {
    .home-kv {
        height: auto;
        min-height: 600px;
        max-height: 100vh;
    }
}

.home-kv-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    max-height: 1300px;
    transform: scale(1.04);
    transition: transform 2s 1s;
}
@media screen and (max-width: 680px) {
    .home-kv-img {
        height: auto;
        min-height: 600px;
        max-height: 100vh;
    }
}

.home-kv-img .img-fill {
    height: 100vh;
    min-height: 760px;
    max-height: 1300px;
}
@media screen and (max-width: 680px) {
    .home-kv-img .img-fill {
        height: auto;
        min-height: 600px;
        max-height: 100vh;
    }
}

.home-kv.is-load-end .home-kv-img {
    transform: scale(1);
}

.home-kv-copy {
    position: absolute;
    top: 23%;
    left: 44.3%;
    z-index: 10;
    width: 10.9%;
    min-width: 157px;
    max-width: 220px;
    opacity: 0;
    transition: opacity 1s 1.8s;
}
@media screen and (max-width: 1000px) {
    .home-kv-copy {
        top: 20.6%;
        left: 49.2%;
        transform: translateX(-50%);
        width: 32.8%;
        min-width: 126px;
        max-width: 150px;
    }
}

.home-kv.is-load-end .home-kv-copy {
    opacity: 1;
}

.home-kv-upper-shadow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 28.2%;
    background: linear-gradient(to bottom, rgba(4, 5, 5, 0.2), rgba(4, 5, 5, 0));
}
@media screen and (max-width: 680px) {
    .home-kv-lower-shadow {
        height: 66%;
    }
}

.home-kv-lower-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 24.2%;
    background: linear-gradient(to bottom, rgba(4, 5, 5, 0), rgba(4, 5, 5, 0.32));
}
@media screen and (max-width: 680px) {
    .home-kv-lower-shadow {
        height: 34%;
    }
}

.home-kv-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 26px;
    bottom: 20px;
    z-index: 10;
}
@media screen and (max-width: 1000px) {
    .home-kv-scroll {
        right: 13px;
        bottom: 14px;
    }
}

@media (hover: hover) {
    .home-kv-scroll:hover {
        opacity: 0.6;
    }
}

.home-kv-scroll-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(238, 239, 240, 0.6);
}
@media screen and (max-width: 1000px) {
    .home-kv-scroll-circle {
        width: 24px;
        height: 24px;
    }
}

.home-kv-scroll-icon {
    width: 10px;
    height: 10px;
}
@media screen and (max-width: 1000px) {
    .home-kv-scroll-icon {
        width: 8px;
        height: 8px;
    }
}

.home-kv-scroll-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}
@media screen and (max-width: 1000px) {
    .home-kv-scroll-text {
        font-size: 1.2rem;
    }
}


/* ------------- home-news ------------- */
.home-news {
    padding: 80px 0 90px 0;
}
@media screen and (max-width: 1000px) {
    .home-news {
        padding: 36px 0 60px 0;
    }
}

.home-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
    .home-news-head {
        padding-bottom: 18px;
    }
}

.heading-filled-text {
    padding: 0 6px;
    font-size: 4rem;
    line-height: 1.6;
    background: linear-gradient(to bottom, transparent 0.17em, #E8E9EA 0.17em, #E8E9EA 1.4em, transparent 1.4em);
}
@media screen and (max-width: 1000px) {
    .heading-filled-text {
        font-size: 3.2rem;
    }
}
@media screen and (max-width: 680px) {
    .heading-filled-text {
        font-size: 2.6rem;
    }
}

.home-news-head-link {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media screen and (max-width: 680px) {
    .home-news-head-link {
        gap: 8px;
    }
}

@media (hover: hover) {
    .home-news-head-link:hover {
        opacity: var(--hover-opacity);
    }
}

.home-news-head-link-text {
    position: relative;
    font-size: 1.7rem;
    font-weight: 600;
}
@media screen and (max-width: 1000px) {
    .home-news-head-link-text {
        font-size: 1.5rem;
    }
}

.home-news-head-link-text::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0.3em;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #040505;
}

.home-news-head-link-icon {
    width: 24px;
    height: 24px;
}
@media screen and (max-width: 1000px) {
    .home-news-head-link-icon {
        width: 20px;
        height: 20px;
    }
}

.home-news-list {
    display: flex;
}
@media screen and (max-width: 1000px) {
    .home-news-list {
        flex-direction: column;
        gap: 16px;
    }
}

.home-news-item {
    width: calc(100% / 3);
    border-left: 1px solid #DBDCDD;
}
@media screen and (max-width: 1000px) {
    .home-news-item {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #DBDCDD;
    }
}

.home-news-item:last-child {
    border-right: 1px solid #DBDCDD;
}
@media screen and (max-width: 1000px) {
    .home-news-item:last-child {
        border-right: none;
    }
}

.home-news-link {
    display: block;
    box-sizing: border-box;
    height: 100%;
    padding: 0 7.7%;
}
@media screen and (max-width: 1000px) {
    .home-news-link {
        padding: 0 0 18px 0;
    }
}

@media (hover: hover) {
    a.home-news-link:hover,
    a.news-item-link:hover {
        opacity: var(--hover-opacity);
    }
}

.home-news-link-info,
.news-item-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.home-news-link-info {
    padding-bottom: 8px;
}
@media screen and (max-width: 1000px) {
    .home-news-link-info {
        padding-bottom: 4px;
    }
}

.home-news-link-img,
.news-item-img {
    flex-shrink: 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding-top: 3.5px;
}
@media screen and (max-width: 1000px) {
    .home-news-link-img,
    .news-item-img {
        padding-top: 2px;
    }
}

.home-news-link-date,
.news-item-date {
    flex-shrink: 0;
    position: relative;
    padding-right: 10px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .home-news-link-date,
    .news-item-date {
        font-size: 1.3rem;
    }
}

.home-news-link-date::before,
.news-item-date::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #DBDCDD;
}

.home-news-link-category,
.news-item-category {
    padding-top: 1px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .home-news-link-category,
    .news-item-category {
        padding-top: 0;
        font-size: 1.25rem;
    }
}

.home-news-link-title,
.news-item-title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .home-news-link-title,
    .news-item-title {
        font-size: 1.4rem;
    }
}

.home-news-link-blank,
.news-item-blank {
    display: inline-block;
    width: 16px;
    height: 16px;
    padding-left: 8px;
    transform: translateY(5px);
}
@media screen and (max-width: 1000px) {
    .home-news-link-blank,
    .news-item-blank {
        transform: translateY(3px);
    }
}


/* ------------- home-intro ------------- */
.home-intro {
    position: relative;
    padding: 80px 0 140px 0;
}
@media screen and (max-width: 1000px) {
    .home-intro {
        padding: 32px 0 80px 0;
    }
}

.home-intro-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #0C1419;
}

.home-intro-background::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(12, 20, 25, 0.6);
    pointer-events: none;
}

.double-line {
    display: flex;
    gap: 3px;
    flex-direction: column;
    width: 100%;
}
@media screen and (max-width: 1000px) {
    .double-line {
        gap: 2px;
    }
}

.home-intro-double-line {
    position: relative;
    z-index: 5;
}

.double-line::before {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 0.5px;
}

.double-line::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
}

.double-line::before,
.double-line::after {
    background: #CECFD0;
}

.double-line.is-white::before,
.double-line.is-white::after {
    background: rgba(255, 255, 255, 0.4);
}

.home-intro-heading-pattern {
    position: relative;
    z-index: 5;
    padding: 20px 0 0 2px;
}
@media screen and (max-width: 1000px) {
    .home-intro-heading-pattern {
        padding: 12px 0 0 2px;
    }
}

.heading-pattern {
    display: flex;
    gap: 10px;
    align-items: center;
}

.heading-pattern-img {
    width: 12px;
    height: 12px;
}

.heading-pattern-text {
    font-size: 1.7rem;
    line-height: 1.6;
    font-weight: 500;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .heading-pattern-text {
        font-size: 1.4rem;
    }
}

.heading-pattern.is-white .heading-pattern-text {
    color: #D4D5D6;
}

.home-intro-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    padding: 46px 5.8% 0 5.4%;
    color: #fff;
}
@media screen and (max-width: 1000px) {
    .home-intro-container {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0 0 0;
    }
}

.home-intro-copy {
    font-size: 4.2rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    writing-mode: vertical-rl;
}
@media screen and (max-width: 1000px) {
    .home-intro-copy {
        font-size: 3.4rem;
        margin: 0 auto;
    }
}
@media screen and (max-width: 680px) {
    .home-intro-copy {
        font-size: 2.8rem;
    }
}

.home-intro-content {
    width: 71%;
    padding-top: 280px;
}
@media screen and (max-width: 1000px) {
    .home-intro-content {
        width: 100%;
        padding-top: 38px;
    }
}

.home-intro-text {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 2.2;
}
@media screen and (max-width: 1000px) {
    .home-intro-text {
        font-size: 1.5rem;
        line-height: 2;
        font-weight: 300;
    }
}

.home-intro-text + .home-intro-text {
    padding-top: 32px;
}
@media screen and (max-width: 1000px) {
    .home-intro-text + .home-intro-text {
        padding-top: 20px;
    }
}

.square-button {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 300px;
    padding: 19px 24px;
    border: 1px solid #AEAFB0;
    transition: background 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .square-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
    }
}
@media screen and (max-width: 680px) {
    .square-button {
        max-width: 999px;
    }
}

.square-button.is-white {
    border-color: rgba(255, 255, 255, 0.6);
}

@media (hover: hover) {
    .square-button:hover {
        background: #F3F4F5;
    }
}

@media (hover: hover) {
    .square-button.is-white:hover {
        background: rgba(212, 213, 214, 0.16);
    }
}

.home-intro-square-button {
    margin-top: 56px;
}
@media screen and (max-width: 1000px) {
    .home-intro-square-button {
        margin-top: 32px;
    }
}

.square-button-text {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
}
@media screen and (max-width: 1000px) {
    .square-button-text {
        font-size: 1.6rem;
    }
}

.square-button.is-white .square-button-text {
    color: #fff;
}

.square-button-arrow {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}
@media screen and (max-width: 1000px) {
    .square-button-arrow {
        width: 24px;
        height: 24px;
    }
}

.square-button-blank {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}


/* ------------- home-service ------------- */
.home-service {
    padding: 90px 0 120px 0;
}
@media screen and (max-width: 1000px) {
    .home-service {
        padding: 36px 0 80px 0;
    }
}

.home-serivce-lead {
    padding-top: 16px;
}

.home-service-list {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    flex-wrap: wrap;
    row-gap: 40px;
}
@media screen and (max-width: 1000px) {
    .home-service-list {
        padding-top: 30px;
    }
}
@media screen and (max-width: 680px) {
    .home-service-list {
        gap: 36px;
        flex-direction: column;
    }
}

.home-service-item {
    width: 49%;
}
@media screen and (max-width: 680px) {
    .home-service-item {
        width: 100%;
    }
}

.home-service-link {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.home-service-link-thumbnail {
    position: relative;
}

.home-service-link-img {
    overflow: hidden;
}

.home-service-link-img .img-fill {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

@media (hover: hover) {
    .home-service-link:hover .home-service-link-img .img-fill {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

.home-service-link-screen-career,
.home-service-link-screen-sukedachi,
.home-service-link-screen-shain,
.home-service-link-screen-gakuin {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: 5;
}

.home-service-link-screen-sukedachi {
    width: 32%;
}
@media screen and (max-width: 1000px) {
    .home-service-link-screen-sukedachi {
        bottom: -24px;
        width: 40%;
    }
}

.home-service-link-screen-shain {
    width: 40%;
}
@media screen and (max-width: 1000px) {
    .home-service-link-screen-shain {
        bottom: -28px;
        width: 48%;
    }
}

.home-service-link-screen-gakuin {
    width: 44%;
}
@media screen and (max-width: 1000px) {
    .home-service-link-screen-gakuin {
        bottom: -40px;
        width: 50%;
    }
}

.home-service-link-screen-career{
    width: 34%;
    right: 18px;
}
@media screen and (max-width: 1000px) {
    .home-service-link-screen-career{
        bottom: -40px;
        width: 40%;
    }
}

.home-service-link-logo {
    padding-top: 22px;
}


@media screen and (max-width: 1000px) {
    .home-service-link-logo {
        height: 24px;
        padding-top: 16px;
    }

    /* safari用 */
    .home-service-link-logo-sukedachi {
        width: 95px;
    }
    .home-service-link-logo-shain {
        width: 156px;
    }
    .home-service-link-logo-gakuin {
        width: 163px;
    }
    .home-service-link-logo-career {
        width: 191px;
    }

}

.home-service-link-text {
    flex-grow: 1;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 500;
}
@media screen and (max-width: 1000px) {
    .home-service-link-text {
        padding-top: 6px;
        font-size: 1.4rem;
    }
}

.home-service-link-double-line {
    width: 100%;
    padding-top: 18px;
}
@media screen and (max-width: 1000px) {
    .home-service-link-double-line {
        padding-top: 16px;
    }
}

.home-service-button {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 32px 60px;
    border: 1px solid #DEDFE0;
    margin-top: 60px;
    background: #F3F4F5;
    transition: background 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .home-service-button {
        padding: 22px 20px;
        margin-top: 40px;
    }
}
@media (hover: hover) {
    .home-service-button:hover {
        background: #E8E9EA;
    }
}

.home-service-button-text {
    display: block;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .home-service-button-text {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 680px) {
    .home-service-button-text {
        text-align: left;
    }
}

.home-service-button-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
    .home-service-button-icon {
        right: 20px;
        width: 24px;
        height: 24px;
    }
}


/* ------------- home-recruit ------------- */
.home-recruit {
    padding: 120px 0 200px 0;
}
@media screen and (max-width: 1000px) {
    .home-recruit {
        padding: 40px 0 90px 0;
    }
}

.home-recruit-container,
.english .home-company-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.home-recruit-container {
    padding: 70px 0 80px 0;
}
@media screen and (max-width: 1000px) {
    .home-recruit-container {
        padding: 0 0 50px 0;
    }
}
@media screen and (max-width: 680px) {
    .home-recruit-container,
    .english .home-company-container {
        flex-direction: column;
        gap: 24px;
    }
}

.home-recruit-img,
.english .home-company-img {
    width: 50%;
    padding-top: 6px;
}
@media screen and (max-width: 680px) {
    .home-recruit-img,
    .english .home-company-img {
        width: 100%;
        padding-top: 0;
    }
}

.home-recruit-content,
.english .home-company-content {
    width: 46%;
}
@media screen and (max-width: 680px) {
    .home-recruit-content,
    .english .home-company-content {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .home-recruit-heading-pattern {
        padding: 16px 0 0 2px;
    }
}

.home-recruit-copy {
    padding: 12px 0 32px 0;
    font-size: 4rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .home-recruit-copy {
        padding: 4px 0 28px 0;
        font-size: 3rem;
    }
}
@media screen and (max-width: 680px) {
    .home-recruit-copy {
        font-size: 2.6rem;
    }
}

.home-recruit-text + .home-recruit-text {
    padding-top: 20px;
}
@media screen and (max-width: 1000px) {
    .home-recruit-text + .home-recruit-text {
        padding-top: 16px;
    }
}

.home-recruit-square-button {
    margin-top: 40px;
}
@media screen and (max-width: 1000px) {
    .home-recruit-square-button {
        margin-top: 32px;
    }
}


/* ------------------------------ service ------------------------------ */
.h1-background {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    box-sizing: border-box;
    height: 460px;
    padding-bottom: 70px;
    margin-top: 80px;
}
@media screen and (max-width: 1000px) {
    .h1-background {
        height: 360px;
        padding-bottom: 46px;
        margin-top: 56px;
    }
}
@media screen and (max-width: 680px) {
    .h1-background {
        height: 200px;
        padding-bottom: 32px;
    }
}

.h1-background::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 20, 25, 0.2), rgba(12, 20, 25, 0.48));
    pointer-events: none;
}

.h1-background-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.h1-background-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
@media screen and (max-width: 1000px) {
    .h1-background-content {
        gap: 10px;
    }
}

.h1-background-pattern {
    padding-top: 36px;
}
@media screen and (max-width: 1000px) {
    .h1-background-pattern {
        width: 12px;
        height: 12px;
        padding-top: 28px;
    }
}
@media screen and (max-width: 680px) {
    .h1-background-pattern {
        padding-top: 22px;
    }
}

.h1-background-text {
    font-size: 5.2rem;
    line-height: 1.6;
    color: #fff;
}
@media screen and (max-width: 1000px) {
    .h1-background-text {
        font-size: 4rem;
    }
}
@media screen and (max-width: 680px) {
    .h1-background-text {
        font-size: 3.2rem;
    }
}

.subpage-background-section {
    padding: 80px 0 180px 0;
}
@media screen and (max-width: 1000px) {
    .subpage-background-section {
        padding: 60px 0 120px 0;
    }
}
@media screen and (max-width: 680px) {
    .subpage-background-section {
        padding: 32px 0 100px 0;
    }
}

.subpage-simple-section {
    padding-bottom: 180px;
}
@media screen and (max-width: 1000px) {
    .subpage-simple-section {
        padding-bottom: 120px;
    }
}
@media screen and (max-width: 680px) {
    .subpage-simple-section {
        padding-bottom: 100px;
    }
}

.subpage-intro {
    padding-bottom: 70px;
}
@media screen and (max-width: 1000px) {
    .subpage-intro {
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 680px) {
    .subpage-intro {
        padding-bottom: 32px;
    }
}

.subpage-intro-text + .subpage-intro-text {
    padding-top: 20px;
}

.subpage-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 60px;
}
@media screen and (max-width: 1000px) {
    .subpage-list {
        gap: 12px;
    }
}
@media screen and (max-width: 680px) {
    .subpage-list {
        gap: 8px;
        padding-top: 32px;
    }
}

.subpage-item {
    width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1000px) {
    .subpage-item {
        width: calc((100% - 12px) / 2);
    }
}
@media screen and (max-width: 680px) {
    .subpage-item {
        width: 100%;
    }
}

.subpage-link {
    display: block;
    position: relative;
}

.subpage-link::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 20, 25, 0), rgba(12, 20, 25, 0.52));
    pointer-events: none;
}

.subpage-link-img {
    overflow: hidden;
}

.subpage-link-img .img-fill {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

@media (hover: hover) {
    .subpage-link:hover .subpage-link-img .img-fill {
        transform: scale(1.022);
        opacity: 0.8;
    }
}

.subpage-link-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    box-sizing: border-box;
    width: 100%;
    padding: 0 24px 20px 24px;
}
@media screen and (max-width: 680px) {
    .subpage-link-content {
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding: 0 16px 16px 16px;
    }
}

.subpage-link-text {
    font-size: 2.4rem;
    line-height: 1.6;
    color: #fff;
}
@media screen and (max-width: 680px) {
    .subpage-link-text {
        flex-grow: 1;
        font-size: 2.0rem;
    }
}

.subpage-link-icon {
    display: inline-block;
    padding-left: 8px;
    transform: translateY(-1px);
}
@media screen and (max-width: 680px) {
    .subpage-link-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        transform: translateY(-4px);
    }
}

.service-list {
    display: flex;
    gap: 60px 2.56%;
    flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
    .service-list {
        gap: 40px 2.56%;
    }
}

.service-item {
    width: 48.72%;
}
@media screen and (max-width: 680px) {
    .service-item {
        width: 100%;
    }
}

.service-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item-img {
    background: #F3F4F5;
    transition: background 0.3s ease-out;
}
@media (hover: hover) {
    .service-item-link:hover .service-item-img {
        background: #E8E9EA;
    }
}

.service-item-img .img-fill {
    transition: transform 0.3s ease-out;
}

@media (hover: hover) {
    .service-item-link:hover .service-item-img .img-fill {
        transform: scale(1.02);
    }
}

.sercice-item-container {
    flex-grow: 1;
    padding: 16px 0 24px 0;
}
@media screen and (max-width: 1000px) {
    .sercice-item-container {
        flex-grow: 1;
        padding: 12px 0 18px 0;
    }
}

.service-item-heading {
    font-size: 2.4rem;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .service-item-heading {
        font-size: 2rem;
    }
}

.service-item-text {
    padding-top: 6px;
    font-size: 1.5rem;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .service-item-text {
        padding-top: 6px;
        font-size: 1.4rem;
    }
}




/* ------------------------------ company ------------------------------ */
/* ------------- company-mission ------------- */
.h1-simple {
    padding: 160px 0 120px 0;
    margin-top: 80px;
}
@media screen and (max-width: 1000px) {
    .h1-simple {
        padding: 100px 0 80px 0;
        margin-top: 56px;
    }
}
@media screen and (max-width: 680px) {
    .h1-simple {
        padding: 60px 0 40px 0;
    }
}

.h1-simple-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
@media screen and (max-width: 1000px) {
    .h1-simple-content {
        gap: 10px;
    }
}

.h1-simple-pattern {
    padding-top: 32px;
}
@media screen and (max-width: 1000px) {
    .h1-simple-pattern {
        width: 12px;
        height: 12px;
        padding-top: 24px;
    }
}
@media screen and (max-width: 680px) {
    .h1-simple-pattern {
        padding-top: 19px;
    }
}

.h1-simple-text {
    font-size: 4.6rem;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .h1-simple-text {
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 680px) {
    .h1-simple-text {
        font-size: 3rem;
    }
}

.company-mission {
    padding-bottom: 120px;
}
@media screen and (max-width: 1000px) {
    .company-mission {
        padding-bottom: 50px;
    }
}

.company-mission-copy {
    padding: 8px 0 32px 0;
    font-size: 3.6rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .company-mission-copy {
        padding-bottom: 16px;
        font-size: 2.4rem;
    }
}

.company-mission-text {
    font-size: 1.7rem;
    line-height: 2;
}
@media screen and (max-width: 1000px) {
    .company-mission-text {
        font-size: 1.5rem;
        line-height: 1.8;
    }
}

.company-mission-text + .company-mission-text {
    padding-top: 20px;
}
@media screen and (max-width: 1000px) {
    .company-mission-text + .company-mission-text {
        padding-top: 16px;
    }
}

.company-vision {
    padding-top: 60px;
}
@media screen and (max-width: 1000px) {
    .company-vision {
        padding-top: 40px;
    }
}

.company-vision-logo,
.english .home-vision-logo {
    padding: 16px 0 40px 0;
}
@media screen and (max-width: 1000px) {
    .company-vision-logo,
    .english .home-vision-logo {
        width: 300px;
        padding: 10px 0 20px 0;
    }
}

.company-vision-book,
.english .home-vision-book {
    display: block;
    width: 64%;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .company-vision-book,
    .english .home-vision-book {
        width: 100%;
    }
}

.company-vision-text {
    padding-top: 40px;
}
@media screen and (max-width: 1000px) {
    .company-vision-text {
        padding-top: 20px;
    }
}

.company-value {
    padding-bottom: 160px;
}
@media screen and (max-width: 1000px) {
    .company-value {
        padding-bottom: 60px;
    }
}

.company-value-list {
    display: flex;
    gap: 40px;
    flex-direction: column;
    padding-top: 40px;
}
@media screen and (max-width: 1000px) {
    .company-value-list {
        gap: 30px;
        padding-top: 24px;
    }
}

.company-value-item {
    display: flex;
    gap: 12px 8%;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid #DBDCDD;
}
@media screen and (max-width: 1000px) {
    .company-value-item {
        flex-direction: column;
        padding-bottom: 28px;
    }
}

.company-value-img {
    flex-shrink: 0;
    padding-top: 12px;
}
@media screen and (max-width: 1000px) {
    .company-value-img {
        width: 170px;
        padding-top: 0;
    }
}

.company-value-container {
    flex-grow: 1;
}

.company-value-copy {
    font-size: 2.8rem;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .company-value-copy {
        font-size: 1.8rem;
    }
}

.company-value-heading-pattern {
    padding: 24px 0 12px 1px;
}
@media screen and (max-width: 1000px) {
    .company-value-heading-pattern {
        padding: 14px 0 6px 1px;
    }
}

.company-value-number-list {
    counter-reset: item;
}

.company-value-number-item {
	position: relative;
	text-indent: -1.2em;
	padding-left: 1.2em;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .company-value-number-item {
        font-size: 1.4rem;
    }
}

.company-value-number-item::before {
	counter-increment: item;
	content: '0'counter(item)'. ';
	color: var(--color-base);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}


/* ------------- company-mission ------------- */
.company-message {
    padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
    .company-message {
        padding-bottom: 52px;
    }
}

.company-message-heading-filled {
    padding-bottom: 32px;
}
@media screen and (max-width: 1000px) {
    .company-message-heading-filled {
        padding-bottom: 16px;
    }
}

.company-message-text {
    line-height: 2;
}
@media screen and (max-width: 1000px) {
    .company-message-text {
        line-height: 1.7;
    }
}

.company-message-text + .company-message-text {
    padding-top: 24px;
}
@media screen and (max-width: 1000px) {
    .company-message-text + .company-message-text {
        padding-top: 16px;
    }
}

.company-message-position {
    padding-top: 30px;
    font-size: 1.4rem;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .company-message-position {
        font-size: 1.3rem;
    }
}

.company-message-name {
    font-size: 2rem;
}
@media screen and (max-width: 1000px) {
    .company-message-name {
        font-size: 1.8rem;
    }
}


/* ------------- company-director ------------- */
.company-director {
    padding-bottom: 160px;
}
@media screen and (max-width: 1000px) {
    .company-director {
        padding-bottom: 60px;
    }
}

.company-director-unit + .company-director-unit {
    padding-top: 120px;
}
@media screen and (max-width: 1000px) {
    .company-director-unit + .company-director-unit {
        padding-top: 50px;
    }
}

.company-director-heading-filled {
    padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
    .company-director-heading-filled {
        padding-bottom: 20px;
    }
}

.company-director-list {
    display: flex;
    gap: 60px 2.56%;
    flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
    .company-director-list {
        gap: 40px 2.56%;
    }
}

.company-director-list + .company-director-list {
    padding-top: 60px;
}
@media screen and (max-width: 1000px) {
    .company-director-list + .company-director-list {
        padding-top: 40px;
    }
}

.company-director-item {
    width: 48.72%;
}
@media screen and (max-width: 680px) {
    .company-director-item {
        width: 100%;
    }
}

.company-director-img {
    padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
    .company-director-img {
        padding-bottom: 14px;
    }
}

.company-director-name {
    font-size: 2.6rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .company-director-name {
        font-size: 2.1rem;
    }
}

.company-director-position {
    padding-top: 2px;
    font-size: 1.5rem;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .company-director-position {
        font-size: 1.4rem;
    }
}

.company-director-text {
    padding-top: 12px;
    font-size: 1.5rem;
}
@media screen and (max-width: 1000px) {
    .company-director-text {
        padding-top: 8px;
        font-size: 1.4rem;
    }
}

/* ------------- company-outline ------------- */
/* ------------- company-history ------------- */
.company-outline,
.company-history {
    padding-bottom: 140px;
}
@media screen and (max-width: 680px) {
    .company-outline,
.company-history {
    padding-bottom: 60px;
}
}

.common-table {
    width: 100%;
}

.common-table-row {
    display: flex;
    gap: 2px 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #CECFD0;
}
@media screen and (max-width: 680px) {
    .common-table-row {
        flex-direction: column;
        padding-bottom: 18px;
    }
}

.common-table-row + .common-table-row {
    padding-top: 24px;
}
@media screen and (max-width: 680px) {
    .common-table-row + .common-table-row {
        padding-top: 16px;
    }
}

.common-table-heading {
    flex-shrink: 0;
    width: 160px;
    font-weight: 500;
    line-height: 1.6;
}
@media screen and (max-width: 680px) {
    .common-table-heading {
        width: 100%;
    }
}

.common-table-data {
    line-height: 1.6;
}

.common-table-link {
    text-decoration: underline;
}

@media (hover: hover) {
    .common-table-link:hover  {
        opacity: var(--hover-opacity);
    }
}


/* ------------------------------ news ------------------------------ */
.news-item {
    border-bottom: 1px solid #DBDCDD;
}

.news-item-link {
    display: block;
    padding: 24px 0;
}
@media screen and (max-width: 680px) {
    .news-item-link {
        padding: 16px 0;
    }
}

.news-item-info {
    padding-bottom: 6px;
}


/* paginationはCMS構築時に再度検討 */
.pagination-list {
    display: flex;
    gap: 4px 12px;
    flex-wrap: wrap;
}

.news-pagination-list {
    padding-top: 60px;
}
@media screen and (max-width: 680px) {
    .news-pagination-list {
        padding-top: 40px;
    }
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 46px;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    color: #424344;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: background 0.3s ease;
}

.pagination-link.is-current {
    color: var(--color-base);
    background: #DEE0E0;
    pointer-events: none;
}

@media (hover: hover) {
    .pagination-link:hover {
        background: #F3F4F5;
    }
}

.square-centered-button {
    display: block;
    box-sizing: border-box;
    width: 300px;
    box-sizing: border-box;
    padding: 19px 24px;
    border: 1px solid #AEAFB0;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    background: #FFF;
    transition: background 0.3s ease;
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    .square-centered-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 680px) {
    .square-centered-button {
        max-width: 999px;
    }
}
@media (hover: hover) {
    .square-centered-button:hover {
        background: #F3F4F5;
    }
}

.square-centered-button:disabled {
    opacity: 0.4;
    cursor: alias;
}


/* ------------------------------ sustainability ------------------------------ */
.sustainability-heading {
    padding-bottom: 24px;
    font-size: 3.6rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .sustainability-heading {
        padding-bottom: 12px;
        font-size: 2.6rem;
    }
}

.sustainability-position {
    padding-top: 24px;
    font-size: 1.4rem;
    color: #646566;
}

.sustainability-name {
    font-size: 1.8rem;
}


/* ------------- focus ------------- */
.sustainability-intro-text {
    padding-bottom: 90px;
}
@media screen and (max-width: 1000px) {
    .sustainability-intro-text {
        padding-bottom: 36px;
    }
}

.sustainability-content-unit {
    padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
    .sustainability-content-unit {
        padding-bottom: 48px;
    }
}

.sustainability-content-unit:last-of-type {
    padding-bottom: 140px;
}
@media screen and (max-width: 1000px) {
    .sustainability-content-unit:last-of-type {
        padding-bottom: 60px;
    }
}

.sustainability-heading-filled {
    padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
    .sustainability-heading-filled {
        padding-bottom: 16px;
    }
}

.focus-industry-unit {
    display: flex;
    gap: 0 3.2%;
    align-items: flex-start;
}

.focus-industry-unit + .focus-industry-unit {
    padding-top: 50px;
}
@media screen and (max-width: 1000px) {
    .focus-industry-unit + .focus-industry-unit {
        padding-top: 36px;
    }
}

.focus-industry-content {
    width: 50%;
}
@media screen and (max-width: 1000px) {
    .focus-industry-content {
        width: 100%;
    }
}

.focus-industry-heading-pattern .heading-pattern-text,
.focus-freelance-heading-pattern .heading-pattern-text {
    font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
    .focus-industry-heading-pattern .heading-pattern-text,
    .focus-freelance-heading-pattern .heading-pattern-text {
        font-size: 1.4rem;
    }
}

.focus-industry-heading-pattern .heading-pattern-text-en,
.focus-freelance-heading-pattern .heading-pattern-text-en {
    font-size: 1.7rem;
}
@media screen and (max-width: 1000px) {
    .focus-industry-heading-pattern .heading-pattern-text-en,
    .focus-freelance-heading-pattern .heading-pattern-text-en {
        font-size: 1.5rem;
    }
}

.focus-industry-title {
    padding-top: 4px;
    font-size: 3rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .focus-industry-title {
        padding: 2px 0 18px 0;
        font-size: 2.2rem;
    }
}

.focus-industry-text {
    padding-top: 24px;
}
@media screen and (max-width: 1000px) {
    .focus-industry-text {
        padding-top: 16px;
    }
}

.focus-industry-img {
    width: 46.8%;
    border: 1px solid#DEDFE0;
}
@media screen and (max-width: 1000px) {
    .focus-industry-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

.focus-freelance-intro {
    padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
    .focus-freelance-intro {
        padding-bottom: 36px;
    }
}

.focus-freelance-unit + .focus-freelance-unit {
    padding-top: 40px;
}
@media screen and (max-width: 1000px) {
    .focus-freelance-unit + .focus-freelance-unit {
        padding-top: 30px;
    }
}

.focus-freelance-title {
    padding-top: 4px;
    font-size: 2.8rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .focus-freelance-title {
        padding-top: 2px;
        font-size: 2.2rem;
    }
}

.focus-freelance-text {
    padding-top: 20px;
}
@media screen and (max-width: 1000px) {
    .focus-freelance-text {
        padding-top: 12px;
    }
}


/* ------------- values ------------- */
@media screen and (max-width: 680px) {
    .values-step-img {
        max-width: 480px;
        margin: 0 auto;
    }
}

.values-production-unit {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 3.2%;
}
@media screen and (max-width: 1000px) {
    .values-production-unit {
        padding-right: 0;
    }
}

.values-production-unit + .values-production-unit {
    margin-top: 60px;
}
@media screen and (max-width: 1000px) {
    .values-production-unit + .values-production-unit {
        margin-top: 40px;
    }
}

.values-production-content {
    width: 60%;
}
@media screen and (max-width: 1000px) {
    .values-production-content {
        width: 100%;
    }
}

.values-production-heading {
    font-size: 2.8rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .values-production-heading {
        font-size: 2.2rem;
    }
}

.values-production-text {
    padding-top: 22px;
}
@media screen and (max-width: 1000px) {
    .values-production-text {
        padding-top: 16px;
    }
}

.values-production-img {
    width: 35%;
}
@media screen and (max-width: 1000px) {
    .values-production-img {
        width: 64%;
        max-width: 320px;
        padding-top: 20px;
        margin: 0 auto;
    }
}


/* ------------- approach ------------- */
.approach-process-list {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1000px) {
    .approach-process-list {
        flex-direction: column;
        gap: 32px;
    }
}

.approach-process-item {
    width: 31%;
    padding-top: 8px;
    border-top: 1px solid #CECFD0;
}
@media screen and (max-width: 1000px) {
    .approach-process-item {
        width: 100%;
        padding-top: 12px;
    }
}

.approach-process-heading-pattern .heading-pattern-text-en {
    font-size: 1.5rem;
}
@media screen and (max-width: 1000px) {
    .approach-process-heading-pattern .heading-pattern-text-en {
        font-size: 1.4rem;
    }
}

.approach-process-heading {
    padding-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .approach-process-heading {
        padding-bottom: 12px;
        font-size: 2.2rem;
    }
}

.approach-process-note {
    padding-top: 60px;
    font-size: 1.4rem;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .approach-process-note {
        padding-top: 32px;
        font-size: 1.3rem;
    }
}

.approach-materiality-area {
    padding-top: 80px;
}
@media screen and (max-width: 1000px) {
    .approach-materiality-area {
        padding-top: 40px;
    }
}

.approach-materiality-heading {
    padding-bottom: 20px;
    font-size: 3rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .approach-materiality-heading {
        padding-bottom: 16px;
        font-size: 2.2rem;
    }
}

.approach-materiality-figure {
    border: 1px solid #DEDFE0;
}

.approach-effort-intro {
    padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-intro {
        padding-bottom: 40px;
    }
}

.approach-effort-unit {
    border-top: 1px solid #CECFD0;
}

.approach-effort-unit + .approach-effort-unit {
    margin-top: 100px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-unit + .approach-effort-unit {
        margin-top: 50px;
    }
}

.approach-effort-heading-pattern {
    padding-top: 12px;
}

.approach-effort-heading-pattern .heading-pattern-text-en {
    font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
    .approach-effort-heading-pattern .heading-pattern-text-en {
        font-size: 1.5rem;
    }
}

.approach-effort-heading {
    padding-bottom: 8px;
    font-size: 2.8rem;
    line-height: 1.4;
}
@media screen and (max-width: 1000px) {
    .approach-effort-heading {
        padding-bottom: 10px;
        font-size: 2.2rem;
    }
}

.approach-effort-heading {
    padding: 40px 0 8px 0;
}
@media screen and (max-width: 1000px) {
    .approach-effort-heading {
        padding: 28px 0 10px 0;
    }
}

.approach-effort-heading-pattern + .approach-effort-heading {
    padding-top: 20px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-heading-pattern + .approach-effort-heading {
        padding-top: 4px;
    }
}

.approach-effort-category + .approach-effort-heading {
    padding-top: 16px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-category + .approach-effort-heading {
        padding-top: 12px;
    }
}

.approach-effort-category {
    display: inline-block;
    padding: 2px 16px;
    border: 1px solid #646566;
    border-radius: 2px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .approach-effort-category {
        font-size: 1.4rem;
    }
}

.approach-effort-category:not(:first-of-type) {
    margin-top: 50px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-category:not(:first-of-type) {
        margin-top: 32px;
    }
}

.approach-effort-heading-pattern + .approach-effort-category {
    margin-top: 24px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-heading-pattern + .approach-effort-category {
        margin-top: 20px;
    }
}

.approach-effort-common-list {
    padding-top: 20px;
}

.common-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.common-list-item {
    position: relative;
    padding-left: 18px;
}

.common-list-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 10.5px;
    left: 1px;
    box-sizing: border-box;
    width: 6px;
    height: 6px;
    border: 1px solid #C0C1C2;
}
@media screen and (max-width: 1000px) {
    .common-list-item::before {
        top: 9px;
    }
}

.approach-effort-pmark {
    padding-top: 24px;
}

.approach-effort-pmark {
    padding-top: 24px;
}
@media screen and (max-width: 1000px) {
    .approach-effort-pmark {
        padding-top: 20px;
        width: 80px;
        height: 80px;
    }
}


/* ------------------------------ contact ------------------------------ */
.contact-form-item {
    display: flex;
    gap: 6px 20px;
}
@media screen and (max-width: 680px) {
    .contact-form-item {
        flex-direction: column;
    }
}

.contact-form-item + .contact-form-item {
    padding-top: 40px;
}
@media screen and (max-width: 680px) {
    .contact-form-item + .contact-form-item {
        padding-top: 24px;
    }
}

.contact-form-title {
    flex-shrink: 0;
    padding-top: 20px;
    width: 240px;
    line-height: 1.6;
}
@media screen and (max-width: 680px) {
    .contact-form-title {
        padding-top: 0;
        width: 100%;
    }
}

.contact-form-title-emphasis {
    padding-left: 8px;
    font-size: 1.3rem;
    color: #D50000;
}

.contact-form-input-wrap {
    width: 100%;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    line-height: 1.6;
    color: var(--color-base);
    background: #F3F4F5;
}
@media screen and (max-width: 680px) {
    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 12px;
    }
}

.contact-form-input::placeholder,
.contact-form-select::placeholder,
.contact-form-textarea::placeholder {
    color: #A8A9AA;
}

.contact-form-input,
.contact-form-select {
    max-width: 620px;
}
@media screen and (max-width: 680px) {
    .contact-form-input,
    .contact-form-select {
        max-width: 9999px;
    }
}

.contact-form-select {
    background: url(/asset/img/common/angle-black-bottom.svg) no-repeat;
    background-size: 12px 12px;
    background-position: right 20px center;
    background-color: #F3F4F5;
}
@media screen and (max-width: 680px) {
    .contact-form-select {
        background-size: 10px 10px;
        background-position: right 12px center;
    }
}

.contact-form-textarea {
    height: 200px;
    resize: vertical;

}

.contact-form-error {
    padding-top: 12px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #D50000;
}
@media screen and (max-width: 680px) {
    .contact-form-error {
        padding-top: 6px;
        font-size: 1.4rem;
    }
}

.contact-form-agree {
    padding-top: 60px;
    text-align: center;
}
@media screen and (max-width: 680px) {
    .contact-form-agree {
        padding-top: 40px;
    }
}

.contact-form-checkbox {
    display: none;
}

.contact-form-checkbox + .contact-form-checkbox-label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    margin: 0 auto;
    line-height: 1.6;
    cursor: pointer;
}

.contact-form-checkbox + .contact-form-checkbox-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #424344;
}

.contact-form-checkbox:checked + .contact-form-checkbox-label::before {
    background: #424344;
}

.contact-form-checkbox + .contact-form-checkbox-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    left: 6px;
    transform: rotate(45deg);
    width: 4px;
    height: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    margin-top: -5px;
    opacity: 0;
}

.contact-form-checkbox:checked + .contact-form-checkbox-label::after {
    opacity: 1;
}

.contact-form-text-link {
    text-decoration: underline;
}

.contact-form-text-link:hover {
    opacity: var(--hover-opacity);
}

.contact-form-agree-button-wrap,
.contact-confirm-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-form-agree-button-wrap {
    padding-top: 40px;
}
@media screen and (max-width: 680px) {
    .contact-form-agree-button-wrap {
        padding-top: 32px;
    }
}

.contact-form-pmark {
    padding-top: 60px;
    width: 80px;
    margin: 0 auto;
}
@media screen and (max-width: 680px) {
    .contact-form-pmark {
        padding-top: 30px;
    }
}

.contact-confirm-button-wrap {
    padding-top: 60px;
}
@media screen and (max-width: 680px) {
    .contact-confirm-button-wrap {
        padding-top: 40px;
    }
}

.contact-form-back {
    display: inline-block;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-decoration: underline;
    color: #424344;
}
@media screen and (max-width: 680px) {
    .contact-form-back {
        display: inline-block;
        margin-top: 40px;
        font-size: 1.6rem;
        text-decoration: underline;
        color: #424344;
    }
}

@media (hover: hover) {
    .contact-form-back:hover {
        opacity: var(--hover-opacity);
    }
}



/* ------------------------------ english ------------------------------ */
.english {
    font-family: "Roboto Condensed", sans-serif;
	font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .english {
        line-height: 1.4;
    }
}


/* ------------- home-kv ------------- */
.english .loading-logo {
    width: 360px;
}
@media screen and (max-width: 600px) {
    .english .loading-logo {
        width: 260px;
    }
}

/* ------------- home-kv ------------- */
.english .home-kv-copy {
    top: 44.6%;
    left: 6.4%;
    width: 54.5%;
    min-width: 760px;
    max-width: 950px;
}
@media screen and (max-width: 1000px) {
    .english .home-kv-copy {
        top: 12%;
        left: 2.1%;
        transform: translateX(0);
        width: 88%;
        min-width: 1px;
        max-width: 520px;
    }
}

/* ------------- home-message ------------- */
.english .home-message {
    padding: 80px 0 120px 0;
}
@media screen and (max-width: 1000px) {
    .english .home-message {
        padding: 40px 0 60px 0;
    }
}

.english .heading-pattern-text {
    line-height: 1.4;
    font-weight: 400;
}

.english .heading-filled-text {
    line-height: 1.4;
}

.english .home-message-heading-filled {
    padding: 4px 0 36px 0;
}
@media screen and (max-width: 1000px) {
    .english .home-message-heading-filled {
        padding: 4px 0 16px 0;
    }
}

.english .home-message-text {
    line-height: 1.7;
}
@media screen and (max-width: 1000px) {
    .english .home-message-text {
        line-height: 1.6;
    }
}

.english .home-message-text + .home-message-text {
    padding-top: 32px;
}
@media screen and (max-width: 1000px) {
    .english .home-message-text + .home-message-text {
        padding-top: 20px;
    }
}

.english .home-message-position {
    padding-top: 32px;
    font-size: 1.4rem;
    text-align: right;
    color: #646566;
}
@media screen and (max-width: 1000px) {
    .english .home-message-position {
        padding-top: 20px;
        font-size: 1.3rem;
    }
}

.english .home-message-name {
    font-size: 1.8rem;
    text-align: right;
}
@media screen and (max-width: 1000px) {
    .english .home-message-name {
        font-size: 1.6rem;
    }
}


/* ------------- home-intro ------------- */
.english .home-intro-container {
    padding: 46px 0 0 0;
}
@media screen and (max-width: 1000px) {
    .english .home-intro-container {
        justify-content: flex-start;
        padding: 16px 0 0 0;
    }
}

.english .home-intro-copy {
    font-size: 4rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    writing-mode: horizontal-tb;
}
@media screen and (max-width: 1000px) {
    .english .home-intro-copy {
        font-size: 3.2rem;
        margin: 0;
    }
}
@media screen and (max-width: 680px) {
    .english .home-intro-copy {
        font-size: 2.6rem;
    }
}

.english .home-intro-content {
    width: 54%;
    padding-top: 152px;
}
@media screen and (max-width: 1000px) {
    .english .home-intro-content {
        width: 100%;
        padding-top: 32px;
    }
}

.english .home-intro-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
}
@media screen and (max-width: 1000px) {
    .english .home-intro-text {
        font-size: 1.6rem;
        line-height: 1.6;
        font-weight: 400;
    }
}

/* ------------- home-service ------------- */
.english .home-vision {
    padding-top: 80px;
}
@media screen and (max-width: 1000px) {
    .english .home-vision {
        padding-top: 40px;
    }
}


/* ------------- home-service ------------- */
.english .home-service-link-text {
    line-height: 1.4;
}

/* ------------- home-company ------------- */
.english .home-company {
    padding-top: 100px;
}
@media screen and (max-width: 1000px) {
    .english .home-company {
        padding-top: 40px;
    }
}

.english .home-company-heading-pattern {
    padding: 18px 0 0 2px;
}
@media screen and (max-width: 1000px) {
    .english .home-company-heading-pattern {
        padding: 16px 0 0 2px;
    }
}

.english .home-company-container {
    padding: 40px 0 80px 0;
}
@media screen and (max-width: 1000px) {
    .english .home-company-container {
        padding: 28px 0 60px 0;
    }
}

/* ------------- home-news ------------- */
.english .home-news {
    padding: 100px 0 200px 0;
}
@media screen and (max-width: 1000px) {
    .english .home-news {
        padding: 26px 0 80px 0;
    }
}

.english .home-news-heading-filled {
    padding-bottom: 16px;
}
@media screen and (max-width: 1000px) {
    .english .home-news-heading-filled {
        padding-bottom: 8px;
    }
}

.english .news-item-category,
.english .news-item-title {
    font-weight: 400;
}

.english .news-item-category {
    font-size: 1.4rem;
}
@media screen and (max-width: 1000px) {
    .english .news-item-category {
        font-size: 1.3rem;
    }
}

.english .news-item-title {
    line-height: 1.4;
}