@charset "UTF-8";

.corporate-common-brand-nav,
.pc-only {
    display: none;
}

/* カスタムプロパティ */
:root {
    --color-white: #fff;
    --color-gray: #F7F7F7;
    --color-black: #000;
    --color-black2: #1B1B1B;
    --color-orange: #ED6D00;
    --color-yellow: #F7AB00;
    --color-navy-blue: #66B3C4;
    --color-red: #FF0000;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-size-10: 0.625rem;
    --font-size-11: 0.688rem;
    --font-size-12: 0.75rem;
    --font-size-14: 0.875rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-23: 1.438rem;
    --font-size-24: 1.5rem;
    --font-size-25: 1.563rem;
    --font-size-30: 1.875rem;
    --font-size-36: 2.25rem;
    --font-size-44: 2.75rem;
    --width-section: 92%;
    --width-section-min768: 82.5%;
    --font-size-26: 1.625rem;
}

.main {
    font-family: var(--font-main);
}

/* first-view */
.first-view {
    position: relative;
    width: 100%;
    height: calc(100vh - 124px);
    max-height: 800px;
    background: url(../images/first_view.webp) no-repeat;
    background-position: 56.4% 50%;
    background-size: cover;
    color: var(--color-white);
    padding-top: 4.2vh;
    font-weight: 700;
    margin-bottom: 39px;
}

.first-view::after {
    position: absolute;
    content: "";
    bottom: -39px;
    left: 0;
    width: 100%;
    height: 39px;
    background-color: #8F8095;
}


.main-title-wrapper {
    display: flex;
    flex-direction: column-reverse;
    width: 82.53%;
    max-width: 306px;
    margin: 0 auto;
    gap: 6px;
}

.main-title {
    margin: 0;
    /* 34px */
    font-size: 2.125rem;
    line-height: 1.4;
}

.main-text {
    margin: 0;
    /* 18px */
    font-size: 1.125rem;
    line-height: 1.222;
}

.first-view .cta {
    position: absolute;
    content: "";
    bottom: -5px;
    width: 100%;
    z-index: 1;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

}

a.cta-mail-link,
a.cta-download-link {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 52px;
    border-radius: 4px;
    text-align: center;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-weight: 700;
    /* 19px */
    font-size: 1.188rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.cta-download-link {
    background-color: var(--color-yellow);
}

.cta-mail-link::before,
.cta-download-link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    z-index: 2;
}

.cta-mail-link::before {
    background-image: url(../images/cta_mail.svg);
    width: 22px;
    height: 16px;
}

.cta-download-link::before {
    background-image: url(../images/cta_file.svg);
    width: 19px;
    height: 24px;
    left: 35px;
}

@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }

    .first-view {
        padding-top: 5%;
        max-height: 600px;
        background-position: 50% 39.2%;
        margin-bottom: initial;
        height: calc(100vh - 70px);
    }

    .first-view::after {
        display: none;
    }

    .main-title-wrapper {
        width: 47.36%;
        max-width: 555px;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .main-text {
        font-size: 1.4rem;
    }

    .first-view .cta {
        position: static;
        padding-top: 42px;
    }

    .cta-inner {
        flex-direction: row;
        gap: 36px;
    }
}


@media screen and (min-width: 1280px) {

    .first-view {
        padding-top: 78px;
        max-height: 680px;
    }


    .main-title-wrapper {
        max-width: 565px;
    }

    .main-title {
        /* 62px */
        font-size: 3.875rem;
    }

    .main-text {
        font-size: var(--font-size-23);
    }

    .cta {
        padding-top: 32px;
    }
    a.cta-mail-link,
    a.cta-download-link {
        width: 400px;
        height: 70px;
    }
}


@media screen and (min-width: 1500px) {
    .first-view {
        padding-top: 164px;
        max-height: 1000px;
    }
}

/* 共通パーツ */
.heading2-title {
    margin: initial;
    color: var(--color-orange);
    text-align: center;
    font-size: var(--font-size-23);
    line-height: 1.261;
}

.heading2-text {
    font-size: var(--font-size-14);
    line-height: 1.429;
}


@media screen and (min-width: 768px) {
    .heading2-title {
        font-size: var(--font-size-44);
    }

    .heading2-text {
        text-align: center;
        font-size: 1rem;
    }
}

/* about */
.about {
    padding-top: 40px;
    width: var(--width-section);
    margin: 0 auto 60px;
    max-width: 1056px;
}

.about .heading2-title {
    margin-bottom: 15px;
}

.about .heading2-text {
    margin-bottom: 15px;
}

.about-definition-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
}

.about-definition-item {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding-block: 18px;
    text-align: center;
    width: 48.7%;
}

.about-term {
    background-color: var(--color-yellow);
    color: var(--color-white);
    border-radius: 50px;
    font-size: var(--font-size-12);
    font-weight: 700;
    line-height: 1.669;
    width: 93.45%;
    margin: 0 auto 10px;
}

.about-term.font-size-10 {
    font-size: var(--font-size-10);
    line-height: 2;
}

.about-term.font-size-11 {
    font-size: var(--font-size-11);
    line-height: 1.818;
}

.about-description {
    font-size: 1rem;
    color: var(--color-black2);
    letter-spacing: .05em;
    width: 93.45%;
    line-height: 1.115;
    margin: 0 auto;
}

.about-description span {
    font-size: var(--font-size-26);
    color: var(--color-orange);
    font-weight: 700;
}

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

    .about {
        margin-bottom: 80px;
        width: var(--width-section-min768);
    }

    .about .heading2-title {
        margin-bottom: 30px;
    }

    .about .heading2-text {
        margin-block: 30px;
    }

    .about-definition-item {
        width: 32.77%;
        padding-block: 22px;
    }

    .about .about-term {
        font-size: var(--font-size-16);
        line-height: 1.667;
        width: 79.48%;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: var(--font-size-23);
    }

    .about-description span {
        font-size: var(--font-size-44);
    }
}

@media screen and (min-width: 1280px) {
    .about .about-term {
        font-size: var(--font-size-18);
    }
}

/* brand-user-wrapper */
.brand-user-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 0 auto 60px;
    width: var(--width-section);
}

/* brand */
.brand {
    margin: 0 auto;
}

.brand .heading2-title {
    margin-bottom: 26px;
}

.brand .heading2-text {
    text-align: left;
}

.brand-rogo {
    margin-bottom: 15px;
}

.brand-logos-image {
    width: 95.65%;
    margin: 0 auto;
    display: block;
}

/* user */
.user {
    margin: 0 auto;
}

.user .heading2-title {
    margin-bottom: 26px;
}

.user .heading2-text {
    text-align: left;
}

.user--definition-list {
    margin: 0 auto 16px;
}

.user-term {
    text-align: center;
    line-height: 1.313;
    margin-bottom: 10px;
}

.user-description-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.user-description {
    width: 45.51%;
    margin: 0;
}


@media screen and (min-width: 768px) {
    .brand-user-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: initial;
        max-width: 1056px;
        margin-bottom: 80px;
        width: var(--width-section-min768);
    }

    .brand,
    .user {
        width: 48%;
    }

    .brand .heading2-title,
    .user .heading2-title {
        margin-bottom: 45px;
    }

    .user .heading2-title {
        line-height: 1.364;
    }

    .brand .heading2-title {
        line-height: 2.773;
    }

    .brand .heading2-text {
        width: 89.96%;
        margin: 0 auto;
    }

    .brand-rogo {
        margin-bottom: 45px;
    }

    .brand-logos-image {
        width: 63.45%;
    }


    .user .heading2-text {
        width: 89.96%;
        margin: 0 auto;
    }

    .user-term {
        font-size: var(--font-size-18);
        line-height: 1.39;
    }

    .user-description-wrapper {
        margin-bottom: 26px;
    }

    .user-description {
        width: 43.56%;
    }

    .user-description img {
        display: block;
        width: 100%;
    }
}


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

    .brand,
    .user {
        width: 50%;
    }
}

/* reason */
.reason {
    margin-bottom: 30px;
}

.reason .heading2-title {
    margin-bottom: 30px;
}

.reason-list {
    padding: 29px 0;
    width: var(--width-section);
    margin: 0 auto;
    background-color: var(--color-gray);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
    max-width: 1056px;
    position: relative;
}

.reason-list::before {
    position: absolute;
    content: "";
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 188px;
    height: 42px;
    background-image: url(../images/triangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.reason-list-item {
    list-style: none;
}

.reason-item-title {
    font-size: var(--font-size-20);
    letter-spacing: 0.05em;
    line-height: 1.45;
    position: relative;
    padding-left: 30%;
    margin: 0 auto 20px;
}

.reason-item-title::before {
    position: absolute;
    content: "1";
    top: 50%;
    left: calc(30% - 64px);
    transform: translateY(-46%);
    width: 50px;
    height: 50px;
    background-color: var(--color-yellow);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-24);
    font-weight: 700;
}

.reason-list-item:nth-child(2) .reason-item-title::before {
    content: "2";
}

.reason-list-item:nth-child(3) .reason-item-title::before {
    content: "3";
}

.reason-item-title span {
    color: var(--color-orange);
}

.reason-item-text-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 87.54%;
    margin: 0 auto;
    gap: 15px;
}

.reason-item-text {
    font-size: var(--font-size-14);
    line-height: 1.429;
    width: 63.58%;
    margin: initial;
}

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

.reason-item-img {
    width: 31.46%;
    height: auto;
}

.reason-strong-text {
    font-size: var(--font-size-18);
    text-align: center;
    color: var(--color-orange);
    margin: 82px auto 0;
    display: block;
    line-height: 1.611;
}

@media screen and (min-width: 768px) {
    .reason {
        margin-bottom: 60px;
    }

    .reason .heading2-title {
        margin-bottom: 45px;
    }

    .reason-list {
        flex-direction: row;
        gap: initial;
        width: var(--width-section-min768);
    }

    .reason-list-item {
        width: 32.2%;
        padding-bottom: 23px;
    }

    .reason-item-text-wrapper {
        flex-direction: column-reverse;
    }

    .reason-item-title {
        padding: 70px 0 0;
        text-align: center;
        font-size: var(--font-size-25);
        margin-bottom: 28px;
    }

    .reason-item-title::before {
        top: 0;
        transform: none;
        left: 50%;
        transform: translateX(-50%);
    }

    .reason-item-text {
        width: 88.82%;
        font-size: var(--font-size-16);
    }

    .reason-item-img {
        width: 39.74%;
    }

    .reason-list-item:nth-child(2) .reason-item-img {
        width: 38.08%;
    }

    .reason-list-item:nth-child(3) .reason-item-img {
        width: 50%;
    }

    .reason-list::before {
        width: 200px;
        height: 42px;
        bottom: -70px;
    }

    .reason-strong-text {
        font-size: var(--font-size-30);
    }
}

/* media */
.media {
    margin-bottom: 30px;
}

.media-inner {
    background-color: var(--color-orange);
    padding-block: 50px;
}

.media .heading2-title {
    color: var(--color-white);
    text-align: center;
    margin: 0 auto 25px;
}

.media-list {
    width: var(--width-section);
    margin: 0 auto;
    padding: initial;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1056px;
}

.media-list-item {
    background-color: var(--color-white);
    list-style: none;
    border-radius: 10px;
    padding: 30px 0 26px;
    position: relative;
}

.media-list-item.media-new::before {
    position: absolute;
    content: "";
    top: -.8px;
    left: -.58px;
    width: 30%;
    height: 20%;
    background-image: url(../images/media_new.svg);
    background-repeat: no-repeat;
    z-index: 1;
}

.media-list-item-inner {
    width: 94.2%;
    margin: 0 auto;
    max-width: 376px;
}

.media-list-item-img {
    border-radius: 6px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
}

.media-list-item-title {
    margin: 15px auto;
    text-align: center;
    font-size: var(--font-size-18);
    line-height: 1.611;
}

.media-list-item-text {
    margin: 15px auto;
}

.media-term {
    background-color: var(--color-yellow);
    color: var(--color-white);
    text-align: center;
    font-size: var(--font-size-14);
    line-height: 1.429;
    font-weight: 700;
    padding-block: 2px;
    margin-bottom: 15px;
}

.media-description {
    margin: initial;
}

.media-description-list {
    padding: initial;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-description-list-item {
    list-style: none;
    width: 12.31%;
}


.media-description-list-item img {
    width: 80%;
}


@media screen and (min-width: 768px) {
    .media {
        margin-bottom: 60px;
    }

    .media-inner {
        padding-block: 60px;
    }

    .media .heading2-title {
        font-size: var(--font-size-36);
        margin-bottom: 48px;
    }

    .media-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 23px 0;
        justify-content: space-between;
        width: 82.5%;
    }

    .media-list-item-inner {
        width: 72.59%;
    }

    .media-list-item {
        width: 49.05%;
    }

    .media-list-item-img {
        width: 95.74%;
    }

    .media-list-item-title {
        font-size: var(--font-size-20);
    }

    .media-list-item-text {
        width: 95.74%;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .media-list-item.media-new::before {
        width: 116px;
        height: 116px;
        background-size: contain;
        left: -1px;
        top: 0px;
    }
}

@media screen and (min-width: 1280px) {
    .media .heading2-title {
        font-size: var(--font-size-44);
        margin-bottom: 57px;
    }
}

/* industry */
.industry {
    margin-bottom: 60px;
}

.industry .heading2-title {
    margin-bottom: 26px;
}

.industry-list-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: var(--width-section);
    margin: 0 auto;
    max-width: 1056px;
}

.industry-list-item-wrapper {
    background-color: var(--color-gray);
    border-radius: 6px;
    padding: 10px 15px;
}

.industry-term {
    font-size: var(--font-size-14);
    font-weight: 700;
    line-height: 1.429;
}

.industry-description {
    font-size: var(--font-size-14);
    margin: initial;
    line-height: 1.429;
}

@media screen and (min-width: 768px) {
    .industry {
        margin-bottom: 80px;
    }

    .industry .heading2-title {
        font-size: var(--font-size-44);
        margin-bottom: 45px;
    }

    .industry-list-inner {
        width: var(--width-section-min768);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 5px;
    }

    .industry-list-item-wrapper {
        width: 32.95%;
        padding: 20px;
    }

    .industry-term,
    .industry-description {
        font-size: var(--font-size-20);
    }
}

/* plan */
.plan {
    margin-bottom: 60px;
}

.plan .heading2-title {
    margin-bottom: 26px;
}

.plan .heading2-text {
    width: var(--width-section);
    margin: 0 auto 26px;
}

.plan-list {
    width: var(--width-section);
    margin: 0 auto;
    max-width: 1056px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-list-item {
    background-color: #FFF5DE;
    padding-block: 20px;
    padding: 20px 19px 20px 15px;
    border-radius: 6px;
}

.plan-term {
    color: var(--color-orange);
    font-size: var(--font-size-20);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.plan-list-item:nth-child(2) .plan-term {
    color: #FF4444;
}

.plan-list-item:nth-child(3) .plan-term {
    color: #00C300;
}

.plan-list-item:nth-child(4) .plan-term {
    color: #5871FF;
}

.plan-description {
    font-size: var(--font-size-14);
    line-height: 1.429;
    padding-left: 93px;
    margin: initial;
    position: relative;
    min-height: 55px;
}

.plan-description::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 24%;
    height: 100%;
    background-image: url(../images/plan1.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.plan-list-item:nth-child(2) .plan-description::before {
    background-image: url(../images/plan2.png);
}

.plan-list-item:nth-child(3) .plan-description::before {
    background-image: url(../images/plan3.png);
}

.plan-list-item:nth-child(4) .plan-description::before {
    background-image: url(../images/plan4.png);
}


@media screen and (min-width: 768px) {
    .plan {
        margin-bottom: 80px;
    }

    .plan .heading2-title {
        margin-bottom: 45px;
    }

    .plan .heading2-text {
        margin-bottom: 45px;
    }

    .plan-list {
        width: var(--width-section-min768);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px 0;
        justify-content: space-between;
    }

    .plan-list-item {
        width: 48.58%;
        padding: 30px 30px 49px;
    }

    .plan-term {
        font-size: var(--font-size-26);
    }

    .plan-description {
        font-size: var(--font-size-18);
        padding-left: 174px;
    }

    .plan-description::before {
        width: 34%;
    }
}

@media screen and (min-width: 1280px) {
    .plan-term {
        font-size: var(--font-size-30);
    }
}

/* flow */
.flow {
    margin-bottom: 60px;
}

.flow .heading2-title {
    margin-bottom: 26px;
}

.flow .heading2-text {
    width: var(--width-section);
    margin: 0 auto 26px;
}

.flow-list {
    padding: initial;
    width: var(--width-section);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
    max-width: 1056px;
}

.flow-list-item {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BABABA;
    border-radius: 6px;
    font-size: var(--font-size-18);
    font-weight: 700;
    padding: 7px 0 8px;
    position: relative;
    background-color: var(--color-gray);
}

.flow-list-item::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 20px;
    background-image: url(../images/triangle_orange.svg);
    background-repeat: no-repeat;
    bottom: -30px;
}

.flow-list-item:last-child::before {
    display: none;
}


@media screen and (min-width: 768px) {
    .flow {
        margin-bottom: 80px;
    }

    .flow .heading2-title {
        margin-bottom: 45px;
    }

    .flow .heading2-text {
        margin-bottom: 45px;
    }

    .flow-list {
        width: var(--width-section-min768);
        flex-direction: row;
        justify-content: space-between;
    }

    .flow-list-item {
        width: 17.05%;
        height: 190px;
        font-size: var(--font-size-25);
        text-align: center;
    }

    .flow-list-item::before {
        bottom: initial;
        background-image: url(../images/triangle_orange_right.svg);
        width: 17px;
        height: 60px;
        top: 50%;
        transform: translateY(-50%);
        right: -30px;
    }
}

/* contact */
.contact {
    margin-bottom: 30px;
}

.contact .heading2-title {
    margin-bottom: 26px;
}

.contact .heading2-text {
    width: var(--width-section);
    margin: 0 auto 18px;
}

.contact .cta {
    margin-top: 30px;
}


@media screen and (min-width: 768px) {
    .contact .heading2-title {
        margin-bottom: 45px;
    }

    .contact .cta {
        margin-top: 45px;
        padding: initial;
    }
}