@charset "utf-8";

/* =========================================
   変数定義
   ========================================= */
:root {
    --content-width: 1080px;
    --secondary-font: "Noto Sans JP", sans-serif;
    --primary-color: #378286;
    --secondary-color: #33707A;
    --accent-color-1: #C6E9E1;
    --accent-color-2: #91D4C9;
}

/* =========================================
   ベーススタイル
   ========================================= */
body {
    font-family: "Zen Old Mincho", sans-serif;
    letter-spacing: 0;
    line-height: 1.75;
}

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

a {
    transition: .2s;
}

a:hover {
    opacity: .8;
}

/* =========================================
   レイアウト
   ========================================= */
.container {
    width: 100%;
    max-width: calc(var(--content-width) + 32px);
    padding: 0 16px;
    margin: 0 auto;
}

.container-sm {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0 16px;
}

/* =========================================
   ヘッダー
   ========================================= */
.header {
    width: 100%;
    height: 72px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    top: 0;
    left: 0;
    z-index: 50;
}

@media screen and (min-width: 1080px) {
    .header {
        padding: 0 48px;
    }
}

.header__logo {
    width: 168px;
    height: auto;
}

/* ヘッダーナビメニュー */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: .2;
    visibility: visible;
}

.header-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #33707A;
    transition: right 0.4s ease;
    z-index: 50;
    overflow-y: auto;
}

.header-nav.active {
    right: 0;
}

/* ナビリストを上下中央寄せ */
.header-nav__list {
    width: 100%;
    padding: 0;
    padding-left: 20px;
    margin-top: 40px;
}

/* ナビのリンク */
.header-nav__item a {
    font-weight: 600;
    width: 100%;
    display: block;
    text-align: left;
    font-size: 16px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    color: #fff;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 480px) {
    .header-nav__item a {
        font-size: 13px;
    }
}

.header-nav__item:last-child a {
    margin-bottom: 0;
}

.header-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 20px;
}

.header-nav__logo {
    width: 120px;
    height: auto;
}

.header-nav__logo img {
    width: 100%;
    height: auto;
}

.header-nav__close {
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header-nav__close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.header-nav__close span:first-child {
    transform: rotate(45deg);
}

.header-nav__close span:last-child {
    transform: rotate(-45deg);
}

.menu-btn {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* 固定画像 */
.top-section-accent {
    margin-top: 100px;
    height: 400px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .top-section-accent {
        display: none;
    }
}

.m-gb-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    clip-path: inset(0);
    z-index: -999;

}

.top-section-accent__01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/top-img_02.png);
    background-size: cover;
    background-position: bottom;
    z-index: -1;
}

/* module */
.m-section {
    padding-top: 64px;
    padding-bottom: 120px;
}




@media screen and (max-width: 768px) {
    .m-section {
        padding-top: 20px;
        padding-bottom: 44px;
    }
}






.m-section__head--flex {
    width: fit-content;
    display: flex;
    align-items: center;
}

.m-section__head--flex__img {
    width: 78px;
    height: 78px;
    margin-left: -1em;
}

@media screen and (max-width: 768px) {
    .m-section__head--flex__img {
        width: 62px;
        height: 62px;
        margin-left: -1.5em;
    }
}

.m-section__head--flex__img img {
    object-fit: contain;
}

.m-section__head--flex span {
    border-bottom: 1px solid #378286;
    padding-bottom: 4px;
    font-size: 28px;
    color: #378286;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .m-section__head--flex span {
        font-size: 14px;
    }
}

.m-section p,
.m-section img {
    padding: 1em 0;
}

.m-section__title {
    width: 100%;
    max-width: 480px;
}

.m-section__title img {
    padding: 0;
    width: 100%;
    height: auto;
}

.m-section__head {
    font-size: 24px;
    color: #378286;
}

@media screen and (max-width: 1080px) {
    .m-section__head {
        font-size: 18px;
    }
}

.m-section__disc {
    font-size: 16px;
}

@media screen and (max-width: 1080px) {
    .m-section__disc {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .m-section__disc {
        font-size: 13px;
    }
}

.m-section__flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .m-section__flex-wrap {
        flex-direction: column;
    }
}

.m-section--reverse .m-section__flex-wrap {
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .m-section--reverse .m-section__flex-wrap {
        flex-direction: column;
    }
}

.m-section__flex-wrap .m-section__img {
    width: 50%;

}

@media screen and (max-width: 768px) {
    .m-section__flex-wrap .m-section__img {
        width: 100%;
    }
}

.m-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-section__left-content {
    width: 45%;
}

@media screen and (max-width: 768px) {
    .m-section__left-content {
        width: 100%;
    }
}


.m-section__disc--list li {
    padding-left: 1em;
    font-size: 16px;
    margin-top: .75em;
}

@media screen and (max-width: 768px) {
    .m-section__disc--list li {
        font-size: 13px;
        letter-spacing: 0em;
    }
}



.section__img-02 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: none;
}

@media screen and (max-width: 768px) {
    .section__img-02 {
        display: block;
    }
}





.section__mission h3 {
    margin-top: 32px;

}


.section-mission__copy {
    color: #378286;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-top: 32px;
}

@media screen and (max-width: 768px) {
    .section-mission__copy {
        font-size: 16px;
        text-align: left;
        letter-spacing: 0;
    }
}


.section-mission__disc {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .section-mission__disc {
        font-size: 14px;
        text-align: left;
    }
}

.section__message__text {
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .section__message__text {
        font-size: 13px;
        text-align: left;
    }
}

.top-message-section .m-section__title {
    margin: 0 auto;
}

.top-message-section .section__message-img {
    width: 40%;
    max-width: 220px;
    margin: 0 auto;
    margin-top: 60px;
}



.top-voice-section .m-section__flex-wrap {
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .top-voice-section .m-section__flex-wrap {
        flex-direction: column;
    }
}









/* mainV */
.mainV {
    background: url(../img/mainV-bg-pc.png) no-repeat center center / cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: end;
    padding-left: 30px;
    padding-bottom: 100px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mainV {
        padding-left: 15px;
        background: url(../img/mainV-bg-sp.png) no-repeat center center / cover;
    }
}

.mainV__filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    opacity: 0.8;
}

.mainV__title {
    font-size: 34px;
    color: #000;
    font-weight: 600;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .mainV__title {
        font-size: 18px;
    }
}


.mainV__title span {
    font-size: 18px;
    color: #000;
}

@media screen and (max-width: 768px) {
    .mainV__title span {
        font-size: 13px;
    }
}


.company-profile-section .m-section__title {
    margin: 0 auto;
}

.company-profile-section .m-section__flex-wrap {
    flex-direction: row;
    align-items: center;

}

@media screen and (max-width: 768px) {
    .company-profile-section .m-section__flex-wrap {
        flex-direction: column;
    }
}

.company-profile-section .m-section__img {
    width: 40%;
}

@media screen and (max-width: 768px) {
    .company-profile-section .m-section__img {
        width: 100%;
    }
}

.company-profile {
    width: 55%;
    margin: 32px auto 0 auto;
    overflow: hidden;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media screen and (max-width: 768px) {
    .company-profile {
        width: 100%;
    }
}


.company-profile .company-profile-label {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background: #378286;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .company-profile .company-profile-label {
        font-size: 15px;
    }
}

.company-profile-row {
    display: flex;
    align-items: stretch;
    min-height: 56px;
}

.company-profile dt,
.company-profile dd {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px 20px;
    line-height: 1.75;
}

.company-profile dt {
    width: 180px;
    min-width: 120px;
    border-right: 1px solid #fff;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .company-profile dt {
        font-size: 13px;
    }
}

.company-profile dd {
    flex: 1;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .company-profile dd {
        font-size: 13px;
    }
}

.company-profile .en {
    font-size: 0.95em;
    color: #33707A;
}

.company-profile-row:nth-of-type(1) {
    background: #C6E9E1;
}

.company-profile-row:nth-of-type(2) {
    background: #91D4C9;
}

.company-profile-row:nth-of-type(3) {
    background: #C6E9E1;
}

.company-profile-row:nth-of-type(4) {
    background: #91D4C9;
}

.company-profile-row:nth-of-type(5) {
    background: #C6E9E1;
}


@media screen and (max-width: 600px) {
    .company-profile-row {
        flex-direction: row;
    }

    .company-profile dt {
        width: 6em;
        border-right: 1px solid #fff;
        border-bottom: none;
        padding: 16px 20px;
    }

    .company-profile dd {
        width: auto;
        padding: 16px 20px;
    }
}


.recruit-section {
    margin-bottom: 20px;
}

.recruit-title {
    font-size: 14px;
    padding: 0;
}

.recruit-label {
    font-size: 14px;
}

.recruit-list li {
    font-size: 13px;
}

#about,
#work,
#brand,
#flow,
#global,
#message,
#voice,
#recruit {
    scroll-margin-top: 70px;
}