<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

img {
  width: 100%;
  height: auto;
}

@media not screen and (max-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* ============================
  2024.04.08 改修 
============================ */
.mv {
  margin-top: 64px;
  margin-bottom: 150px;
}

.mv-movie {
  margin: 0 auto 162px;
  width: 80%;
  max-width: 620px;
}

.mv-movie a {
  cursor: pointer;
}

.mv-movie img {
  width: 100%;
  transition: 0.3s;
  transition-property: opacity;
}

.mv-movie a:hover img {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 120px;
  }

  .mv-movie {
    margin-bottom: 60px;
  }
}

/* copy
---------------------------------------------*/
.copy {
  margin-bottom: 240px;
}

.copy__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.copy h2 {
  margin: 0 auto 80px;
  padding: 8px 1.5em;
  width: fit-content;
  font-size: 3rem;
  color: #ffff00;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(255, 255, 0, 0.9) 92%,
    rgb(255, 255, 0)
  );
  position: relative;
}

.slowsearch .copy h2 {
  color: #29abe2;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(41, 171, 226, 0.9) 92%,
    rgb(41, 171, 226)
  );
}

.otonarun .copy h2 {
  color: #f15a24;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(241, 90, 36, 0.9) 92%,
    rgb(241, 90, 36)
  );
}

.namasute .copy h2 {
  color: #ed1c24;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(237, 28, 36, 0.9) 92%,
    rgb(237, 28, 36)
  );
}

.zurenain .copy h2 {
  color: #00a887;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(0, 168, 135, 0.9) 92%,
    rgb(0, 168, 135)
  );
}

.hughug .copy h2 {
  color: #ed1e79;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 0, 0.12) 54%,
    rgba(147, 39, 143, 0.9) 80%,
    rgb(237, 30, 121)
  );
}

.copy h2::after {
  content: "";
  width: 20px;
  height: 16px;
  background-color: #ffff00;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
}

.slowsearch .copy h2::after {
  background-color: #29abe2;
}

.otonarun .copy h2::after {
  background-color: #f15a24;
}

.namasute .copy h2::after {
  background-color: #ed1c24;
}

.zurenain .copy h2::after {
  background-color: #00a887;
}

.hughug .copy h2::after {
  background-color: #ed1e79;
}

.copy__container {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.copy__container.--col-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.copy .copy__container p {
  background: linear-gradient(to bottom, #ffff00, #fed400);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-size: 4rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
}

.copy .copy__container.--white p {
  color: #fff;
}

.slowsearch .copy .copy__container p {
  background: linear-gradient(to bottom, #29abe2, #2e3192);
}

.otonarun .copy .copy__container p {
  background: linear-gradient(to bottom, #f15a24, #e8410b);
}

.namasute .copy .copy__container p {
  background: linear-gradient(to bottom, #ed1c24, #c1272d);
}

.zurenain .copy .copy__container p {
  background: linear-gradient(to bottom, #00a887, #007958);
}

.hughug .copy .copy__container p {
  background: linear-gradient(to bottom, #ed1e79, #93278f);
}

.copy__container.--col-3 p {
  font-size: 2.8rem;
}

.copy img {
  margin-top: 60px;
}

.copy h3 {
  margin: 60px auto 40px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
}

.copy p {
  font-size: 1.6rem;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .copy {
    margin-bottom: 120px;
  }

  .copy h2 {
    margin-bottom: 50px;
    font-size: 2.4rem;
  }

  .copy__container,
  .copy__container.--col-3 {
    margin: 0 auto 60px;
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 4px;
  }

  .copy .copy__container p,
  .copy .copy__container.--col-3 p {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .copy .copy__container.--col-3 p:first-child {
    grid-column: 1 / 3;
    width: calc(45% - 4px);
  }

  .copy img {
    margin-top: 40px;
  }

  .copy h3 {
    margin: 40px auto 32px;
    width: 90%;
    font-size: 2rem;
  }

  .copy p {
    margin: 0 auto;
    width: 90%;
    line-height: 1.8;
  }
}

/* feature
---------------------------------------------*/
.feature {
  margin: 0 auto 150px;
  width: 90%;
}

.shore-title__line.--feature img {
  max-width: 228px;
}

.shore-title__line::before {
  top: 30px;
}

.new-item__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 872px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px;
}

.new-item__inner h3 {
  margin-top: 30px;
  font-size: 2rem;
}

.new-item__inner p {
  font-size: 1.7rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .feature {
    margin-bottom: 80px;
  }

  .shore-title__line {
    margin-bottom: 32px;
  }

  .shore-title__line.--feature img {
    max-width: 196px;
  }

  .shore-title__line::before {
    top: 24px;
  }

  .new-item__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .new-item__inner h3 {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 1.8rem;
  }

  .new-item__inner p {
    font-size: 1.4rem;
  }
}

/* spec
---------------------------------------------*/
.spec {
  margin-bottom: 110px;
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #333;
}

.new-item__container figure {
  aspect-ratio: 49 / 32;
}

.new-item__container figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shore-title__line.--spec img {
  max-width: 126px;
}

@media screen and (max-width: 768px) {
  .spec {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .shore-title__line.--spec img {
    max-width: 120px;
  }
}

/* color
---------------------------------------------*/
.shore-title__line.--color img {
  max-width: 164px;
}

.new-item__inner.--lg {
  margin-bottom: 150px;
  max-width: 1200px;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px 40px;
}

.new-item__inner.--lg a {
  color: #fff;
}

.new-item__inner.--lg a:hover {
  text-decoration: none;
}

.new-item__inner.--lg img {
  transition: 0.3s;
  transition-property: opacity;
}

.new-item__inner.--lg a:hover img {
  opacity: 0.7;
}

.new-item__inner.--lg h3 {
  margin: 8px 0;
  font-size: 1.7rem;
}

.new-item__inner.--lg p {
  font-size: 1.4rem;
  font-weight: 400;
}

.new-item__inner.--lg p span {
  padding: 2px 4px;
  border: 1px solid #fff;
  font-size: 1.3rem;
  margin-right: 10px;
}

/* テーブル */
.table-container {
  margin-bottom: 150px;
}

.table {
  margin: 0 auto 0;
  max-width: 670px;
  text-align: center;
  border-collapse: collapse;
}

.table.--lg {
  max-width: 800px;
}

.table th,
.table td {
  padding: 20px;
  text-align: center;
  border: 1px solid #fff;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
}

.table td span {
  margin-left: 4px;
  font-size: 1.4rem;
}

.table td .block {
  margin-top: 6px;
  display: block;
}

.table-note {
  padding: 1em 0 0 0 !important;
  border: none !important;
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .shore-title__line.--color img {
    max-width: 144px;
  }

  .new-item__inner.--lg {
    margin-bottom: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 24px;
  }

  .new-item__inner.--lg p {
    font-size: 1.3rem;
  }

  .new-item__inner.--lg p span {
    margin-right: 2px;
    font-size: 1.2rem;
  }

  .table-container {
    margin: 0 auto 80px;
    padding-bottom: 20px;
    width: 90%;
    overflow: scroll;
  }

  .table {
    min-width: 540px;
  }

  .table th,
  .table td {
    padding: 16px;
    font-size: 1.4rem;
  }

  .table th:first-of-type,
  .table td:first-of-type {
    width: 20%;
  }

  .table th:nth-of-type(2),
  .table td:nth-of-type(2) {
    width: 35%;
  }

  .table td span {
    margin-top: 4px;
    display: block;
    font-size: 1.4rem;
  }

  .table-note {
    text-align: left !important;
  }
}
/* ============================
  2025.5.14　追加
============================ */
.hughugd h2.reco {
  background: #000000;
  border: solid 3px #FFFF00;
}

.hughugd .copy h2::after {
  display: none;
}

.hughugd .copy .copy__container p {
  background: linear-gradient(to bottom, #ffff00, #F8B100);
  flex-direction: column;
}

.hughugd .copy .copy__container p span {
  color: #0071BC;
}

.reco_text span {
  color: #FFFF00;
}

/* ============================
  2025.5.14　追加ここまで
============================ */</pre></body></html>