/* CSS Document */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

h1,h2,h3,h4,h5,h6,p,ul,li,ol,dl,dt,dd{
margin: 0;
padding: 0;
}

.t-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.t-logo__wrapper {
    margin-top: -6%;
}
.t-logo {
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
    width: 396px;
    height: 78px;
}

.t-soon {
    text-align: center;
    color: #aaa;
    margin-top: 32px;
    font-size: 1rem;
    font-family: sans-serif;
}
@media screen and (max-width: 768px) {
.t-logo {
    width: 50vw;
    height: 10vw;
    background-size: contain;
}
.t-soon {
    font-size: 0.75rem;
}
}
/*---------------------------------------------------*/
body{
font-family: "Noto Sans JP", sans-serif;
}
/*---------------------------------------------------*/
#loading{
width: 100vw;
height:100vh;
background-color: #333333;
position: fixed;
}
.spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.spinner > div {
  background-color: #aaaaaa;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/*---------------------------------------------------*/
#wrapper{
display: none;
}

.logo_b-innovation {
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
    width: 248px;
    height: 50px;
    background-size: contain;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.logo_wrapper {
    background-color: #FFFFFF;
    display: block;
    width: 383px;
    height: 112px;
    border-bottom-right-radius: 16px;
    border-top: 4px solid #CCCCCC;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    animation: logo 1s ease;
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
}
@keyframes logo {
  0% {
    transform:translateX(-383px);
  }

  100% {
    transform:translateX(0px);
  }
}
.logo_wrapper:before {
    border-top: 4px solid #FF0000;
    position: absolute;
    width: 112px;
    content: '';
    top: -4px;
    left: 0px;
}

.hero-area {
    background-color: #333333;
    height: 100vh;
}

.hero-img {
    width: 50vw;
    height: 55vh;
    background-color: #555555;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    animation: herobase 1s ease;
}
@keyframes herobase {
  0% {
    width: 0vw;
  }

  100% {
    width: 50vw;
  }
}

.contents {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.hero-txt_wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}
.hero-shoulder{
    color: #777777;
    font-size: 0.875rem;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    margin-bottom: 24px;
}
@keyframes slidein {
  0% {
    transform:translateX(-64px);
    opacity: 0;
  }

  100% {
    transform:translateX(0px);
    opacity: 1;
  }
}
.hero-catch{
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 120%;
    font-weight: 700;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.3s;
    animation-fill-mode:forwards;
}
.hero-name{
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 48px;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.6s;
    animation-fill-mode:forwards;
}
.hero-txt{
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 120%;
    margin-top: 48px;
    font-weight: 100;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.9s;
    animation-fill-mode:forwards;
}

.nav-wrapper {
    position: absolute;
    right: 48px;
    top: 49px;
}

.nav-contact {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #333333;
    border: 1px solid #555555;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-radius: 4px;
    transition:.3s; 
}
.nav-contact:hover {
    background-color: #555555;
}

.hero-txt-color {
    color: #FF0000;    
}

.hero-video {
    width: 0%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    animation: herovideo 1s ease;
    animation-delay: 1s;
    animation-fill-mode:forwards;
}
@keyframes herovideo {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.dark-area {
    background-color: #333333;
    padding-top: 56px;
    padding-bottom: 56px;
}

.lead-first {
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    margin-bottom: 72px;
}
.lead-first:before {
    position: absolute;
    content: '';
    border-bottom: 4px solid #FF0000;
    width: 100px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.product_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.product {
    width: 48%;
    background-color: #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    background-image: url(../img/grey.png);
    background-repeat: repeat-x;
    background-position: center bottom;
}

.product-pic {
    width: 100%;
    height: auto;
}

.product-name {
    font-size: 2rem;
    color: #333333;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 16px;
    margin-bottom: 16px;
    padding-top: 0px;
    margin-top: 0px;
    text-align: center;
}

.product-txt-area {
    background-color: #F5F5F5;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.product-pic-area {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;    
}

.spec-dt {
    color: #777777;
    font-size: 1rem;
    font-weight: 400;
    width: 28%;
}
.spec-dd {
    color: #777777;
    font-size: 1rem;
    font-weight: 400;
    width: 60%;
}

.spec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-row-gap: 16px;
    margin-bottom: 0px;
}

.product-name-sub {
    font-size: 1rem;
}

.lll-area {
    border: 1px solid #aaaaaa;
    margin-top: 48px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
}

.lll-title {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 16px;
}

.lll-list {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 8px;
}

.lll-ul {
    margin-left: 1.5em;
}

.map {
    width: 100%;
    height: 50vh;
    border-radius: 8px;
}

.company-dt {
    color: #FFFFFF;
    font-size: 1rem;
    width: 20%;
    border-bottom: 1px solid #777777;
    padding-bottom: 16px;
    margin-bottom: 0px;
    line-height: 150%;
}
.company-dd {
    color: #FFFFFF;
    font-size: 1rem;
    width: 80%;
    border-bottom: 1px solid #777777;
    padding-bottom: 16px;
    margin-bottom: 0px;
    line-height: 150%;
}

.company-dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-row-gap: 16px;
    margin-bottom: 48px;
}

.copyright {
    color: #777777;
    font-size: 0.75rem;
    text-align: center;
}

.light-area {
    background-color: #DDDDDD;
    padding-top: 56px;
    padding-bottom: 56px;
}

.lead-second {
    color: #333333;
    font-size: 1.5rem;
    border-left: 8px solid #FF0000;
    padding-left: 16px;
    margin-bottom: 32px;
}

.content-base-white {
    background-color: #FFFFFF;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    margin-bottom: 24px;
}

.lead-third {
    font-size: 1.25rem;
    background-color: #333333;
    color: #FFFFFF;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.txt {
    color: #333333;
    font-size: 1rem;
    line-height: 180%;
}

.sub-txt {
    color: #555555;
    font-size: 0.875rem;
    line-height: 160%;
    margin-top: 16px;
}

.fig {
    width: 100%;
}

.fig-wrapper {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 32px;
}

.fig-caption {
    margin-top: 16px;
    text-align: center;
    color: #333333;
    font-size: 1rem;
}

.info-area__inner{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #555555;
	padding-top: 24px;
	padding-bottom: 0px;
}
.info-area__title{
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 2rem;
}
.info-area__dl{}
.info-area__dt{
    color: #aaaaaa;
    font-size: 1rem;
    float: left;
    padding-top: 24px;
    line-height: 160%;
}
.info-area__label{
	color: #ffffff;
	background-color: #555555;
	font-size: 0.75rem;
	line-height: 100%;
	padding-top: 6px;
	padding-right: 12px;
	padding-bottom: 6px;
	padding-left: 12px;
	margin-left: 16px;
	border-radius: 2px;
	display: inline-block;
}
.info-area__dd{
    color: #FFFFFF;
    font-size: 1rem;
    padding-left: 240px;
    border-top: 1px solid #555555;
    padding-top: 24px;
    padding-bottom: 24px;
    line-height: 160%;
}
.info-area__dd a{
	color: #FFFFFF;
}
@media screen and (max-width: 768px) {

.logo_b-innovation {
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
    width: 40vw;
    height: 12vw;
    background-size: contain;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-position: 0% center;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.logo_wrapper {
    background-color: #FFFFFF;
    display: block;
    width: 50vw;
    height: 15vw;
    border-bottom-right-radius: 16px;
    border-top: 4px solid #CCCCCC;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    animation: logo 1s ease;
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
}
.logo_wrapper:before {
    border-top: 4px solid #FF0000;
    position: absolute;
    width: 112px;
    content: '';
    top: -4px;
    left: 0px;
}

.hero-area {
    background-color: #333333;
    height: 100vh;
}

.hero-img {
    width: 93vw;
    height: 45vh;
    background-color: #555555;
    position: absolute;
    right: 0px;
    top: 75%;
    transform: translateY(-50%);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    animation: herobase 1s ease;
}

.contents {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hero-txt_wrapper {
    position: absolute;
    top: 20vw;
    transform: inherit;
    z-index: 9998;
}
.hero-shoulder{
    color: #777777;
    font-size: 0.75rem;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    margin-bottom: 16px;
}
.hero-catch{
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 700;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.3s;
    animation-fill-mode:forwards;
}
.hero-name{
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 32px;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.6s;
    animation-fill-mode:forwards;
}
.hero-txt{
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 120%;
    margin-top: 24px;
    font-weight: 100;
    opacity: 0;
    animation: slidein 1s ease;
    animation-delay: 1.9s;
    animation-fill-mode:forwards;
}

.nav-wrapper {
    position: absolute;
    right: 16px;
    top: 24px;
}

.nav-contact {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #333333;
    border: 1px solid #555555;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-radius: 4px;
    transition:.3s; 
    font-size: 0.875rem;
}
.nav-contact:hover {
    background-color: #555555;
}

.hero-txt-color {
    color: #FF0000;    
}

.hero-video {
    width: 0%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    animation: herovideo 1s ease;
    animation-delay: 1s;
    animation-fill-mode:forwards;
}

.dark-area {
    background-color: #333333;
    padding-top: 56px;
    padding-bottom: 56px;
}

.lead-first {
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 72px;
}
.lead-first:before {
    position: absolute;
    content: '';
    border-bottom: 2px solid #FF0000;
    width: 60px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.product_wrapper {
    display: block;
    justify-content: inherit;
    gap: 32px;
}

.product {
    width: 100%;
    background-color: #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 24px;
}

.product-pic {
    width: 100%;
    height: auto;
}

.product-name {
    font-size: 2rem;
    color: #333333;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 16px;
    margin-bottom: 16px;
    padding-top: 0px;
    margin-top: 0px;
    text-align: center;
}

.product-txt-area {
    background-color: #F5F5F5;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.product-pic-area {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;    
}

.spec-dt {
    color: #777777;
    font-size: 0.875rem;
    font-weight: 400;
    width: 30%;
}
.spec-dd {
    color: #777777;
    font-size: 0.875rem;
    font-weight: 400;
    width: 65%;
}

.spec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-row-gap: 16px;
    margin-bottom: 0px;
}

.product-name-sub {
    font-size: 1rem;
}

.lll-area {
    border: 1px solid #aaaaaa;
    margin-top: 48px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
}

.lll-title {
    color: #aaaaaa;
    font-size: 1rem;
    margin-bottom: 16px;
}

.lll-list {
    color: #aaaaaa;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.lll-ul {
    margin-left: 1.5em;
}

.map {
    width: 100%;
    height: 50vh;
    border-radius: 8px;
}

.company-dt {
    color: #FFFFFF;
    font-size: 0.875rem;
    width: 20%;
    border-bottom: 1px solid #777777;
    padding-bottom: 16px;
    margin-bottom: 0px;
    line-height: 150%;
}
.company-dd {
    color: #FFFFFF;
    font-size: 0.875rem;
    width: 80%;
    border-bottom: 1px solid #777777;
    padding-bottom: 16px;
    margin-bottom: 0px;
    line-height: 150%;
}

.company-dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-row-gap: 16px;
    margin-bottom: 48px;
}

.copyright {
    color: #777777;
    font-size: 0.75rem;
    text-align: center;
}

.light-area {
    background-color: #DDDDDD;
    padding-top: 56px;
    padding-bottom: 56px;
}

.lead-second {
    color: #333333;
    font-size: 1.25rem;
    border-left: 8px solid #FF0000;
    padding-left: 16px;
    margin-bottom: 32px;
}

.content-base-white {
    background-color: #FFFFFF;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    margin-bottom: 16px;
}

.lead-third {
    font-size: 1rem;
    background-color: #333333;
    color: #FFFFFF;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.txt {
    color: #333333;
    font-size: 0.875rem;
    line-height: 180%;
}

.sub-txt {
    color: #555555;
    font-size: 0.75rem;
    line-height: 160%;
    margin-top: 16px;
}

.fig {
    width: 100%;
}

.fig-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 32px;
}

.fig-caption {
    margin-top: 16px;
    text-align: center;
    color: #333333;
    font-size: 0.875rem;
}

.loading {
    background-color: #333333;    
}
.info-area__inner{
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.info-area__dt{
	float: none;
	border-top: 1px solid #555555;
}

.info-area__dd{
	padding-left: 0px;
	border-top: none;
	padding-top: 8px;
}
}
.txt-white {
    color: #FFFFFF;
}

.mt1 {
    margin-top: 32px;    
}

.mb1 {
    margin-bottom: 32px;    
}



.spec-link {
    margin-top: 24px;
    display: block;
    color: #15468A;
    font-weight: 700;
    background-image: url(../img/ar.svg);
    background-repeat: no-repeat;
    padding-left: 16px;
    background-position: left center;
    background-size: 8px auto;
}
.product-contact {
    display: flex;
    justify-content: center;
}
.product-contact-link-group {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.product-contact-link {
    margin-top: 24px;
    display: block;
    color: #ffffff;
    font-weight: 700;
    background-image: url(../img/ar.svg);
    background-repeat: no-repeat;
    padding-left: 16px;
    background-position: left center;
    background-size: 8px auto;
}
