@charset "utf-8";

/*com__intro==================================*/
.com__intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding:0px 0px 40px 0;
}

.svg__mask {
    width: 48%;
    height: 320px;
    position: relative;
}

.video-container {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
.intro__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: url(#maskShape);
    mask-image: url(#maskShape);
    z-index: 1;
  -webkit-mask: url(#maskShape);
  mask: url(#maskShape);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
    will-change: transform;
    transform: translateZ(0);
  }

.intro__box {
    width: 64%;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro__title {
    font-size: 3.4vw;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.8;
}

.intro__text {
    width: 64%;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/*sample__imgbox========================*/
.company__imgbox {
    max-width: 1240px;
    margin: 0 auto 48px;
    padding:0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/*summry======================*/
dl {
    max-width: 1140px;
    padding: 0 40px 80px;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-content: center;
    justify-content: start;
    border-bottom: 1px solid #333;
    padding: 32px 0;
}

dt {
    color: #fefefe;
    background-color: #333;
    font-size: 18px;
    padding: 12px 24px;
    text-align: center;
    display: block;
    width: 8em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

dd {
    width: calc(100% - 8em);
    color: #333;
    padding-left: 1em;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.place {
    width: 32%;
    pointer-events: none;
    text-decoration: none;
}


@media screen and (max-width: 1139px) {

    /*com__intro===============*/
    .svg__mask {
        height: 248px;
    }
    .intro__box {
        width: 72%;
    }
    .intro__title {
        font-size: 4vw;
    }
    .intro__text {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    /*com__intro===============*/
    .svg__mask {
        height: 172px;
    }
    .intro__box {
        width: 88%;
    }
    .intro__title {
        font-size: 5vw;
    }
    .intro__text {
        width: 80%;
        font-size: 16px;
    }
    /*summry======================*/

    .flex {
        display: flex;
        align-content: center;
        justify-content: start;
        border-bottom: 1px solid #333;
        padding: 24px 0;
        flex-direction: column;
    }

    dt {
        font-size: 16px;
        padding: 8px 20px;
        margin-bottom: 16px;
    }

    dd {
        width: 90%;
        font-size: 16px;
        white-space: normal;
    }

    .place {
    width: 90%;
    margin-bottom: 16px;
}
}


@media screen and (max-width: 428px) {

    /*com__intro===============*/
    .svg__mask {
        height: 120px;
    }
    .intro__title {
        font-size: 5.6vw;
    }
    .intro__text {
        width: 90%;
        font-size: 14px;
        margin-bottom: 16px;
    }


    /*summry=====================*/
    dl {
        padding: 0 24px 64px;
    }
    dt {
        font-size: 14px;
    }
    dd {
        font-size: 14px;
    }
}