@charset "UTF-8";

/* =========================================================
  一覧ページ
========================================================= */
/* head title
--------------------------------------------------------- */
h2 {
  margin-bottom: 30px;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--base-blue);
}
h2 span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  h2 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  h2 span {
    font-size: 1.4rem;
  }
}

/* parts
--------------------------------------------------------- */
/* ----- request-list ----- */
.request-list > li {
  padding: 40px 0;
}

.request-list > li > div {
  display: grid;
  grid-template-columns: 340px 1fr;
  column-gap: 40px;
  row-gap: 80px;
}

.request-list .thumb {
  display: block;
  margin-bottom: 30px;
  transition: opacity 0.3s;
}
.request-list .thumb img {
  border: 1px solid #bebebe;
  width: 80%;
  margin: 0 auto;
}
.request-list .thumb:hover,
.request-list .thumb:focus {
  opacity: 0.8;
}


@media screen and (max-width: 959px) {
  .request-list > li > div {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .request-list > li > div > div:has(.thumb) {
    order: 2;
  }
  .request-list .thumb {
    max-width: 70%;
    min-width: 260px;
    margin: 0 auto 20px;
  }
  .request-list .thumb img {
    width: 100%;
    max-width: 450px;
  }
  .request-info li:not(:has(div)) > span {
    white-space: wrap;
  }
}

/* 251118追記 */

main {
  position: relative;
}

.request-btn-wrap {
  margin-bottom: 24px;
}

.request-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 8px;
  border: 2px solid #fff;
  border-radius: 4px;
  background-color: rgba(94, 127, 167, .8);
  font-weight: bold;
  color: #fff;
  /* transition: .3s; */
}

.request-list .request-btn {
  width: 80%;
  margin: 0 auto;
}

.specification-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 1.4rem;

  dd {
    font-size: 1.4rem;
  }
}

.specification {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 2px 8px;
  font-weight: bold;
  color: #fff;
  background: var(--base-blue);
  border: 1px solid var(--base-blue);
}

@media screen and (max-width: 959px) {
  .request-list .request-btn {
    width: 100%;
    max-width: 450px;
  }
}

/* 請求ボタン */
.seikyu {
  width: 100%;
}

.seikyu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #00479de6;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  transition: .3s;

  &:hover {
    opacity: 0.7;
  }

  svg {
    display: inline-block;
    width: 26px;
    height: 17px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 959px) {
  .seikyu a {
    padding: 16px 4px;
    font-size: 1.6rem;

    svg {
      width: 16px;
      height: 11px;
      margin-right: 2px;
    }
  }
}

.pagetop {
  display: none !important;
}