@charset "utf-8";

/*------------------------------------------------
   販売実績
------------------------------------------------*/

/* archive */

#results {
  width: 100%;
}

#results .contentsBlock {
  width: 100%;
}

.resultsBlock {
  width: 100%;
  padding: 0 10px;
}

.resultsBox {
  width: 100%;
  border: 1px solid var(--line-color);
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .3);
  position: relative;
  margin-bottom: 40px;
  transition: all 0.5s ease;
}

.resultsBox:last-of-type {
  margin-bottom: 0;
}

.resultsBox:hover {
  transform: translateY(-10px);    
}

.resultsBox a {
  display: block;
  text-decoration: none;
  padding: 20px;
}

.resultsBox .imageBlock {
}

.resultsBox .imageBlock .image {
	width: 100%;
  overflow: hidden;
}

.resultsBox .imageBlock .image img {
	width: 100%;
  height: calc(100vw - 80px);
  object-fit: cover;
}

.resultsBox .textBlock {
  text-align: center;
}

.resultsBox .textBlock .heading {
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 1em;
  padding: .5em 0;
}

.resultsBlock .caution {
	font-size: 1.4rem;
  text-align: center;
}

@media print, screen and (min-width: 601px) {

  .resultsBlock {
    width: 940px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }

  .resultsBox {
    width: 300px;
    margin-bottom: 0;
  }

  .resultsBox .imageBlock .image img {
    width: 100%;
    height: calc(100% - 20px);
  }

}


/*------------------------------------------------
   個別ページ
------------------------------------------------*/

#results .contentsBlock {
  width: 100%;
}

.resultsSingleBlock {
  width: 100%;
  margin-bottom: 40px;
}

.headerBlock {
  width: 100%;
  margin-bottom: 20px;
}

.headerBlock .textBlock {
}

.headerBlock .textBlock .heading {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  color: var(--main-color);
  text-align: center;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 1em;
  padding: .5em .2em;
}

.headerBlock .textBlock .desc {
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: justify;
  padding: 0 10px;
  margin-bottom: 20px;
}

.headerBlock .image {
	width: 100%;
  margin-bottom: 20px;
}

.headerBlock .image img {
	width: 100%;
	height: auto;
}

@media print, screen and (min-width: 601px) {

  .resultsSingleBlock {
    width: 800px;
    margin: 0 auto;
    margin-bottom: 80px;
  }

  .headerBlock {
    width: 100%;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .headerBlock .textBlock {
    width: 400px;
  }

  .headerBlock .textBlock .heading {
    font-size: 2.2rem;
    text-align: left;
  }

  .headerBlock .textBlock .desc {
    font-size: 1.4rem;
    margin-bottom: 0;
    padding: 0;
  }

  .headerBlock .image {
    width: 380px;
  }

}


/* detailBlock */

.detailBlock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.detailBox {
  width: calc((100% - 10px) / 2);
}

.detailBox .imageBlock {
	width: 100%;
}

.detailBox .imageBlock a {
  display: block;
  position: relative;
}

.detailBox .imageBlock a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: rgba(0,100,180,0.6);;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}

.detailBox .imageBlock a img {
	width: 100%;
  height: calc((100vw - 50px) * 0.5);
  object-fit: cover;
  transition: all 0.5s ease;
}

.detailBox .imageBlock a i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4.8rem;
  color: #fff;
  transform: translate(-50%, 0%);
  opacity: 0;
  z-index: 2;
  transition: all 0.5s ease;
}

.detailBox .imageBlock a:hover img {
  opacity: 0.5;
}

.detailBox .imageBlock a:hover::after {
  opacity: 1;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.detailBox .imageBlock a:hover i {
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.detailBox .textBlock {
	width: 100%;
  padding: 0.4em;
}

.detailBox .textBlock .detailDesc {
	font-size: 1.2rem;
  line-height: 1.5;
}

@media print, screen and (min-width: 601px) {

  .detailBlock {
    gap: 10px;
    padding: 0;
  }

  .detailBox {
    width: 260px;
  }

  .detailBox .imageBlock a img {
    height: 260px;
  }

  .detailBox .textBlock .detailDesc {
    font-size: 1.3rem;
  }

}

