@charset "UTF-8";

.product__img__top__wrap {
    width: 100%;
    height: 100vh;
    background-image: url('../images/webproduct.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product__wrapper {
    overflow: hidden;
}

.product__content {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.product__text {
    position: absolute;
    color: #ffffff;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100%;
}

.product__text h2 {
    text-align: center;
    font-weight: 700;
}

.product__service__img {
    position: relative;
    object-fit: cover;
}

.product__service__img:first-child {
    position: absolute;
    top: 0;
    left: 0; 
}

.product__service__img:nth-child(2) {
    top: 0;
    right: 0; 
    position: absolute; 
    
}

.product__service__img .left__img {
    transform: translateX(-100%);
    opacity: 0;
    transition: all cubic-bezier(.73,0,.83,1)  .5s;
    max-width: 100%;
    height: auto; 
}

.product__service__img .right__img {
    transform: translateX(100%);
    opacity: 0;
    transition: all cubic-bezier(.73,0,.83,1)  .5s;
    max-width: 100%;
    height: auto; 
}

.left__img.left__fadeIn {
    transform: translateX(0%);
    opacity: 1;
}

.right__img.right__fadeIn {
    transform: translateX(0%);
    opacity: 1;
}

.p__text {
    margin-top: 3%;
}

.p__text p {
    padding: 10px 0 10px 0 ;
    font-size: 24px;
    text-align: center;
}

.product__service__img img {
    width: 100%;
    border-radius: 30px;
}

.product__service__img img {
    border-radius: 30px;
}

.product__container {
    position: relative;
    margin: 100px auto 0 auto;
    width: 80%;
}

.inner {
    background-color: #93dfef;
    padding: 50px 20px;
    border-radius: 30px;
}

table {
    border-collapse: collapse;/* 境界線を重ねる */
    text-align: left;
    width: 100%;
}

tr {
    border-bottom: 1px solid rgb(15, 65, 75, 0.3);
}

td {
    width: 50%;
    padding: 20px;
    color: #333333;
    font-weight: 600;
}

.table__caption {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    background-color: #93dfef;
    width: 80%;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 10px 0 10px 0;
}
.table__header {
    font-weight: 700;
}

.achievement__content {
    width: 80%;
    border: 1px solid #93dfef;
    border-radius: 20px;
    margin: 0% auto 5% auto;
}

.achievement__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 50px 0 50px;
    justify-content: center;
    align-items: center;
    grid-column-gap: 20px; 
}

.achievement__content img {
    margin-top: 10%;
}

.achievement__h2 {
    text-align: center;
    margin: 5% 0 3% 0;
}

@media screen and (max-width: 960px) {
    .achievement__content {
        grid-template-columns: 1fr 1fr;
    }

    .product__text h2 {
        font-size: 24px;
    }

    .p__text p {
        padding: 5px 0 5px 0 ;
        font-size: 16px;
        text-align: center;
    }

    td {
        padding: 10px;
        font-size: 14px;
    }

    .table__header {
        font-weight: 700;
        font-size: 24px;
    }

    
}

@media screen and (max-width: 450px) {
    .achievement__content {
        grid-template-columns: 1fr;
    }

    .product__text h2 {
        font-size: 16px;
    }

    .p__text p {
        padding: 3px 0 3px 0 ;
        font-size: 14px;
    }

    td {
        padding: 5px;
        font-size: 12px;
    }    
}
