@charset "utf-8";
/* CSS Document */

/*
* 商品リスト
*/
.productItemsNarrowDown {
    margin: 0 10px 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}
.productItemsNarrowDown p {
    font-weight: bold;
}
.productItemsNarrowDown ul {
    font-size: 0;
}
.productItemsNarrowDown ul li {
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 1.4rem;
    line-height: 30px;
}
.productItemsNarrowDownBtn {
    width: 100%;
    text-align: center;
}
.productItemsSearchResult {
    margin: 0 10px 20px;
}
.productItemsSearchResult .searchResult {
    margin: 0 0 10px;
}
.productItemsSearchResult .searchResult p span {
    font-weight: bold;
}
.productItemsSearchResult .productOrderBy {
    height: 44px;
}
.productItemsSearchResult .productOrderBy select {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.4rem;
}
.productItems .itemList .item {
    padding: 10px;
    border-bottom: 1px solid #bbb;
}
.productItems .itemList .item a {
    color: #333;
    text-decoration: none;
}
.productItems .itemList .item a figure {
    position: relative;;
    float: left;
    width: 120px;
    margin: 0 10px 0 0;
}
.productItems .itemList .item a .itemInfo {
    padding: 0 0 0 130px;
}
.productItems .itemList .item a .itemInfo .categoryList {
    margin: 0 0 5px;
    line-height: 1.2;
}
.productItems .itemList .item a .itemInfo .categoryList .category {
    display: inline;
}
.productItems .itemList .item a .itemInfo .categoryList .category:not(:first-of-type):before {
    content: ',';
    display: inline;
}
.productItems .itemList .item a .itemInfo .name {
    margin: 0 0 5px;
    color: #005a99;
    text-decoration: underline;
    line-height: 1.2;
}
.productItems .itemList .item a .itemInfo .name:hover {
    color: #e43524;
    text-decoration: none;
}
.productItems .itemList .item a .itemInfo .price {
    margin: 0 0 5px;
    color: #e43524;
    font-weight: bold;
}
.productItems .itemList .item a .itemInfo .price .cpDiscountPrice .cpPrice01 {
    margin: 0 0 5px;
    color: #333;
    font-weight: normal;
}
@media screen and (min-width: 960px) {
    .productItemsNarrowDown {
        margin: 0 0 20px;
        padding: 15px;
    }
    .productItemsNarrowDown ul li {
        font-size: 1.6rem;
    }
    .productItemsSearchResult {
        margin: 0 0 20px;
    }
    .productItemsSearchResult .searchResult {
        float: left;
        margin: 0;
    }
    .productItemsSearchResult .productOrderBy {
        float: right;
    }
    .productItemsSearchResult .productOrderBy select {
        width: 140px;
    }
    .productItems .itemList {
        font-size: 0;
    }
    .productItems .itemList .item {
        display: inline-block;
        vertical-align: top;
        padding: 0 0 10px;
        border-bottom: none;
    }
    .productItems .itemList .item a {
        display: block;
        max-width: 120px;
        margin: 0 20px 0 0;
        font-size: 1.4rem;
    }
    .productItems .itemList .item a figure {
        margin: 0 0 10px;
    }
    .productItems .itemList .item a .itemInfo {
        padding: 0;
    }
}

/*
* 商品ページ
*/
.productDetailPage h2 {
    margin: 0 0 20px;
    padding: 10px;
    background: #42a660;
    color: #fff;
}
/* 非表示 */
.productDetailPage .hides {
    display: none;
}

/*
* 商品概要・商品画像
*/
.productAboutContainer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 10px;
}
.productAboutArea {
    order: 2;
}
.productAboutArea h1 {
    margin: 0 0 10px;
    font-size: 2.4rem;
    font-weight: normal;
}
.productAboutArea .price {
    margin: 0 0 10px;
}
.productAboutArea .review {
    margin: 0 0 10px;
}
.productAboutArea .category {
    margin: 0 0 10px;
    font-size: 0;
}
.productAboutArea .category span {
    display: inline-block;
    padding: 0 10px 0 0;
    font-size: 1.2rem;
}
.productAboutArea .company {
    margin: 0 0 10px;
    font-size: 0;
}
.productAboutArea .company span {
    display: inline-block;
    padding: 0 10px 0 0;
    font-size: 1.2rem;
    line-height: 1.2;
}
.productAboutArea .favorite button,
.productAboutArea .favorite a {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 1.4rem;
    padding: 10px;
    line-height: 1;
}
.productAboutArea table.productDateInfo {
    width:100%;
    max-width: 540px;
    margin: 0 0 5px;
    background: #f9f9f9;
    font-size: 1.4rem;
    text-align: left;
}
.productAboutArea table.productDateInfo th {
    width: 150px;
    padding: 10px;
    background: #eee;
    border-bottom: 3px solid #fff;
    font-weight: normal;
}
.productAboutArea table.productDateInfo td {
    padding: 10px;
    border-bottom: 3px solid #fff;
}
.productAboutArea table.productDateInfo td .deadlineNote div {
    display: inline;
    margin: 5px 0 0;
    cursor: pointer;
    text-decoration: underline;
}
.productAboutArea table.productDateInfo td .deadlineNote p {
    display: none;
    margin: 5px 0 0;
}
.productAboutArea table.productDateInfo td .deadlineNote div:hover {
    text-decoration: none;
}
.productAboutArea .note {
    margin: 0 0 10px;
}
.productImageArea {
    position: relative;
    max-width: 280px;
    margin: 0 auto 20px;
    order: 1;
}
.productImageArea .large {
    width: 280px;
    height: 210px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.productImageArea .noStockImage:before,
.productImageArea .noHandlingImage:before {
    width: 100px;
    padding: 5px 0;
    font-size: 16px;
    text-align: center;;
}
.productImageArea .thumbnailList {
    font-size: 0;
}
.productImageArea .thumbnailList .thumbnail {
    display: inline-block;
    width: 48px;
    margin: 0 5px 5px 0;
}
.productImageArea > p {
    margin: 10px 0;
    font-size: 1.2rem;
    text-align: center;;
}
.productImageArea .photoNote {
    position: relative;
    margin: 20px 0 0;
    font-size: 12px;
    text-align: center;
}
.productImageArea .photoNote div {
    cursor: pointer;
}
.productImageArea .photoNote div:hover {
    cursor: pointer;
    text-decoration: underline;
}
.productImageArea .photoNote p {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
    z-index: 1000;
}
.productImageArea .photoNote p i {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 100;
    font-size: 20px;
}
@media screen and (min-width: 960px) {
    .productAboutContainer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin:0 0 20px;
        padding: 0;
    }
    .productAboutArea {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        order: 2;
    }
    .productAboutArea h1 {
        font-size: 2.8rem;
    }
    .productAboutArea .category span {
        font-size: 1.6rem;
    }
    .productAboutArea .company span {
        font-size: 1.6rem;
    }
    .productImageArea {
        order: 1;
        margin: 0 20px 0 0;
    }
    .productImageArea .large {
        margin: 0;
    }
    .productImageArea .thumbnailList {
        position: absolute;
        top: 0;
        left: -58px;
        text-align: left;
    }
    .productImageArea .thumbnailList .thumbnail {
        display: block;
        margin: 0 0 10px;
        cursor: pointer;
    }
}

/*
* 商品販売
*/
.productSalesArea {
    margin: 0 0 30px;
}
.classCategoryList p {
    margin: 0 0 10px;
}
.classCategoryList p span {
    font-weight: bold;
}
.classCategoryList ul li {
    display: inline-block;
    margin: 0 0 10px;
    padding: 10px 5px;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 1.2rem;
    text-align: center;
}
.classCategoryList ul li.active {
    background: #f9efef;
    color: #e43524;
    border: 2px solid #e43524;
    font-weight: bold;
}
.classCategoryList ul li:nth-child(n + 2) {
    margin: 0 0 0 5px;
}
.productSalesArea .catchText {
    margin: 0 0 5px;
    padding: 0 10px;
    color: #e43524;
    font-weight: bold;
}
.productSalesTable .noHandling {
    position: relative;
    top: -2px;
    margin: 0 0 20px;
    padding: 40px;
    background: #f5f5f5;
    text-align: center;
}
.productSalesTable table {
    position: relative;
    top: -2px;
    width: 100%;
    margin: 0 0 10px;
    background: #fff;
    border-top: 2px solid #dc5547;
    font-size: 1.2rem;
}
.productSalesTable table th {
    padding: 10px 2px;
    border-bottom: 1px solid #bbb;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}
.productSalesTable table .pc {
    display: none;
}
.productSalesTable table td {
    padding: 5px 3px;
    border-bottom: 1px solid #bbb;
    vertical-align: middle;
}
.productSalesTable table .row1 {
    width: 24%;
    padding: 5px;
}
.productSalesTable table .row2 {
    width: 22%;
}
.productSalesTable table .row3 {
    width: 22%;
}
.productSalesTable table .row4 {
    width: 16%;
}
.productSalesTable table .row6 {
    width: 16%;
    padding: 5px;
}
.productSalesTable table td .sale {
    padding: 0 5px 0 0;
    color: #e43524;
    font-weight: bold;
}
.productSalesArea table td .discount {
    display: block;
    width: 38px;
    height: 38px;
    padding: 10px 0 0;
    background: #fffb00;
    color: #e43524;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
}
.productSalesArea table td .discount span {
    display: block;
}
.productSalesArea table td .productSalesBtnArea {
    text-align: right;
}
.productSalesArea table td .productSalesBtnArea button {
    width: 100%;
    padding: 15px 0;
    font-size: 1.2rem;
}
.productSalesArea table td .productSalesBtnArea button:disabled {
    border: none;
    background: #f5f5f5;
    color: #333;
}
.productSalesArea .coronaInfo p {
    padding: 20px;
    background: #d7f9ea;
}
.productSalesArea .coronaInfo p:not(:first-child) {
    margin: 10px 0 0;
}
.productSalesArea .coronaInfo p span {
    display: block;
    margin: 0 0 10px;
    color: #42a660;
    font-weight: bold;
}
@media screen and (min-width: 560px) {
    .productSalesTable table {
        font-size: 1.4rem;
    }
    .productSalesTable table .pc {
        display: block;
    }
    .productSalesTable table .sp {
        display: none;
    }
    .productSalesTable table .row1 {
        width: 16.666%;
    }
    .productSalesTable table .row2 {
        width: 16.666%;
    }
    .productSalesTable table .row3 {
        width: 16.666%;
    }
    .productSalesTable table .row4 {
        width: 16.666%;
    }
    .productSalesTable table .row5 {
        display: table-cell;
        width: 16.666%;
    }
    .productSalesTable table .row6 {
        width: 16.666%;
    }
    .productSalesArea table td .discount {
        display: inline;
        width: auto;
        height: auto;
        padding: 0;
        border-radius: 0;
        font-size: 1.4rem;
        line-height: 1;
    }
    .productSalesArea table td .discount span {
        display: inline;
    }
    .productSalesArea table td .productSalesBtnArea button {
        max-width: 200px;
        padding: 8px 0;
        font-size: 1.4rem;
        cursor: pointer;
    }
    .productSalesArea table td .productSalesBtnArea button:disabled {
        font-size: 1.4rem;
        cursor: auto;
    }
}
@media screen and (min-width: 960px) {
    .classCategoryList ul li {
        padding: 15px 10px;
        font-size: 1.4rem;
        cursor: pointer;
    }
    .productSalesArea .catchText {
        padding: 0;
    }
    .productSalesTable table {
        font-size: 1.6rem;
    }
    .productSalesArea table td .discount {
        font-size: 1.6rem;
    }
}

/*
* 商品概要
*/
.productDescriptionListArea {
    margin: 0 0 20px;
    padding: 0 10px;
}
.productDescriptionListArea p {
    margin: 0 0 10px;
}
.productDescriptionListArea .textField .row {
    padding: 10px;
    background: #e6f1f9;
}
.productDescriptionListArea .textField .row:last-child {
    margin: 10px 0;
}
@media screen and (min-width: 960px) {
    .productDescriptionListArea {
        padding: 0;
    }
}

/*
* セクションの関連記事
*/
.mediaColumnSection {
    padding: 0 0 20px;
}
.mediaColumnSection ul li {
    margin: 0 0 20px;
    padding: 0 10px;
}
.mediaColumnSection ul li:last-child {
    margin: 0;
}
.mediaColumnSection ul li .left {
    float: left;
    width: 120px;
}
.mediaColumnSection ul li .right {
    margin: 0 0 0 130px;
}
.mediaColumnSection ul li .right a {
    font-weight: bold;
    line-height: 1.4;
    text-decoration: none;
}
.mediaColumnSection ul li .right p {
    margin: 5px 0 0;
    padding: 0;
    font-weight: normal;
}
@media screen and (min-width: 960px) {
    .mediaColumnSection ul li {
        padding: 0;
    }
    .mediaColumnSection ul li .left {
        width: 150px;
    }
    .mediaColumnSection ul li .right {
        margin: 0 0 0 170px;
        padding: 15px 0 0;
    }
}

/*
* タグ挿入の関連記事
*/
.mediaColumnPost a {
    display: table;
    width: 100%;
    margin: 0 0 20px;
    padding: 15px;
    background: #e6f1f9;
    border: 1px solid #e6f1f9;
    border-radius: 3px;
    text-decoration: none;
    table-layout: fixed;
}
.mediaColumnPost a:hover {
    border: 1px solid #005a99;
}
.mediaColumnPost .left {
    display: table-cell;
    width: 150px;
    padding: 0 15px 0 0;
    vertical-align: middle;
}
.mediaColumnPost .right {
    display: table-cell;
    vertical-align: middle;
}
.mediaColumnPost .right div  {
    margin: 0 0 10px;
    color: #333;
    font-weight: bold;
}
.mediaColumnPost .right p {
    margin: 0;
    padding: 0;
}

/*
* おすすめ商品ショートコード
*/
.recoProduct {
    display: table;
    width: 100%;
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid #42a660;
    border-radius: 3px;
    text-decoration: none;
    table-layout: fixed;
}
.recoProduct .left {
    display: table-cell;
    width: 150px;
    padding: 0 20px 0 0;
    vertical-align: middle;
}
.recoProduct .right {
    display: table-cell;
    vertical-align: middle;
}
.recoProduct .right a {
    line-height: 1.4;
}
.recoProduct .right p {
    display: none;
}
.recoProduct .right .priceArea {
    margin: 10px 0 0;
}
.recoProduct .right .priceArea .price {
    display: inline;
    padding: 0 5px 0 0;
    color: #e43524;
    font-weight: bold;
}
.recoProduct .right .priceArea .review {
    display: block;
    margin: 5px 0 0;
}
@media screen and (min-width: 960px) {
    .recoProduct .right .priceArea .review {
        display: inline;
        margin: 0;
    }
    .recoProduct .right p {
        display: block;
        margin: 10px 0 0;
    }
}


/*
* リレンザのみ
*/
.detailRelenza img {
    display: block;
    margin: 0 0 10px;
}

/*
* コンタクトレンズのみ
*/
.contactLensForm {
    padding: 15px 15px 0;
    background: #f9efef;
    border-radius: 5px;
}
.contactLensForm table {
    width: 100%;
    text-align: left;
    vertical-align: middle;
}
.contactLensForm table th {
    width: 30%;
    padding: 0 10px 10px;
    font-weight: bold;
}
.contactLensForm table th.first {
    width: 40%;
    padding: 0 0 10px;
    color: #e43524;
    line-height: 1.2;
}
.contactLensForm table td {
    padding: 10px;
    background: #fff;
    border-bottom: 10px solid #f9efef;
}
.contactLensForm table td .fieldRow {
    height: 32px;
}
.contactLensForm table td .fieldRow select {
    width: 80px;
    height: 100%;
    padding: 0 10px;
    border: 1px solid #bbb;
    border-radius: 3px;
}

/*
* 商品詳細説明
*/
.productDescriptionArea {
    margin: 0 0 30px;
    padding: 0 10px;
}
.productDescriptionArea h3 {
    margin: 0 0 10px;
    padding: 10px 0 10px 8px;
    border-left: 3px solid #42a660;
    line-height: 1.4;
}
.productDescriptionArea h4 {
    margin: 0 0 10px;
    line-height: 1.4;
}
.productDescriptionArea section {
    margin: 0 0 20px;
}
.productDescriptionArea .listFrame {
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.productDescriptionArea ul li,
.productDescriptionArea ol li {
    margin: 0 0 5px;
    line-height: 1.6;
}
.productDescriptionArea ul li:last-child,
.productDescriptionArea ol li:last-child {
    margin: 0;
}
.productDescriptionArea p {
    margin: 0 0 10px;
}
.productDetailPage .table_scroll {
    overflow: auto;
    white-space: nowrap;
    margin: 0 0 20px;
    -webkit-text-size-adjust: 100%;
}
.productDetailPage .table_scroll::-webkit-scrollbar {
    height: 5px;
}
.productDetailPage .table_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.productDetailPage .table_scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
}
.productDetailPage .table_scroll table {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid #bbb;
    border-left: 1px solid #bbb;
}
.productDetailPage .table_scroll table caption {
    margin: 0 0 5px;
    text-align: left;
    font-weight: bold;
}
.productDetailPage .table_scroll table th {
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    white-space: nowrap;
}
.productDetailPage .table_scroll table td {
    padding: 10px;
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    line-height: 1.6;
}
.productDescriptionArea .tablet_img {
    display: block;
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
    .productDescriptionArea {
        padding: 0;
    }
    .productDetailPage .table_scroll {
        white-space: inherit;
    }
    .productDetailPage .table_scroll::-webkit-scrollbar {
        height: 0;
    }
    .productDetailPage .table_scroll::-webkit-scrollbar-track {
        background: none;
    }
    .productDetailPage .table_scroll::-webkit-scrollbar-thumb {
        background: none;
    }
    .productDescriptionArea .tablet_open_img div {
        padding: 0 180px 0 0;
    }
    .productDescriptionArea .tablet_open_img img {
        float: right;
    }
}

/*
* おすすめ商品
*/
.recommendProductArea .recommendBlock {
    margin: 0 0 20px;
    border: 1px solid #bbb;
    border-radius: 5px;
}
.recommendProductArea .recommendBlock .title {
    margin: 0 0 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
}
.recommendProductArea .recommendTable {
    padding: 0 10px;
}
.recommendProductArea .recommendTable .subtitle {
    margin: 0 0 10px;
    padding: 0 0 5px;
    border-bottom: 1px solid #bbb;
    font-weight: bold;
}
.recommendProductArea .recommendTable .recommendRow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 10px;
    border-bottom: 1px dashed #bbb;
}
.recommendProductArea .recommendTable .recommendRow:last-child {
    border-bottom: none;
}
.recommendProductArea .recommendTable .recommendRow .leftColumn {
    width: 80px;
}
.recommendProductArea .recommendTable .recommendRow .leftColumn figure {
    position: relative;
    width: 80px;
}
.recommendProductArea .recommendTable .recommendRow .leftColumn figure.noHandlingImage:before,
.recommendProductArea .recommendTable .recommendRow .leftColumn figure.noStockImage:before {
    width: 80px;
    height: 60px;
    line-height: 60px;
}
.recommendProductArea .recommendTable .recommendRow .centerColumn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 15px;
}
.recommendProductArea .recommendTable .recommendRow .centerColumn .price {
    color: #e43524;
    font-weight: bold;
}
.recommendProductArea .recommendTable .recommendRow .centerColumn .price .cpDiscountPrice .cpPrice01 {
    color: #333;
    font-weight: normal;
    line-height: 1.4;
}
.recommendProductArea .recommendTable .recommendRow .rightColumn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.recommendProductArea .recommendTable .recommendRow .rightColumn button {
    width: 100px;
    padding: 10px;
}
.recommendProductArea .recommendTable .recommendRow .rightColumn button:disabled {
    opacity: 0.6;
    border: none;
}
@media screen and (min-width: 960px) {
    .recommendProductArea .recommendTable .recommendRow {
        font-size: 1.4rem;
    }
}

/*
* 関連商品
*/
.relationProductArea {
    margin: 0 0 30px;
    padding: 0 10px;
}
@media screen and (min-width: 960px) {
    .relationProductArea {
        padding: 0;
    }
}

/*
* 商品リスト（横一列）
*/
.productItemsBlock .itemList .item a {
    display: block;
    width: 140px;
    padding: 0 10px;
    color: #333;
    font-size: 1.4rem;
    text-decoration: none;
}
.productItemsBlock .itemList .item a figure {
    margin: 0 0 10px;
    text-align: center;;
}
.productItemsBlock .itemList .item a .categoryList {
    margin: 0 0 5px;
    line-height: 1.2;
}
.productItemsBlock .itemList .item a .categoryList .category {
    display: inline;
}
.productItemsBlock .itemList .item a .categoryList .category:not(:first-of-type):before {
    content: ',';
    display: inline;
}
.productItemsBlock .itemList .item a .name {
    margin: 0 0 5px;
    color: #005a99;
    text-decoration: underline;
    line-height: 1.2;
}
.productItemsBlock .itemList .item a .name:hover {
    color: #e43524;
    text-decoration: none;
}
.productItemsBlock .itemList .item a .price {
    margin: 0 0 5px;
    color: #e43524;
    font-weight: bold;
}
.productItemsBlock .itemList .item a .price .cpDiscountPrice .cpPrice01 {
    margin: 0 0 5px;
    color: #333;
    font-weight: normal;
}

/*
* 口コミリスト
*/
.productReviewArea {
    margin: 0 0 20px;
    padding: 0 10px;
}
.productReviewList {
    margin: 0 0 30px;
}
.productReviewList .productReviewListRow {
    margin: 0 0 20px;
    text-align: left;
}
.productReviewList .productReviewListRow .title {
    margin: 0 0 8px;
    font-weight: bold;
}
.productReviewList .productReviewListRow .star {
    margin: 0 0 8px;
    font-size: 2rem;
}
.productReviewList .productReviewListRow .customer {
    margin: 0 0 8px;
    font-size: 1.4rem;
}
.productReviewList .productReviewListRow p {
    margin: 0 0 8px;
    line-height: 1.4;
}
.productReviewList .productReviewListRow img {
    max-width: 200px;
    max-height: 200px;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
}
.productReviewArea .view {
    text-align: right;
}
.productReviewBtnArea {
    padding: 20px;
    background: #f5f5f5;
    text-align: center;
}
.productReviewBtnArea .conversionBtn {
    display: block;
    width: 100%;
    padding: 20px;
    line-height: 1;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .productReviewArea {
        padding: 0;
    }
    .productReviewBtnArea .conversionBtn {
        width: 300px;
        margin: 0 auto;
    }
}

/*
* 口コミページ
*/
.productReviewAggregate {
    padding: 0 10px;
}
.productReviewAggregate .reviewInfo .avg {
    margin: 0 0 5px;
    font-size: 40px;
}
.productReviewAggregate .reviewInfo .star {
    margin: 0 0 10px;
    font-size: 1.8rem;
}
.productReviewAggregate .reviewInfo .count {
    margin: 0 0 10px;
}
.productReviewAggregate .reviewInfo .name {
    margin: 0 0 10px;
    line-height: 1.4;
}
.productReviewAggregate .reviewGraph {
    margin: 0 0 20px;
}
.productReviewAggregate .reviewGraph dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    font-size: 1.4rem;
}
.productReviewAggregate .reviewGraph dl dt {
    width: 80px;
}
.productReviewAggregate .reviewGraph dl dd {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    height: 12px;
    background: #e5e9eb;
}
.productReviewAggregate .reviewGraph dl dd div {
    position: relative;
    height: 100%;
    background: #ffba00;
    background-size: 23em 0.25em;
}
.productReviewSearchResult {
    margin: 0 0 10px;
    padding: 0 10px;
}
.productReviewSearchResult .searchResult {
    margin: 0 0 10px;
}
.productReviewSearchResult .searchResult p span {
    font-weight: bold;
}
.productReviewSearchResult .reviewOrderBy {
    height: 44px;
}
.productReviewSearchResult .reviewOrderBy select {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
    .productReviewAggregate {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding: 0 0 20px;
    }
    .productReviewAggregate .reviewInfo {
        width: 160px;
        padding: 0 20px 0 0;
    }
    .productReviewAggregate .reviewGraph {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin: -5px 0 0;
    }
    .productReviewAggregate .reviewInfo .name {
        font-size: 1.4rem;
    }
    .productReviewSearchResult {
        margin: 0 0 20px;
        padding: 0;
    }
    .productReviewSearchResult .searchResult {
        float: left;
        margin: 0;
    }
    .productReviewSearchResult .reviewOrderBy {
        float: right;
    }
    .productReviewSearchResult .reviewOrderBy select {
        width: 140px;
    }
}

/*
* 口コミ投稿ページ
*/
.reviewCommentHeader {
    margin: 0 0 10px;
    padding: 0 10px;
}
.reviewCommentForm {
    padding: 0 10px;
}
@media screen and (min-width: 960px) {
    .reviewCommentHeader {
        padding: 0;
    }
}
/*
* レビュー投稿モーダル
*/
.reviewModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    text-align: center;
}
.reviewModalContent {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
    width: 90%;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    text-align: left;
}
.reviewModalContent p {
    font-size: 1.4rem;
}
.reviewModalContent p.title {
    font-size: 2rem;
    font-weight: bold;
}
.reviewModalContent p b {
    color: #e43524;
}
@media screen and (min-width: 960px) {
    .reviewModalContent p {
        font-size: 1.6rem;
    }
    .reviewModalContent p.title {
        font-size: 2.4rem;
    }
}


/*
* 口コミコンテスト
*/
.reviewContestnPage {
    padding: 0 10px;
}
.reviewContestHeader {
    margin: 0 0 20px;
}
.reviewContestHeader h1 {
    margin: 0 0 20px;
}
.reviewContestBody section {
    margin: 0 0 20px;
}
.reviewContestBody ul.grandprix li {
    margin: 0 0 20px;
}
.reviewContestBody ul.grandprix li:last-child {
    margin: 0;
}
.reviewContestBody ul.grandprix li .title {
    margin: 0 0 20px;
    padding: 10px 0;
    border-bottom: 2px solid #42a660;
    font-weight: bold;
}
.reviewContestBody ul.grandprix li .wrap .subtitle {
    margin: 0 0 10px;
    font-weight: bold;
}
.reviewContestBody ul.grandprix li .wrap p {
    margin: 0 0 10px;
}
.reviewContestBody ul.grandprix li .wrap img {
    max-width: 200px;
    max-height: 200px;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
}
@media screen and (min-width: 960px) {
    .reviewContestnPage {
        padding: 0;
    }
}

/*
* 最近チェックした商品ページ
*/
.deleteCheckItem {
    text-align: center;
}
.productWatchPage p {
    padding: 0 10px;
}
@media screen and (min-width: 960px) {
    .productWatchPage p {
        padding: 0;
    }
}

/*
* まとめてカートチェック
*/
.summaryCartCheck {
    margin: 0 0 0 130px;
}
.summaryCartCheck span {
    vertical-align: middle;;
}
@media screen and (min-width: 960px) {
    .summaryCartCheck {
        margin: 10px 0 0 0;
        padding: 0;
    }
    .summaryCartCheck span {
        font-size: 1.4rem;
    }
}

/*
* まとめてカートボタン
*/
.summaryCartBtnArea {
    padding: 20px 10px;
    text-align: center;
}
.summaryCartBtnArea .conversionBtn {
    display: block;
    width: 100%;
    padding: 20px;
    line-height: 1;
    text-align: center;
}
.deleteCheckItem {
    text-align: center;
}
@media screen and (min-width: 960px) {
    .summaryCartBtnArea {
        padding: 20px;
    }
    .summaryCartBtnArea .conversionBtn {
        width: 300px;
        margin: 0 auto;
    }
}
