@charset "utf-8";

*{box-sizing: border-box;}

.page-tit{
  margin-bottom: 3rem;
  text-align: center;
  color: #000;
}
.page-tit > h3{
  font-size: 24px;
  font-weight: 700;
}

.sp-wrap{
  width: 100%;
  border-top: 1px solid #ddd;
}
.sp-box{
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.sp-cont{
  width: 80%;
  display: flex;
}
.sp-thum{
  display: flex;
  width: 100px;
}
.sp-thum img{
  width: 100%;
  border: 1px solid #eee;
}
.sp-txt{
  padding-left: 1.5rem;
}
.sp-txt > a{
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sp-txt > p > span{
  font-size: 12px;
  color: #999;
  display: inline-block;
  position: relative;
}
.sp-txt > p{
  margin-bottom: 5px;
}
.sp-txt > p > span::after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #999;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sp-txt > h5{
  font-size: 14px;
  color: #000;
}
.sp-btn-wrap{
  width: 20%;
  display: flex;
  justify-content: flex-end;
}
.sp-btn{
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 5px;
  color: #555;
  font-weight: 500;
  border: 1px solid #c7c7c7;
  background-color: #fff;
  margin-left: 10px;
  cursor: pointer;
  transition: .2s;
}
.sp-btn.order{
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.sp-btn:hover{
  opacity: 0.9;
  border-color: #333;
}
.del{
  display: inline-block;
  color: #b5b5b5;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  top: 2rem;
  right: 0;
  cursor: pointer;
}

.sp-pn{
  width: 100%;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-pn > a{
  display: block;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.sp-pn > a.this{
  margin: 0 5px;
}
.sp-pn > a > span{
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #ddd;
  line-height: 32px;
  font-size: 10px;
  transition: .2s;
}
.sp-pn > a:hover > span{
  border-color: #333;
}

.use-wrap{
  width: 100%;
  height: calc(100vh - 303px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.use-caption{
  text-align: center;
  color: #000;
}
.use-caption > h3{
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.use-caption > p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.use-caption > p > span{
  font-size: 14px;
  color: #666;
}
.use-caption > a{
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 1rem 5rem;
  border-radius: 10px;
  border: 1px solid #999;
  transition: .4s;
}
.use-caption > a:hover{
  background-color: #004EA2;
  color: #fff;
  border-color: #004EA2;
}

.pt-tit{
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}
.pt-tit::after{
  content: "";
  width: 100px;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pt-tit > h3{
  color: #2F2725;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.pt-tit > p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}
.pt-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pt-box{
  width: calc((100% - 50px) / 6);
}
.pt-box > a{
  display: flex;
  border: 1px solid #ddd;
  padding: 5px;
}
.pt-box > a img{
  width: 100%;
}

/* media-query */

@media(min-width:1200px){

  .d-lg-block{display: block;}
  .d-lg-none{display: none;}
}

@media(max-width:1499px){
  .pt-box{
    width: calc((100% - 40px) / 5);
  }
}
@media(max-width:1199px){
  .d-block{display: block;}
  .d-none{display: none;}

  .pt-box{
    width: calc((100% - 30px) / 4);
  }
  
}
@media(max-width:600px){
  .pt-box{
    width: calc((100% - 10px) / 2);
  }
  .pt-tit{
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .pt-tit > h3{
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .pt-tit > p{
    font-size: 14px;
    line-height: 1.6;
  }
}