@charset "UTF-8";
/* CSS Document */


/* #region 汎用ブロック - section__btn */

.section__btn {
    display: inline-flex;
    width: 100%;
    min-width: 300px;
    text-align: center;
    text-decoration: none;
    padding: 1em 4em;
    outline: none;
    color: var(--white);
    background-color: var(--main-color);
    position: relative;
    transition: color .5s ease;
    letter-spacing: 0.03em;
    border-radius: 100px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.section__btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.section__btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
    border-radius: 100px;
}

.section__btn span {
    position: relative;
    color: var(--white);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .section__btn {
        min-width: 300px;
        padding: 1.1em 3em;
    }

    .section__btn span {
        font-size: 1.3rem;
    }
}

@media (min-width: 1400px) {
    .section__btn {
        min-width: 380px;
        padding: 1.2em 4em;
    }

    .section__btn span {
        font-size: 1.5rem;
    }
}

/* #endregion */

/* #region 汎用ブロック - full-marker */
.full-marker {
    background-image: linear-gradient(var(--marker-yellow), var(--marker-yellow));
    background-size: 100% 1.1em;
    background-position: left bottom 0.15em;
    background-repeat: no-repeat;
    line-height: 1;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
}

/* #endregion */

/* #region 汎用ブロック - bubble */
.bubble {
    position: relative;
    display: inline-block;
    padding: .6em 1.5em;
    border-radius: 60px;
    background-color: var(--main-color);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--white);
}

.bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 12px 7px 0 7px;
    border-color: var(--main-color) transparent transparent;
    translate: -50% 100%;
}

@media (min-width: 768px) {
    .bubble {
        padding: .7em 2.5em;
        font-size: 1.6rem;
    }

    .bubble::after {
        border-width: 14px 8px 0 8px;
    }
}

@media (min-width: 1400px) {
    .bubble {
        padding: .8em 3.5em;
        font-size: 2.4rem;
    }

    .bubble::after {
        border-width: 16px 9px 0 9px;
    }
}

/* #endregion */

/* #region 汎用ブロック - tel */

/* #endregion */

/* #region 専用ブロック - hero */

.hero {
    position: relative;
    margin-top: 80px;
    height: 500px;
    overflow: hidden;
}

.hero__swiper,
.hero__swiper .swiper-slide {
    height: 100%;
}

.hero__content {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 1;
    margin-left: 1em;
}

.hero__catch {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.hero__sub {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

@media (min-width: 768px) {
    .hero {
        height: 700px;
    }

    .hero__catch {
        font-size: 3rem;
    }

    .hero__sub {
        font-size: 1.4rem;
    }
}

@media (min-width: 1400px) {
    .hero {
        height: 1065px;
    }

    .hero__catch {
        font-size: 4.9rem;
        /* 78px */
    }

    .hero__sub {
        font-size: 1.6rem;
        /* 26px */
    }
}


/* #endregion */

/* #region 専用ブロック - mission */

.mission {
    position: relative;
    overflow: hidden;
    margin-top: -16vw;
    z-index: 3;
}

.mission__shape {
    display: block;
    width: 100%;
    height: 800px;
    margin-left: 0;
    margin-right: 0;
}

.mission__body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.mission__bg-text {
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--en-font);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    color: var(--sub-green-light);
    opacity: 0.16;
    white-space: nowrap;
    pointer-events: none;
}

@media (min-width: 768px) {
    .mission__bg-text {
        font-size: 7rem;
    }
}

.mission__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.mission__title {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--black);
}

.mission__text {
    position: relative;
    z-index: 1;
    line-height: 2;
    color: var(--black);
}

.mission__inner .btn-wrap {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .mission {
        margin-top: -9.3vw;
    }


    .mission__shape {
        height: 650px;
    }
}

@media (min-width: 1400px) {
    .mission__shape {
        height: 900px;
    }

    .mission__bg-text {
        font-size: 16.6rem;
        /* 266px */
        top: -0.3em;
    }

    .mission__title {
        font-size: 4rem;
        /* 64px */
    }

    .mission__text {
        font-size: 1.5rem;
        /* 24px */
        line-height: 2.1;
    }
}

/* #endregion */



/* #region 専用ブロック - service */

.service {
    padding: 4rem 0;
}

.service__header {
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 0.5rem;
}

.service__bg-text {
    position: absolute;
    top: 0;
    left: -0.1em;
    font-family: var(--en-font);
    font-weight: 300;
    font-size: 6rem;
    line-height: 1.4;
    color: var(--bg-color);
    white-space: nowrap;
    pointer-events: none;
}

.service__heading {
    position: relative;
    z-index: 1;
    font-family: var(--main-font);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--black);
}

.service__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.service__card-img-wrap {
    overflow: hidden;
    border-radius: 30px 40px 0 0;
}

.service__card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service__card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    width: 100%;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.service__card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service__card-title {
    font-family: var(--main-font);
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--black);
    white-space: nowrap;
}

.service__card-en-title {
    font-family: var(--en-font);
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--main-color);
	font-weight: 300;
    letter-spacing: 1px;
}

.service__card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
}

.service__card-body .btn-wrap {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .service__card-body {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem 3rem;
        align-items: flex-start;
    }

    .service__card-info {
        flex: 0 0 35%;
    }

    .service__card-text {
        flex: 1;
    }

    .service__card-body .btn-wrap {
        flex: 0 0 100%;
    }

    .service__card-body .btn-wrap .section__btn {
        width: auto;
    }
}

@media (min-width: 1400px) {
    .service__header {
        padding-top: 18rem;
    }

    .service__list {
        margin-top: 6rem;
    }

    .service__bg-text {
        font-size: 16.9rem;
        /* 270px */
    }

    .service__heading {
        font-size: 1.9rem;
        /* 31px */
    }

    .service__card-body {
        padding: 3.5rem 0;
        gap: 3rem 3rem;
    }


    .service__card-img {
        height: 500px;
    }

    .service__card-title {
        font-size: 2.9rem;
        /* 47px */
    }

    .service__card-en-title {
        font-size: 1.1rem;
        /* 18px */
    }

    .service__card-text {
        font-size: 1.5rem;
        /* 24px */
        line-height: 2;
    }
}

/* #endregion */

/* #region 専用ブロック - problem */

.problem__bg1 {
    background-image: url("../img/index/problem_bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 4rem 0 2rem;
}

.problem__heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.problem__heading-en {
    font-family: var(--en-font);
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--main-color);
    font-weight: 600;
}

.problem__heading-ja {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--black);
}

.problem__text {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2.5;
    color: var(--black);
}

.problem__bubble-wrap {
    margin-top: 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.problem__card-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1.5rem;
}

.problem__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    border-radius: 30px;
    padding: 2rem 1.5rem;
    gap: 1rem;
}

.problem__card-img {
    width: 230px;
    height: 170px;
    object-fit: contain;
}

.problem__card-text {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: center;
    color: var(--black);
}

.problem__card-text-main {
    display: block;
    font-size: 1.5rem;
    line-height: 1.5;
}

.problem__bg2 {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--sub-grad-end), var(--sub-grad-start));
    border-radius: 30px 30px 0 0;
    margin-top: -6rem;
    padding: 8rem 0 4rem;
}

.problem__bg2-title {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

.problem__cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.problem__cta-badge {
    display: inline-block;
    padding: 0.4em 1.5em;
    background-color: var(--sub-green-light);
    border-radius: 60px;
    font-size: 0.9rem;
    color: var(--white);
}

.problem__cta-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

.problem__contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}


.problem__contact-btn .header__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta-color);
    white-space: nowrap;
    border-radius: 10px;
    padding: .8em 1.5em;
    text-decoration: none;
    transition: opacity 0.3s;
}

.problem__contact-btn .header__contact-btn>span {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.9rem;
    color: var(--white);
}

.problem__contact-btn .icon-mail_ic {
    font-size: inherit;
}

.problem__contact-btn .header__contact-btn:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .problem__contact-btn .header__contact-btn {
        padding: 1em 2em;
    }

    .problem__contact-btn .header__contact-btn>span {
        font-size: 1rem;
    }
}

@media (min-width:1080px) {
    .problem__contact {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin-top: 1rem;
        max-width: 800px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1400px) {
    .problem__bg1 {
        padding: 6rem 0 3rem;
    }

    .problem__heading-en {
        font-size: 1.9rem;
        /* 30px */
    }

    .problem__heading-ja {
        font-size: 4.6rem;
        /* 74px */
    }

    .problem__text {
        font-size: 1.5rem;
        /* 24px */
    }

    .problem__bubble-wrap {
        margin-top: 5rem;
        padding: 0;
    }

    .problem__card-wrap {
        flex-direction: row;
        justify-content: center;
        max-width: 1250px;
        margin-right: auto;
        margin-left: auto;
        padding: 0;
        gap: 1.5rem;
    }

    .problem__card {
        flex: 0 0 400px;
        height: 425px;
        max-width: none;
    }

    .problem__card-text {
        font-size: 1.6rem;
        /* 25px */
    }

    .problem__card-text-main {
        font-size: 2.3rem;
        /* 36px */
    }

    .problem__bg2 {
        margin-top: -9rem;
        padding: 12rem 0 6rem;
    }

    .problem__bg2-title {
        font-size: 2.8rem;
        /* 45px */
    }

    .problem__cta {
        margin-top: 2.8rem;
        gap: 0.7rem;
    }

    .problem__cta-badge {
        font-size: 1.5rem;
        /* 24px */
    }

    .problem__cta-text {
        font-size: 1.8rem;
        /* 28px */
    }

    .problem__contact {
        gap: 6rem;
        max-width: 1260px;
    }

    .problem__contact-btn .header__contact-btn {
        min-width: 580px;
        padding: 1.5em 3em;
    }

    .problem__contact-btn .header__contact-btn>span {
        font-size: 1.5rem;
        /* 24px */
    }

    .problem__contact-btn .icon-mail_ic {
        font-size: 1.5rem;
        /* 24px */
    }
}

/* #endregion */

/* #region 専用ブロック - safety */

.safety {
    position: relative;
    overflow: visible;
    padding: 6rem 0 2rem;
}

.safety .wrap {
    position: relative;
    z-index: 1;
}

.safety__bg-text {
    position: absolute;
    top: 2em;
    left: 30%;
    transform-origin: left bottom;
    transform: rotate(-90deg);
    font-family: var(--en-font);
    font-style: italic;
    font-weight: 300;
    font-size: 7rem;
    line-height: 1;
    color: var(--bg-color);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.safety__heading {
    font-family: var(--main-font);
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--black);
}

.safety__text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 2;
    color: var(--black);
}

.safety__card-wrap {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.safety__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety__card-num {
    font-family: var(--num-font);
    font-style: italic;
    font-weight: 200;
    font-size: 5rem;
    line-height: 1;
    color: var(--main-color);
    z-index: 2;
    transform: translateX(.2em);
}

.safety__card-img-wrap {
    overflow: hidden;
    border-radius: 13px;
    position: relative;
    margin-top: -3rem;
}

.safety .btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
}

.safety .btn-wrap .section__btn {
    width: auto;
}

.safety__card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.safety__card-title {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--black);
}

.safety__card-text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--black);
    font-weight: normal;
}

@media (min-width: 768px) {
    .safety__bg-text {
        font-size: 10rem;
        left: 20%;
        top: 1.2em;
    }
}

@media (min-width:1080px) {
    .safety__card-wrap {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 490px);
        gap: 3rem 5rem;
        justify-content: center;
    }


    .safety__card-img {
        height: 380px;
    }
}

@media (min-width: 1400px) {
    .safety {
        padding: 15rem 0 3rem;
    }

    .safety__bg-text {
        font-size: 16.8rem;
        /* 269px */
        left: 20%;
    }

    .safety__heading {
        font-size: 4.6rem;
        /* 73px */
    }

    .safety__text {
        margin-top: 2rem;
        font-size: 1.5rem;
        /* 24px */
        line-height: 2.5;
    }

    .safety__card-wrap {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 540px);
        gap: 3rem 8rem;
        justify-content: center;
    }

    .safety__card-num {
        font-size: 10rem;
        /* 160px */
        line-height: 1.4;
        position: relative;
        z-index: 1;
        transform: translateX(.1em);
    }

    .safety__card-img-wrap {
        margin-top: -7rem;
        z-index: 0;
    }

    .safety__card-img {
        height: 410px;
    }

    .safety__card-title {
        font-size: 1.9rem;
        /* 30px */
    }

    .safety__card-text {
        font-size: 1.1rem;
        /* 18px */
        line-height: 1.9;
    }
}

/* #endregion */

/* #region 専用ブロック - area */

.area {
    position: relative;
    padding: 6rem 0;
    margin-top: 3rem;
    background-image: url("../img/index/area.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .area {
        background-size: auto 100%;
    }
}

.area__heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.area__heading-en {
    font-family: var(--en-font);
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--main-color);
    font-weight: 600;
}

.area__heading-ja {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--black);
}

.area__text {
    margin-top: 2rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--black);
}

.area__list {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2.5;
    color: var(--black);
}

.area .btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.area .btn-wrap .section__btn {
    width: auto;
}

@media (min-width: 1400px) {
    .area {
        padding: 8rem 0;
        margin-top: 5rem;
    }

    .area__heading-en {
        font-size: 1.9rem;
        /* 30px */
    }

    .area__heading-ja {
        font-size: 4.1rem;
        /* 66px */
        line-height: 1.5;
    }

    .area__text {
        font-size: 2.4rem;
        /* 39px */
        line-height: 1.5;
    }

    .area__list {
        font-size: 1.5rem;
        /* 24px */
        line-height: 2.5;
    }
}

/* #endregion */

