@charset "utf-8";
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 *
 *
	index.html CSS
 *
 *
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ===========================================================

   hero

=========================================================== */

.p-hero {
    position: relative;
    width: 100%;
    height: 72vw;
    overflow: hidden;
    background-color: var(--color-off-white);
}

.p-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 29.2%;
    position: absolute;
    top: 25vw;
    left: 4%;
    z-index: 2;
}

.p-hero__content img:nth-of-type(1) {
    width: 100%;
    padding-bottom: 1.25vw;
}

.p-hero__content img:nth-of-type(2) {
    width: 90.5%;
    margin-left: 8vw;
}

.p-hero__img {
    width: 100%;
    height: 72vw;
    background: url(/img/index/hero.png) no-repeat top center;
    background-size: cover;
    transform-origin: center;
}

/* Heroスライド */
.p-hero__title {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.p-hero__title.is-animated {
    opacity: 1;
    transform: translateY(0);
}



@media screen and (max-width: 768px) {
    .p-hero {
        height: 162vw;
    }

    .p-hero__img {
        position: relative;
        height: 162vw;
        background: url(/img/index/hero--sp.png) no-repeat top center;
        background-size: cover;
        z-index: 2;
    }

    .p-hero__content img:nth-of-type(1) {
        padding-bottom: 4.5vw;
    }

    .p-hero__content {
        width: 88.2%;
        top: 117vw;
    }

}

/* ===========================================================

   top_h2

=========================================================== */

h2 {
    font-size: var(--fs-h2--top-pc);
    font-weight: 600;
    line-height: 2.3rem;
    padding-bottom: var(--space-max--pc);
}

h2 span {
    display: block;
    font-size: var(--fs-base--pc);
    color: var(--color-sky-blue);
    font-family: var(--font-en);
}

/* <= 768px */
@media screen and (max-width: 768px) {
    h2 {
        font-size: var(--fs-h2--top-sp);
        padding-bottom: var(--space-l--sp);
        line-height: 2rem;
        text-shadow: 1px 1px 0 var(--color-off-white), -1px -1px 0 var(--color-off-white), -1px 1px 0 var(--color-off-white), 1px -1px 0 var(--color-off-white), 0px 1px 0 var(--color-off-white), 0 -1px 0 var(--color-off-white), -1px 0 0 var(--color-off-white), 1px 0 0 var(--color-off-white);
    }

    h2 span {
        font-size: var(--fs-s--sp);
    }
}

/* ===========================================================

   scroll-down

=========================================================== */

.p-scroll-down {
    position: absolute;
    top: 0;
    left: 30px;
    width: 100%;
    height: 100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.p-scroll-down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg, rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}

.p-scroll-down a {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 3px;
    padding: 50px 25px 50px;
    color: var(--color-blue);
    font-size: 14px;
    font-family: var(--font-en);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2em;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: 2.5s;
    overflow: hidden;
    margin: 0;
}

.p-scroll-down a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 150px;
    background: var(--color-sky-blue);
}

.p-scroll-down a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 150px;
    background: var(--color-blue);
}

.p-scroll-down a:hover {
    opacity: .5;
}

#p-scroll-down a:after {
    animation: sdl01 2s cubic-bezier(1, 0.4, 0.8, 1) infinite;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.p-scroll-down a {
    text-shadow: 1px 1px 0 var(--color-off-white), -1px -1px 0 var(--color-off-white), -1px 1px 0 var(--color-off-white), 1px -1px 0 var(--color-off-white), 0px 1px 0 var(--color-off-white), 0 -1px 0 var(--color-off-white), -1px 0 0 var(--color-off-white), 1px 0 0 var(--color-off-white);
}

/* .p-scroll-down a:before,
.p-scroll-down a:after {
    box-shadow: 1px 1px 0 var(--color-off-white), -1px -1px 0 var(--color-off-white), -1px 1px 0 var(--color-off-white), 1px -1px 0 var(--color-off-white), 0px 1px 0 var(--color-off-white), 0 -1px 0 var(--color-off-white), -1px 0 0 var(--color-off-white), 1px 0 0 var(--color-off-white);
} */

@media screen and (max-width: 768px) {
    .p-scroll-down {
        left: 1rem;
        height: 111vw;
    }

    .p-scroll-down a {
        padding: 50px 15px 50px;
    }
}


/* ===========================================================

   about-us

=========================================================== */

.p-about-us {
    position: relative;
    background-color: var(--color-off-white);
}

.p-about-us__box::before {
    content: "";
    display: block;
    position: absolute;
    top: 9vw;
    left: 0%;
    width: min(196px, 10.2vw);
    height: min(418px, 21.77vw);
    background-image: url(/img/index/about-us__object-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.p-about-us__txt {
    padding-bottom: var(--space-m--pc);
    line-height: 2.1rem;
}

.p-about-us__txt--read {
    color: var(--color-blue);
    font-size: var(--fs-lead--pc);
    font-weight: 600;
    line-height: 2.2rem;
    padding-bottom: var(--space-m--pc);
}

.p-about-us__img {
    text-align: center;
}

.p-about-us__img img {
    width: 80%;
    text-align: center;
}


@media screen and (max-width: 1600px) {
    .p-about-us__box::before {
        width: 7.2vw;
    }
}

@media screen and (max-width: 768px) {
    .p-about-us__txt {
        padding-bottom: var(--space-m--sp);
        line-height: 2rem;
    }

    .p-about-us {
        top: -15vw;
        z-index: 0;
        margin-bottom: -18vw;
        padding-bottom: var(--space-max--pc);
    }

    .p-about-us__img img {
        width: 100%;
    }

    .p-about-us__txt--read {
        font-size: var(--fs-lead--sp);
        padding-bottom: var(--space-m--sp);
        line-height: 2.2rem;
    }

    .p-about-us__box::before {
        display: none;
    }

}

/* ===========================================================

   philosophy

=========================================================== */

.p-philosophy {
    background-color: var(--color-off-white);
    font-weight: 600;
}

.p-philosophy h2 {
    padding-bottom: var(--space-xxl--pc);
    color: var(--color-off-white);
}

.p-philosophy__box {
    position: relative;
    background-color: var(--color-blue);
    text-align: center;
    border-radius: var(--border-radius--50);
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
}

.p-section__grid-parent--philosophy {
    max-width: 100vw !important;
    position: relative;
}

.p-section__grid-parent--philosophy::before {
    content: "";
    display: block;
    position: absolute;
    top: 5vw;
    right: 0%;
    width: min(404px, 21.04vw);
    height: min(663px, 34.53vw);
    background-image: url(/img/index/philosophy__object-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.p-section__grid-parent--philosophy::after {
    content: "";
    display: block;
    position: absolute;
    top: -7vw;
    left: 0%;
    width: min(566px, 29.47vw);
    height: min(826px, 43.17vw);
    background-image: url(/img/index/philosophy__object-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.p-philosophy__txt {
    position: relative;
    color: var(--color-off-white);
    padding-bottom: var(--space-xl--pc);
    line-height: 2.2rem;
    text-shadow: 1px 1px 0 var(--color-blue), -1px -1px 0 var(--color-blue), -1px 1px 0 var(--color-blue), 1px -1px 0 var(--color-blue), 0px 1px 0 var(--color-blue), 0 -1px 0 var(--color-blue), -1px 0 0 var(--color-blue), 1px 0 0 var(--color-blue);
    z-index: 10;
}

.p-philosophy__txt--read {
    color: var(--color-off-white);
    font-size: var(--fs-h2--top-pc);
    font-family: var(--font-en);
    font-weight: 600;
    line-height: 3.2rem;
    padding-bottom: var(--space-m--pc);
}

.p-philosophy__txt--read span {
    display: block;
    font-size: var(--fs-l--pc);
}

.c-btn.c-btn--philosophy::before {
    background-image: url(/img/common/icon__link.svg);
}

.c-btn.c-btn--philosophy:hover::before {
    background-image: url(/img/common/icon__link.svg);
}

.c-btn.c-btn--philosophy:hover {
    background-color: var(--color-yellow);
    color: var(--color-blue);
}

.c-btn__box.c-btn__box--philosophy {
    margin-top: var(--space-xl--pc);
}

/* <= 768px */
@media screen and (max-width: 768px) {
    .p-philosophy h2 {
        padding-bottom: var(--space-xl--sp);
        text-shadow: none;
    }

    .p-philosophy__txt {
        padding-bottom: var(--space-xl--sp);
        padding-left: var(--container-padding--sp);
        padding-right: var(--container-padding--sp);
        line-height: 2.2rem;

    }

    .c-btn__box.c-btn__box--philosophy {
        margin: 0 auto var(--space-l--sp);
    }

    .c-btn__box.c-btn__box--philosophy>.c-btn {
        font-size: var(--fs-base--sp);
    }

    .p-philosophy__box {
        padding-block: var(--space-max--sp);
        border-radius: var(--border-radius--30);
    }

    .p-philosophy__txt--read {
        font-size: var(--fs-l--sp);
        padding-bottom: var(--space-xl--sp);
        font-weight: 600;
        line-height: 2.4rem;
        letter-spacing: 0.12rem;
    }

    .p-philosophy__txt--read span {
        display: block;
        font-size: var(--fs-s--sp);
        line-height: 1.8rem;
    }

    .p-section__grid-parent--philosophy::before {
        top: auto;
        bottom: -37vw;
        right: 0%;
        width: min(125px, 30.19vw);
        height: min(164px, 39.61vw);
        background-image: url(/img/index/philosophy__object-01--sp.png);
    }

    .p-section__grid-parent--philosophy::after {
        top: -29vw;
        left: 0%;
        width: min(115px, 27.77vw);
        height: min(182px, 43.96vw);
        background-image: url(/img/index/philosophy__object-02--sp.png);
    }
}

/* ===========================================================

   p-services

=========================================================== */

@media screen and (max-width: 768px) {
    .p-services.l-section {
        padding-left: var(--container-padding--sp);
        padding-right: var(--container-padding--sp);
        padding-bottom: var(--space-m--sp);
    }
}

/* ===========================================================

   p-company-info

=========================================================== */

@media screen and (max-width: 768px) {
    .p-company-info.l-section {
        padding-bottom: var(--space-m--sp);
    }
}


/* ===========================================================

   news

=========================================================== */
.p-news h2 {
    padding-bottom: var(--space-xxl--pc);
}

/* <= 768px */
@media screen and (max-width: 768px) {
    .p-news {
        padding-bottom: var(--space-max--pc);
    }

    .p-news h2 {
        padding-bottom: var(--space-l--sp);
    }
}