@charset "UTF-8";
/* product-outline */
.product-outline {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.product-outline__title {
    margin: 0 0 48px;
}
.product-outline__description {
    line-height: 2;
}
.product-outline__image {
    margin-top: -96px;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}
@media screen and (max-width:800px) {
    .product-outline {
        grid-template-columns: 1fr;
    }
    .product-outline__image {
        margin-top: -48px;
    }
    .product-outline__textcontent {
        order: 1;
    }
}

/* product-feature-list */
.product-feature-list {
    display: grid;
    grid-template-columns: repeat(var(--columns,3),1fr);
    gap: 48px;
}
.product-feature-item {
    padding: 30px;
    background: var(--color-white-primary);
    border-radius: 16px;
}
.product-feature-item__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 3em;
    margin: 0 0 16px;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
.product-feature-item__image {
    max-width: 200px;
    margin: 0 auto 16px;
}
.product-feature-item__description {
    line-height: 2;
}
@media screen and (max-width:1080px) {
    .product-feature-list {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}
@media screen and (max-width:640px) {
    .product-feature-list {
        grid-template-columns: 1fr;
    }
    .product-feature-item {
        padding: 24px 16px;
    }
}

/* product-suitable-list */
.product-suitable-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.product-suitable-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white-primary);
    border-radius: 16px;
}
.product-suitable-item__content {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    padding: 30px;
}
.product-suitable-item__title {
    margin: 0 0 16px;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
.product-suitable-item__description {
    line-height: 2;
    margin: 0 0 24px;
}

.product-suitable-item-example {
    display: flex;
    gap: 12px;
    background: var(--color-lightgray-primary);
    padding: 10px;
    margin-top: auto;
    font-size: 1.4rem;
}
.product-suitable-item-example__title {
    flex-shrink: 0;
}
@media screen and (max-width:800px) {
    .product-suitable-list {
        grid-template-columns: repeat(1,1fr);
        gap: 20px;
    }
    .product-suitable-item__content {
        padding: 24px 16px;
    }
}

/* product-leaflet */
.product-leaflet {
    display: flex;
    gap: 30px;
    padding: 30px;
    color: var(--color-white-primary);
    background: linear-gradient(90deg,var(--color-turquoise-primary),var(--color-blue-primary));
    border-radius: 16px;
}
.product-leaflet__image {
    width: 25%;
    flex-shrink: 0;
}
.product-leaflet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
}
.product-leaflet__title {
    font-size: 2.4rem;
    font-weight: 700;
}
.product-leaflet__description {
    line-height: 1.75;
    margin: 0 0 24px;
}
.product-leaflet .button-sp {
    display: none;
}
@media screen and (max-width:1080px) {
    .product-leaflet {
        flex-direction: column;
        gap: 24px;
        padding: 16px;
    }
    .product-leaflet__header {
        margin-bottom: 12px;
    }
    .product-leaflet .button-pc {
        display: none;
    }
    .product-leaflet .button-sp {
        display: block;
    }
    .product-leaflet__image {
        width: 90%;
        max-width: 480px;
        margin: 0 auto;
    }
    .product-leaflet__description {
        margin-bottom: 16px;
    }
}

/* product-function-list */
.product-function-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 48px;
}
.product-function-item {
    overflow: hidden;
    background: var(--color-white-primary);
    border-radius: 16px;
}
.product-function-item__content {
    padding: 24px 30px 30px;
}
.product-function-item__title {
    margin: 0 0 16px;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
.product-function-item__description {
    line-height: 2;
}
@media screen and (max-width:1080px) {
    .product-function-list {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}
@media screen and (max-width:640px) {
    .product-function-list {
        grid-template-columns: 1fr;
    }
    .product-function-item__content {
        padding: 24px 16px;
    }
}