.mountingFixtureProduct {
    color: #333;
    font-size: 15px;
}

.mountingFixtureProduct *,
.mountingFixtureProduct *::before,
.mountingFixtureProduct *::after {
    box-sizing: border-box;
}

.mountingFixtureProduct__container {
    width: calc(100% - 30px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0 60px;
}

.mountingFixtureProduct__title {
    margin: 0 0 20px;
    padding: 8px 16px;    
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.mountingFixtureProduct__main {
    display: flex;
    align-items: flex-start;
    margin: 0 -18px;
}

.mountingFixtureProduct__media,
.mountingFixtureProduct__information {
    width: 50%;
    padding: 0 18px;
}

.mountingFixtureProduct__mainImage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #d5e0e7;
    background-color: #fff;
}

.mountingFixtureProduct__mainImage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mountingFixtureProduct__thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.mountingFixtureProduct__thumbnail {
    width: 72px;
    height: 72px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid #d5e0e7;
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
}

.mountingFixtureProduct__thumbnail.is-active {
    border: 2px solid #2498cf;
}

.mountingFixtureProduct__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mountingFixtureProduct__code {
    margin: 0 0 8px;
    font-size: 18px;
}

.mountingFixtureProduct__summary {
    margin-bottom: 30px;
    line-height: 1.65;
}

.mountingFixtureProduct__purchaseArea {
    margin-top: 25px;
}

.mountingFixtureProduct__regularPrice {
    margin-bottom: 5px;
    color: #666;
    font-size: 13px;
}

.mountingFixtureProduct__price {
    margin-bottom: 25px;
    color: #e9574f;
}

.mountingFixtureProduct__price .price02-default {
    font-size: 25px;
    font-weight: 700;
}

.mountingFixtureProduct__tax {
    margin-left: 4px;
    font-size: 13px;
}

.mountingFixtureProduct__form {
    margin: 0;
}

.mountingFixtureProduct__field {
    margin-bottom: 22px;
}

.mountingFixtureProduct__field > label {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.mountingFixtureProduct__field select {
    width: 100%;
    max-width: 260px;
    height: 38px;
    padding: 5px 32px 5px 10px;
    border: 1px solid #777;
    border-radius: 0;
    background-color: #fff;
}

.mountingFixtureProduct__inputWithUnit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mountingFixtureProduct__numberInput {
    width: 75px;
    height: 38px;
    padding: 5px 8px;
    border: 1px solid #777;
    border-radius: 0;
    background-color: #fff;
}

.mountingFixtureProduct__help {
    display: block;
    margin-top: 5px;
    color: #777;
}

.mountingFixtureProduct__field ul {
    margin: 6px 0 0;
    padding: 0;
    color: #d9534f;
    list-style: none;
}

.mountingFixtureProduct__buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.mountingFixtureProduct__cartButton,
.mountingFixtureProduct__quoteButton,
.mountingFixtureProduct__soldOutButton {
    min-height: 48px;
    padding: 10px 20px;
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.mountingFixtureProduct__cartButton {
    flex: 1;
    background-color: #e60000;
}

.mountingFixtureProduct__quoteButton {
    flex: 1;
    background-color: #777;
}

.mountingFixtureProduct__soldOutButton {
    width: 100%;
    background-color: #aaa;
    cursor: not-allowed;
}

.mountingFixtureProduct__cartButton:hover,
.mountingFixtureProduct__cartButton:focus {
    background-color: #c90000;
}

.mountingFixtureProduct__quoteButton:hover,
.mountingFixtureProduct__quoteButton:focus {
    background-color: #555;
}

.mountingFixtureProduct__cartButton:disabled,
.mountingFixtureProduct__quoteButton:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.mountingFixtureProduct__detail,
.mountingFixtureProduct__freeArea {
    margin-top: 45px;
    line-height: 1.8;
}

.mountingFixtureProduct__detail img,
.mountingFixtureProduct__freeArea img {
    max-width: 100%;
    height: auto;
}

.mountingFixtureProduct .ec-modal-close {
    border: 0;
    background: transparent;
}

.mountingFixtureProduct__review #product_review_area {
    margin-top: 20px;
}

.mountingFixtureProduct__review .ec-role {
    width: 100%;
    margin: 0;
}

.mountingFixtureProduct__review .detail_reviewBtnArea {
    margin-top: 0;
}

.mountingFixtureProduct__review .detail_reviewBtnArea .detail_reviewBtn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
    margin-left: 0;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .mountingFixtureProduct {
        font-size: 14px;
    }

    .mountingFixtureProduct__container {
        width: calc(100% - 30px);
        padding-top: 20px;
    }

    .mountingFixtureProduct__title {
        padding: 8px 14px;
        font-size: 22px;
    }

    .mountingFixtureProduct__main {
        display: block;
        margin: 0;
    }

    .mountingFixtureProduct__media,
    .mountingFixtureProduct__information {
        width: 100%;
        padding: 0;
    }

    .mountingFixtureProduct__information {
        margin-top: 24px;
    }

    .mountingFixtureProduct__mainImage {
        aspect-ratio: 1 / 1;
    }

    .mountingFixtureProduct__thumbnail {
        width: 60px;
        height: 60px;
    }

    .mountingFixtureProduct__code {
        font-size: 16px;
    }

    .mountingFixtureProduct__summary {
        margin-bottom: 25px;
    }

    .mountingFixtureProduct__buttons {
        display: block;
    }

    .mountingFixtureProduct__cartButton,
    .mountingFixtureProduct__quoteButton {
        width: 100%;
    }

    .mountingFixtureProduct__quoteButton {
        margin-top: 12px;
    }

    .mountingFixtureProduct__detail,
    .mountingFixtureProduct__freeArea {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 568px) {
    .mountingFixtureProduct__review #product_review_area.lower_page_wrap {
        padding-right: 0;
        padding-left: 0;
    }
}