@charset "utf-8";

:root {
  --grid-gap-x: 0.125rem;
  --p-all-model-gap: 1rem;
}

@media screen and (max-width: 767px) {
  :root {
    --grid-gap-x: 2vw;
    --p-all-model-gap: 2vw;
  }
}

.page-title-h1 {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #f6f6f6;
  border-bottom: 1px solid #ececec;
  background-color: #fff;
}

.page-title-h1 h1 {
  color: #484848;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 1.92px;
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding-right: 150px;
}

.page-reason {
  padding: 20px 0 30px;
  background: #004da1;
  color: #fff;
  counter-reset: reason-counter;
}

.page-reason h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
}

.page-reason h2 span {
  display: inline-block;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-shadow: 0 0 10px #006;
  line-height: 2em;
  letter-spacing: calc((60 * 1em) / 1000);
}

.page-reason-item {
  padding-left: 40px;
  position: relative;
}

.page-reason-item h3 {
  margin-bottom: 0.5em;
  font-size: 22px;
  font-weight: 700;
}

.page-reason-item h3 a {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  margin-left: 12px;
}

.page-reason-item h3 small {
  font-size: 12px;
  font-weight: 400;
  margin-left: 12px;
}



.page-reason-item p {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.page-reason-item::before {
  counter-increment: reason-counter;
  content: "0" counter(reason-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  color: #fff;
  opacity: .5;
}

.page-reason-item::after {
  content: "";
  height: 100%;
  width: 2px;
  display: block;
  position: absolute;
  left: 30px;
  top: 0;
  background: #fff;
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .page-title-h1 {
    padding: 10px 15px 10px 15px;
  }

  .page-title-h1 h1 {
    font-size: 3.4vw;
    letter-spacing: 1.32px;
  }

  .page-reason {
    padding: 10px 0;
  }

  .page-reason .u-pc-width {
    width: 92vw;
    margin: 0 auto;
  }

  .page-reason-item h3 {
    font-size: 4.27vw;
  }

  .page-reason-item p {
    font-size: 2.67vw;
  }

  .page-reason-item h3 a {
    font-size: 2.67vw;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 12px;
  }

  .page-reason-item h3 small {
    font-size: 2.67vw;
    font-weight: 400;
    margin-left: 12px;
  }

  .page-reason h2 {
    font-size: 14px;
    margin-bottom: 18px;
    text-align: left;
  }

  .page-reason h2 span {
    line-height: 1.4em;
  }

}

.keyword-section .keyword-list-wrapper {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
}

.keyword-section .keyword-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*justify-content: center;*/
  justify-content: flex-start;
  gap: 5px;
  width: auto;
  padding-bottom: 15px;
}

.keyword-section .keyword-list li a {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 3px 3px 3px 0 rgba(150, 150, 150, 0.2);
  padding: 10px 15px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-weight: bold;
  white-space: nowrap;
}

.keyword-section .keyword-list li a:hover {
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
  color: #fff;
  background: rgba(0, 162, 230, 1);
  border: 1px solid rgba(0, 162, 230, 1);
}

@media screen and (max-width: 767px) {
  .keyword-section .keyword-list-wrapper {
    margin: 15px 0;
  }

  .keyword-section .keyword-list {
    justify-content: left;
  }
}

.keyword-section .keyword-slider-list-wrapper {
  position: relative;
  margin: 30px 0;
}

.keyword-section .keyword-slider-list {
  overflow: hidden;
  padding: 3px;
}

.keyword-section .keyword-slider-list li.keyword-item {
  height: auto;
  transition: box-shadow .2s, transform .2s, border .2s;
  width: auto;
}

.keyword-section .keyword-slider-list li.keyword-item>a {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 3px 3px 3px 0 rgba(150, 150, 150, 0.2);
  padding: 10px 15px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-weight: bold;
  margin: 0 3px;
}

.keyword-section .keyword-slider-list li.keyword-item>a:hover {
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
  color: #fff;
  background: rgba(0, 162, 230, 1);
  border: 1px solid rgba(0, 162, 230, 1);
}

@media screen and (max-width: 767px) {
  .keyword-section .u-pc-width {
    width: 94vw;
    margin: 0 auto;
  }

  .keyword-section .keyword-slider-list-wrapper {
    margin: 15px 0;
  }

  .keyword-section .keyword-slider-list {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .keyword-section .keyword-slider-list li.keyword-item {
    width: auto;
    scroll-snap-align: start;
  }

  .keyword-section .keyword-slider-list li.keyword-item>a {
    font-size: 14px;
  }
}

.gpu-performance h3 {
  margin: calc(var(--p-all-model-gap) * 2) auto 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.gpu-performance a {
  margin: 0.5em auto;
}

.gpu-performance a.c-button--primary-blue {
  width: 100%;
  max-width: 480px;
}

@media screen and (max-width: 767px) {
  .gpu-performance h3 {
    font-size: 2.67vw;
  }

  .gpu-performance h3 span {
    display: none;
  }

  .gpu-performance a.c-button--primary-blue {
    width: 90%;
  }
}

.btn-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.btn-wrapper .btn-item {
  width: calc((100% - 20px) / 2);
}

.btn-wrapper .btn-item img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .btn-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .btn-wrapper .btn-item {
    width: 100%;
  }
}