@charset "utf-8";

/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */
/* 画面外にいる状態 */
.effect {
  opacity : 0;
  transition : all 900ms 300ms ease-out;
  transform: translate(0,0);
}
/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px);
}


/* ************************************************ 
*	ショールーム
* ************************************************ */	
.showroom-box {
position: relative;
width: 100%;
margin: 0 0 0 0;
padding: 230px 0 200px 0;
background-color: rgba(21,21,21,1);
}
.showroom-inner {
width: 620px;
max-width: 90%;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
margin: 0 auto;
padding: 0;
}
.showroom-inner h3{
font-family: 'Sawarabi Mincho';
font-size: 21px;
font-weight:normal;
color: #fff;
text-align: center;
margin: 90px 0 0 0;
padding: 20px 20px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
letter-spacing: 0.1em;
}
.showroom-inner h3 span{
font-size: 30px;
color: #fff;
}



/* ************************************************ 
*   レスポンシブ
* ************************************************ */
/* PC 画面の横幅が960px以上 */
@media only screen and (min-width: 960px){

}

/* Tablet (Portrait) 画面の横幅が768px〜959pxまで */
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/* Mobile (Portrait) 画面の横幅が767pxまで */
@media only screen and (max-width: 767px) {
.showroom-box {
margin: 0 0 0 0;
padding: 150px 0 150px 0;
background-color: #212121;
}
.showroom-inner h3{
font-size: 5vw;
margin: 70px 0 0 0;
padding: 20px 20px;
}
.showroom-inner h3 span{
font-size: 7vw;
}

}

