@charset "UTF-8";

/*◎768px以下*/
@media screen and (max-width: 768px) {
}

/*◎768px以上*/
@media screen and (min-width: 768px) {
}

/*◎768〜1240の間の幅*/
@media screen and (min-width: 768px) and (max-width: 1240px){
}




/*------------------------------*/
/*----------header---------*/
/*------------------------------*/
.header{
background-color: var(--color-black-base);
padding: 10px 0;
}
.header .content{
}
.header .content h2{
display: grid;
grid-template-columns: 50% 50%;
  place-content: center;
  place-items: center;
}
.header .content h2 .logo_left{
width: 50px;
justify-self: start;
}
.header .content h2 .logo_right{
width: 180px;
justify-self: end;
}




/*------------------------------*/
/*----------main---------*/
/*------------------------------*/
.main{
background-image: url(../img/main_back_sp.webp);
background-position: center top;
background-size: 300%;
padding: 40px 0 70px 0;
}

.main h1{
width: 90%;
margin: 62vw auto 30px auto;
}

.main_copy{
width: 90%;
text-align: center;
margin: 7vw auto 20px auto;
}

.main_about{
margin-top: 30px;
}

.main_bt{
width: 75%;
margin: 30px auto 0 auto;
}
.main_bt img{
}



/*------------------------------*/
/*----------lineup---------*/
/*------------------------------*/
.lineup{
background-color: var(--color-white-cloudy);
padding: 50px 0;
}
.lineup h3{
width: 80%;
margin: 0 auto;
}


/*-----------------------------------------------------*/
/*---------------------- swiper ----------------------*/
/*-----------------------------------------------------*/
/* mainSwiper */
.mainSwiper {
width: 100%;
margin-top: 50px;
}
.mainSwiper .swiper-slide .img{
width: 90%;
display: block;
margin: 0 auto;
}
.mainSwiper .swiper-slide .img.sp_no{
display: none;
}

.mainSwiper .swiper-slide .lineup_bt{
display: block;
width: 70%;
margin: 10px auto 30px auto;
}


/* tmbSwiper */
.tmbSwiper .swiper-slide-thumb-active {
      border: 2px solid var(--color-red);
    }

/* ページネーション */
/* デフォルトのnext、prevを消す */
.swiper-button-next, .swiper-button-prev {
    ::slotted(svg), svg {
  display: none;
    }
}

.swiper-button-next,
.swiper-button-prev {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
width: 10px;
}
.swiper-button-next{
        right: -20px;
  background-image: url(../img/icon_next.svg);
}
.swiper-button-prev{
        left: -20px;
  background-image: url(../img/icon_prev.svg);
}
/* 前へ次へが無い時、薄くするか非表示にするか */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled{
opacity:0;
}

/*  */
.slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 3);
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}







/*-----------------------------------------------------*/
/*---------------------- info ----------------------*/
/*-----------------------------------------------------*/

.info{
background: linear-gradient(to bottom, #231815, #413d3c);
padding: 50px 0;
overflow-x: clip;
}
.info h3{
width: 90%;
margin: 0 auto 30px auto;
}
.info .info_con{
width: 100vw;
margin: 0 calc(50% - 50vw);
}




/*-----------------------------------------------------*/
/*---------------------- point ----------------------*/
/*-----------------------------------------------------*/

.point_title{
background-color: var(--color-red);
overflow: hidden;
}
.point_title .img01{
display: block;
margin: 30px auto;
width: 90%;
}


.point_img{
padding: 20px 0;
background: linear-gradient(to bottom, var(--color-red) 50%, #484545 50%);
text-align: center;
}
.point_img img{
width: 70%;
}


.point_type{
background: linear-gradient(to bottom, #484545, #231815);
padding: 0px 0 80px 0;
}
.point_type .type_op_txt,
.point_type .type_txt{
display: block;
margin-bottom: 30px;
}

.type_contact{
padding-top: 40px;
}
.type_contact .type_contact_txt{
display: block;
margin: 0 auto 20px auto;
width: 90%;
}
.type_contact .type_contact_bt{
display: block;
width: 70%;
margin: 0 auto;
}




/*-----------------------------------------------------*/
/*---------------------- inspection ----------------------*/
/*-----------------------------------------------------*/

.inspection{
background-color: var(--color-red);
overflow: hidden;
padding: 20px 0 0 0;
overflow-x: clip;
}
.inspection .wrap{
width: 100vw;
margin: 40px calc(50% - 50vw);
}



/*-----------------------------------------------------*/
/*---------------------- soudan ----------------------*/
/*-----------------------------------------------------*/
.soudan{
padding: 30px 0;
background: linear-gradient(to bottom, #484545, #231815);
}
.soudan img{
width: 100%;
display: block;
margin: 0 auto;
}




/*-----------------------------------------------------*/
/*---------------------- access ----------------------*/
/*-----------------------------------------------------*/

.access{
margin: 50px 0 100px 0;
}

.access .access_info{
}
.access .access_info .txt h3{
width: 60%;
margin:0 auto 30px auto;
}
.access .access_info .txt p{
font-size: calc(16 * var(--rem));
margin-bottom: 30px;
}
.access .access_info .txt span{
display: inline-block;
}

.access_info .map{
width: 100%;
}


.access .small{
margin: 30px 0;
font-size: calc(14 * var(--rem));
text-align: center;
}