@charset "utf-8";
/* extraサイズ含む基本画面レイアウト */

body{
    font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    color: #333;
    font-size:1rem;
    line-height:1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

*{box-sizing: border-box;}

ul{
    margin:0;
    padding: 0;
    list-style: none;
}

a{
    color: #333;
    text-decoration: none;
    outline: none;
}

img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* font-family */
#splash-logo,
.top-lead,
.top-menu,
h1,
h2,
h3 span,
#g-nav,
/* #pc-nav, */
nav,
.hamberger,
#footer{
    font-family: 'メイリオ';
    /* font-family: 'Lato', sans-serif; */
    letter-spacing: 0em;
    /* letter-spacing: 0.1em; */
}

#header{
    z-index:4;
}

#container{
    z-index:3;
}

#footer{
    z-index:5;
}

/* splash */
#splash-logo{
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    /* text-transform: uppercase; */
    color: #CC0033;
}

#pc-nav{
    margin-top: 20px;
}

#pc-nav span.bgLRextend::before{
    background:#333;
}

#modal {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color:rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    padding: 5%;
    z-index: -1;
    opacity: 0;
}

#top-canvas{
    position: fixed;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%;
    z-index: 1;
}

/* heading */
h1{
    /* text-transform: uppercase; */
    font-size: 1.5rem;
    position: absolute;
    top: 40%;
    left: 5%;
    line-height: 1;
    letter-spacing: 0.2em;
}

h1 a{
    color:#CC0033;
}

h2{
    /* text-transform: uppercase; */
    font-size: 2.5rem;
}

/* menu */
.top-menu{
    position: fixed;
    bottom:20%;
    right:0%;
    font-size:2rem;
    /* text-transform: uppercase; */
    font-weight: bold;
    line-height: 2;
    color: #FFF;
    /* background-color: #FFF; */
    z-index: 2;
}

.top-menu a{
    color: #666;
}

.top-menu a:hover{
    color: #CCC;
}

.top-menu img{
    opacity: 0.5;
    width: 20%;
}

.top-menu img:hover{
    opacity: 1;
}


/* lead */
.top-lead{
    position: fixed;
    top:11%;
    left:6%;
    font-size:2.5rem;
    /* text-transform: uppercase; */
    font-weight: bold;
    line-height: 1.5;
    color: #FFF;
    opacity: 0.8;
}

.top-lead span.bgLRextend::before{
    background:#000;
}

.bottom-lead{
    position: fixed;
    bottom:11%;
    left:6%;
    font-size:2.5rem;
    /* text-transform: uppercase; */
    font-weight: bold;
    line-height: 1.5;
    color: #FFF;
    opacity: 0.7;
}

/* main-area */
#main-area{
    width:90%;
    margin:0 auto;
    padding: 20px 0;
    max-width: 990px;
}

/* topics */
#topics{
    border-left:3px solid #000;
    padding: 0 0 0 20px;
}

#topics h2{
    font-size: 1.5rem;
}

#topics h2 span.bgLRextend::before{
    background:#333;
}

.bx-wrapper{
    box-shadow:none;
    border:none;
}

/* home */
#home{
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    margin:0 0 0px 0;
}

#home .img{
    width:40%;
    min-height: 480px;
    background:url("../img/home.png") no-repeat top;
    background-size: cover;
}

#home .content{
   width:50%;
    text-align: left;
}

#home h2{
    color:#CC0033;
    margin:0 0 10px 0;
}

#home p{
    line-height: 2;
    margin: 0 0 50px 0;
}

#home .home-lead,
#business .business-lead,
#products .products-lead,
#service .service-lead{
    position: relative;
    color:#CC0033;
    font-size:1.3rem;
    font-weight: bold;
    margin: 0 0 60px 0;
}

#home .home-lead::after,
#business .business-lead::after,
#products .products-lead::after,
#service .service-lead::after{
    content:'';
    position: absolute;
    bottom:-20px;
    left:0;
    background:#CC0033;
    width:100%;
    height: 3px;
}

/* service products */
#service h2,
#business h2,
#products h2{
    text-align: center;
    margin:50px 0 50px 0;
    color: #CC0033;
}

#service .service-area,
#business .business-area,
#products .products-area{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:0 0 100px 0;
}

#service .service-area::after,
#business .business-area::after,
#products .products-area::after{
    content:'';
    position: absolute;
    width: 0%;
    height: 0%;
    background:#f3f3f3;
    left:10%;
    top:10%;
    border-radius: 0%;
    z-index: -1;
}

#service .service-area:nth-of-type(2n+1),
#business .business-area:nth-of-type(2n+1),
#products .products-area:nth-of-type(2n+1){
     flex-direction: row-reverse;
}

#service .service-area .img,
#business .business-area .img,
#products .products-area .img{
    width:40%;
}

#service .service-area .content,
#business .business-area .content,
#products .products-area .content{
    width:55%;
    background:#fff;
    box-shadow: 0 0 20px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top:0px;
}

#service .service-area .content-area,
#business .business-area .content-area,
#products .products-area .content-area{
    padding:40px;
}

#service .service-area .content-area h3,
#business .business-area .content-area h3,
#products .products-area .content-area h3{
    text-align: center;
    font-size: 1rem;
    margin: 0 0 30px 0;
}

#service .service-area .content-area h3 span,
#business .business-area .content-area h3 span,
#products .products-area .content-area h3 span{
    font-weight: bold;
    /* text-transform: uppercase; */
    display: block;
    font-size: 1.2rem;
}

#service .service-area .content-area p,
#business .business-area .content-area p,
#products .products-area .content-area p{
     margin:0 0 30px 0;
}

#service .btn,
#business .btn,
#products .btn{
    text-align: right;
}

#service .left_btn,
#business .left_btn,
#products .left_btn{
    text-align: left;
}

/* product_nz3701a*/
.twin{
    display: flex;
    justify-content: space-between;
}
.twin figure{
    display: flex;
    width: 35%;
}
.twin .content{
    width: 60%;
}
.info img{
    width: auto;
    max-width: 100%;
}

.twin .p05{ width: 05%; }
.twin .p15{ width: 15%; }
.twin .p25{ width: 25%; }
.twin .p35{ width: 35%; }
.twin .p45{ width: 45%; }
.twin .p55{ width: 55%; }
.twin .p65{ width: 65%; }
.twin .p75{ width: 75%; }
.twin .p85{ width: 85%; }
.twin .p95{ width: 95%; }

.twin .p10{ width: 10%; }
.twin .p20{ width: 20%; }
.twin .p30{ width: 30%; }
.twin .p40{ width: 40%; }
.twin .p50{ width: 50%; }
.twin .p60{ width: 60%; }
.twin .p70{ width: 70%; }
.twin .p80{ width: 80%; }
.twin .p90{ width: 90%; }
.twin .p100{ width: 100%; }


.twin img{}

/* about */

#service,
#business,
#products,
#about{
    margin: 0 0 200px 0;
}

#about h2{
    text-align: center;
    color:#CC0033;
    margin:50px 0 50px 0;
}

#about .about-list{
    width: 96%;
    /* max-width: 920px; */
    margin: 0 auto;
    padding: 10px;
    /* box-shadow: 0 0 20px #ccc; */
}

#about .about-list li{
    border-bottom: 1px solid #ccc;
    margin:0 0 15px 0;
    padding: 0 0 15px 0;
}

#about .about-list dl{
    display: flex;
    justify-content: space-between;
}

#about .about-list dt{
    width:35%;
    padding: 0 0 0 40px;
}

#about .about-list dd{
    width:60%;
}

/* tab */
.tab{
    display: flex;
    flex-wrap: wrap;
}
.tab li a{
    display: block;
    background:#ddd;
    margin:0 2px;
    padding:10px 20px;
    font-size: 1rem;
}
.tab li a:hover{
    color: #CC0033;
    font-weight: bold;
}
.tab li.active a{
    background:#fff;
    box-shadow: 0 0 10px 5px #ccc;
    color: #CC0033;
    font-weight: bold;
}


/*エリアの表示非表示と形状*/
.area {
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
    background: #fff;
    padding:0px 0px;
    /* box-shadow: 0 0 20px #ccc; */
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 0s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* .tab{
    box-shadow: -10px -10px 10px -10px #ccc;
} */

/* top */
#news{
    margin:0 0 200px 0;
}

#news h2{
    text-align: center;
    margin:50px 0 100px 0;
    color: #CC0033;
}

.news-bg{
    position: relative;
    height: 55vh;
    background:url("../img/pict_05.jpg") no-repeat center;
    background-size:cover;
    margin: 0 0 200px 25%;
}

.news-bg::after{
    content:'';
    position: absolute;
    top:20%;
    left:-32%;
    width:100%;
    height:55vh;
    background:#f3f3f3;
    z-index: -1;
}

/* contact */
#contact{
    margin:0 0 100px 0;
}

#contact h2{
    text-align: center;
    margin:50px 0 100px 0;
    color: #CC0033;
}

#contact .form-list{
    width:100%;
    max-width: 700px;
    margin: 0 auto;
}

#contact input , button , textarea , select {
    margin:0;
    padding:0;
    border:none;
    outline:none;
    background:none;
    font-size: 16px;
}

#contact .form-list input[type='text'] ,
#contact .form-list input[type='email'] ,
#contact .form-list textarea{
    width:100%;
    border:1px solid #666;
    background:#fff;
    padding: 10px;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

#contact .form-list input[type='text'] , input[type='email'] {
    height:50px;
}

#contact .submit-btn{
    width:152px;
    margin: 0 auto;
}

#contact input[type='submit']{
   border:2px solid #333;
    color: #333;
    text-align: center;
    padding: 5px 20px;
    width:152px;
    margin: 0 auto;
    transition: all .3s;
}

#contact input[type='submit']:hover{
    background: #333;
    color: #fff;
}

#contact .form-list dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:0 0 20px 0;
}

#contact .form-list dt{
    width:30%;
}

#contact .form-list dd{
    width:66%;
}

#contact .form-list textarea {
    height:200px;
}

/* footer */
#footer{
    /* position: fixed;/*header固定*/
    /* height:50px;/*Headerの高さ設定*/
    /* width:100%; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* background: #fff; */

    padding: 100px 0;
    border-top:1px solid #333;
    text-align: center;
    background: #fff;
    position: relative;
    /* text-transform: uppercase; */
}

#footer .footer-logo{
    font-weight: bold;
    letter-spacing: 0.3em;
    margin: 0 0 50px 0;
    color: #666;
}

#footer .footer-logo img{
    width:70px;
}

#footer small{
     color:#888;
}

.tabbed-page{
    background:#fff;
    box-shadow: 0 0 3px 3px #ccc;
}
