@charset "UTF-8";

/* ---reset.css--- */
html {
    color: #000;
}

blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    border: 0;
}

img {
    width: 100%;
    border: 0;
    vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: 400;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400;
}

q:after,
q:before {
    content: '';
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

legend {
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #999;
}


/*---reset.css END---*/


body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    line-height: 1.6;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    background: #E4E4E4;
}



/* ---head--- */

#head,
.container,
.page-footer {
    width: 100%;
}


/* ---head--- */
#head {
    padding: 0;
    position: relative;
    background: #000;
}

#head h1 {
    margin: 0px;
    background: #000;
    padding: 5px 15px;
    line-height: 1.2;
    overflow: hidden;
    color: #FFF;
    display: table;
}


#head h1 span {
    text-align: left;
    font-size: 50%;
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
    font-family: 'Roboto Condensed';
}

#head h1.header-logo span.logo-image {
    width: 40%;
}


/* ---container--- */
.container {
    background: #FFF;
}


.container #header-image {
    margin-bottom: 20px;
}

.container #header h2 {
    font-size: 26px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.container #header h2 span {
    font-size: 19px;
    font-family: 'Roboto Condensed';
}

.container #header h2 span.blandname {
    font-size: 19px;
    margin-right: 10px;
}

.fadeIn {
    animation: fadeIn 1.5s;
}

@keyframes fadeIn {
    /*animetion-nameで設定した値を書く*/

    0% {
        opacity: 0
    }

    /*アニメーション開始時は不透明度0%*/

    100% {
        opacity: 1
    }

    /*アニメーション終了時は不透明度100%*/

}

.container .contents {
    padding: 10px 20px;

}

.container .thumb {
    margin-bottom: 10px;
    box-sizing: border-box;
}

.container .text {
    box-sizing: border-box;
}

.container .text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Noto Sans JP';
}

.container .text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.container .text p.lead {
    color: #666;
}

.container .text p.lead a {
    color: #666;
}

.container .text p span {
    font-size: 16px;
    font-family: 'Roboto Condensed';
}

.container .section1,
.container .section2 {
    margin-bottom: 30px;
}

.container .products {
    border-top: 1px solid #000;
    padding-top: 30px;
    margin-bottom: 20px;
}

.container .products .pic {
    margin-bottom: 10px;
}

.container .products .text {}

.container .products .text h2 {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: 'Noto Sans JP';
}

.container .products .text h4 {
    font-size: 20px;
    line-height: 1.4;
}

.container .products .text h3 {
    font-size: 36px;
    font-family: 'Roboto Condensed';
    line-height: 1.2;
}

.container .products .text h3 span {
    font-weight: normal;
    display: block;
    font-size: 16px;
    line-height: 1.6;
}

.btn_official a {
    display: block;
    background: #000;
    color: #FFF;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: 'Roboto Condensed';
}

.btn_official a:hover {
    opacity: 0.7;
}


/*1.フェードインアニメーションの指定*/
.scrollanime {
    opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

/* ---サムネイル交互--- */

.thumb {
    margin: auto;
    background-color: white;
    position: relative;
}

.thumb img {
    width: 100%;
    opacity: 0;
    animation: thumb 20s ease-in-out infinite;
}

.thumb .img1 {
    animation-delay: 0s;
    display: block;
    margin: 0 auto;
}

.thumb .img2 {
    animation-delay: 10s;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes thumb {
    0% {
        opacity: 0
    }

    3% {
        opacity: 1
    }

    50% {
        opacity: 1
    }

    53% {
        opacity: 0
    }

    100% {
        opacity: 0
    }

}


/* ---footer--- */
.page-footer {
    clear: both;
    padding-top: 0px;
    text-align: left;
    background: #000;
    text-align: center;
}

.page-footer .footer-copyright {
    font-size: 55%;
    text-align: center;
    font-family: 'Roboto Condensed';
}

.page-footer .footer-copyright a {
    color: #FFF;
    text-decoration: none;
}

/*********************** pc *******************************/

@media only screen and (min-width: 641px) {

    #head,
    .container,
    .page-footer {
        width: 960px;
        margin: 0 auto;
    }

    .pc_br {
        display: block;
    }

    .sp_br {
        display: none;
    }

    /* ---head--- */

    #head h1 span {
        text-align: left;
        font-size: 14px;
        padding-left: 15px;
    }

    #head h1.header-logo span.logo-image {
        width: 20%;
    }


    /* ---container--- */

    .container #header-image {
        margin-bottom: 40px;
    }

    .container #header h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .container #header h2 span {
        font-size: 42px;
        display: block;
        margin: 0px;
    }

    .container #header h2 span.blandname {
        font-size: 32px;
        margin-top: 30px;
    }


    .container .contents {
        padding: 30px 50px;

    }

    .container .thumb {
        width: 40%;
        box-sizing: border-box;
    }

    .container .text {
        width: 60%;
        box-sizing: border-box;
    }

    .container .text h3 {
        font-size: 30px;
    }

    .container .text p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .container .text p.lead {
        font-size: 16px;
    }

    .container .text p.lead a {
        color: #666;
    }

    .container .text p.lead a:hover {
        color: #999;
    }

    .container .text p span {
        font-size: 16px;
    }


    .container .section1,
    .container .section2,
    .container .products {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .container .section1 .thumb {
        float: left;
    }

    .container .section1 .text {
        float: right;
        padding-left: 30px;
    }

    .container .section2 .thumb {
        float: right;
    }

    .container .section2 .text {
        float: left;
        padding-right: 30px;
        /*リンク設置したらとる*/
        color: #444444;
    }

    .container .products {
        border-top: 1px solid #000;
        padding-top: 30px;
    }

    .container .products .pic {
        width: 40%;
        float: left;
    }

    .container .products .text {
        width: 60%;
        float: right;
        padding-left: 30px;
    }

    .container .products .text h2 {
        font-size: 20px;
    }

    .container .products .text h4 {
        font-size: 20px;
    }

    .container .products .text h3 {
        font-size: 40px;
    }

    .container .products .text h3 span {
        font-size: 18px;
    }

    .btn_official a {
        font-size: 34px;
    }



    /* ---footer--- */
    .page-footer {
        clear: both;
        padding-top: 0px;
        text-align: left;
        background: #000;
        text-align: center;
    }

    .page-footer .footer-copyright {
        font-size: 66%;
        padding: 20px 20px;
    }

    .page-footer .footer-copyright a {
        color: #FFF;
        text-decoration: none;
    }



}
