@charset "UTF-8";

/******************** Eric Meyer Reset CSS ********************/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}


/* remember to define focus styles! */

:focus {
    outline: 0;
}


/* remember to highlight inserts somehow! */

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}


/* tables still need 'cellspacing=&quot;0&quot;' in the markup */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/******************** Font-size reset CSS ********************/

html {
    font-size: 62.5%
    /*
    ** 1em = 10px
    */
}


/******************** Unique CSS ********************/

.for-pc {
    display: block;
}
.for-sp {
    display: none;
}
body {
    font-family: "メイリオ", "Meiryo", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    line-height: 1.8;
}
.container {
    margin: 0 auto;
    width: 880px;
}

/* ヘッダー */
header {
    /* background-attachment: fixed; */
    background-color: #fff;
    background-image: url("../../images/pc-header-bg-zh.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    height: 800px;
}
header .balloon {
    text-align: right;
}
header .balloon .balloonImg {
    position: relative;
    top: 120px;
    left: 100px;
}



/* コンテンツ */
.contents {
    background-color: #e7174a;
    margin: 0 auto;
}
.contents section {
    padding: 30px 100px;
}
.contents section#tv-cm {
    background: ;
}
.contents section#web-cm {
    background: #f19126;
}
.contents section#product {
    background: #f9ebdc;
}
.contents section .headline {
    margin: 0 auto 30px;
    text-align: center;
}
.contents section#tv-cm .headline h1 {
    color: #fff7ac;
    font-size: 3.6rem;
    line-height: 1.2;
    margin: 14px 0 6px;
}
.contents section#web-cm .headline h1,
.contents section#product .headline h1 {
    color: #4d4d4d;
    font-size: 3.6rem;
    line-height: 1.2;
    margin: 14px 0 6px;
}
.contents section .lead {
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
}
.contents section#product .product-lineup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
    margin: 30px 0;
}
.contents section#product .product-lineup li {
    font-size: 1.4rem;
    line-height: 1.4;
}
.contents section#product .product-lineup li a {
    color: #ef7d00;
    text-decoration: none;
}
.contents section#product .product-lineup li a:hover {
    text-decoration: underline;
}



/* TVCM */
#tv-cm .popup-iframe {
    display: table;
    position: relative;
    margin: 30px auto 0;
}
/*
.popup-iframe:hover {
    opacity: 0.7;
}
*/
#tv-cm .popup-iframe .photo {
    width: 494px;
    border: 3px solid #fff;
    border-radius: 10px;
}
#tv-cm .popup-iframe .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    margin-left: -30px;
    margin-top: -20px;
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#tv-cm .popup-iframe:hover .icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



/* Web CM */
#web-cm .video-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
}
#web-cm .video-list .coming-soon {
    display: block;
    width: 156px;
    margin-top: 30px;
    padding: 40px 0;
    background: #000;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
}
#web-cm .popup-iframe {
    display: table;
    position: relative;
    margin: 30px auto 0;
}
/*
.popup-iframe:hover {
    opacity: 0.7;
}
*/
#web-cm .popup-iframe .photo {
    width: 156px;
    border: 2px solid #fff;
    border-radius: 8px;
}
#web-cm .popup-iframe .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    margin-left: -20px;
    margin-top: -15px;
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#web-cm .popup-iframe:hover .icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



/* フッター */
footer {
    background-color: #fff;
    padding: 26px;
    text-align: center;
}
footer small {
    color: #4d4d4d;
    font-size: 1.4rem;
    line-height: 2;
}
footer .topBtn {
    bottom: 20px;
    display: none;
    right: 20px;
    position: fixed;
}
footer .topBtn img {
    cursor: pointer;
}



/******************** 1040px以上 ********************/

@media screen and ( min-width: 1040px) {
    body {
        background: url("../../images/pc-bg.jpg") center top repeat-y;
    }
}

/******************** 640px以下 ********************/
@media screen and ( max-width: 640px) {
    html {
    font-size: 45%
    /*
    ** 1em = 10px
    */
    }
    body {
        overflow-x: hidden;
        width: 100%;
    }
    .for-sp {
        display: block;
    }
    .for-pc {
        display: none;
    }
    header {
        position: relative;
        /* background-attachment: fixed; */
        background-color: #fff;
        background-image: url("../../images/sp-header-bg-zh.jpg");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100%;
        height: auto;
        padding-top: 153.9%;
        box-sizing: border-box;
    }
    .container {
        margin: 0 auto;
        width: 100%;
    }
    .contents section {
        padding: 30px 10px;
    }
    .contents section#product .product-lineup {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around; /* Safari */
        justify-content: space-around;
        margin: 30px 0;
    }
    #tv-cm .popup-iframe {
        width: 100%;
        text-align: center;
    }
    #tv-cm .popup-iframe .photo {
        max-width: 98%;
        height: auto;
    }
    #web-cm .video-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around; /* Safari */
        justify-content: space-around;
    }
    #web-cm .video-list .coming-soon {
        width: 116px;
        padding: 30px 0;
        font-size: 1.6rem;
    }
    #web-cm .popup-iframe .photo {
        width: 116px;
    }
}



/******************** プルダウンメニュー ********************/

form.plDwn {
    padding: 36px 15px 0;
    text-align: right;
}

form.plDwn select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../../images/pc-pulldown.gif");
    background-color: #e72747;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    height: 40px;
    padding-left: 15px;
    width: 190px;
}

select::-ms-expand {
    display: none;
}

@media screen and ( max-width: 640px) {
    form.plDwn {
        height: 100%;
        margin: -152% 3% 0;
        padding: 0;
    }
    form.plDwn select {
        background-image: url("../../images/sp-pulldown.gif");
        background-position: center right;
        background-size: 100%;
        font-size: 1.2rem;
        height: 100%;
        padding: 1% 0 1% 2%;
        width: 24%;
    }
    select::-ms-expand {
        display: none;
    }
}