/* --------------------------------------------------- */
/* common */
/* --------------------------------------------------- */
.layout_split {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
}
@media screen and (max-width: 1279px) {
    .layout_split {
        margin-top: 6.25rem;
        margin-bottom: 6.25rem;
    }
}
@media screen and (max-width: 959px) {
    .layout_split {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}

/* --------------------------------------------------- */
/* price_movement */
/* --------------------------------------------------- */
.price_movement__item {
    border-radius: 0.25rem;
    background: var(--white);
    display: flex;
    padding: 1.75rem;
    align-items: center;
    gap: 1.25rem;
}
.price_movement__date {
    color: var(--dark_gray);
    font-size: 1rem;
    font-weight: 400;
    line-height: 100%; /* 1rem */
}
.price_movement__price {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 100%; /* 1.125rem */
}

/* --------------------------------------------------- */
/* market_information */
/* --------------------------------------------------- */
.market_information__wrapper {
    display: flex;
    gap: 2rem;
}
.market_information__table {
    flex: 1;
    height: 18.375rem;
    overflow-y: scroll;
    border-radius: 0.25rem;
    border: 1px solid var(--line);
    padding: 0rem 1.25rem;
}
.market_information__table::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
    height: inherit;
    width: 4px;
}
.market_information__table::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}
.market_information__table table {
    border-spacing: 0 1.25rem;
    width: 100%;
}
.market_information__table th {
    width: 6.25rem;
    padding: 0 0 1.25rem;
    line-height: 1;
    color: var(--dark_gray);
    white-space: nowrap;
    padding-right: 1rem;
}
.market_information__table td {
    padding: 0 0 1.25rem;
    line-height: 1;
}
.market_information__chart {
    flex: 1;
    height: auto;
}
.market_information__chart canvas {
    width: 100% !important;
    height: 100% !important;
}
.market_information__wrapper--kawase {
    display: block;
}
.market_information__kawase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.Jpy11 {
    border-radius: 0.25rem;
    border: 1px solid var(--line);
    padding: 1rem;
}
.Jpy11__price {
    margin-bottom: 0.75rem;
}
.Jpy11__date {
    font-size: 0.875rem;
    color: var(--dark_gray);
}
@media screen and (max-width: 1279px) {
    .p-tabs__button {
        padding: 0rem 1.25rem;
        overflow: hidden;
    }
    .p-tabs__button-text {
        white-space: nowrap;
    }
    .market_information__wrapper {
        gap: 1.75rem;
    }
    .market_information__kawase {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 959px) {
    .market_information__wrapper {
        flex-direction: column;
    }
    .market_information__table {
        height: 12.5rem;
        flex: none;
    }
    .market_information__chart {
        height: 20rem;
        flex: none;
    }
}
@media screen and (max-width: 767px) {
    .layout_split {
        margin-bottom: 3.5rem;
    }
    .price_movement__item {
        padding: 1.25rem;
        gap: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .price_movement__date {
        font-size: 0.875rem;
    }
    .price_movement__price {
        font-size: 1rem;
    }
    .p-tabs__button {
        overflow: visible;
    }
    .p-tabs__button-text {
        font-size: 0.75rem;
    }
    .p-tabs__content {
        padding: 1.25rem;
    }
    .market_information__wrapper {
        gap: 1.25rem;
    }
    .market_information__chart {
        aspect-ratio: 1/1;
        height: auto;
    }
    .market_information__kawase {
        grid-template-columns: repeat(1, 1fr);
    }
}
