@charset "UTF-8";

/* #region MV */
.mv {
    position: relative;
}
.mv__cnt {
    display: flex;
    justify-content: center;
    margin-top: 2.6vw;
}
.mv__cnt-left {
    display: grid;
    width: 80%;
    margin-top: 4vw;
    animation: resolve-blur 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    will-change: filter, opacity;
}
@keyframes resolve-blur {
    0% {
        filter: blur(30px);
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}
.mv__cnt-left--ttl {
    display: flex;
    align-items: center;
    color: #424242;
    font-family: "Noto Sans JP";
    font-size: clamp(22px, 1.875vw, 36px);
    font-weight: 500;
    text-transform: uppercase;
}
.mv__cnt-left--ttl h1 {
    width: fit-content;
    background: linear-gradient(to right, #7F1381, #384CFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: clamp(22px, 1.875vw, 36px);
    font-weight: 500;
    line-height: 1;
}
.mv__cnt-left--txt {
    display: block;
    font-size: clamp(12px, 0.938vw, 18px);
    font-weight: 300;
    line-height: 2.2;
}
.mv__cnt-left--txt p {
    margin-bottom: 1vw;
}
.mv__cnt-left--txt-last {
    font-size: clamp(16px, 1.146vw, 22px);
    font-weight: bold;
    line-height: 1;
}
.mv__cnt-left--logo {
    width: 12vw;
    height: auto;
    margin-top: -4.5vw;
}
.mv__cnt-right {
    width: 95%;
    height: auto;
    margin-right: -12vw;
}
.mv__cnt-right img {
    width: 100%;
    animation: resolve-blur 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    will-change: filter, opacity;
}
@keyframes resolve-blur {
    0% {
        filter: blur(30px);
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}
/* .mv__cnt--glitch {
    position: relative;
    overflow: hidden;
}
.mv__cnt--glitch::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    backdrop-filter: blur(12px) brightness(1.2);
    -webkit-backdrop-filter: blur(12px) brightness(1.2);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: radial-gradient(rgba(0,0,0,0.2) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0;
    z-index: 2;
    animation: mosaic-glitch 8s infinite;
}
@keyframes mosaic-glitch {
    0%, 85% {
        opacity: 0;
        top: 0;
        height: 0;
    }
    86% {
        opacity: 1;
        top: 10%;
        height: 15%;
        clip-path: inset(0 5% 0 10%);
    }
    87% {
        opacity: 0;
    }
    88% {
        opacity: 1;
        top: 25%;
        height: 20%;
        clip-path: inset(0 0 0 0);
    }
    90% {
        top: 60%;
        height: 12%;
        clip-path: inset(0 15% 0 5%);
    }
    92% {
        opacity: 1;
        top: 28%;
        height: 18%;
    }
    93%, 100% { opacity: 0; }
} */
/* #endregion */

/* #region CTA */
.cta {
    position: relative;
}
.cta__cnt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 100%;
    overflow: hidden;
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: 2s;
}
.cta__cnt.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.cta__cnt-group {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: auto;
    min-height: clamp(300px, 26.04vw, 500px);
    margin-inline: auto;
    box-sizing: border-box;
    color: #fff;
    padding: 2.4vw;
    transition: background-color 0.4s ease;
    overflow: hidden;
}
.cta__cnt-group01 {
    position: relative;
    background-color: rgba(47, 43, 125, 1);
}
.cta__cnt-group01:hover {
    background-color: rgba(47, 43, 125, .7);
}
.cta__cnt-group01::before {
    position: absolute;
    inset: 0;
    content: "";
    background: center / cover no-repeat;
    background-image: url("../image/cta/cta-ai_bg.png");
    background-image: -webkit-image-set(
        url("../image/cta/cta-ai_bg.png") 1x,
        url("../image/cta/cta-ai_bg@2x.png") 2x
    );
    background-image: image-set(
        url("../image/cta/cta-ai_bg.png") 1x,
        url("../image/cta/cta-ai_bg@2x.png") 2x
    );
    z-index: -10;
}
.cta__cnt-group02 {
    position: relative;
    background-color: rgba(228, 0, 125, 1);
}
.cta__cnt-group02:hover {
    background-color: rgba(228, 0, 125, .7);
}
.cta__cnt-group02::before {
    position: absolute;
    inset: 0;
    content: "";
    background: center / cover no-repeat;
    background-image: url("../image/cta/cta-allpass_bg.png");
    background-image: -webkit-image-set(
        url("../image/cta/cta-allpass_bg.png") 1x,
        url("../image/cta/cta-allpass_bg@2x.png") 2x
    );
    background-image: image-set(
        url("../image/cta/cta-allpass_bg.png") 1x,
        url("../image/cta/cta-allpass_bg@2x.png") 2x
    );
    z-index: -10;
}
.cta__cnt-group03 {
    position: relative;
    background-color: rgba(14, 138, 198, 1);
}
.cta__cnt-group03:hover {
    background-color: rgba(14, 138, 198, .7);
}
.cta__cnt-group03::before {
    position: absolute;
    inset: 0;
    content: "";
    background: center / cover no-repeat;
    background-image: url("../image/cta/cta-film_bg.png");
    background-image: -webkit-image-set(
        url("../image/cta/cta-film_bg.png") 1x,
        url("../image/cta/cta-film_bg@2x.png") 2x
    );
    background-image: image-set(
        url("../image/cta/cta-film_bg.png") 1x,
        url("../image/cta/cta-film_bg@2x.png") 2x
    );
    z-index: -10;
}
.cta__cnt-group--left {
    position: absolute;
    top: 3%;
    left: -.6vw;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left;
    opacity: .4;
}
.cta__cnt-group--left span {
    font-family: sans-serif, "Avenir Next";
    font-size: clamp(36px, 2.604vw, 50px);
    font-weight: 100;
}
.cta__cnt-group--lead {
    width: 10vw;
    height: auto;
    background-color: #fff;
    padding-top: .3vw;
    padding-bottom: .3vw;
    text-align: center;
}
.cta__cnt-group--lead01 {
    color: #2F2B7D;
}
.cta__cnt-group--lead02 {
    color: #E4007D;
}
.cta__cnt-group--lead03 {
    color: #0E8AC6;
}
.cta__cnt-group--ttl h2 {
    margin-top: .8vw;
    font-size: clamp(22px, 1.875vw, 36px);
    font-weight: 200;
}
.cta__cnt-group--ttl h3 {
    margin-top: .4vw;
    font-size: clamp(36px, 2.604vw, 50px);
    font-weight: 400;
}
.cta__cnt-group--txt {
    margin-top: 8vw;
    font-size: clamp(14px, 0.938vw, 18px);
    line-height: 2.2;
}
/* #endregion */

/* #region TOPICS */
.topics {
    position: relative;
}
.topics__cnt {
    background-color: #F2F2F2;
    padding-top: clamp(100px, 10.417vw, 200px);
    padding-bottom: clamp(100px, 10.417vw, 200px);
}
.topics__cnt-group {
    display: flex;
    justify-content: space-between;
    gap: clamp(24px, 3.906vw, 75px);
    margin-top: clamp(32px, 4.167vw, 80px);
}
.topics__cnt-group--box {
    width: 100%;
}
.topics__cnt-group--box01 {
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.topics__cnt-group--box01.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.topics__cnt-group--box02 {
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.topics__cnt-group--box02.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.topics__cnt-group--box03 {
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.topics__cnt-group--box03.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.topics__cnt-group--box-img img {
    border-radius: .2vw;
}
.topics__cnt-group--box-info {
    padding-top: 1.5vw;
}
.topics__cnt-group--box-info span {
    color: #A4A4A4;
}
.topics__cnt-group--box-info h3 {
    margin-top: .4vw;
    color: #7F1381;
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 1.4;
}
.topics__cnt-group--box-info p {
    margin-top: .6vw;
    line-height: 1.6;
}
/* #endregion */

/* #region COMPANY */
.company {
    position: relative;
}
.company__cnt {
    background-color: #fff;
    padding-top: clamp(100px, 10.417vw, 200px);
    padding-bottom: clamp(100px, 10.417vw, 200px);
}
.company__cnt-group {
    display : flex;
    justify-content: space-between;
    /* gap: clamp(32px, 4.167vw, 80px); */
}
.company__cnt-group--map {
    width: 100%;
    max-width: clamp(320px, 25vw, 480px);
    aspect-ratio: 1 / 1;
    margin-top: clamp(32px, 4.167vw, 80px);
    border-radius: .4vw;
    overflow: hidden;
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.company__cnt-group--map.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.company__cnt-group--map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.company__cnt-group--right {
    /* js フェードイン */
    transform: translateY(20px);
    opacity: 0;
    transition: .6s;
}
.company__cnt-group--right.show {
    /* js フェードイン */
    transform: translateY(0);
    opacity: 1;
}
.company__cnt-group--summary {
    width: 100%;
    border-collapse: collapse;
}
.company__cnt-group--summary tr {
    border-bottom: 1px solid #424242;
    font-size: clamp(16px, 1.04vw, 20px);
}
.company__cnt-group--summary tr:last-child {
    border-bottom: none;
}
.company__cnt-group--summary th,
.company__cnt-group--summary td {
    font-weight: 300;
    line-height: 1.6;
    padding: 1.4vw 0;
    text-align: left;
    vertical-align: top;
}
.company__cnt-group--summary th {
    padding-right: 1vw;
}
/* #endregion */

@media (max-width: 768px) {
    /* #region mv */
    .mv__cnt {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 0;
        overflow: hidden;
    }
    .mv__cnt-left {
        position: relative;
        width: 100%;
        margin-top: -58vw;
        padding: 140vw 0 60vw 3vw;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        mask-image: linear-gradient(to bottom, transparent 0%, #424242 40%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #424242 40%);
    }
    .mv__cnt-left::before {
        content: "";
        position: absolute;
        inset: -2vw;
        pointer-events: none;
        z-index: -1;
    }
    .mv__cnt-left--logo {
        width: 40vw;
        margin-top: 8vw;
    }
    .mv__cnt-left--ttl h1 {
        width: fit-content;
        background: linear-gradient(to right, #7F1381, #384CFF);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        font-size: clamp(26px, 8.205vw, 48px);
        line-height: 1.6;
        opacity: 1;
    }
    .mv__cnt-left--txt {
        display: flex;
        flex-direction: column;
        gap: 6vw;
        margin-top: clamp(30px, 12.821vw, 50px);
        font-size: clamp(14px, 4.103vw, 16px);
        font-weight: 400;
        line-height: 2.6;
    }
    .mv__cnt-left--txt-last {
        font-size: clamp(16px, 5.128vw, 20px);
        font-weight: bold;
        line-height: 2;
    }
    .mv__cnt-right {
        width: 100%;
        height: 28vh;
        position: relative;
    }
    .mv__cnt-right picture {
        position: fixed;
        top: -3%;
        right: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 90%;
        height: 90vh;
        pointer-events: none;
        z-index: -10;
    }
    .mv__cnt-right img {
        width: 90%;
        height: auto;
        object-fit: contain;
    }
    /* #endregion */

    /* #region cta */
    .cta__cnt {
        grid-template-columns: 1fr;
    }
    .cta__cnt-group {
        min-height: auto;
        padding: 10vw 4.5vw;
    }
    .cta__cnt-group01 {
        position: relative;
        background-color: rgba(47, 43, 125, .7);
    }
    .cta__cnt-group02 {
        position: relative;
        background-color: rgba(228, 0, 125, .7);
    }
    .cta__cnt-group03 {
        position: relative;
        background-color: rgba(14, 138, 198, .7);
    }
    .cta__cnt-group--left {
        left: -2vw;
    }
    .cta__cnt-group--left span {
        font-family: sans-serif, "Avenir Next";
        font-size: clamp(26px, 8.205vw, 36px);
        font-weight: 100;
    }
    .cta__cnt-group--lead {
        width: 40vw;
    }
    .cta__cnt-group--ttl h2 {
        margin-top: 3vw;
    }
    .cta__cnt-group--ttl h3 {
        margin-top: 1vw;
    }
    .cta__cnt-group--txt {
        margin-top: 20vw;
    }
    /* #endregion */

    /* #region topics */
    .topics__cnt {
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .topics__cnt-group {
        flex-direction: column;
        gap: 10vw;
        margin-top: clamp(32px, 15.385vw, 60px);
    }
    .topics__cnt-group--box {
        display: flex;
        flex-direction: column;
    }
    .topics__cnt-group--box-info {
        padding-top: 4vw;
    }
    .topics__cnt-group--box-info span {
        font-size: clamp(12px, 3.59vw, 14px);
    }
    .topics__cnt-group--box-info h3 {
        margin-top: 1.4vw;
        color: #7F1381;
        font-size: clamp(14px, 4.615vw, 18px);
        line-height: 1.4;
    }
    .topics__cnt-group--box-info p {
        margin-top: 2.5vw;
        font-size: clamp(12px, 3.59vw, 14px);
        line-height: 2;
    }
    /* #endregion */

    /* #region company */
    .company__cnt {
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .company__cnt-group {
        flex-direction: column;
        gap: 10vw;
    }
    .company__cnt-group--map {
        max-width: 100%;
        margin-top: clamp(32px, 15.385vw, 60px);
    }
    .company__cnt-group--summary th,
    .company__cnt-group--summary td {
        font-weight: 400;
        padding: 4vw 0;
        font-size: clamp(14px, 3.5vw, 16px);
    }
    .company__cnt-group--summary th {
        width: 20%;
        padding-right: 0;
    }
    /* #endregion */
}