@charset "utf-8";

/* =======================
common
======================= */
:root {
    --primary-lightgreen: #F3F9F2;
    --primary-green: #E4F0E1;
    --primary-darkgreen: #CADBC5;
    --h3-green: #AFCCA7;
    --text-green: #83997D;
    --text-black: #3D3D3D;
    --bg-white: #FAFAFA;
    --contentWidth--pc: 88.9%;
    --contentWidth--sp: 93.6%;
    --shadow-btn: 0px 0px 8px 1px rgba(61, 61, 61, 0.25);
    --shadow-btn--hover: 3px 3px 8px 2px rgba(61, 61, 61, 0.25);
    --shadow-img--pc: 10px 10px 0px 0px rgba(158, 184, 150, 0.50);
    --shadow-img--sp: 6px 6px 0px 0px rgba(158, 184, 150, 0.50);
    --font-Yumincho:
        '游明朝',
        'Yu Mincho',
        YuMincho,
        'Hiragino Mincho Pro',
        serif;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "游ゴシック体",
        YuGothic,
        "游ゴシック Medium",
        "Yu Gothic Medium",
        "游ゴシック",
        "Yu Gothic",
        sans-serif;
    font-style: normal;
    color: var(--text-black);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
}

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    aspect-ratio: 350/72;
    color: white;
    border-radius: 100px;
    box-shadow: var(--shadow-btn);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
    transition: all .3s;
}

.btn:hover {
    box-shadow: var(--shadow-btn--hover);
    transition: all .3s;
}

.btn--cv {
    background-color: #FF7878;
}

.btn--search {
    background-color: #61CFBA;
}

.btn--login {
    background-color: var(--bg-white);
    color: #FF7878;
}

.btn span {
    display: block;
    font-size: 2.2rem;
    margin-top: 6px;
}

.container {
    position: relative;
}

.section {
    padding: 56px 0;
}

.section__title {
    width: fit-content;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2.24px;
    padding-bottom: 60px;
    position: relative;
    margin: 0 auto;
    z-index: 10;
    text-align: center;
}

.section__title::after {
    display: block;
    color: var(--h3-green);
    text-align: center;
    font-family: "Playwrite CO";
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    position: absolute;
    transform: rotate(-10deg);
    z-index: -10;
    opacity: 0.6;
}

.spBr {
    display: none;
}

@media screen and (max-width: 768px) {
    .btn {
        width: var(--contentWidth--sp);
        max-width: 350px;
        aspect-ratio: 350/64;
        font-size: 1.2rem;
    }

    .btn span {
        font-size: 2.0rem;
    }

    .section {
        padding: 56px 3.2%;
    }

    .section__title {
        font-size: 1.8rem;
        letter-spacing: 1.44px;
        padding-bottom: 40px;
    }

    .section__title::after {
        font-size: 2.8rem;
    }

    .spBr {
        display: block;
    }

    .pcBr {
        display: none;
    }
}

/* =======================
header
======================= */
.header,
.nav__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 1.39%;
}

.header {
    position: absolute;
    z-index: 10;
}

.header__logo,
.nav__logo {
    width: 280px;
}

.nav {
    width: 40vw;
    height: 100vh;
    background-color: rgba(250, 250, 250, 0.90);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(250%, 0);
    transition: 0.6s;
    z-index: 100;
}

.nav.active {
    transform: translate(150%, 0);
    transition: 0.6s;
}

.nav__btn {
    position: relative;
    background: var(--bg-white);
    cursor: pointer;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid var(--text-green);
    box-shadow: var(--shadow-btn);
    z-index: 110;
    position: fixed;
    top: 20px;
    right: 1.4vw;
}

.nav__btn span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-green);
    width: 45%;
    height: 1px;
    transition: all .4s;
}

.nav__btn span:nth-of-type(1) {
    top: 34%;
}

.nav__btn span:nth-of-type(3) {
    top: 66%;
}

.nav__btn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30%;
}

.nav__btn.active span:nth-of-type(2) {
    opacity: 0;
}

.nav__btn.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 30%;
}

.nav__list {
    padding: 0 7.1%;
    margin-top: 40px;
}

.nav__item {
    margin-top: 24px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.8px;
}

.nav__item span {
    display: block;
    margin-top: 10px;
    color: var(--text-green);
    font-size: 1.4rem;
    font-weight: bold;
}

.btnArea {
    display: flex;
    gap: 0 32px;
    justify-content: center;
    align-items: center;
}

.btnArea--nav {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px 0;
}

.btn--nav {
    width: 80%;
    max-width: 350px;
    height: 72px;
}

.navBg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(61, 61, 61, 0.25);
    opacity: 0;
    transition: 0.6s;
    z-index: 99;
}

.navBg.active {
    display: block;
    opacity: 1;
    transition: 0.6s;
}

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

    .header,
    .nav__header {
        padding: 10px 3.2%;
    }

    .header__logo,
    .nav__logo {
        width: 180px;
    }

    .nav {
        width: 100vw;
        transform: translate(100%, 0);
    }

    .nav.active {
        transform: translate(0, 0);
    }

    .nav__btn {
        width: 52px;
        top: 10px;
        right: 3.2vw;
    }

    .nav__list {
        padding: 0 10.67%;
        margin-top: 32px;
    }

    .nav__item {
        margin-top: 20px;
        letter-spacing: 0.64px;
        font-size: 1.6rem;
    }

    .nav__item span {
        letter-spacing: 0.32px;
        margin-top: 8px;
    }

    .btnArea {
        gap: 12px 0;
    }

    .btnArea--nav {
        margin-top: 32px;
        gap: 12px 0;
    }

    .btn--nav {
        width: var(--contentWidth--sp);
        height: auto;
    }
}

/* =======================
article header
======================= */
.article__header {
    width: 100%;
    height: 100vh;
    background-image: url(../images/fv-trim.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mainCopy {
    width: fit-content;
    color: var(--text-green);
    font-family: var(--font-Yumincho);
    font-size: 6.0rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 6.4px;
    transform: translate(11.5vw, 28.1vh);
    filter: drop-shadow(0px 0px 2px var(--primary-lightgreen))
}

.mainCopy span {
    display: block;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    margin-top: 14px;
}

.btnArea--fv {
    width: fit-content;
    flex-direction: column;
    gap: 12px 0;
    transform: translate(11.5vw, 40vh);
}

.loginTxt {
    font-size: 1.4rem;
    line-height: 1;
}

.loginTxt span {
    color: #20A1DA;
    text-decoration-line: underline;
}

@media screen and (max-width: 768px) {
    .article__header {
        background-image: url(../images/fv.jpg);
        background-position: 58%;
    }

    .mainCopy {
        font-size: 4.0rem;
        letter-spacing: 4px;
        transform: translate(5.3vw, 30.2vh);
    }

    .mainCopy span {
        font-size: 1.6rem;
        letter-spacing: 0.9px;
        margin-top: 10px;
    }

    .btnArea--fv {
        margin: 0 auto;
        width: var(--contentWidth--sp);
        flex-direction: column;
        gap: 8px 0;
        transform: translate(0, 60vh);
    }

    .loginTxt {
        font-size: 1.2rem;
        line-height: 1;
    }
}

/* =======================
about
======================= */
.section--about {
    padding: 0;
    background-color: var(--primary-lightgreen);
}

.txtWrap {
    padding: 56px 0;
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section__title--about::after {
    content: 'About';
    top: 23%;
    right: -52%;
}

.about__txt {
    margin-top: 32px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 1.08px;
}

.about__content {
    padding: 56px 2.43%;
    position: relative;
}

.about__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-green);
    font-family: var(--font-Yumincho);
    font-size: clamp(2rem, 0.6rem + 1.9vw, 2.8rem);
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 2.24px;
}

.about__list {
    position: relative;
    max-width: 1370px;
    margin: 0 auto;
}

.about__list::before {
    content: "";
    display: block;
    padding-top: 88%;
}

.about__item {
    position: absolute;
    width: 33.3vw;
    max-width: 480px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-img--pc);
}

.about__item--1 {
    background-image: url(../images/family.jpeg);
    background-position: 40% bottom;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about__item--2 {
    background-image: url(../images/health.jpeg);
    top: 20.9%;
    right: 0;
}

.about__item--3 {
    background-image: url(../images/blank.jpeg);
    bottom: 0;
    right: 14.1%;
}

.about__item--4 {
    background-image: url(../images/subwork.jpeg);
    background-size: 180%;
    bottom: 0;
    left: 14.1%;
}

.about__item--5 {
    background-image: url(../images/free.jpeg);
    background-position: 63% center;
    top: 20.9%;
    left: 0;
}

.about__item-inner {
    position: relative;
    height: 100%;
    z-index: 10;
}

.about__desc {
    position: absolute;
    z-index: 20;
}

.about__desc--1 {
    top: 3%;
    right: -10%;
}

.about__desc--2 {
    top: 10%;
    right: 0%;
}

.about__desc--3 {
    top: 52%;
    left: 1%;
}

.about__desc--4 {
    top: 26%;
    left: -12%;
}

.about__desc--5 {
    top: 46%;
    left: -1%;
}

.workstyle {
    width: fit-content;
    padding: 12px;
    background-color: rgba(228, 240, 225, 0.90);
    color: var(--text-green);
    text-align: center;
    font-size: clamp(1.6rem, 1.2rem + 0.48vw, 1.8rem);
    line-height: 1;
    letter-spacing: 1.2px;
    transform: translate(-1vw, 5px);
}

.value {
    width: fit-content;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.70);
    font-family: var(--font-Yumincho);
    font-size: clamp(1.6rem, 0.8rem + 0.95vw, 2rem);
    line-height: 1;
    letter-spacing: 1.32px;
}

.value--3 {
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .txtWrap {
        padding: 56px 3.2%;
    }

    .section__title--about::after {
        top: 33%;
        right: -29%;
    }

    .about__txt {
        margin-top: 32px;
        font-size: 1.4rem;
        letter-spacing: 0.56px;
        line-height: 1.8;
    }

    .about__content {
        padding: 56px 3.2%;
    }

    .about__copy {
        width: 80vw;
        transform: translate(-50%, -40.5vw);
        font-size: clamp(2rem, 0.9rem + 3.26vw, 2.8rem);
        line-height: 1.7;
        letter-spacing: 1.6px;
    }

    .about__list {
        width: var(--contentWidth--sp);
    }

    .about__list::before {
        padding-top: 384%;
    }

    .about__item {
        width: 64vw;
        box-shadow: var(--shadow-img--sp);
    }

    .about__item--1 {
        top: 0;
        left: 0;
        transform: translateX(0);
    }

    .about__item--2 {
        top: 18.5%;
    }

    .about__item--3 {
        bottom: 36.5%;
        left: 0%;
        right: auto;
    }

    .about__item--4 {
        bottom: 18%;
        right: 0%;
        left: auto;
    }

    .about__item--5 {
        top: auto;
        bottom: 0;
    }

    .about__desc--1 {
        top: -11%;
        right: -8%;
    }

    .about__desc--2 {
        top: 0%;
        right: 0%;
    }

    .about__desc--3 {
        top: 56%;
        left: 2%;
    }

    .about__desc--4 {
        top: 66%;
        left: -6%;
    }

    .workstyle {
        padding: 7px;
        font-size: 1.4rem;
        letter-spacing: 0.96px;
        transform: translate(-2vw, 2px);
    }

    .value {
        padding: 7px;
        font-size: 1.6rem;
        letter-spacing: 1.08px;
    }
}

/* =======================
point
======================= */
.section--point {
    background-color: var(--primary-lightgreen);
    background-image: url(../images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section__title span {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.08px;
}

.section__title--point::after {
    content: 'Point';
    top: 42%;
    right: -27%;
}

.point__list {
    width: var(--contentWidth--pc);
    max-width: 1280px;
    margin: 32px auto 0;
}

.point__item {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.point__item:nth-of-type(2n) {
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
}

.point__item:first-of-type {
    margin-top: 0;
}

.point__img img {
    box-shadow: var(--shadow-img--pc);
}

.point__img--1 {
    z-index: 10;
    width: 54%;
}

.point__img--inner {
    position: relative;
}

.img--1--second {
    transform: translate(2vw, -2%);
}

.img__desc {
    width: fit-content;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.90);
    position: absolute;
    bottom: 2.8%;
    z-index: 20;
}

.img__desc--1 {
    left: 2.8%;
}

.img__desc--2 {
    right: 2.8%;
    transform: translate(2vw, -18%);
}

.role__desc {
    font-size: clamp(1.2rem, 0.8rem + 0.48vw, 1.4rem);
    line-height: 1.5;
    letter-spacing: 0.84px;
}

.role {
    color: var(--text-green);
    font-size: clamp(1.4rem, 1rem + 0.48vw, 1.6rem);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.96px;
    margin-top: 8px;
}

.point__img--2 {
    transform: translate(-3vw, 7%);
    z-index: 10;
    width: 46.7vw;
    max-width: 670px;
}

.point__txt {
    background-color: var(--bg-white);
    flex-shrink: 0.29;
    box-shadow: var(--shadow-img--pc);
    position: relative;
    width: fit-content;
    height: fit-content;
}

.point__txt--1 {
    padding: 50px 50px 50px 70px;
    transform: translate(-2.5%, 7%);
}

.point__txt--1::before {
    display: block;
    content: '';
    width: 14.3%;
    aspect-ratio: 21/20;
    background-image: url(../images/01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -8%;
    right: 5%;
}

.point__txt--2 {
    padding: 50px 60px;
}

.point__txt--2::before {
    display: block;
    content: '';
    width: 15.6%;
    aspect-ratio: 21/20;
    background-image: url(../images/02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -12%;
    left: 5%;
}

.point__title {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1.4px;
}

.strength__list {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.strength__item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 25%;
    max-width: 100px;
    aspect-ratio: 1/1;
    background-color: var(--primary-darkgreen);
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: 0.84px;
}

.point__desc {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 2;
}

.point__desc span {
    color: var(--text-green);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 1.08px;
}

.btn--point {
    margin: 84px auto 0;
}

@media screen and (max-width: 768px) {
    .section__title span {
        font-size: 1.4rem;
        letter-spacing: 0.84px;
    }

    .section__title--point::after {
        top: 51%;
        right: -1%;
    }

    .point__list {
        width: var(--contentWidth--sp);
        max-width: none;
        margin: 24px auto 0;
    }

    .point__item {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .point__item:nth-of-type(2n) {
        flex-direction: column;
        justify-content: start;
    }

    .point__img {
        flex-shrink: 0;
        box-shadow: var(--shadow-img--sp);
    }

    .point__img img {
        box-shadow: var(--shadow-img--sp);
    }

    .point__img--1 {
        width: 91.2%;
        max-width: none;
        position: relative;
    }

    .point__img--1::before {
        display: block;
        content: '';
        width: 18%;
        max-width: 72px;
        aspect-ratio: 21/20;
        background-image: url(../images/01.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: -30px;
        right: -8%;
        z-index: 20;
    }

    .img--1--second {
        transform: translate(0, 0);
    }

    .point__img--2 {
        width: 91.2%;
        max-width: none;
        transform: translate(0, 0);
        position: relative;
    }

    .point__img--2::before {
        display: block;
        content: '';
        width: 20%;
        max-width: 80px;
        aspect-ratio: 21/20;
        background-image: url(../images/02.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: -30px;
        left: 2%;
        z-index: 20;
    }

    .img__desc {
        padding: 8px;
    }

    .img__desc--2 {
        right: 7%;
    }

    .role__desc {
        font-size: 1.2rem;
        line-height: 1.3;
        letter-spacing: 0.84px;
    }

    .role {
        font-size: 1.4rem;
        margin-top: 6px;
    }

    .point__txt {
        box-shadow: var(--shadow-img--sp);
    }

    .point__txt--1 {
        width: fit-content;
        max-width: 94.3%;
        padding: 50px 20px 4.83%;
        transform: translate(4%, -2.6%);
    }

    .point__txt--1::before {
        display: none;
    }

    .point__txt--2 {
        width: fit-content;
        max-width: 94.3%;
        padding: 50px 20px 4.83%;
        transform: translate(4%, -2.6%);
    }

    .point__txt--2::before {
        display: none;
    }

    .point__title {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: 1.4px;
    }

    .strength__list {
        margin-top: 12px;
        gap: 8px;
    }

    .strength__item {
        width: 100%;
        aspect-ratio: 1/1;
        font-size: 1.2rem;
        letter-spacing: 0px;
    }

    .point__desc {
        font-size: 1.4rem;
        margin-top: 12px;
    }

    .point__desc span {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }

    .btn--point {
        margin: 24px auto 0;
    }
}

/* =======================
episode
======================= */
.section--episode {
    background-color: var(--primary-lightgreen);
}

.section__title--episode::after {
    content: 'Episode';
    top: 21%;
    right: -44%;
}

/* slick */
.episode__list {
    margin: 32px auto 0;
}

.episode__item {
    width: 55.6vw;
    box-shadow: var(--shadow-img--pc);
    margin-bottom: 10px;
}

.episode__list .slick-slide {
    transform: scale(0.8);
    transition: all .5s;
    opacity: 0.5;
}

.episode__list .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    width: 3.3vw;
    aspect-ratio: 1/1;
    z-index: 10;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-btn);
    border-radius: 50%;
}

.slick-prev:hover,
.slick-next:hover {
    box-shadow: var(--shadow-btn--hover);
}

.slick-prev {
    background-image: url(../images/arrow--left.svg);
    left: 2.8vw;
}

.slick-next {
    background-image: url(../images/arrow--right.svg);
    right: 2.8vw;
}

.slick-dots {
    text-align: center;
    margin: 32px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #ccc;
}

.slick-dots .slick-active button {
    background: var(--text-green);
}

/* slick end */

.episode__item-inner {
    display: flex;
    height: 100%;
}

.episode__img {
    width: 50%;
    height: auto;
}

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

.episode__img--03 {
    object-position: 0%;
}

.episode__txt {
    width: 50%;
    padding: 32px 4%;
    background-color: var(--bg-white);
}

.episode__title {
    width: fit-content;
    padding: 12px 4.6%;
    background-color: var(--primary-lightgreen);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.4px;
}

.episode__desc {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.96px;
}

.episode__desc span {
    color: var(--text-green);
    font-size: 1.6rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .section__title--episode::after {
        top: 27%;
        right: -26%;
    }

    /* slick */
    .episode__list {
        margin: 24px auto 0;
    }

    .episode__item {
        width: 90vw;
        box-shadow: var(--shadow-img--sp);
        margin-bottom: 6px;
    }

    .slick-prev,
    .slick-next {
        top: 42%;
        width: 28px;
    }

    .slick-prev {
        left: -2%;
    }

    .slick-next {
        right: -2%;
    }

    .slick-dots {
        margin: 20px 0 0 0;
    }

    /* slick end */

    .episode__item-inner {
        flex-direction: column;
    }

    .episode__img {
        width: 100%;
    }

    .episode__txt {
        width: 100%;
        padding: 24px 5.87%;
    }

    .episode__title {
        font-size: 1.6rem;
        letter-spacing: 0.4px;
    }

    .episode__desc {
        margin-top: 16px;
        font-size: 1.4rem;
        letter-spacing: 0.4px;
    }

    .episode__desc span {
        color: var(--text-green);
        font-size: 1.6rem;
        font-weight: bold;
    }
}


/* =======================
job example
======================= */
.section__title--jobExample::after {
    content: 'Job Example';
    width: 300%;
    top: 8%;
    right: -220%;
}

.job__list {
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    width: var(--contentWidth--pc);
    max-width: 1280px;
}

.job__item {
    width: 32%;
    max-width: 390px;
    border-right: 1px solid var(--text-green);
    border-bottom: 1px solid var(--text-green);
    background-color: var(--bg-white);
}

.job__item-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--text-green);
    transform: translate(-2%, -2%);
    padding: 7.2%;
    height: 100%;
}

.job__name {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1.08px;
    text-align: center;
}

.treatment__list {
    margin-top: 14px;
}

.treatment__item {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 3.1%;
}

.treatment__item:first-of-type {
    margin-top: 0;
}

.treatment__item--operation {
    align-items: start;
}

.treatment__title {
    display: block;
    width: 24%;
    min-width: 80px;
    background-color: var(--primary-green);
    padding: 6px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.96px;
    text-align: center;
}

.treatment__desc {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.64px;
}

.inner__item {
    font-size: 1.6rem;
    margin-top: 6px;
}

/* .inner__item:first-of-type {
    margin-top: 0;
} */

.recomend__point {
    background-color: var(--primary-green);
    padding: 4.1% 0;
    margin-top: 14px;
}

.recomend__item {
    width: 39%;
    min-width: 152px;
    color: var(--text-green);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.64px;
    margin: 10px auto 0;
}

.recomend__item:first-of-type {
    margin-top: 0;
}

.recomend__item:before {
    display: inline-block;
    content: '';
    width: 18px;
    aspect-ratio: 1/1;
    background-image: url(../images/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    transform: translateY(2.4px);
}

.btnArea--double {
    margin-top: 32px;
}

@media screen and (max-width: 768px) {
    .section__title--jobExample::after {
        width: 180%;
        top: 8%;
        right: -110%;
    }

    .job__list {
        margin: 24px auto 0;
        flex-direction: column;
        align-items: center;
        width: var(--contentWidth--sp);
    }

    .job__item {
        width: 100%;
        margin-top: 20px;
        transform: translate(1%, 1%);
    }

    .job__item-inner {
        transform: translate(-1%, -1%);
        padding: 28px 8%;
    }

    .job__name {
        font-size: 1.6rem;
        letter-spacing: 0.6px;
    }

    .treatment__list {
        margin-top: 12px;
    }

    .treatment__item {
        margin: 8px auto 0;
        gap: 8px;
    }

    .treatment__title {
        font-size: 1.4rem;
        letter-spacing: 0.4px;
    }

    .treatment__desc {
        font-size: 1.4rem;
        letter-spacing: 0.2px;
    }

    .inner__item {
        font-size: 1.4rem;
        margin-top: 6px;
    }

    .recomend__point {
        padding: 5.5% 0;
    }

    .recomend__item {
        font-size: 1.4rem;
        letter-spacing: 0.2px;
        margin: 8px auto 0;
    }

    .recomend__item:before {
        width: 15px;
        transform: translateY(2px);
    }

    .btnArea--double {
        margin-top: 24px;
        flex-direction: column;
    }
}

/* =======================
flow
======================= */
.section--flow {
    background-color: var(--primary-lightgreen);
}

.section__title--flow::after {
    content: 'Flow';
    top: 28%;
    right: -25%;
}

.flow {
    display: flex;
    width: var(--contentWidth--pc);
    max-width: 1280px;
    margin: 64px auto 0;
}

.flow__item-wrap {
    width: 20%;
    max-width: 256px;
}

.flow__item {
    width: 100%;
    height: 100%;
    padding: 20px 7.8%;
    border: 1px solid rgba(49, 84, 40, 0.10);
    position: relative;
}

.flow__item--1,
.flow__item--3,
.flow__item--5 {
    background-color: var(--primary-green);
}

.flow__item--2,
.flow__item--4 {
    background-color: var(--bg-white);
}

.flow__item::before {
    display: block;
    content: '';
    width: 28%;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: clamp(-13%, -3vw, -5%);
    left: -14%;
}

.flow__item--1::before {
    background-image: url(../images/num-01.svg);
}

.flow__item--2::before {
    background-image: url(../images/num-02.svg);
}

.flow__item--3::before {
    background-image: url(../images/num-03.svg);
}

.flow__item--4::before {
    background-image: url(../images/num-04.svg);
}

.flow__item--5::before {
    background-image: url(../images/num-05.svg);
}

.flow__title {
    color: var(--text-green);
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.96px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow__desc {
    margin-top: 16px;
    font-size: 1.4rem;
    line-height: 1.5;
}

.flow__span {
    width: var(--contentWidth--pc);
    max-width: 1280px;
    border-bottom: 1px solid var(--text-black);
    margin: 24px auto 0;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.96px;
    padding: 11px 0;
    text-align: center;
    position: relative;
}

.oneweek {
    font-size: 1.8rem;
}

.flow__span::after {
    display: inline-block;
    content: '';
    height: 100%;
    aspect-ratio: 1/1;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to bottom left, transparent 48%, var(--text-black) 50%, transparent 51%);
}

.btn--flow {
    margin: 32px auto 0;
}

@media screen and (max-width: 768px) {
    .section__title--flow::after {
        top: 34%;
        right: -8%;
    }

    .flow {
        width: 68.27%;
        flex-direction: column;
        margin: 24px auto 0;
        align-items: center;
    }

    .flow__item-wrap {
        width: 100%;
    }

    .flow__item {
        width: 100%;
        height: 288px;
        padding: 20px;
        margin-top: 12px;
    }

    .flow__item--1,
    .flow__item--3,
    .flow__item--5 {
        transform: translateX(-14%);
    }

    .flow__item--2,
    .flow__item--4 {
        transform: translateX(18%);
    }

    .flow__item::before {
        top: -33px;
        left: -14%;
    }

    .flow__title {
        font-size: 1.4rem;
        letter-spacing: 0.4px;
        min-height: 38px;
    }

    .flow__desc {
        margin-top: 12px;
        font-size: 1.2rem;
    }

    .flow__span {
        width: var(--contentWidth--sp);
        max-width: none;
        margin: 20px auto 0;
        font-size: 1.2rem;
        letter-spacing: 0.4px;
    }

    .oneweek {
        font-size: 1.6rem;
    }

    .flow__span::after {
        content: '';
        height: 80%;
    }

    .btn--flow {
        margin: 24px auto 0;
    }
}

/* =======================
faq
======================= */
.section__title--faq::after {
    content: 'FAQ';
    top: 26%;
    right: -72%;
}

.faq {
    width: 55.6%;
    max-width: 800px;
    min-width: 600px;
    margin: 32px auto 0;
}

.faq__item {
    border-top: 1px solid var(--text-green);
    padding: 24px 2.5%;
}

.faq__item:last-of-type {
    border-bottom: 1px solid var(--text-green);
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-green);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.96px;
    transition: all 0.6s ease;
    cursor: pointer;
}

.question::after {
    display: inline-block;
    content: '';
    width: 18px;
    aspect-ratio: 1/1;
    background-image: url(../images/plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s;
}

.answer {
    display: none;
    background-color: var(--primary-green);
    padding: 16px 2.11%;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 24px;
}

/* accordion */
.question.close::before {
    transform: rotate(45deg);
    transition: 0.5s;
}

.question.close::after {
    transform: rotate(45deg);
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .section__title--faq::after {
        top: 32%;
        right: -46%;
    }

    .faq {
        width: var(--contentWidth--sp);
        min-width: 351px;
        margin-top: 24px;
    }

    .faq__item {
        padding: 20px 4.6%;
    }

    .question {
        gap: 12px;
        font-size: 1.4rem;
        line-height: 1.5;
        letter-spacing: 0.4px;
        flex-shrink: 1;
    }

    .question::after {
        width: 16px;
        flex-shrink: 0;
    }

    .answer {
        padding: 16px 5.0%;
        font-size: 1.4rem;
        margin-top: 20px;
    }
}

/* =======================
end
======================= */
.section--end {
    padding: 80px 0;
    background-image: url(../images/cvArea-bg-pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.endWrap {
    width: fit-content;
    max-width: 800px;
    padding: 28px;
    margin: 0 auto;
    background-color: rgba(250, 250, 250, 0.7);
    backdrop-filter: blur(2px);
}

.end__txt {
    width: fit-content;
    margin: 0 auto;
    color: var(--text-green);
    font-family: var(--font-Yumincho);
    font-size: 4.6rem;
    line-height: 1.3;
    letter-spacing: 1.6px;
}

.end__txt span {
    display: block;
    margin-top: 8px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.9px;
}

@media screen and (max-width: 768px) {
    .section--end {
        padding: 80px 0;
        background-image: url(../images/cvArea-bg-sp.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .endWrap {
        width: 100%;
        max-width: none;
        padding: 40px 20px;
    }

    .end__txt {
        font-size: 3.6rem;
        line-height: 1.2;
        letter-spacing: 1.0px;
    }

    .end__txt span {
        margin-top: 6px;
        font-size: 1.4rem;
        letter-spacing: 0.4px;
    }
}

/* =======================
footer
======================= */
.footer {
    background-color: var(--text-green);
    padding: 40px 1.39%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-white);
}

.footer__logo {
    width: 280px;
}

.footerNav {
    display: flex;
}

.footerNav__item {
    padding: 0 20px;
    border-left: 1px solid var(--bg-white);
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
}

.footerNav__item:first-of-type {
    border-left: none;
    padding-left: 0;
}

.copy {
    display: block;
    font-size: 1.2rem;
    margin-top: 2.0vh;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 32px 3.2%;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .footer__logo {
        width: 180px;
        margin: 0 auto;
    }

    .footer__content {
        width: 100%;
    }

    .footerNav {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

    .footerNav__item {
        font-size: 1.2rem;
        border-left: none;
        padding: 0;
    }

    .copy {
        width: 100%;
        text-align: center;
        font-size: 1.0rem;
        margin-top: 20px;
    }
}

/* =======================
pageTop
======================= */
.pageTop {
    opacity: 0;
    transition: 0.6s;
    display: block;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgba(131, 153, 125, 0.9);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    position: fixed;
    bottom: 20px;
    right: 1.4vw;
    box-shadow: var(--shadow-btn);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    z-index: 90;
}

.pageTop:hover {
    box-shadow: var(--shadow-btn--hover);
}

.pageTop a {
    width: 80%;
}

.pageTop.visible {
    transition: all 0.2s;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .pageTop {
        width: 52px;
        bottom: 10px;
        right: 3.2vw;
    }
}

/* =======================
animation
======================= */
/* blur */
.blur--top {
    animation-name: blurAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.blur.animated {
    animation-name: blurAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
    }

    to {
        filter: blur(0);
    }
}

/* fadeIn */
.fadeIn {
    opacity: 0;
    transition: all 1s;
}

.fadeIn.animated {
    opacity: 1;
}

.fadeIn--delay {
    transition-delay: 0.5s;
}

.about__item.fadeIn--delay:nth-of-type(2),
.about__item.fadeIn--delay:nth-of-type(4) {
    transition-delay: 0.3s;
}

/* fadeUp */
.fadeUp {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.fadeUp.animated {
    opacity: 1;
    transform: translate(0);
}

.fadeUp--delay--01 {
    transition-delay: 0.4s;
}

.fadeUp--delay--02 {
    transition-delay: 0.8s;
}

.fadeUp--delay--03 {
    transition-delay: 1.2s;
}

.fadeUp--delay--fast01 {
    transition-delay: 0.2s;
}

.fadeUp--delay--fast02 {
    transition-delay: 0.4s;
}

.fadeUp--delay--fast03 {
    transition-delay: 0.6s;
}

.fadeUp--delay--fast04 {
    transition-delay: 0.8s;
}

.fadeUp--delay--fast05 {
    transition-delay: 1.0s;
}