@charset "utf-8";
/*--------------------
- common
--------------------*/
html,
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    border:none;
}
body {
    background-color: #fff !important;
}
body.bg-color {
    background-color: #f7f7f7 !important;
}
body::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #fff;
}
#wrapper {
    color: #fff !important;
}
.bg-color #wrapper {
    color: #666 !important;
}
#page-header,
.breadcrumb {
    display: none;
}
#page.nolimit {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.exceptionWrap {
  max-width: 976px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
#wrapContent #wrap_mainContent .audioboard .contens {
  padding: 0;
    color: #666 !important;
}
@media print, screen and (max-width: 640px) {
  .exceptionWrap {
    padding: 0 10px;
    max-width: none;
    box-sizing: border-box;
  }
}
.audioboard {
  font-size: 14px;
}
.audioboard img {
  width: 100%;
}
.audioboard * {
  box-sizing: border-box;
}
.audioboard h2 {
    background: #fff;
}
.audioboard h2 > span {
    display: block;
    color: #444;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    background: #fff;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 4.16%;
}
.audioboard h2 > span > span {
    display: block;
    color: #ccc;
    font-size: 0.7em;
    font-weight: normal;
    line-height: 2;
}
.audioboard h3 {
    color: #444;
    font-size: 1.375rem;
    line-height: 2.4;
    text-align: center;
    position: relative;
    margin-bottom: 3.47%;
}
.audioboard h3::before,
.audioboard h3::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 50%;
    width: 20%;
    height: 1px;
    background: #ccc;
}
.audioboard h3::before {
    left: 0;
}
.audioboard h3::after {
    right: 0;
}
.audioboard p {
    font-size: 0.9375rem;
    line-height: 2.1;
}
.audioboard .note {
    font-size: 0.8rem !important;
    width: 100% !important;
    max-width: 100% !important;
}
.ff-din {
    font-family: 'DIN Regular';
}
@media screen and (min-width: 1440px) {
    .audioboard h3::before,
    .audioboard h3::after {
        width: 28%;
        max-width: 280px;
    }
}
/*--------------------
- masthead
--------------------*/
.masthead {
  padding: 25px 0 0 25px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    display: none;
}
.masthead img {
    width: auto;
}
.masthead.fixed {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .masthead {
    padding: 15px;
    height: auto;
  }
  .masthead .brand-logo {
    line-height: 1;
  }
  .masthead img {
    height: 15px;
  }
}
/*--------------------
 fixed-footer
--------------------*/
#fixed-footer {
    display: none;
}
/*--------------------
- layout
--------------------*/
.l-contents {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.l-txt {
    padding: 0 20px;
}
.col-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: stretch;
}
.col-2 {
    width: 50%;
}
.flex-reverse {
    flex-direction: row-reverse;
}
.l-contents + .col-1 {
    margin-top: 6.25%;
}
/*--------------------
- mv
--------------------*/
.mv {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#bgSlider {
    width: 100%;
    height: 100vh;
}
#bgSlider li {
    position: absolute;
    top: 0;
    right: -5vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 105vw;
    height: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -ms-transform: translate(0, 0);
}
#bgSlider li.mvM {
    -webkit-animation: mvMoving 10s linear 0s infinite alternate;
    animation: mvMoving 10s linear 0s infinite alternate;
    -ms-animation: mvMoving 10s linear 0s infinite alternate;
}
#bgSlider img {
    display: none;
}
/* IE11 bugfix -ms-*/
/*
@supports (-ms-ime-align: auto) {
    #bgSlider li {
        animation-duration: 40s;
    }
}
*/
/*
@media all and (-ms-high-contrast:none){
    #bgSlider li {
        animation-duration: 40s;
    }
}
@media screen and (-ms-high-contrast:none) and (min-width: 640px) and (max-width: 960px) {
    #bgSlider li {
        animation-duration: 500s;
    }
}
@media screen and (-ms-high-contrast:none) and (max-width: 640px) {
    #bgSlider li {
        animation: none;
    }
}
*/
@-webkit-keyframes mvMoving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-5vw);
        transform: translateX(-5vw);
    }
}
@keyframes mvMoving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -ms-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translateX(-5vw);
        transform: translateX(-5vw);
        -ms-transform: translate(-5%, 0);
    }
}
.mv h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.mv_txt {
    display: block;
    margin: 0 auto;
    text-align: center;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background: url('../images/mv_txt01_load.png') no-repeat;
    background-size: contain;
}
.mv_txt img {
    vertical-align: bottom;
    opacity: 0;
}
.mv .mv_txt01 {
    padding-bottom: 5%;
    width: 100%;
}
.mv .scrollbar {
    display: inline-block;
    width: 1px;
    height: 30px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    -webkit-animation: scrolldown 2s infinite ease-out;
    animation: scrolldown 2s infinite ease-out;
}
@-webkit-keyframes scrolldown {
    0% {-webkit-transform: translateX(-50%) translateY(0);}
    20% {-webkit-transform: translateX(-50%) translateY(15px);}
    40% {-webkit-transform: translateX(-50%) translateY(0);}
    60% {-webkit-transform: translateX(-50%) translateY(10px);}
}
@keyframes scrolldown {
    0% {transform: translateX(-50%) translateY(0);}
    20% {transform: translateX(-50%) translateY(15px);}
    40% {transform: translateX(-50%) translateY(0);}
    60% {transform: translateX(-50%) translateY(10px);}
}
#paginator {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
#paginator li {
    display: inline-block;
    cursor: pointer;
}
#paginator span {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #333;
    display: inline-block;
    -webkit-transition: background 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: background 300ms cubic-bezier(0.42, 0, 0.58, 1);
}
#paginator span.active {
    background: #f2f2f2;
}
#paginator li + li {
    margin-left: 6px;
}
@media print, screen and (min-width: 1440px) {
    .mv h1 {
        width: 420px;
    }
}
@media print, screen and (max-width: 1440px) {
    .mv h1 {
        max-width: 300px;
        width: 35%;
    }
}
@media screen and (min-width: 640px) and (max-width: 960px) {
    .mobile .mv h1 {
        width: 25vw;
    }
    .mobile #paginator {
        bottom: 10%;
    }
    .mobile #paginator span {
        width: 3vw;
        height: 2px;
    }
    .mobile .mv .mv_line {
        height: 1px;
    }
}
/*--------------------
- intro
--------------------*/
.intro {
    background: url(../images/bg_intro_pc.jpg) 50% 0 no-repeat;
    background-size: cover;
    
}
.intro p {
    padding: 12% 1.5%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 2.4;
    text-align: center;
}
.intro .lead-note {
    display: block;
    color: #ff0000;
    font-size: 1.35rem;
    font-weight: bold;
    padding-top: 5%;
}
@media screen and (min-width: 640px) and (max-width: 960px) {
    .intro p {
        font-size: 1rem;
    }
    .intro p .tablet-none {
        display: none;
    }
}
/*--------------------
- section effect
--------------------*/
.effect {
    background: #fff;
}
.effect .article {
    padding-bottom: 5%;
}
.effect .col-2 p {
    padding-right: 8%;
    margin-top: -0.5rem;
}
.effect .col-3 + .col-3 {
    padding-left: 1%;
}
.effect .l-txt + .col-1 {
    margin-top: 5%;
}
.effect .txt-group {
    border-left: 1px solid #ddd;
    margin-left: -1.5%;
}
.effect .col-3:first-child .txt-group {
    border-left: none;
    margin-left: 0;
}
.effect .col-3 p {
    width: 90%;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
}
.effect .band-txt {
    text-align: center;
    background: #666;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 2.1;
    margin-top: 7%;
}
.effect .bg-taoc {
    background: #69898a;
}
.effect .line-txt {
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.7;
    margin-bottom: 1.4%;
}
.effect .list-txt::before {
    content: '・';
}
.effect .list-txt {
    line-height: 1.4;
    text-indent: -1rem;
    padding-left: 1rem;
    padding-top: 3%;
    font-size: 0.8rem;
}
@media screen and (min-width: 640px) and (max-width: 960px) {
    .effect .list-txt {
        font-size: 0.75rem;
    }
}
/*--------------------
- section feature
--------------------*/
.section.feature {
    overflow: hidden;
    padding-bottom: 6.25%;
}
.feature a {
    color: #3a81d8 !important;
}
.feature a:hover {
    opacity: .7;
}
.feature .article {
    position: relative;
}
.feature .article::before {
    content: '';
    z-index: -1;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-top: 26%;
    width: 100%;
    height: 100%;
}
.feature .article.c70::before {
    background-image: url(../images/bg_c70.jpg);
}
.feature .article.c50::before {
    background-image: url(../images/bg_c50.jpg);
}
.feature h4 {
    width: 20%;
    margin: -27% auto 1%;
    font-size: 1.8vw;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    padding-bottom: 6%;
    text-align: center;
    -webkit-transform: translateY(30%) !important;
    transform: translateY(30%) !important;
}
.feature h4::before,
.feature h4::after {
    content: '';
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0 auto;
}
.feature h4::before {
    background-image: url(../images/bg_line01.svg);
    background-position: 50% 0;
    height: 20px;
    background-size: 120%;
}
.feature h4::after {
    background-image: url(../images/bg_line02.svg);
    background-position: 50% 50%;
    height: 40px;
}
.feature h4 .ff-din {
    font-size: 1.2em;
}
.feature h4 > span {
    vertical-align: super;
}
.feature-item {
    margin: 0 auto 5%;
}
.c70 .feature-item {
    width: 25%;
    max-width: 520px;
}
.c50 .feature-item {
    width: 20%;
    max-width: 380px;
}
.c50 h4 {
    padding-bottom: 3%;
}
.feature .col-2 {
    z-index: 3;
}
.feature .l-txt {
    padding-bottom: 6.25%;
}
.bg-txt {
    position: relative;
    margin-top: 5%;
    padding-bottom: 5%;
}
.bg-txt::before {
    content: '';
    position: absolute;
    top: 0;
    width: 71%;
    height: 65%;
    max-height: 553px;
    background: #fff;
}
.c70 .bg-txt::before {
    right: 0;
}
.c50 .bg-txt::before {
    left: 0;
}
.c70 .flex-reverse .flex-txt,
.c70 .flex-reverse .flex-img {
    padding-top: 5%;
    padding-right: 5%;
}
.c50 .flex-btw .flex-txt,
.c50 .flex-btw .flex-img {
    padding-top: 5%;
    padding-left: 5%;
}
.flex-reverse .flex-img,
.flex-btw .flex-img {
    margin-top: -10%;
}
.c70 .flex-row .flex-img:nth-child(1) {
    width: 36%;
    margin-left: 3%;
    margin-top: 4%;
}
.c70 .flex-row .flex-img:nth-child(2) {
    width: 36%;
    margin-top: 35%;
}
.c70 .flex-row .flex-img:nth-child(3) {
    width: 27%;
    margin-top: 13%;
    margin-left: 5%;
    margin-right: 3%;
}
.c70 .col-img01 {
    text-align: center;
}
.c70 .col-img01 img {
    width: 50%;
}
.c50 .flex-row .flex-img:nth-child(1) {
    width: 27%;
    margin-left: 10%;
    margin-top: 6%;
}
.c50 .flex-row .flex-img:nth-child(2) {
    width: 36%;
    margin-left: 17%;
    margin-top: 11%;
}

.feature h5 {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 600;
    position: relative;
    padding-bottom: 2.5%;
}
.feature h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1rem;
    margin-right: 0.5rem;
    background: #666;
    vertical-align: bottom;
}
.feature .bg-tilt {
    position: relative;
    padding-left: 6%;
    padding-right: 6%;
}
.feature .bg-tilt::after {
    content: '';
    display: block;
    background: #fff;
    width: 500%;
    height: 90%;
    transform: rotate(-10deg);
    position: absolute;
    left: -100%;
    top: 10%;
    z-index: -1;
}
.insulator {
    background: #111;
    padding: 50px 40px;
}
.insulator .h5 {
    border-left: 5px solid #999;
    padding-left: 2%;
    color: #fff;
}
.insulator .h5 p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
}
.insulator-img {
    text-align: center;
    margin: 6% 0 5%;
}
.insulator-img img {
    max-width: 445px;
}
.insulator .col-2 p {
    line-height: 2.1;
    color: #f7f7f7;
}
.insulator .col-2:nth-child(1) {
    width: 65%;
}
.insulator .col-2:nth-child(2) {
    text-align: right;
    margin-left: 5%;
}
.insulator .col-2 img {
    max-width: 381px;
}
@media print, screen and (min-width: 1440px) {
    .feature h4 {
        font-size: 1.8em;
        max-width: 400px;
    }
    .feature h4::before,
    .feature h4::after {
        background-size: 100%;
    }
    .feature h4 {
        margin: -26% auto 1%;
        -webkit-transform: translateY(30%) !important;
        transform: translateY(30%) !important;
    }
    .c50 h4 {
        padding-bottom: 3%;
    }
}
@media screen and (min-width: 640px) and (max-width: 960px) {
    #bgSlider li {
        background-position: 50% 50%;
    }
    .feature h4::before {
        height: 10px;
    }
    .feature h4::after {
        height: 30px;
    }
}
/*--------------------
- section design
--------------------*/
.design {
    background: #f7f7f7;
}
.design .col-1 {
    justify-content: center;
}
.design .col-2 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.bg-c70 {
    background: url(../images/bg_design_c70.png) 100% 0 no-repeat;
    background-size: cover;
    position: relative;
}
.bg-c50 {
    background: url(../images/bg_design_c50.png) 100% 0 no-repeat;
    background-size: cover;
    position: relative;
}
.bg-c70 > div,
.bg-c50 > div {
    max-width: 675px;
}
.bg-c70 > div {
    float: right;
}
.bg-c50 > div {
    float: left;
}
.bg-c70 p,
.bg-c50 p {
    padding: 0 7%;
    margin: 20px auto 0;
}
.design-img {
    padding: 0 5%;
    text-align: center;
    min-height: 280px;
}
.design .bg-c70 img {
    max-width: 388px;
    width: 100%;
    margin-top: 40px;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
}
.bg-c50 .design-img {
    padding-top: 5%;
}
.design .bg-c50 img {
    max-width: 263px;
    width: 62%;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
}
@media screen and (min-width: 640px) and (max-width: 960px) {
    .design-img {
        min-height: 240px;
    }
    .bg-c50 .design-img {
        padding-top: 10%;
    }
}
/*--------------------
- section taoc
--------------------*/
.taoc {
    padding: 10% 0 6.25%;
}
.taoc .col-2 + .col-2 {
    margin-left: 6%;
    width: 61%;
}
.taoc .col-2:nth-child(1) {
    width: 32.5%;
}
.taoc .col-2:nth-child(2) img {
    width: auto;
    margin-bottom: 3%;
}
.taoc a {
    border: 1px solid #666;
    border-radius: 15px;
    display: inline-block;
    margin-top: 5%;
    -webkit-transition: background 500ms;
    transition: background 500ms;
    color: #fff;
    width: 300px;
    text-align: center;
    
}
.taoc a:active{
    color: #fff;
}

.taoc a.newWindow{
    background: url(../images/icon_window-wh.png) no-repeat 23% 50% #666;
    padding: 15px;
    color: #fff;
}

.taoc a:visited.newWindow{
    color: #fff;
}

.taoc a:hover.newWindow{
    background:url(../images/icon_window-gr.png) no-repeat 23% 50% transparent;
    color: #666;
}

.taoc a:active.newWindow{
    color: #666;
}
.bnrArea{
    padding: 0 20px;
}
.bnrListFullWidth {
    max-width: 925px;
    width: 100%;
    margin: 0 auto 37px;
}

.bnrListFullWidth li {
    margin-bottom: 20px;
}
.bnrListFullWidth li:last-child {
    margin-bottom: 5%;
}
@media print, screen and (min-width: 1440px) {
    .taoc {
        padding: 120px 0 90px;
    }
}

/* PC Safari */
_::-webkit-full-page-media, _:future, :root .feature h4 .ff-din {
/*    font-size: 1.8rem;*/
}
/*--------------------
- utility
--------------------*/
.sp-only {
  display: none;
}
@media print, screen and (max-width: 640px) {
    /*--------------------
    - PC layout reset
    --------------------*/
    .l-contents {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .audioboard h3 {
        margin-bottom: 0;
    }
    .l-txt {
        padding: 0;
    }
    .col-1 {
        display: block;
    }
    .col-2, .insulator .col-2:nth-child(1) {
        width: 100%;
    }
    .effect .col-2 p {
        padding-right: 0;
        margin-top: 0;
    }
    .effect .txt-group {
        border-left: none;
        margin-left: 0;
    }
    .bg-txt {
        margin-top: 0;
        padding-bottom: 0;
    }
    .bg-txt::before {
        content: none;
    }
    .c70 .flex-reverse .flex-txt, .c70 .flex-reverse .flex-img {
        padding-top: 0;
        padding-right: 0;
    }
    .flex-reverse .flex-img, .flex-btw .flex-img {
        margin-top: 0;
    }
    .c70 .flex-row .flex-img:nth-child(1n) {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .feature h5 {
        padding-bottom: 0;
    }
    .feature .bg-tilt {
        padding-left: 0;
        padding-right: 0;
    }
    .feature .l-txt {
        padding-bottom: 0;
    }
    .audioboard .u-pb-lv3 {
        padding-bottom: 0 !important;
    }
    .c50 .flex-btw .flex-txt, .c50 .flex-btw .flex-img {
        padding-top: 0;
        padding-left: 0;
    }
    .c50 .flex-row .flex-img:nth-child(1n) {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .insulator-img {
        margin: 0 auto;
    }
    .insulator .col-2:nth-child(2) {
        margin-left: 0;
        text-align: center;
    }
    .section.feature {
        overflow: hidden;
        padding-bottom: 0;
    }
    .bg-c70 p, .bg-c50 p {
        padding: 0;
    }
    .design .bg-c70 img,
    .design .bg-c50 img {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }
    .taoc {
        padding: 0;
    }
    .taoc .col-2:nth-child(1) {
        width: 100%;
    }
    .taoc .col-2 + .col-2 {
        margin-left: 0;
        width: 100%;
    }
    /*--------------------
    - sp-layout & common
    --------------------*/
    .sp-audioboard h2 {
        margin-left: -5%;
        width: 110%;
    }
    .sp-audioboard h2 > span {
        font-size: 1.5em;
        line-height: 1.2;
        padding-top: 10%;
    }
    .sp-audioboard h2 > span > span {
        font-size: 0.9em;
        line-height: 1.7;
    }
    .sp-audioboard h3 {
        font-size: 1.3em;
        padding-top: 7.5%;
        padding-bottom: 7.5%;
    }
    .sp-audioboard h4 {
        margin-top: -52%;
        min-width: 200px;
        font-size: 3.9vw;
        line-height: 1.2;
        padding-bottom: 10%;
    }
    .c50 h4 {
        padding-bottom: 10%;
    }
    .sp-audioboard h4::before {
        height: 10px;
    }
    .sp-audioboard h4::after {
        height: 30px;
    }
    .sp-l-cont {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .sp-l-cont p {
        font-size: 1.1em;
        line-height: 1.9;
    }
    /*--------------------
    - sp sns
    --------------------*/
    #wrapContent #wrap_mainContent .mainContens .sns {
        padding-left: 5% !important;
    }
    /*--------------------
    - mv
    --------------------*/
    /* iphone */
    html.tablet-mobile #bgSlider {
        height: calc(100vh - 15vw);
    }
    #bgSlider li {
        width: 105%;
    }
    .mv h1 {
        width: 80%;
        max-width: 350px;
    }
    .mv .mv_line {
        height: 1px;
    }
    /*--------------------
    - intro
    --------------------*/
    .sp-intro {
        padding-top: 10%;
        padding-bottom: 10%;
        background: url(../images/bg_intro_spn.jpg) 100% 0 no-repeat;
        background-size: cover;
    }
    .sp-intro p {
        padding: 0;
        max-width: 100%;
        font-size: 1.1em;
        text-align: left;
    }
    .sp-intro .lead-note {
        font-size: 0.9rem;
    }
    /*--------------------
    - effect
    --------------------*/
    .effect .sp-txt + .sp-img {
        margin-top: 5%;
    }
    .effect .sp-img-3 p.band-txt {
        padding: 1% 0;
    }
    .effect .sp-img-3 p {
        width: 100%;
        max-width: 100%;
        font-size: 1.3em;
    }
    .effect .sp-img-3 p.list-txt {
        font-size: 1.1em;
    }
    .effect .sp-img-3 + .sp-img-3 {
        margin-top: 7.5%;
    }
    .audioboard h3::before,
    .audioboard h3::after {
        width: 7%;
    }
    /*--------------------
    - feature
    --------------------*/
    .feature .article::before {
        padding-top: 50%;
    }
    .feature h4 > span {
         vertical-align: baseline;
    }
    .feature .c70 .feature-item {
        width: 60%;
    }
    .sp-lead {
        margin-top: 7.5%;
        margin-bottom: 7.5%;
    }
    .feature .sp-feature-txt {
        background: #fff;
        width: 110%;
        margin-left: -5%;
        padding: 5% !important;
    }
    .sp-feature-img {
        margin-top: 5% !important;
    }
    .feature .sp-l-cont h5 {
        padding-top: 7.5%;
        padding-bottom: 7.5%;
    }
    .feature .sp-img {
        margin-top: 5%;
    }
    .feature .col-img01 img {
        width: 100%;
        max-width: 420px;
    }
    .feature .c50 {
        margin-top: 10%;
        padding-bottom: 10%;
    }
    .feature .c50 .feature-item {
        width: 40%;
    }
    .insulator {
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .insulator .h5 p {
        font-size: 1.25em;
        line-height: 1.5;
        font-weight: 600;
    }
    .insulator-img {
        width: 80%;
        margin-top: 7.5%;
        margin-bottom: 7.5%;
    }
    .feature .sp-txt + .sp-img {
        margin-top: 5%;
    }
    /*--------------------
    - design
    --------------------*/
    .design-item {
        width: 110%;
        margin-left: -5%;
    }
    .design-img {
        min-height: 100%;
        margin: 5% auto;
    }
    .bg-c70 > div,
    .bg-c50 > div {
        max-width: 100%;
    }
    .bg-c70 > div ,
    .bg-c50 > div {
        float: none;
    }
    .bg-c70 .design-img {
        width: 100%;
    }
    .bg-c50 .design-img {
        width: 80%;
    }
    .taoc {
        padding-bottom: 10% !important;
    }
    /*--------------------
    - taoc
    --------------------*/
    .sp-l-cont .mixed-taoc {
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .taoc a {
        color: #fff;
        width: 100%;
    }
    .taoc a.newWindow {
        background: url(../images/icon_window-wh.png) no-repeat 30% 50% #666;
        padding: 15px 0 15px 5%;
        color: #fff;
    }
    .mobile .taoc a:active,
    .mobile .taoc a:visited,
    .mobile .taoc a:active.newWindow,
    .mobile .taoc a.newWindow,
    .mobile .taoc a:hover.newWindow {
        color: #fff;
        background: url(../images/icon_window-wh.png) no-repeat 30% 50% #666;
    }
}

@media print, screen and (max-width: 640px) {
  .content-xs {
    max-width: none;
  }
  .bnrListFullWidth li img {
      width: 100%;
      height: auto;
  }
  .bnrListFullWidth li {
      margin-bottom: 2%;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .pc600-only {
      display: none;
  }
}

.u-pt-lv1 {
  padding-top: 20px !important;
}

.u-pt-lv2 {
  padding-top: 30px !important;
}

.u-pt-lv3 {
  padding-top: 40px !important;
}

.u-pt-lv4 {
  padding-top: 60px !important;
}

.u-pb-lv1 {
  padding-bottom: 20px !important;
}

.u-pb-lv2 {
  padding-bottom: 30px !important;
}

.u-pb-lv3 {
  padding-bottom: 40px !important;
}

.u-pb-lv4 {
  padding-bottom: 60px !important;
}

.u-mt-lv1 {
  margin-top: 20px !important;
}

.u-mt-lv2 {
  margin-top: 30px !important;
}

.u-mt-lv3 {
  margin-top: 40px !important;
}

.u-mt-lv4 {
  margin-top: 60px !important;
}

.u-mb-lv1 {
  margin-bottom: 20px !important;
}

.u-mb-lv2 {
  margin-bottom: 30px !important;
}

.u-mb-lv3 {
  margin-bottom: 40px !important;
}

.u-mb-lv4 {
  margin-bottom: 60px !important;
}