@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;900&display=swap');
*{
    margin: 0;
    padding: 0;
}

/* トップ画像 */
.guideUnder__img img {
    width: 100vw;
    height: 500px;
    object-fit: cover;
}


/* top-text */
.guideUnder{
    background-color: #F7F5F5;
    padding: 30px;
}
.guideUnderText{
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.guideUnderTitle h1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:400;
    text-align: center;
}
.guideUnderSumallText{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:400;
    text-align: left;
    margin: 0 auto;
    /* max-width: 650px; */
}
.guideUnderSumallText{
    margin: 30px;
}
.guideUnderSumallText{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:300;
    line-height: 2;
}
@media screen and (max-width: 768px){
    .img img{
        height: 250px;
    }
    .guideUnderText {
        font-size: 25px;
    }
    .guideUnderSumallText {
        font-size: 15px;
    }
    .guideUnderText{
        padding: 0;
    }
    .guideUnderSumallText{
        /* text-align: center; */
        margin: 20px 0;
    }
    .guideUnderTitle h1{
        font-size: 25px;
    }
}
/* リスト */
.list{
    border:1px solid #000000;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    margin: 30px 0;
}
.listTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight:300;
}
.equipmentList{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight:300;
    margin: 30px 0;
    /* width: 50%; */
}
.equipment1{
    width: 90%;
    border-bottom: solid 1px #000000;
    padding: 0 10px;
    line-height: 2;
}
.listTop{
    /* display:flex;
    flex-wrap: wrap; */
}
@media screen and (max-width: 768px){
    .listTitle{
        font-size: 22px;
    }
    .list{
        padding: 10px;
        text-align: center;
    }
    .equipmentList{
        font-size: 18px;
        width: 100%;
        margin: 0 auto;
    }
    .equipment1{
        width: 100%;
        text-align: left;
        line-height: 2;
    }
    .listTop{
        margin: 20px 0;
    }
}
/* priceList */
.price{
    /* margin: 30px; */
    /* display: flex; */
    justify-content:center;
    max-width: 1000px;
    margin: 40px auto;

}
.price .image img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.image{
    margin-bottom: 50px;
}
.priceList{
    background-color: #DCD5CF;
    width: 100%;
    padding: 50px;
    text-align: left;
    /* display: flex; */
    flex-wrap: wrap;
}
.priceTitle{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:300;
    font-size: 30px;
    /* padding-bottom: 20px; */
}

/* テーブル */
.tbl{
    width: 100%;
    /* height: 300px; */
}
.tbl th{
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    border: 1px solid;
    padding: .5em 0;
}
table, th, td{
    border-collapse: collapse;
    vertical-align: middle;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:300;
    font-size: 20px;
}
.tbl td{
    border: 1px solid;
}
.tbl-money{
    text-align: center;
}
.individual{
    text-align: center;
}
td.tbl-money{
    border-bottom: none;
}
.title{
    padding-left: 10px;
}
@media screen and (max-width: 640px) {
  .tbl {
    width: 100%;
  }
  .tbl .thead {
    display: none;
  }
  .tbl tr {
    width: 100%;
  }
  .tbl td {
    display: block;
    text-align: right;
    width: 100%;
    border-bottom: none;
    height: 30px;
    padding-left: 0;
    line-height: 2;
    padding: 0 10px;
  }
  .last td:last-child{
    border-bottom:1px solid;
  }
  .tbl td:first-child {
    text-align: center;
    font-weight:900;
  }
  .tbl td:before {
    content: attr(data-label);
    float: left;
  }
  table, th, td{
      font-size: 15px;
  }
}

@media screen and (max-width: 1000px){
    .price{
        text-align: center;
    }
    .price .image img{
        display: none;
    }
    .image{
        display: none;
    }
    .priceList{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
        .price{
            margin: 0;
        }
        .priceTitle{
            font-size: 22px;
        }
        .time, .money{
            font-size: 15px;
            width: 50%;
            line-height: 2;
        }
        .money{
            margin-left: 15px;
        }
        .priceList{
            padding: 10px;
            display: block;
        }
}
@media screen and (max-width: 400px){

}
/* スクロール時 */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
