@charset "utf-8";

/* CSS Document */
.pc{
    display: block;
}
html {
  background-color: #fff;
  overflow: hidden;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;

}

.wrap{
    background-image:url("/congesting-tendo/images/bg_karaoke.webp") ;
    background-size: contain;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

header{
    width: 86vw;
    height: 17vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.colorful{
    font-family: "futura-pt", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #C0D247;
    margin: 0 auto;
    font-size: 4.5vh;
    width: auto;
    text-align: center;
}

.colorful span:nth-of-type(even){
    color:#56C0D8 ;
}


.box_header{
    display: flex;
    align-items: center;
    height: 100%;
    width: 78vw;
    justify-content: space-between;
}

.inner_header{
    display: flex;
    width: 33.9vw;;
    justify-content: space-between;
    align-items: end;
}

.wrap_sample_head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: 16.3vw;

}


.header_ttl{
    margin: 0;
    font-size: 4.0vw;
    line-height: 0.9;
}

.header_ttl span{
    font-size: 3.2vw;
}

.wrap_sample{
    margin-top: 3.5vh;
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 16.3vw;
}

.box_sample_open,.box_sample_close{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border-radius: 10px;
    height: 7.3vw;
    width: 7.3vw;
}

.box_sample_open{
    background-color: #C0D247;
    color: #fff;
}

.box_sample_close{
    background-color: #8E8E8E;
    color: #4B4B4B;
}

.main{
    display: flex;
    width: 86vw;
    flex-wrap: wrap;
}

.box_down{
    height: 40%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 2.6vh;
}

.down_karaoke{
    background-color: #C0D247;
    height: 30.5vh;
    border-radius: 10px;
    padding: 1.85vh;
    position: relative;
}

.down_karaoke img{
    height: auto;
    width: 14.3vw;
}

.ttl_karaoke{
    color: #fff;
    font-size: 2.5vw;
    margin: 0;
    text-align: center;
    margin-top: 1vh;
}

.chara_karaoke{
    width: auto;
    height: inherit;
}

.used, .mainte{
    background-color: #8E8E8E;
    filter: grayscale(100%);
}

.used .ttl_karaoke, .mainte .ttl_karaoke{
    color: #4B4B4B;
}

.used .ttl_bath, .mainte .ttl_bath{
    color: #4B4B4B;
}

.used img, .mainte img{
filter: blur(3px);
}

.used::after{
    content: "使用中";
    color: #fff;
    position: absolute;
    font-size: 3vw;
    width: max-content;
    font-weight: bold;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.mainte::after{
    content: "メンテナンス中";
    color: #fff;
    position: absolute;
    font-size: 2vw;
    width: max-content;
    font-weight: bold;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

