/* Product CSS */
/* _setting CSS */
@-webkit-keyframes category_wrap_open {
  0% {
    height: 0;
    margin: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  99% {
    margin: 0 0 90px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    height: 100%;
  }
}
@keyframes category_wrap_open {
  0% {
    height: 0;
    margin: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  99% {
    margin: 0 0 90px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes category_wrap_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 0 90px;
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
    margin: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes category_wrap_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 0 90px;
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
    margin: 0;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes sp_category_wrap_open {
  0% {
    height: 0;
    margin: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  99% {
    margin: 0 0 50px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    height: 100%;
  }
}
@keyframes sp_category_wrap_open {
  0% {
    height: 0;
    margin: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  99% {
    margin: 0 0 50px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes sp_category_wrap_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 0 50px;
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
    margin: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes sp_category_wrap_close {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 0 50px;
  }
  99% {
    -webkit-transform: scale(0);
            transform: scale(0);
    margin: 0;
  }
  100% {
    height: 0;
  }
}
/* Desktops and laptops */
@media print, screen and (min-width: 701px) {
  #main_title {
    margin: 0 0 125px;
  }

  p {
    line-height: 1.6;
  }

  .content_mhd {
    margin: 0 0 30px;
    position: relative;
    padding: 5px 0 10px 18px;
    border-bottom: 1px dashed #b5b5b5;
    font-size: 2.2rem;
  }
  .content_mhd:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 30px;
    border-radius: 3px;
    background: #cc3d3e;
  }

  #index .common_inner {
    overflow: visible;
  }
  #index #content_tidbits,
  #index #content_faq {
    padding-top: 100px;
    margin-top: -100px;
  }
  #index .content_hd {
    margin: 0 0 55px;
    font-size: 3rem;
    color: #cc3d3e;
    text-align: center;
  }
  #index .content_categories {
    margin: 0 0 62px;
  }
  #index .content_categories li {
    float: left;
    margin: 0 10px 10px 0;
  }
  #index .content_categories li button {
    display: block;
    min-width: 100px;
    padding: 20px;
    border: none;
    border-radius: 5px;
    background: #f6f6ee;
    font-size: 1.2rem;
    text-align: center;
    outline: none;
  }
  #index .content_categories li button.selected, #index .content_categories li button:hover {
    background: #cc3d3e;
    color: #fff;
    text-decoration: none;
  }
  #index .content_categories:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_faq .category_wrap {
    overflow: hidden;
    margin: 0 0 90px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  #index #content_faq .category_wrap.open {
    margin: 0 0 90px;
    -webkit-animation: category_wrap_open 0.3s ease forwards;
            animation: category_wrap_open 0.3s ease forwards;
  }
  #index #content_faq .category_wrap.close {
    margin: 0;
    -webkit-animation: category_wrap_close 0.3s ease forwards;
            animation: category_wrap_close 0.3s ease forwards;
  }
  #index #content_faq .category_wrap h5 {
    position: relative;
    line-height: 1.6;
    padding: 22px 70px 22px 95px;
    border-radius: 5px;
    background: #f6f6ee;
    font-size: 2.2rem;
    cursor: pointer;
  }
  #index #content_faq .category_wrap h5:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    background: #cc3d3e url(../images/faq/icon_q.png) no-repeat 27px center;
  }
  #index #content_faq .category_wrap h5:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    background: #dfdfd2 url(../images/faq/icon_open.png) no-repeat center;
  }
  #index #content_faq .category_wrap .answer_wrap {
    position: relative;
    height: 0;
    max-height: 0;
    padding: 20px 0 0 103px;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  #index #content_faq .category_wrap .answer_wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    width: 75px;
    height: 75px;
    padding: 0;
    border: 1px solid #cc3d3e;
    border-radius: 5px;
    background: url(../images/faq/icon_a.png) no-repeat 27px center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #index #content_faq .category_wrap .answer_wrap:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_faq .category_wrap .answer_wrap a {
    display: inline-block;
    margin: 3px 0 0;
    color: #0062ae;
  }
  #index #content_faq .category_wrap .answer_wrap .float_left {
    float: left;
    width: 300px;
  }
  #index #content_faq .category_wrap .answer_wrap .float_left img {
    width: 100%;
    height: auto;
  }
  #index #content_faq .category_wrap .answer_wrap .float_right {
    float: right;
    width: 670px;
  }
  #index #content_faq .category_wrap .answer_wrap .a_blank:after {
    content: url(../images/common/icon_blank.png);
  }
  #index #content_faq .category_wrap .answer_wrap .a_pdf:after {
    content: url(../images/common/icon_pdf.png);
    position: relative;
    top: 5px;
  }
  #index #content_faq .category_wrap .open h5:after {
    background: #dfdfd2 url(../images/faq/icon_close.jpg) no-repeat center;
  }
  #index #content_faq .category_wrap .open .answer_wrap {
    height: 100%;
    max-height: 50em;
    min-height: 95px;
    margin: 0 0 30px;
  }
  #index #content_tidbits .category_wrap {
    margin: 0 0 50px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  #index #content_tidbits .category_wrap.open {
    margin: 0 0 90px;
    -webkit-animation: category_wrap_open 0.3s ease forwards;
            animation: category_wrap_open 0.3s ease forwards;
  }
  #index #content_tidbits .category_wrap.close {
    margin: 0;
    -webkit-animation: category_wrap_close 0.3s ease forwards;
            animation: category_wrap_close 0.3s ease forwards;
  }
  #index #content_tidbits .category_wrap ul li {
    float: left;
    width: 340px;
    margin: 0 40px 20px 0;
  }
  #index #content_tidbits .category_wrap ul li:nth-child(3n) {
    margin: 0 0 20px;
  }
  #index #content_tidbits .category_wrap ul li a {
    display: block;
    text-decoration: none !important;
  }
  #index #content_tidbits .category_wrap ul li a:hover {
    opacity: 0.8;
  }
  #index #content_tidbits .category_wrap ul li a:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap {
    float: right;
    width: 210px;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap h5 {
    line-height: 1.6;
    margin: 0 0 5px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap p {
    line-height: 1.4;
    font-size: 1.2rem;
  }
  #index #content_tidbits .category_wrap ul li .img_wrap {
    float: left;
    width: 120px;
  }
  #index #content_tidbits .category_wrap ul li .img_wrap img {
    width: 120px;
    border: solid 1px #e6e6e6;
  }
  #index #content_tidbits .category_wrap ul:after {
    content: '';
    display: block;
    clear: both;
  }

  #detail .back_link {
    padding: 30px 0 20px 0;
  }
  #detail .back_link .btn_common {
    width: 200px;
    margin-right: 5px;
    margin-bottom: 0;
    display: inline-block;
  }
  #detail .pic_zoom {
    position: relative;
    cursor: pointer;
  }
  #detail .pic_zoom:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../images/product/icon_zoom.png) center center no-repeat #333;
    background-size: 21px auto;
    border-radius: 4px 0 4px 0;
    width: 30px;
    height: 30px;
  }
  #detail .pic_zoom:hover:after {
    opacity: .5;
  }
  #detail #product_title {
    margin: 0 auto 50px auto;
  }
  #detail #product_title h1 {
    padding: 8px 16px;
    font-size: 1.4rem;
    color: #fff;
    background-color: #cc3d3e;
    border: solid 1px #cc3d3e;
    border-radius: 4px 4px 0 0;
  }
  #detail #product_title h2 {
    padding: 25px 16px 20px 16px;
    font-size: 3.4rem;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
  }
  #detail #product_title .caps {
    padding: 14px 16px 12px 16px;
    font-size: 2.0rem;
    background-color: #efefe1;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    border-radius: 0 0 4px 4px;
  }
  #detail #product_intro {
    overflow: hidden;
  }
  #detail #product_intro .images {
    width: 530px;
    float: right;
  }
  #detail #product_intro .images .large_img {
    width: 100%;
    height: 400px;
    padding: 30px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail #product_intro .images .large_img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img {
    padding: 8px 0 0 0;
    overflow: hidden;
  }
  #detail #product_intro .images .thumb_img p.thumb {
    width: 130px;
    height: 84px;
    border: solid 1px #ccc;
    border-radius: 4px;
    float: left;
  }
  #detail #product_intro .images .thumb_img p.thumb img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img p.thumb.current {
    border-color: #cc3d3e;
  }
  #detail #product_intro .images .thumb_img dl {
    width: 390px;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_intro .images .thumb_img dl dt {
    width: 100%;
    height: 21px;
    padding-top: 2px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #detail #product_intro .images .thumb_img dl dt:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #c7292b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb {
    width: 90px;
    height: 60px;
    padding: 5px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb.current {
    border-color: #cc3d3e;
  }
  #detail #product_intro .images .thumb_img dl::before {
    content: "";
    display: block;
    width: 23%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_intro .images .thumb_img dl::after {
    content: "";
    display: block;
    width: 23%;
  }
  #detail #product_intro .description_title {
    width: 540px;
    float: left;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
  }
  #detail #product_intro .description_title:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 5px;
    margin-top: -2px;
    margin-right: 10px;
    border-radius: 20px;
    background-color: #cc3d3e;
    vertical-align: middle;
  }
  #detail #product_intro .description {
    width: 540px;
    float: left;
    margin: 0;
  }
  #detail #product_intro .description .labels {
    margin: 0 auto 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #detail #product_intro .description .labels li {
    height: 70px;
    margin-right: 10px;
  }
  #detail #product_intro .description .labels li img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .description .lead {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.625;
  }
  #detail .product_outline img {
    width: 100%;
  }
  #detail .product_outline .title {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 10px;
    border-top: dotted 1px #ccc;
  }
  #detail .product_outline .title span {
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #fff;
    padding: 0 20px 0 0;
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
    display: inline-block;
  }
  #detail .product_outline .title span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #c7292b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  #detail .product_outline .illust {
    margin-bottom: 30px;
  }
  #detail .product_outline .package .list {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline .package .list li {
    width: 130px;
    padding: 5px;
    margin-bottom: 5px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline .package .list li img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline .package .list li:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline .package .list::before {
    content: "";
    display: block;
    width: 130px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail .product_outline .package .list::after {
    content: "";
    display: block;
    width: 130px;
  }
  #detail .product_outline.layout1 {
    width: 540px;
    float: left;
  }
  #detail .product_outline.layout2 {
    width: 540px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline.layout2 .point,
  #detail .product_outline.layout2 .illust {
    width: 260px;
  }
  #detail .product_outline.layout2 .point figure,
  #detail .product_outline.layout2 .illust figure {
    padding: 10px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline.layout2 .point figure img,
  #detail .product_outline.layout2 .illust figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline.layout2 .point figure:after,
  #detail .product_outline.layout2 .illust figure:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline.layout2 .package {
    width: 100%;
  }
  #detail .product_outline.layout3 {
    width: 100%;
    float: none;
    clear: both;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline.layout3 .ex,
  #detail .product_outline.layout3 .illust {
    width: 540px;
  }
  #detail .product_outline.layout3 .ex figure,
  #detail .product_outline.layout3 .illust figure {
    padding: 30px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline.layout3 .ex figure img,
  #detail .product_outline.layout3 .illust figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline.layout3 .ex figure:after,
  #detail .product_outline.layout3 .illust figure:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline.layout3 .package {
    width: 100%;
  }
  #detail #product_info {
    margin-top: 60px;
  }
  #detail #product_info .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #detail #product_info .list li {
    width: 340px;
    padding: 25px 0;
    margin: 0 20px;
    background: url(../images/product/btn_info_skin.png) #333;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    cursor: pointer;
  }
  #detail #product_info .list li:hover {
    opacity: .8;
  }
  #detail #product_info .list.num3 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_info .list.num3 li {
    margin: 0;
  }
  #detail #product_download {
    padding: 20px;
    margin-top: 60px;
    background-color: #efefe1;
    border-radius: 4px;
  }
  #detail #product_download h3 {
    margin-right: 20px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #detail #product_download h3:before {
    content: '';
    display: inline-block;
    background: url(../images/product/icon_download.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 23px;
    margin-right: 10px;
    vertical-align: middle;
  }
  #detail #product_download .caps {
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
  }
  #detail #product_download .caps span {
    color: #c7292b;
    text-decoration: underline;
    cursor: pointer;
  }
  #detail #product_download .caps span:hover {
    text-decoration: none;
  }
  #detail #product_download .caps span:before {
    content: '';
    display: inline-block;
    background: url(../images/product/icon_login.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    vertical-align: middle;
  }
  #detail #product_download .list {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #detail #product_download .list li {
    width: 204px;
  }
  #detail #product_download .list li a {
    width: 100%;
    height: 100%;
    border: solid 1px #ccc;
    border-radius: 4px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    color: #666;
  }
  #detail #product_download .list li a i {
    width: 36px;
    padding: 5px;
    height: 100%;
    text-align: center;
  }
  #detail #product_download .list li a i img {
    width: 19px;
    height: auto;
  }
  #detail #product_download .list li a b {
    width: 166px;
    height: 100%;
    padding: 8px 3px;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    border-left: solid 1px #ccc;
  }
  #detail #product_download .list li a b span {
    display: block;
    font-size: 10px;
  }
  #detail #product_download .list li a:hover b {
    background-color: #cc3d3e;
    color: #fff;
    border-radius: 0 4px 4px 0;
  }
  #detail #product_download .list::before {
    content: "";
    display: block;
    width: 204px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_download .list::after {
    content: "";
    display: block;
    width: 204px;
  }
  #detail #product_related {
    margin-top: 60px;
  }
  #detail #product_related h3 {
    width: 100%;
    margin-bottom: 10px;
    border-top: dotted 1px #ccc;
  }
  #detail #product_related h3 span {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #fff;
    padding: 0 20px 0 0;
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
    display: inline-block;
  }
  #detail #product_related .list {
    width: 100%;
    border-radius: 0 0 4px 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_related .list li {
    width: 204px;
  }
  #detail #product_related .list li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
  }
  #detail #product_related .list li a figure {
    width: 90px;
    padding: 2px;
    overflow: hidden;
    border-radius: 2px;
    border: solid 1px #e6e6e6;
    text-align: center;
  }
  #detail #product_related .list li a figure img {
    max-width: 100%;
    max-height: 100%;
  }
  #detail #product_related .list li a h4 {
    width: 114px;
    padding-left: 5px;
    line-height: 1.286;
    font-size: 1.2rem;
    color: #666;
  }
  #detail #product_related .list li a:hover h4 {
    text-decoration: underline;
  }
  #detail #product_related .list::before {
    content: "";
    display: block;
    width: 20%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_related .list::after {
    content: "";
    display: block;
    width: 20%;
  }
  #detail #lineup {
    margin: 140px  auto 80px auto;
  }
  #detail #lineup h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 3.2rem;
  }
  #detail #lineup h2:after {
    content: '';
    display: block;
    margin: 15px auto 0 auto;
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background-color: #c7292b;
  }
  #detail #lineup .lineup_table {
    min-width: 1100px;
    border-collapse: collapse;
    empty-cells: show;
  }
  #detail #lineup .lineup_table tr td {
    padding: 10px 5px;
    font-size: 1.2rem;
    vertical-align: middle;
    border: solid 1px #ddd;
    line-height: 1.3;
    text-align: center;
  }
  #detail #lineup .lineup_table tr td a {
    display: block;
  }
  #detail #lineup .lineup_table tr td img {
    width: auto;
    height: 23px;
  }
  #detail #lineup .lineup_table tr:hover td {
    background-color: #fbebeb;
  }
  #detail #lineup .lineup_table tr:hover td:hover {
    background-color: #f0c8c8;
  }
  #detail #lineup .lineup_table tr:nth-child(1) td {
    color: #fff;
    background-color: #cc3d3e;
    text-align: center;
    border-bottom: none;
    line-height: 1em;
  }
  #detail #lineup .lineup_table tr:nth-child(1) td:hover {
    background-color: #cc3d3e;
  }
  #detail #lineup .lineup_table tr.bgc td {
    padding: 2px 0;
    background-color: #cccccc;
  }
}
/* Smartphones (portrait and landscape) */
@media screen and (max-width: 700px) {
  p {
    line-height: 1.6;
  }

  .content_mhd {
    margin: 0 0 25px;
    position: relative;
    padding: 4px 0 10px 10px;
    border-bottom: 1px dashed #b5b5b5;
    font-size: 1.3rem;
  }
  .content_mhd:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 20px;
    border-radius: 3px;
    background: #cc3d3e;
  }

  #index .common_inner {
    overflow: visible;
  }
  #index #content_tidbits,
  #index #content_faq {
    padding-top: 75px;
    margin-top: -75px;
  }
  #index .content_hd {
    margin: 0 0 20px;
    font-size: 1.9rem;
    color: #cc3d3e;
    text-align: center;
  }
  #index .content_categories {
    margin: 0 0 42px;
  }
  #index .content_categories li {
    float: left;
    margin: 0 10px 10px 0;
  }
  #index .content_categories li button {
    display: block;
    min-width: 70px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #f6f6ee;
    font-size: 1.2rem;
    text-align: center;
    outline: none;
  }
  #index .content_categories li button.selected, #index .content_categories li button:hover {
    background: #cc3d3e;
    color: #fff;
    text-decoration: none;
  }
  #index .content_categories:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_faq .category_wrap {
    overflow: hidden;
    margin: 0 0 50px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  #index #content_faq .category_wrap.open {
    margin: 0 0 50px;
    -webkit-animation: sp_category_wrap_open 0.3s ease forwards;
            animation: sp_category_wrap_open 0.3s ease forwards;
  }
  #index #content_faq .category_wrap.close {
    margin: 0;
    -webkit-animation: sp_category_wrap_close 0.3s ease forwards;
            animation: sp_category_wrap_close 0.3s ease forwards;
  }
  #index #content_faq .category_wrap h5 {
    position: relative;
    line-height: 1.6;
    padding: 15px 35px 15px 50px;
    border-radius: 5px;
    background: #f6f6ee;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #index #content_faq .category_wrap h5:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    background: #cc3d3e url(../images/faq/icon_q.png) no-repeat center;
    background-size: 15px;
  }
  #index #content_faq .category_wrap h5:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    background: #dfdfd2 url(../images/faq/icon_open.png) no-repeat center;
    background-size: 12px;
  }
  #index #content_faq .category_wrap .answer_wrap {
    position: relative;
    height: 0;
    max-height: 0;
    padding: 15px 0 0 50px;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  #index #content_faq .category_wrap .answer_wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #cc3d3e;
    border-radius: 5px;
    background: url(../images/faq/icon_a.png) no-repeat center;
    background-size: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #index #content_faq .category_wrap .answer_wrap:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_faq .category_wrap .answer_wrap a {
    display: inline-block;
    margin: 2px 0 0;
    color: #0062ae;
  }
  #index #content_faq .category_wrap .answer_wrap .float_left {
    margin: 0 0 7px;
  }
  #index #content_faq .category_wrap .answer_wrap .a_blank:after {
    content: url(../images/common/icon_blank.png);
  }
  #index #content_faq .category_wrap .answer_wrap .a_pdf:after {
    content: url(../images/common/icon_pdf.png);
    position: relative;
    top: 5px;
  }
  #index #content_faq .category_wrap .open h5:after {
    background: #dfdfd2 url(../images/faq/icon_close.jpg) no-repeat center;
    background-size: 12px;
  }
  #index #content_faq .category_wrap .open .answer_wrap {
    height: 100%;
    max-height: 50em;
    min-height: 60px;
    margin: 0 0 30px;
  }
  #index #content_tidbits .category_wrap {
    margin: 0 0 50px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  #index #content_tidbits .category_wrap.open {
    margin: 0 0 50px;
    -webkit-animation: sp_category_wrap_open 0.3s ease forwards;
            animation: sp_category_wrap_open 0.3s ease forwards;
  }
  #index #content_tidbits .category_wrap.close {
    margin: 0;
    -webkit-animation: sp_category_wrap_close 0.3s ease forwards;
            animation: sp_category_wrap_close 0.3s ease forwards;
  }
  #index #content_tidbits .category_wrap ul li {
    float: left;
    width: 48.55072%;
    margin: 0 0 20px;
  }
  #index #content_tidbits .category_wrap ul li:nth-child(even) {
    float: right;
    margin: 0 0 20px;
  }
  #index #content_tidbits .category_wrap ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    text-decoration: none !important;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap {
    -webkit-box-ordinal-group: 2;
    box-ordinal-group: 2;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap h3 {
    line-height: 1.4;
    margin: 0 0 5px;
    font-size: 1.3rem;
    font-weight: bold;
  }
  #index #content_tidbits .category_wrap ul li .text_wrap p {
    line-height: 1.4;
    font-size: 1.2rem;
  }
  #index #content_tidbits .category_wrap ul li .img_wrap {
    -webkit-box-ordinal-group: 1;
    box-ordinal-group: 1;
    margin: 0 0 10px;
  }
  #index #content_tidbits .category_wrap ul li .img_wrap img {
    border: solid 1px #e6e6e6;
  }
  #index #content_tidbits .category_wrap ul li img {
    width: 100%;
  }
  #index #content_tidbits .category_wrap ul:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_tidbits .category_wrap:after {
    content: '';
    display: block;
    clear: both;
  }
  #index #content_tidbits .category_wrap li {
    margin: 0 0 25px;
    padding: 0 0 20px;
    border-bottom: 1px solid #ccc;
  }
  #index #content_tidbits .category_wrap h5 {
    margin: 0 0 7px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #index #content_tidbits .category_wrap p {
    font-size: 1.2rem;
  }
  #index #content_tidbits .category_wrap .link_color {
    display: block;
    color: #cc3d3e;
    text-align: right;
  }

  #detail .back_link {
    padding: 30px 0 20px 0;
  }
  #detail .back_link .btn_common {
    width: 200px;
    margin-right: 5px;
    margin-bottom: 0;
    display: inline-block;
  }
  #detail .pic_zoom {
    position: relative;
    cursor: pointer;
  }
  #detail .pic_zoom:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../images/product/icon_zoom.png) center center no-repeat #333;
    background-size: 21px auto;
    border-radius: 4px 0 4px 0;
    width: 30px;
    height: 30px;
  }
  #detail .pic_zoom:hover:after {
    opacity: .5;
  }
  #detail #product_title {
    margin: 0 auto 50px auto;
  }
  #detail #product_title h1 {
    padding: 8px 16px;
    font-size: 1.4rem;
    color: #fff;
    background-color: #cc3d3e;
    border: solid 1px #cc3d3e;
    border-radius: 4px 4px 0 0;
  }
  #detail #product_title h2 {
    padding: 25px 16px 20px 16px;
    font-size: 3.4rem;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
  }
  #detail #product_title .caps {
    padding: 14px 16px 12px 16px;
    font-size: 2.0rem;
    background-color: #efefe1;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    border-radius: 0 0 4px 4px;
  }
  #detail #product_intro {
    overflow: hidden;
  }
  #detail #product_intro .images {
    width: 530px;
    float: right;
  }
  #detail #product_intro .images .large_img {
    width: 100%;
    height: 400px;
    padding: 30px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail #product_intro .images .large_img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img {
    padding: 8px 0 0 0;
    overflow: hidden;
  }
  #detail #product_intro .images .thumb_img p.thumb {
    width: 130px;
    height: 84px;
    border: solid 1px #ccc;
    border-radius: 4px;
    float: left;
  }
  #detail #product_intro .images .thumb_img p.thumb img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img p.thumb.current {
    border-color: #cc3d3e;
  }
  #detail #product_intro .images .thumb_img dl {
    width: 390px;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_intro .images .thumb_img dl dt {
    width: 100%;
    height: 21px;
    padding-top: 2px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #detail #product_intro .images .thumb_img dl dt:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #c7292b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb {
    width: 90px;
    height: 60px;
    padding: 5px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .images .thumb_img dl dd.thumb.current {
    border-color: #cc3d3e;
  }
  #detail #product_intro .images .thumb_img dl::before {
    content: "";
    display: block;
    width: 23%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_intro .images .thumb_img dl::after {
    content: "";
    display: block;
    width: 23%;
  }
  #detail #product_intro .description_title {
    width: 540px;
    float: left;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
  }
  #detail #product_intro .description_title:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 5px;
    margin-top: -2px;
    margin-right: 10px;
    border-radius: 20px;
    background-color: #cc3d3e;
    vertical-align: middle;
  }
  #detail #product_intro .description {
    width: 540px;
    float: left;
    margin: 0;
  }
  #detail #product_intro .description .labels {
    margin: 0 auto 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #detail #product_intro .description .labels li {
    height: 70px;
    margin-right: 10px;
  }
  #detail #product_intro .description .labels li img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail #product_intro .description .lead {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.625;
  }
  #detail .product_outline img {
    width: 100%;
  }
  #detail .product_outline .title {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 10px;
    border-top: dotted 1px #ccc;
  }
  #detail .product_outline .title span {
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #fff;
    padding: 0 20px 0 0;
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
    display: inline-block;
  }
  #detail .product_outline .title span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #c7292b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  #detail .product_outline .illust {
    margin-bottom: 30px;
  }
  #detail .product_outline .package .list {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline .package .list li {
    width: 130px;
    padding: 5px;
    margin-bottom: 5px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline .package .list li img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline .package .list li:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline .package .list::before {
    content: "";
    display: block;
    width: 130px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail .product_outline .package .list::after {
    content: "";
    display: block;
    width: 130px;
  }
  #detail .product_outline.layout1 {
    width: 540px;
    float: left;
  }
  #detail .product_outline.layout2 {
    width: 540px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline.layout2 .point,
  #detail .product_outline.layout2 .illust {
    width: 260px;
  }
  #detail .product_outline.layout2 .point figure,
  #detail .product_outline.layout2 .illust figure {
    padding: 10px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline.layout2 .point figure img,
  #detail .product_outline.layout2 .illust figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline.layout2 .point figure:after,
  #detail .product_outline.layout2 .illust figure:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline.layout2 .package {
    width: 100%;
  }
  #detail .product_outline.layout3 {
    width: 100%;
    float: none;
    clear: both;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail .product_outline.layout3 .ex,
  #detail .product_outline.layout3 .illust {
    width: 540px;
  }
  #detail .product_outline.layout3 .ex figure,
  #detail .product_outline.layout3 .illust figure {
    padding: 30px;
    border: solid 1px #ccc;
    border-radius: 4px;
  }
  #detail .product_outline.layout3 .ex figure img,
  #detail .product_outline.layout3 .illust figure img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  #detail .product_outline.layout3 .ex figure:after,
  #detail .product_outline.layout3 .illust figure:after {
    width: 17px;
    height: 17px;
    background-image: url(../images/product/icon_zoom_s.png);
    background-size: 13px auto;
  }
  #detail .product_outline.layout3 .package {
    width: 100%;
  }
  #detail #product_info {
    margin-top: 60px;
  }
  #detail #product_info .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #detail #product_info .list li {
    width: 340px;
    padding: 25px 0;
    margin: 0 20px;
    background: url(../images/product/btn_info_skin.png) #333;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    cursor: pointer;
  }
  #detail #product_info .list li:hover {
    opacity: .8;
  }
  #detail #product_info .list.num3 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_info .list.num3 li {
    margin: 0;
  }
  #detail #product_download {
    padding: 20px;
    margin-top: 60px;
    background-color: #efefe1;
    border-radius: 4px;
  }
  #detail #product_download h3 {
    margin-right: 20px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #detail #product_download h3:before {
    content: '';
    display: inline-block;
    background: url(../images/product/icon_download.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 23px;
    margin-right: 10px;
    vertical-align: middle;
  }
  #detail #product_download .caps {
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
  }
  #detail #product_download .caps span {
    color: #c7292b;
    text-decoration: underline;
    cursor: pointer;
  }
  #detail #product_download .caps span:hover {
    text-decoration: none;
  }
  #detail #product_download .caps span:before {
    content: '';
    display: inline-block;
    background: url(../images/product/icon_login.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    vertical-align: middle;
  }
  #detail #product_download .list {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #detail #product_download .list li {
    width: 204px;
  }
  #detail #product_download .list li a {
    width: 100%;
    height: 100%;
    border: solid 1px #ccc;
    border-radius: 4px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    color: #666;
  }
  #detail #product_download .list li a i {
    width: 36px;
    padding: 5px;
    height: 100%;
    text-align: center;
  }
  #detail #product_download .list li a i img {
    width: 19px;
    height: auto;
  }
  #detail #product_download .list li a b {
    width: 166px;
    height: 100%;
    padding: 8px 3px;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    border-left: solid 1px #ccc;
  }
  #detail #product_download .list li a b span {
    display: block;
    font-size: 10px;
  }
  #detail #product_download .list li a:hover b {
    background-color: #cc3d3e;
    color: #fff;
    border-radius: 0 4px 4px 0;
  }
  #detail #product_download .list::before {
    content: "";
    display: block;
    width: 204px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_download .list::after {
    content: "";
    display: block;
    width: 204px;
  }
  #detail #product_related {
    margin-top: 60px;
  }
  #detail #product_related h3 {
    width: 100%;
    margin-bottom: 10px;
    border-top: dotted 1px #ccc;
  }
  #detail #product_related h3 span {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #fff;
    padding: 0 20px 0 0;
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
    display: inline-block;
  }
  #detail #product_related .list {
    width: 100%;
    border-radius: 0 0 4px 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #detail #product_related .list li {
    width: 204px;
  }
  #detail #product_related .list li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
  }
  #detail #product_related .list li a figure {
    width: 90px;
    padding: 2px;
    overflow: hidden;
    border-radius: 2px;
    border: solid 1px #e6e6e6;
    text-align: center;
  }
  #detail #product_related .list li a figure img {
    max-width: 100%;
    max-height: 100%;
  }
  #detail #product_related .list li a h4 {
    width: 114px;
    padding-left: 5px;
    line-height: 1.286;
    font-size: 1.2rem;
    color: #666;
  }
  #detail #product_related .list li a:hover h4 {
    text-decoration: underline;
  }
  #detail #product_related .list::before {
    content: "";
    display: block;
    width: 20%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #detail #product_related .list::after {
    content: "";
    display: block;
    width: 20%;
  }
  #detail #lineup {
    margin: 140px  auto 80px auto;
  }
  #detail #lineup h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 3.2rem;
  }
  #detail #lineup h2:after {
    content: '';
    display: block;
    margin: 15px auto 0 auto;
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background-color: #c7292b;
  }
  #detail #lineup .lineup_table {
    min-width: 1100px;
    border-collapse: collapse;
    empty-cells: show;
  }
  #detail #lineup .lineup_table tr td {
    padding: 10px 5px;
    font-size: 1.2rem;
    vertical-align: middle;
    border: solid 1px #ddd;
    line-height: 1.3;
    text-align: center;
  }
  #detail #lineup .lineup_table tr td a {
    display: block;
  }
  #detail #lineup .lineup_table tr td img {
    width: auto;
    height: 23px;
  }
  #detail #lineup .lineup_table tr:hover td {
    background-color: #fbebeb;
  }
  #detail #lineup .lineup_table tr:hover td:hover {
    background-color: #f0c8c8;
  }
  #detail #lineup .lineup_table tr:nth-child(1) td {
    color: #fff;
    background-color: #cc3d3e;
    text-align: center;
    border-bottom: none;
    line-height: 1em;
  }
  #detail #lineup .lineup_table tr:nth-child(1) td:hover {
    background-color: #cc3d3e;
  }
  #detail #lineup .lineup_table tr.bgc td {
    padding: 2px 0;
    background-color: #cccccc;
  }
}
