@charset "UTF-8";

/*------------------------
resmin
----------------------------*/
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -moz-tab-size: 4;
    tab-size: 4;
    word-break: normal
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit
}

:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    margin: 0;
    padding: 0
}

hr {
    color: inherit;
    height: 0;
    overflow: visible
}

details,
main {
    display: block
}

summary {
    display: list-item;
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-width: 0
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

/*-----------------------------------------------------------------------
:root
-------------------------------------------------------------------------*/
:root {
    --main-color: #5C735B;
    --sab-color: #AFC5AE;
    --white-color: #fff;
    --font-color: #2c2c2c;
    --cta-color: #C45759;
}

/*-----------------------------------------------------------------------
共通css
-------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-size: 1.8rem;
    color: var(--font-color);
    font-family: "M PLUS U", sans-serif;
    letter-spacing: 0.5px;
    font-weight: bold;
    position: relative;
}

body::before {
    position: fixed;
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -9999;
    filter: blur(15px);
    top: 0;
    left: 0;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

li {
    list-style: none;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

/*-------------------------------------------------------------------------
レイアウト
--------------------------------------------------------------------------*/
.section {
    margin-top: -175px;
    position: relative;
}

.section:nth-child(2) {
    margin-top: 0;
    padding-top: 80px;
}

.section-inner {
    padding-inline: 80px;
    padding-bottom: 80px;
    padding-top: 200px;
}

.section-inner:nth-child(1) {
    padding-bottom: 80px;
    padding-top: 0;
}

.section-inner:nth-child(2) {
    padding-top: 80px;
}

.section-inner:nth-child(1) {
    padding-bottom: 0;
}

.section-item {
    padding-inline: clamp(40px, 3.18vw, 80px);
    background: var(--white-color);
    border-radius: 100px;
    position: relative;
    padding-block: 80px;
}

/*------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------*/
.section-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: -1px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.section-title img {
    width: 50px;
}

.section-title h2 {
    font-size: 4rem;
    color: var(--main-color);
}

.section-bottom__bg {
    width: 100%;
    rotate: 180deg;
    display: block;
    margin-top: -1px;
}

/*-------------------------------------------------------------------------
各セクション
-------------------------------------------------------------------------*/
/*------------------------
ヘッダー
----------------------------*/
.header-container {
    background: var(--main-color);
    display: flex;
    align-items: center;
}

.logo-image {
    width: clamp(150px, 7.949vw, 200px);
}

.hamburger-line__wrapper {
    display: none;
}

.header-nav {
    position: fixed;
    z-index: 9999;
    top: 40px;
    right: 0;
}

.header-nav.header-active .header-nav__item a {
    color: var(--font-color);
}

.header-nav__inner {
    display: flex;
    align-items: center;
    gap: clamp(40px, 3.18vw, 80px);
}

.header-nav__item a {
    color: var(--white-color);
    transition: 0.3s ease;
}

.header-nav__item a:hover {
    color: var(--sab-color);
}

.header-nav.header-active .header-nav__item a:hover {
    opacity: 0.5;
}

.header-cta {
    background: var(--cta-color);
    padding-inline: clamp(40px, 3.18vw, 80px);
    padding-block: clamp(8px, 0.954vw, 24px);
    border: 3px solid transparent;
    transition: 0.3s ease;
}

.header-cta a {
    transition: 0.3s ease;
}

.header-cta:hover {
    background: var(--white-color);
    border: 3px solid var(--cta-color);
}

.header-cta:hover a {
    color: var(--cta-color);
}

.header-nav.header-active .header-cta a {
    color: var(--white-color);
}

.header-nav.header-active .header-cta:hover a {
    color: var(--cta-color);
}

/*------------------------
ヒーロー
----------------------------*/
.hero-container {
    background: var(--main-color);
    height: calc(100vh - 200px);
    padding-bottom: 80px;
    position: relative;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 100px;
}

.hero-img::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: calc(100% - 160px);
    height: calc(100vh - 280px);
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 1) 0%,
            rgb(255 255 255 / 93%) 40%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 100px;
}

.hero-absolte__wrapper {
    position: absolute;
    top: 15%;
    left: 10%;
}

.site-title {
    font-size: clamp(4rem, 3.18vw, 8rem);
    color: var(--main-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-text {
    font-size: clamp(1.8rem, 1.192vw, 3rem);
    padding-top: 16px;
    color: var(--sab-color);
    padding-bottom: 64px;
}

.hero-cta {
    background: var(--cta-color);
    color: var(--white-color);
    padding-inline: 80px;
    padding-block: 24px;
    border-radius: 100px;
    border: 3px solid transparent;
    transition: 0.3s ease;
}

.hero-cta:hover {
    background: var(--white-color);
    border: 3px solid var(--cta-color);
    color: var(--cta-color);
}


/*------------------------
施設紹介
----------------------------*/

.concept-inner {
    background: var(--sab-color);
}

.concept-inner__wrapper {
    display: flex;
    max-width: 1400px;
    margin-inline: auto;
    gap: clamp(40px, 3.18vw, 80px);
    align-items: flex-start;
}

.concept-image {
    order: 1;
    width: clamp(200px, 11.924vw, 300px);
}

.concept-text {
    padding-left: clamp(40px, 3.18vw, 80px);
    line-height: 2;
}


/*------------------------
働く環境
----------------------------*/
.service-inner {
    background: var(--main-color);
}

.sevice-inner__item {
    max-width: 1400px;
    margin-inline: auto;
    padding-left: clamp(40px, 3.18vw, 80px);
}

.service-item__title {
    font-size: 4rem;
    color: var(--sab-color);
    border-bottom: 3px solid var(--sab-color);
    display: inline-block;
}

.service-item__title span {
    font-size: 4.6rem;
    margin-right: 40px;
}

.service-item__text {
    padding-left: clamp(40px, 3.18vw, 80px);
    padding-block: 40px;
}

.sevice-inner__item:nth-child(4) .service-item__text {
    padding-bottom: 0;
}


/*------------------------
スタッフの声
----------------------------*/

.staff-inner {
    background: var(--sab-color);
}

.staff-inner .section-item {
    background: none;
}

.staff-item__wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin-inline: auto;
}

.staff-item {
    width: calc(100% / 3);
    border: 3px solid;
    border-color: var(--main-color);
    background: var(--white-color);
    padding-inline: clamp(24px, 1.59vw, 40px);
    padding-block: 40px;
    border-radius: 50px;
}

.staff-item__number {
    color: var(--main-color);
    font-size: 6rem;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    transform: translateY(-50%);
    opacity: 0.7;
}

.staff-item__image {
    position: relative;
}

.staff-item__image img {
    width: 100%;
    border-radius: 25px;
}

.staff-item__name {
    padding-top: 8px;
    padding-bottom: 24px;
    color: var(--main-color);
}

/*------------------------
応募の流れ
----------------------------*/

.flow-inner {
    background: var(--main-color);
}

.flow-item__flex {
    display: flex;
    max-width: 1400px;
    margin-inline: auto;
    gap: clamp(40px, 3.18vw, 80px);
    align-items: flex-start
}

.flow-item__wrapper {
    padding-left: clamp(40px, 3.18vw, 80px);
}

.flow-item {
    padding-bottom: 80px;
}

.flow-item:nth-child(3) {
    padding-bottom: 0;
}

.flow-item__title {
    display: inline-flex;
    flex-direction: column;
    font-size: 3rem;
    padding-bottom: 40px;
}

.flow-item__title span {
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 8px;
    color: var(--main-color);
}

.flow-item__title span::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    background: var(--main-color);
    bottom: 0;
    left: 0;
}

.flow-item__text {
    padding-left: clamp(40px, 3.18vw, 80px);
}

.flow-item__image {
    width: clamp(200px, 11.924vw, 300px);
}

/*------------------------
CTA
----------------------------*/
.info-inner {
    background: var(--sab-color);
}

.info-item__flex {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1400px;
    margin-inline: auto;
    justify-content: space-around;
}

.info-item__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}

.info-item__text {
    position: relative;
    border-bottom: 3px solid;
    padding-inline: 56px;
    padding-block: 16px;
    margin-bottom: 80px;
}

.info-item__text::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    border-bottom: 3px solid;
    border-left: 3px solid;
    bottom: -16px;
    right: 70px;
    rotate: -38deg;
    transform: skew(15deg);
}

.info-item__text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 25px solid transparent;
    border-top: 17px solid #ffffff;
    bottom: -39px;
    right: 57px;
}

.info-button {
    background: var(--cta-color);
    color: var(--white-color);
    padding-inline: 80px;
    padding-block: 24px;
    border-radius: 100px;
    margin-right: -160px;
    border: 3px solid transparent;
    transition: 0.3s ease;
}

.info-button:hover {
    background: var(--white-color);
    color: var(--cta-color);
    border: 3px solid var(--cta-color);
}

.info-image {
    width: clamp(200px, 11.924vw, 300px);
}



/*------------------------
フッター
----------------------------*/
.footer-container.section {
    margin-top: 80px;
    background: var(--main-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-inner .section-item {
    background: none;
    padding-block: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav__inner {
    display: flex;
    align-items: center;
    gap: clamp(40px, 3.18vw, 80px);
}

.footer-nav__item a {
    color: var(--white-color);
    transition: 0.3s ease;
}

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

/*-------------------------------------------------------------------------
sp
--------------------------------------------------------------------------*/
/*================
=================*/
@media (max-width: 1399px) {
    .section {
        padding-bottom: 80px;
    }

    .section-inner {
        padding-inline: 40px;
    }

    .hero-img::before {

        width: calc(100% - 80px);
    }
}

/*================
=================*/
@media (max-width: 999px) {

    .hero-img::before {
        width: calc(100% - 80px);
    }
}

/*================
=================*/
@media (max-width: 899px) {

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

    .section-inner {
        padding-inline: 24px;
    }

    .section-item {
        padding-inline: 24px;
    }

    /*------------------------
    ヘッダー
    ----------------------------*/
    .hamburger-line__wrapper {
        display: inline-block;
        width: 40px;
        height: 30px;
        position: fixed;
        right: 24px;
        top: 40px;
        z-index: 9999;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background: var(--white-color);
        position: absolute;
    }

    .hamburger-line:nth-child(1) {
        top: 0;
        transition: 0.5s ease;
    }

    .hamburger-line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s ease;
    }

    .hamburger-line:nth-child(3) {
        bottom: 0;
        transition: 0.5s ease;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-line__wrapper.is-open .hamburger-line:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    .hamburger-line__wrapper.header-active .hamburger-line {
        background: var(--font-color);
    }

    .header-nav {
        width: 100vw;
        height: 100vh;
        background: var(--main-color);
        z-index: 9998;
        position: fixed;
        inset: 0;
        opacity: 0;
        transition: 0.5s ease;
        transform: translateX(100vw);
    }

    .header-nav::before {
        position: absolute;
        content: "";
        width: 500px;
        height: 500px;
        background-image: url("../img/icon-sab.svg");
        bottom: 0;
        left: 0;
        display: inline-block;
        background-size: cover;
        opacity: 0.5;
    }

    .header-nav.is-open {
        opacity: 1;
        transform: translateX(0);
    }

    .header-nav__inner {
        flex-direction: column;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        gap: 80px;
    }

    .header-nav.header-active .header-nav__item a {
        color: var(--white-color);
    }

    .header-cta {
        padding-inline: 80px;
        padding-block: 16px;
        border-radius: 100px;
        border: 3px solid transparent;
    }

    .header-cta:hover {
        border: 3px solid var(--cta-color);
        background: var(--white-color);
        color: var(--cta-color);
    }

    /*------------------------
    ヒーロー
    ----------------------------*/
    .hero-img.section-inner {
        padding-inline: 0;
    }

    .hero-img img {
        border-radius: 0;
    }

    .hero-img::before {
        width: 100%;
        border-radius: 0;
    }

    .hero-cta {
        position: fixed;
        bottom: 0;
        right: 0;
        border-radius: 0;
        z-index: 9997;
    }

    .site-text {
        display: flex;
        flex-direction: column;
    }

    /*------------------------
    施設紹介
    ----------------------------*/
    .section-item {
        border-radius: 10px;
    }

    .section-inner:nth-child(2) {
        padding-top: 40px;
    }

    .concept-inner__wrapper {
        flex-direction: column;
    }

    .concept-text {
        padding-left: 24px;
    }

    .concept-image {
        margin-left: auto;
    }

    /*------------------------
    働く環境
    ----------------------------*/
    .sevice-inner__item {
        padding-left: 0;
    }

    .service-item__text {
        padding-left: 0;
    }

    /*------------------------
    スタッフ
    ----------------------------*/
    .staff-item__wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .staff-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    /*------------------------
    応募の流れ
    ----------------------------*/
    .flow-item__flex {
        flex-direction: column;
    }

    .flow-item__image {
        margin-left: auto;
    }

    /*------------------------
    CTA
    ----------------------------*/
    .info-image {
        display: none;
    }

    .info-button {
        margin-right: 0;
    }

    .info-item__wrapper {
        align-items: center;
    }

    /*------------------------
    フッター
    ----------------------------*/
    .footer-inner .section-item {
        flex-direction: column;
    }

    .logo-image {
        margin-right: auto;
    }

    .footer-nav__inner {
        flex-direction: column;
    }
}

/*================
=================*/
@media (max-width: 599px) {

    /*------------------------
    共通パーツ
    ----------------------------*/
    .section-title h2 {
        font-size: 3rem;
    }

    .section-title img {
        width: 40px;
    }

    .section-title {
        gap: 24px;
    }

    /*------------------------
    ヘッダー
    ----------------------------*/
    .header-container.section-inner {
        padding-inline: 0;
    }

    .header-nav::before {
        width: 70%;
        height: 30%;
        background-size: cover;
    }

    .header-cta {
        padding-inline: 40px;
    }

    /*------------------------
    ヒーロー
    ----------------------------*/
    .hero-absolte__wrapper {
        left: 6%;
    }

    /*------------------------
    働く環境
    ----------------------------*/
    .service-item__title {
        font-size: 3rem;
    }

    .service-item__title span {
        font-size: 3.4rem;
    }

    .service-item__title span {
        margin-right: 24px;
    }

    /*------------------------
    スタッフ
    ----------------------------*/
    .staff-inner .section-item {
        padding-inline: 0;
    }

    /*------------------------
    応募の流れ
    ----------------------------*/
    .flow-item__wrapper {
        padding-left: 0;
    }

    .flow-item__text {
        padding-left: 0;
    }

    /*------------------------
    CTA
    ----------------------------*/
    .info-item__text {
        padding-inline: 0;
        margin-bottom: 40px;
    }

    .info-button {
        padding-inline: 40px;
    }

    .hero-cta {
        padding-inline: 40px;
        padding-block: 16px;
    }
}