@charset "UTF-8";

/* 商品データシート */
.product-data-sheet {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.product-data-sheet .pp-title {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid var(--ast-border-color);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-style-3);
    padding: 20px 20px 20px 48px;
    transition: all .2s linear;
}

.product-data-sheet .pp-subtitle {
    margin-bottom: 1em;
}

.product-data-sheet .pp-remarks {
    font-size: .875em;
    margin-bottom: 0;
}

.pp-title.open {
    box-shadow: none;
}

.pp-title::before {
    position: absolute;
    content: '';
    background: var(--other-accent-color-10);
    height: calc(100% - 44px);
    width: 8px;
    border-radius: 4px;
    left: 20px;
}

.pp-title::after {
    content: '＋';
    position: absolute;
    right: 20px;
    font-family: var(--custom-font-type-2);
    font-weight: normal;
    transition: transform .3s ease;
}

.pp-title.open::after {
    content: '－';
    transform: rotate(180deg);
}

.pp-title.open, .pp-title:hover {
    background: var(--ast-global-color-5);
}

.pp-description {
    display: none;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .pp-description {
        padding: 20px;
    }
}
