@charset "UTF-8";

/* =========================================================
l-content style
========================================================= */

.l-contentMain.__slash01::before {
    content: "";
    position: fixed;
    z-index: -1;
    top: 50%;
    right: -80%;
    width: 270%;
    height: 500px;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--base-color02) 50%, transparent),
        var(--base-color02)
    );
    transform: rotate(-30deg);
}

.l-contentMain.__lpbg01::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
}

/* webp対応 */
.webp .l-contentMain.__lpbg01::before {
    background-image: url(../images/lp/corplp/bg01.webp);
}

.no-webp .l-contentMain.__lpbg01::before {
    background-image: url(../images/lp/corplp/bg01.png);
}

/* =========================================================
l-cont var
========================================================= */
.l-cont.__column2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap08);
    align-items: flex-start;

    @media (max-width: 1024px) {
        display: flex;
        flex-direction: column;
        gap: var(--gap06);
    }
}

/* =========================================================
l-cont margin/padding utilities
========================================================= */

.l-cont.__tinymtb {
    margin-top: var(--mtb-tiny);
    margin-bottom: var(--mtb-tiny);
}

.l-cont.__minmtb {
    margin-top: var(--mtb-min);
    margin-bottom: var(--mtb-min);
}

.l-cont.__midmtb {
    margin-top: var(--mtb-mid);
    margin-bottom: var(--mtb-mid);
}

.l-cont.__largemtb {
    margin-top: var(--mtb-large);
    margin-bottom: var(--mtb-large);
}

.l-cont.__bigmtb {
    margin-top: var(--mtb-big);
    margin-bottom: var(--mtb-big);
}
.l-cont.__hugemtb {
    margin-top: var(--mtb-huge);
    margin-bottom: var(--mtb-huge);
}

.l-cont.__tinyptb {
    padding-top: var(--ptb-tiny);
    padding-bottom: var(--ptb-tiny);
}

.l-cont.__minptb {
    padding-top: var(--ptb-min);
    padding-bottom: var(--ptb-min);
}

.l-cont.__midptb {
    padding-top: var(--ptb-mid);
    padding-bottom: var(--ptb-mid);
}

.l-cont.__largeptb {
    padding-top: var(--ptb-large);
    padding-bottom: var(--ptb-large);
}

.l-cont.__bigptb {
    padding-top: var(--ptb-big);
    padding-bottom: var(--ptb-big);
}

.l-cont.__hugeptb {
    padding-top: var(--ptb-huge);
    padding-bottom: var(--ptb-huge);
}

/* =========================================================
l-contPost
========================================================= */

.l-contPost {
    font-size: var(--fs-postp);
    padding-block: var(--ptb-large);
}

.l-contPost.__nopb {
    padding-bottom: 0;
}

.l-contPost.__nopt {
    padding-top: 0;
}

.l-contPost p:not(:last-of-type) {
    padding-bottom: var(--gap01);
}

.l-contPost p {
    font-weight: normal;
    padding-bottom: var(--gap02);
}

.l-contPost > h2:first-of-type,
.l-contPost > h3:first-of-type,
.l-contPost > h4:first-of-type {
    margin-top: 0;
}

/* =========================================================
l-contTitle
========================================================= */

.l-contTitle {
    position: relative;
    font-size: var(--fs-large);
    font-weight: 900;
    margin-bottom: var(--gap01);
    padding: var(--gap01) var(--gap02);
    padding-right: 0;
}

@media (max-width: 1080px) {
    .l-contTitle {
        padding: var(--gap00) var(--gap01);
    }
}

.l-contTitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 3px;
    height: 100%;
    background-color: var(--accent-color01);
    border-radius: 100px;
}

.l-contMain__title {
    margin-top: var(--gap02);
    margin-bottom: var(--gap02);
    font-size: var(--fs-title);
    display: flex;
    align-items: center;
    gap: var(--gap00);
    padding: var(--gap01);
    border-radius: var(--radius01);
    background-color: var(--base-color02);
    font-weight: 900;
}

@media (max-width: 1080px) {
    .l-contMain__title {
        padding: var(--gap00) var(--gap01);
        margin-bottom: var(--gap01);
    }
}

/* =========================================================
l-cont background elements
========================================================= */

.l-contBg {
    position: fixed;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.l-contBg__img.__bg01 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: overlay;
    animation: l-contBg 12s linear infinite;
}

.l-contBg__img.__logo01 {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: 100vh;
    object-fit: cover;
    mix-blend-mode: hue;
    z-index: -2;
    opacity: 0.035;
}

@keyframes l-contBg {
    0% {
        opacity: 0.005;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.005;
    }
}

/* =========================================================
l-cont circles animation
========================================================= */

.l-contBg__circles {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.l-contBg__circlesArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.l-contBg__circlesItem {
    position: absolute;
    display: block;
    list-style: none;
    width: 500px !important;
    height: 500px !important;
    background: color-mix(in srgb, var(--base-color02) 1%, transparent);
    opacity: 0;
    animation: l-contBg__circle 50s linear infinite;
    bottom: -150px;
}

.l-contBg__circlesItem:nth-child(1) {
    left: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.l-contBg__circlesItem:nth-child(2) {
    left: 1%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 32s;
}

.l-contBg__circlesItem:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.l-contBg__circlesItem:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 48s;
}

.l-contBg__circlesItem:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.l-contBg__circlesItem:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.l-contBg__circlesItem:nth-child(7) {
    left: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.l-contBg__circlesItem:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.l-contBg__circlesItem:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.l-contBg__circlesItem:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 21s;
}

@keyframes l-contBg__circle {
    0% {
        transform: translateY(0) rotate(0deg);
        border-radius: 2px;
        opacity: 0;
    }
    20% {
        transform: translateY(0) rotate(0deg);
        border-radius: 2px;
        opacity: 1;
    }
    90% {
        transform: translateY(-2000px) rotate(180deg);
        border-radius: var(--radius01);
        opacity: 1;
    }
    100% {
        transform: translateY(-2000px) rotate(180deg);
        border-radius: var(--radius01);
        opacity: 0;
    }
}