@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: normal;
  line-height: normal;
  max-width: 1920px;
  margin-inline: auto;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: repeating-linear-gradient(90deg, #fafafa, #fafafa 5px, #ffffff 5px, #ffffff 10px);
  background-attachment: scroll;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}

main {
  position: relative;
  z-index: 100;
}

a {
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

section {
  position: relative;
}

.dt-display {
  display: none;
}
@media screen and (min-width: 1520px) {
  .dt-display {
    display: block;
  }
}

.pc-display {
  display: block;
}
@media screen and (max-width: 599px) {
  .pc-display {
    display: none;
  }
}

.tb-display {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb-display {
    display: block;
  }
}

.sp-display {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-display {
    display: block;
  }
}

.first-section {
  padding-top: 96px;
}
@media screen and (max-width: 599px) {
  .first-section {
    padding-top: 76px;
  }
}

.red {
  color: #e23536;
}

.container {
  max-width: 1520px;
  padding-inline: 4%;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .container {
    max-width: 1280px;
  }
}
@media screen and (max-width: 599px) {
  .container {
    padding-inline: 4%;
  }
}

.l-button {
  border-radius: 100px;
  width: 380px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .l-button {
    min-width: 300px;
    width: 80%;
  }
}
.l-button p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 991px) {
  .l-button p {
    font-weight: 700;
    margin-bottom: 3px;
  }
}
.l-button--bk {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
}
.l-button--bk:hover {
  background-color: #fff;
  opacity: 1;
}
.l-button--bk:hover p, .l-button--bk:hover::after {
  color: #333;
}
.l-button--wh {
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
}
.l-button--wh:hover {
  background-color: #333;
  opacity: 1;
}
.l-button--wh:hover p, .l-button--wh:hover::after {
  color: #fff;
}
.l-button--arrow {
  position: relative;
}
.l-button--arrow::after {
  content: "→";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 4px;
}
@media screen and (max-width: 599px) {
  .l-button--arrow::after {
    right: 20px;
    font-size: 20px;
  }
}
.l-button--arrow-back {
  position: relative;
}
.l-button--arrow-back::after {
  content: "←";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 4px;
}
@media screen and (max-width: 599px) {
  .l-button--arrow-back::after {
    left: 20px;
    font-size: 20px;
  }
}

.page-header {
  background-color: #e23536;
  width: 100%;
  height: 420px;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .page-header {
    aspect-ratio: 1200/962;
    width: 100%;
    height: auto;
    background-image: url(../../assets/image/common/page-header-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }
}
.page-header::before {
  content: "";
  width: auto;
  aspect-ratio: 615/560;
  height: 100%;
  background-image: url(../../assets/image/common/page-header-left.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .page-header::before {
    left: -115px;
  }
}
@media screen and (max-width: 1200px) {
  .page-header::before {
    left: -215px;
  }
}
@media screen and (max-width: 991px) {
  .page-header::before {
    display: none;
  }
}
.page-header::after {
  content: "";
  width: auto;
  aspect-ratio: 620/560;
  height: 100%;
  background-image: url(../../assets/image/common/page-header-right.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .page-header::after {
    right: -125px;
  }
}
@media screen and (max-width: 1200px) {
  .page-header::after {
    right: -230px;
  }
}
@media screen and (max-width: 991px) {
  .page-header::after {
    display: none;
  }
}
.page-header__content {
  color: #fff;
  max-width: 480px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1520px) {
  .page-header__content {
    max-width: 780px;
  }
}
@media screen and (max-width: 991px) {
  .page-header__content {
    max-width: 68%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.page-header__content h1 {
  padding-bottom: 16px;
  position: relative;
}
.page-header__content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #fff;
}
.page-header__text {
  margin-top: 40px;
  font-size: 16px !important;
  font-weight: 400 !important;
}
@media screen and (max-width: 599px) {
  .page-header__text {
    margin-top: 8%;
    font-size: 14px !important;
  }
}

.pagination {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 28px;
  }
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.pagination .page-numbers .page-numbers {
  font-size: 16px;
  color: #e23536;
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1.5px solid #e23536;
  padding-bottom: 2px;
  font-weight: 500;
}
.pagination .page-numbers .current {
  background-color: #e23536;
  color: #fff;
}
.pagination .page-numbers .dots {
  border: 0px;
  width: 12px;
}
.pagination .page-numbers .prev {
  margin-right: 12px;
  background-image: url(../../assets/image/common/prev.webp);
  width: 20px;
  aspect-ratio: 1/1;
  height: auto;
  background-size: cover;
  border: 0px solid #e23536;
  padding-bottom: 0px;
  color: transparent;
}
.pagination .page-numbers .next {
  margin-left: 12px;
  background-image: url(../../assets/image/common/next.webp);
  width: 20px;
  aspect-ratio: 1/1;
  height: auto;
  background-size: cover;
  border: 0px solid #e23536;
  padding-bottom: 0px;
  color: transparent;
}

.grecaptcha-badge {
  display: none;
}

.grecaptcha-logo {
  display: none;
}

.header-wrapper {
  background-color: #fff;
  position: fixed;
  width: 98%;
  border-radius: 10px;
  top: 12px;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: calc(1920px - 2%);
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .header-wrapper {
    top: 8px;
  }
}

.logo {
  position: relative;
  z-index: 10001;
}
.logo__image {
  transition: opacity 0.3s;
}
.logo__image--footer {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.logo__image--header {
  opacity: 1;
  visibility: visible;
}

body.open .logo__image--header {
  opacity: 0;
  visibility: hidden;
}
body.open .logo__image--footer {
  opacity: 1;
  visibility: visible;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 10px 16px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  header {
    height: 60px;
    padding: 8px 10px;
  }
}
header .logo {
  height: 48px;
  position: relative;
  z-index: 99999;
}
@media screen and (max-width: 599px) {
  header .logo {
    height: 36px;
  }
}
header .logo img {
  height: 100%;
  width: auto;
}
header > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  header > ul {
    display: none;
  }
}
header > ul li {
  font-size: 14px;
  font-weight: 500;
}
header > ul .header-contact a {
  color: #fff;
  background-color: #e23536;
  border-radius: 100px;
  border: 1px solid #e23536;
  padding: 15px 20px 17px 42px;
  font-size: 14px;
  vertical-align: super;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
header > ul .header-contact a::after {
  content: "→";
  font-size: 17px;
  margin-left: 20px;
  margin-top: 1px;
  vertical-align: -1.5px;
}
header > ul .header-contact a:hover {
  opacity: 1;
  background-color: #fff;
  color: #e23536;
}
header .toggle-button {
  z-index: 10000;
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  background-color: #e23536;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header .toggle-button {
    display: block;
  }
}
header .toggle-button__hamburger {
  position: relative;
  width: 100%;
  height: 100%;
}
header .toggle-button__hamburger span {
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 12px;
  right: 12px;
  transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
header .toggle-button__hamburger span:first-child {
  top: 30%;
}
header .toggle-button__hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}
header .toggle-button__hamburger span:last-child {
  bottom: 30%;
}
header .toggle-button.open {
  background-color: transparent;
}
header .toggle-button.open span:first-child {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
header .toggle-button.open span:nth-child(2) {
  opacity: 0;
}
header .toggle-button.open span:last-child {
  bottom: calc(50% - 1px);
  transform: rotateZ(-45deg);
}

.header-menu {
  z-index: 9999;
  position: fixed;
  width: 110%;
  height: 110%;
  left: -4%;
  top: -20%;
  background-color: rgb(226, 53, 54);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: opacity 0.4s ease, visibility 0.4s, transform 0.4s ease;
  transform-origin: center top;
  padding-top: 72px;
  overflow-y: auto;
}
.header-menu.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  width: 110%;
  height: 112vh;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .header-menu .footer__columns {
    flex-direction: column;
    gap: 40px;
  }
  .header-menu .footer__left,
  .header-menu .footer__right {
    width: 100%;
    align-items: center;
  }
  .header-menu .footer__menus {
    flex-direction: column;
    align-items: center;
  }
  .header-menu .footer__menu {
    width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .header-menu .footer__menu {
    max-width: 480px !important;
  }
}
@media screen and (max-width: 500px) {
  .header-menu .footer__menu {
    max-width: 420px !important;
  }
}

body.open {
  overflow: hidden;
}

.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #e23536;
  border: 1px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .to-top {
    display: none;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top:hover {
  background-color: #fff;
  border-color: #e23536;
  transform: translateY(-5px);
}
.to-top:hover .to-top__box::before {
  border-color: #e23536;
}

.to-top__box {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 5px;
}
.to-top__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.footer-wrapper {
  background-color: #e23536;
  color: #fff;
}

footer {
  width: 100%;
}
footer .container {
  max-width: 1080px;
}
footer .logo {
  height: 48px;
  z-index: 100;
}
@media screen and (max-width: 599px) {
  footer .logo {
    height: auto;
    width: 80%;
  }
}
footer .logo img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 599px) {
  footer .logo img {
    height: auto;
    width: 100%;
  }
}

.footer__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-block: 56px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .footer__columns {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .footer__columns {
    gap: 32px;
  }
}
@media screen and (max-width: 599px) {
  .footer__columns {
    padding-block: 40px;
    gap: 40px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
}
@media screen and (max-width: 991px) {
  .footer__left {
    width: 100%;
    align-items: center;
  }
}
.footer__menus {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .footer__menus {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__menu {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .footer__menu {
    width: 320px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .footer__menu {
    width: 100%;
    padding-inline: 12%;
  }
}
.footer__menu ul {
  display: flex;
  justify-content: flex-start;
  row-gap: 12px;
  flex-wrap: wrap;
}
.footer__menu ul li {
  width: 120px;
}
@media screen and (max-width: 599px) {
  .footer__menu ul li {
    width: 160px;
  }
}
@media screen and (max-width: 500px) {
  .footer__menu ul li {
    width: 120px;
  }
}
.footer__menu ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.footer__menu ul li a::before {
  content: "ー";
  display: inline-block;
  margin-right: 8px;
}
.footer__menu-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 40%;
}
@media screen and (max-width: 991px) {
  .footer__right {
    width: 100%;
    align-items: center;
  }
}
.footer__tel {
  margin-bottom: 8px;
}
.footer__tel img {
  width: 310px;
}
@media screen and (max-width: 599px) {
  .footer__tel img {
    width: 262px;
  }
}
.footer__btn {
  width: 312px;
  height: 56px;
}
.footer__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
.footer__btn a p {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.footer__btn a p::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 12px;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .footer__btn a p {
    font-weight: 700;
  }
}
.footer__btn--line {
  margin-bottom: 8px;
}
.footer__btn--line a {
  background-color: #42c754;
}
.footer__btn--line a p::before {
  background-image: url(../../assets/image/common/line-icon.webp);
}
.footer__btn--line a:hover {
  opacity: 1;
  background-color: #fff;
  border: 2px solid #42c754;
}
.footer__btn--line a:hover p {
  color: #42c754;
}
.footer__btn--mail a {
  background-color: #4b7afe;
}
.footer__btn--mail a p::before {
  background-image: url(../../assets/image/common/mail-icon.webp);
}
.footer__btn--mail a:hover {
  opacity: 1;
  background-color: #fff;
  border: 2px solid #4b7afe;
}
.footer__btn--mail a:hover p {
  color: #4b7afe;
}
.footer__btn--mail a:hover p::before {
  background-image: url(../../assets/image/common/mail-hover-icon.webp);
}
.footer__bottom {
  background-color: #333333;
  padding-block: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 599px) {
  .footer__bottom {
    margin-bottom: 72px;
  }
}
.footer__bottom a {
  font-size: 12px;
  font-weight: 500;
  color: #adadad;
}
.footer__copyright {
  font-size: 12px;
  font-weight: 500;
  color: #adadad;
}

.bottom-bar {
  display: none !important;
  height: 72px !important;
  padding-block: 6px 12px !important;
  padding-inline: 12px !important;
  gap: 10px !important;
  flex-direction: row !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #fff !important;
  z-index: 100000 !important;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
@media screen and (max-width: 599px) {
  .bottom-bar {
    display: flex !important;
  }
}
.bottom-bar.show {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.bottom-bar .cta__btn {
  position: relative;
}
.bottom-bar .cta__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #d6d6d6;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100px;
  z-index: -1;
}
.bottom-bar .cta__btn a {
  height: 56px !important;
}
.bottom-bar .cta__btn a .cta__btn-text::before {
  width: 28px !important;
  aspect-ratio: 1/1 !important;
  height: auto !important;
}
.bottom-bar .cta__btn a .cta__btn-subtext {
  font-size: 10px !important;
  font-weight: 500 !important;
}
.bottom-bar .cta__btn a .cta__btn-maintext {
  font-size: 18px !important;
  margin-top: -2px !important;
  font-weight: 700 !important;
}

.fv {
  background-color: #dc0700;
}
.fv__columns {
  padding-inline: 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .fv__columns {
    flex-direction: column;
    gap: 10px;
    padding-top: 40px;
  }
}
.fv__left {
  width: 50%;
  padding-left: 4%;
}
@media screen and (max-width: 991px) {
  .fv__left {
    width: 80%;
    padding-left: 0%;
  }
}
@media screen and (max-width: 599px) {
  .fv__left {
    width: 92%;
    padding-left: 0%;
  }
}
.fv__right {
  width: 50%;
  padding-right: 4%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .fv__right {
    width: 80%;
    padding-right: 0%;
  }
}
@media screen and (max-width: 599px) {
  .fv__right {
    width: 100%;
  }
  .fv__right .sp-display {
    width: 92%;
    margin-inline: 0 auto;
  }
}
.fv__prius {
  position: absolute;
  bottom: -20px;
  right: -6%;
  width: 54%;
}
@media screen and (max-width: 599px) {
  .fv__prius {
    right: -2%;
    width: 60%;
  }
}
.fv__about {
  background-color: #ff006c;
  padding: 18px 12px;
}
.fv__about-columns {
  border-radius: 10px;
  background-color: #fff;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .fv__about-columns {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fv__about-columns {
    column-gap: 10px;
    row-gap: 20px;
    flex-wrap: wrap;
  }
}
.fv__about-left, .fv__about-right {
  width: 20%;
}
@media screen and (min-width: 1520px) {
  .fv__about-left, .fv__about-right {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .fv__about-left, .fv__about-right {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .fv__about-left {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .fv__about-right {
    order: 3;
  }
}
.fv__about-center {
  width: 60%;
}
@media screen and (min-width: 1520px) {
  .fv__about-center {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .fv__about-center {
    width: 100%;
    order: 1;
  }
}
.fv__about-center h2 {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  width: 100%;
  background-color: #e23536;
  padding-block: 8px 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 1520px) {
  .fv__about-center h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__about-center h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .fv__about-center h2 {
    font-weight: 700;
  }
}
.fv__about-center p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
  line-height: normal;
}
@media screen and (min-width: 1520px) {
  .fv__about-center p {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .fv__about-center p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fv__about-center p {
    font-size: 16px;
  }
}

.f-apeal {
  background-image: url(../../assets/image/front/kaitori-bg.webp);
  background-size: cover;
  background-position: center;
  padding-block: 80px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .f-apeal {
    padding-block: 56px;
  }
}
.f-apeal__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.f-apeal__subtitle .pc-display {
  display: inline-block;
  margin-inline: 8px;
}
@media screen and (max-width: 599px) {
  .f-apeal__subtitle .pc-display {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .f-apeal__subtitle {
    line-height: 32px;
    font-size: 20px;
  }
}
.f-apeal__title {
  margin-top: 20px;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .f-apeal__title {
    font-size: 6vw;
  }
}
.f-apeal__title span {
  font-size: 56px;
  padding-inline: 12px;
}
@media screen and (max-width: 599px) {
  .f-apeal__title span {
    font-size: 10vw;
    padding-inline: 6px;
  }
}
.f-apeal__car {
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1520px) {
  .f-apeal__car {
    max-width: 880px;
  }
}
@media screen and (max-width: 991px) {
  .f-apeal__car {
    width: 92%;
  }
}
@media screen and (max-width: 599px) {
  .f-apeal__car {
    margin-top: 24px;
  }
}
.f-apeal__difference {
  max-width: 840px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1520px) {
  .f-apeal__difference {
    max-width: 1024px;
  }
}
.f-apeal__text {
  margin-top: 18px;
  text-align: center;
  line-height: 32px;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  .f-apeal__text {
    margin-top: 24px;
    text-align: left;
    font-size: 16px;
  }
}

.f-honesty {
  background-color: #fff;
  padding-block: 120px;
}
@media screen and (max-width: 599px) {
  .f-honesty {
    padding-block: 56px 80px;
  }
}
.f-honesty__title {
  text-align: center;
  color: #dc0700;
  font-size: 32px;
  font-weight: 700;
  line-height: 52px;
}
@media screen and (max-width: 599px) {
  .f-honesty__title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 375px) {
  .f-honesty__title {
    font-size: 6vw;
    line-height: 40px;
  }
}
.f-honesty__columns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-top: 32px;
  margin-inline: auto;
  max-width: 880px;
}
@media screen and (min-width: 1520px) {
  .f-honesty__columns {
    max-width: 1200px;
  }
}
@media screen and (max-width: 991px) {
  .f-honesty__columns {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .f-honesty__columns {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .f-honesty__column {
    width: 70%;
  }
}
.f-honesty .shinseiauto-scroll {
  margin-top: -40px;
}
@media screen and (max-width: 599px) {
  .f-honesty .cta {
    margin-top: 32px;
  }
}

.shinseiauto-scroll {
  width: 100%;
  height: 198px;
  overflow: hidden;
  background-image: url(../../assets/image/front/shinseiauto-scroll.webp);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: 0 0;
  animation: bg-scroll 20s linear infinite;
}
@media screen and (max-width: 599px) {
  .shinseiauto-scroll {
    height: 102px;
  }
}

@keyframes bg-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    /* 画像1枚分の横幅（例: 1000px）をマイナスで指定 
       数値が正確だと、継ぎ目が分からず無限ループします
    */
    background-position: -1000px 0;
  }
}
.cta__wrap {
  max-width: 940px;
  margin-inline: auto;
  overflow-y: visible;
  background-color: #e23535;
  border-radius: 20px;
}
@media screen and (min-width: 1520px) {
  .cta__wrap {
    max-width: 980px;
  }
}
@media screen and (max-width: 991px) {
  .cta__wrap {
    max-width: 100%;
  }
}
.cta__columns {
  display: flex;
  padding-inline: 32px;
  justify-content: flex-end;
  align-items: stretch;
  column-gap: 16px;
  position: relative;
}
@media screen and (min-width: 1520px) {
  .cta__columns {
    padding-inline: 56px;
  }
}
@media screen and (max-width: 991px) {
  .cta__columns {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 599px) {
  .cta__columns {
    column-gap: 0;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 450px) {
  .cta__columns {
    padding-inline: 12px;
  }
}
.cta__image {
  width: 30%;
  position: absolute;
  bottom: 0;
  left: 32px;
}
@media screen and (max-width: 991px) {
  .cta__image {
    width: 43%;
    left: 24px;
  }
}
@media screen and (max-width: 900px) {
  .cta__image {
    width: 39%;
    left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .cta__image {
    display: none;
  }
}
.cta__image--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta__image--sp {
    display: block;
    width: 50%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .cta__image--sp {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .cta__image--sp {
    width: 80%;
  }
}
.cta__content {
  width: auto;
  position: relative;
  padding-block: 28px 24px;
}
@media screen and (max-width: 991px) {
  .cta__content {
    width: 52%;
  }
}
@media screen and (max-width: 900px) {
  .cta__content {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .cta__content {
    width: 100%;
  }
}
.cta__honesty {
  width: 188px;
  position: absolute;
  top: 0px;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cta__honesty {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.cta__heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .cta__heading {
    font-weight: 700;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .cta__heading {
    font-size: 18px;
    padding-block: 20px;
    text-align: center;
    letter-spacing: 28%;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .cta__heading {
    font-size: 16px;
    padding-block: 10px 20px;
    padding-left: 2%;
  }
}
.cta__btns {
  margin-top: 20px;
  display: flex;
  column-gap: 16px;
}
@media screen and (max-width: 991px) {
  .cta__btns {
    flex-direction: column;
    row-gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .cta__btns {
    align-items: center;
    margin-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .cta__btn {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .cta__btn {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .cta__btn {
    width: 100%;
  }
}
.cta__btn a {
  border-radius: 100px;
  width: 280px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .cta__btn a {
    width: 100%;
  }
}
.cta__btn-text {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__btn-subtext {
  font-size: 9px;
  display: block;
  letter-spacing: normal;
}
.cta__btn-maintext {
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  text-align: left;
  letter-spacing: 10%;
}
@media screen and (max-width: 991px) {
  .cta__btn-maintext {
    font-weight: 700;
  }
}
.cta__btn--line a {
  background-color: #42c754;
}
.cta__btn--line a .cta__btn-text::before {
  background-image: url(../../assets/image/common/line-icon.webp);
  width: 48px;
  height: 48px;
  background-size: cover;
  margin-right: 8px;
  content: "";
  display: inline-block;
}
.cta__btn--line a:hover {
  background-color: #fff;
  border-color: #42c754;
  opacity: 1;
}
.cta__btn--line a:hover .cta__btn-text {
  color: #42c754;
}
.cta__btn--mail a {
  background-color: #4b7aff;
}
.cta__btn--mail a .cta__btn-text::before {
  background-image: url(../../assets/image/common/mail-icon.webp);
  width: 38px;
  height: 38px;
  background-size: cover;
  margin-right: 8px;
  content: "";
  display: inline-block;
}
.cta__btn--mail a:hover {
  background-color: #fff;
  border-color: #4b7aff;
  opacity: 1;
}
.cta__btn--mail a:hover .cta__btn-text {
  color: #4b7aff;
}
.cta__btn--mail a:hover .cta__btn-text::before {
  background-image: url(../../assets/image/common/mail-hover-icon.webp);
}
.cta__tel {
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .cta__tel {
    text-align: left;
    margin-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .cta__tel {
    text-align: center;
    margin-left: 0;
    font-size: 16px;
    padding-left: 0;
  }
}
.cta__tel span {
  margin-left: 12px;
}
.cta__tel span::before {
  content: "";
  width: 11px;
  aspect-ratio: 1/1;
  height: auto;
  background-image: url(../../assets/image/common/tel-icon.webp);
  background-size: cover;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 4px;
}
@media screen and (max-width: 599px) {
  .cta__tel span::before {
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cta__tel span {
    display: block;
    margin-left: 0px;
    margin-top: 2px;
  }
}

.icon-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  aspect-ratio: 1/1;
  height: auto;
}

.f-title {
  text-align: center;
}
.f-title h1,
.f-title h2 {
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 599px) {
  .f-title h1,
  .f-title h2 {
    font-size: 28px;
  }
}
.f-title p {
  font-size: 16px;
  display: block;
  font-weight: 700;
  letter-spacing: normal;
}
@media screen and (max-width: 599px) {
  .f-title p {
    font-size: 14px;
  }
}
.f-title--wide h1,
.f-title--wide h2 {
  letter-spacing: 30%;
  padding-left: 9px;
}
.f-title--middle h1,
.f-title--middle h2 {
  letter-spacing: 20%;
  padding-left: 8px;
}
@media screen and (max-width: 599px) {
  .f-title--middle h1,
  .f-title--middle h2 {
    letter-spacing: 16%;
  }
}
.f-title--narrow h1,
.f-title--narrow h2 {
  letter-spacing: 12%;
  padding-left: 6px;
}
@media screen and (max-width: 599px) {
  .f-title--narrow h1,
  .f-title--narrow h2 {
    letter-spacing: 16%;
  }
}

.f-explanation {
  margin-top: 42px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
@media screen and (max-width: 599px) {
  .f-explanation {
    margin-top: 36px;
    font-size: 16px;
    font-weight: 700;
  }
}
.f-explanation .sp-display--s {
  display: none;
}
@media screen and (max-width: 450px) {
  .f-explanation .sp-display--s {
    display: block;
  }
}
.f-explanation .sp-display--ss {
  display: none;
}
@media screen and (max-width: 400px) {
  .f-explanation .sp-display--ss {
    display: block;
  }
}

.f-results {
  background-image: repeating-linear-gradient(90deg, #fafafa, #fafafa 5px, #ffffff 5px, #ffffff 10px);
  background-attachment: scroll;
  padding-block: 64px 120px;
}
@media screen and (max-width: 599px) {
  .f-results {
    padding-block: 64px 80px;
  }
}
.f-results .container {
  max-width: 1600px;
}
@media screen and (max-width: 1520px) {
  .f-results .container {
    max-width: 1240px;
  }
}
.f-results__swiper {
  margin-top: 56px;
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .f-results__swiper {
    margin-top: 32px;
  }
}
.f-results .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.f-results__swiper-container {
  position: relative;
  padding-bottom: 56px;
}
@media screen and (max-width: 599px) {
  .f-results__swiper-container {
    padding-bottom: 40px;
  }
}
.f-results__swiper-container .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.f-results__swiper-container .swiper-pagination-bullet {
  background: #e23536;
  opacity: 0.2;
}
.f-results__swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e23536;
}

.f-reviews {
  padding-block: 64px 120px;
  background-color: #e23536;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .f-reviews {
    padding-block: 64px 80px;
  }
}
.f-reviews__link {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .f-reviews__link {
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .f-reviews__link {
    padding-top: 24px;
  }
}

.reviews__columns--front {
  margin-top: 56px !important;
}
.reviews__columns--front .reviews__column {
  pointer-events: none;
}

.f-point {
  padding-block: 64px 120px;
  background-image: repeating-linear-gradient(90deg, #fafafa, #fafafa 5px, #ffffff 5px, #ffffff 10px);
  background-attachment: scroll;
}
@media screen and (max-width: 599px) {
  .f-point {
    padding-block: 64px 80px;
  }
}
.f-point .f-title {
  margin-bottom: 56px;
}
@media screen and (max-width: 599px) {
  .f-point .f-title {
    margin-bottom: 80px;
  }
}
.f-point__columns {
  max-width: 980px;
  height: 290px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0px;
  border-radius: 10px;
  margin-bottom: 64px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.f-point__columns:last-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .f-point__columns {
    flex-direction: column;
    height: auto;
  }
}
.f-point__content {
  width: 590px;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 991px) {
  .f-point__content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .f-point__content {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.f-point__label {
  width: 208px;
  margin-inline: 0 auto;
  transform: translate(-15%, -50%);
}
@media screen and (max-width: 991px) {
  .f-point__label {
    transform: translate(-10%, -50%);
    width: 188px;
  }
}
@media screen and (max-width: 768px) {
  .f-point__label {
    margin-inline: auto;
    transform: translate(0%, -50%);
  }
}
.f-point__detail {
  transform: translateY(-50%);
  height: calc(100% - 40px);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-inline: 60px;
}
@media screen and (max-width: 991px) {
  .f-point__detail {
    padding-inline: 24px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .f-point__detail {
    height: auto;
    transform: none;
    margin-top: 0px;
    padding-inline: 16px;
    margin-top: -12px;
    padding-bottom: 32px;
  }
}
.f-point__subtitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4%;
}
@media screen and (max-width: 768px) {
  .f-point__subtitle {
    text-align: center;
    margin-inline: auto;
  }
}
.f-point__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4%;
  margin-top: 6px;
}
.f-point__title span {
  color: #e23536;
}
@media screen and (max-width: 991px) {
  .f-point__title {
    margin-top: 2px;
  }
}
@media screen and (max-width: 768px) {
  .f-point__title {
    text-align: center;
    margin-inline: auto;
  }
}
.f-point__text {
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .f-point__text {
    margin-top: 12px;
  }
}
.f-point__image {
  width: 390px;
  background-color: #e23536;
  border-radius: 0 10px 10px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .f-point__image {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .f-point__image {
    border-radius: 0 0 10px 10px;
    width: 100%;
    aspect-ratio: 390/283.9;
    height: auto;
  }
}
.f-point__image img {
  width: auto;
}
@media screen and (min-width: 1520px) {
  .f-point .cta {
    padding-top: 40px;
  }
}

.f-step {
  padding-block: 64px 120px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .f-step {
    padding-block: 64px 80px;
  }
}
.f-step__columns {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .f-step__columns {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .f-step__columns {
    flex-direction: column;
    align-items: center;
  }
}
.f-step__column {
  background-color: #f8f8f8;
  border-radius: 10px;
  width: 20%;
  padding: 18px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  .f-step__column {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .f-step__column {
    width: 90%;
  }
}
.f-step__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 10px;
  z-index: -1;
}
.f-step__column::after {
  content: "▲";
  font-size: 24px;
  color: rgba(226, 53, 54, 0.6);
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translate(100%, -50%) rotate(90deg);
  z-index: -2;
}
@media screen and (max-width: 599px) {
  .f-step__column::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 100%) rotate(180deg);
  }
}
@media screen and (min-width: 600px) and (max-width: 991px) {
  .f-step__column:nth-of-type(2)::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    transform: translate(-80%, 80%) rotate(-135deg);
    font-size: 20px;
  }
}
.f-step__column:last-of-type::after {
  display: none;
}
.f-step__column h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .f-step__column h3 {
    font-size: 20px;
  }
}
.f-step__label {
  background-color: #ffea2e;
  padding: 5px 20px 7px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
}
.f-step__icon {
  margin-top: 12px;
  width: 98px;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #fff;
  margin-inline: auto;
}
.f-step__icon img {
  width: 50%;
}
.f-step__text {
  margin-top: 12px;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .f-step__text {
    font-size: 16px;
  }
}

#company {
  scroll-margin-top: 120px;
}

.f-shop {
  padding-block: 64px 80px;
  background-color: #fafafa;
}
@media screen and (max-width: 599px) {
  .f-shop {
    padding-block: 64px 64px;
  }
}
.f-shop__columns {
  margin-top: 60px;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .f-shop__columns {
    gap: 24px;
  }
}
@media screen and (max-width: 900px) {
  .f-shop__columns {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .f-shop__columns {
    margin-top: 42px;
    flex-direction: column;
    align-items: auto;
    gap: 24px;
  }
}
.f-shop__images {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .f-shop__images {
    width: 58%;
  }
}
@media screen and (max-width: 768px) {
  .f-shop__images {
    width: 100%;
  }
}
.f-shop__slider {
  width: 100%;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .f-shop__slider {
    width: 100%;
    padding: 0 16px;
  }
}
.f-shop__slider .f-shop__main-slider {
  margin-bottom: 4px;
  overflow: hidden;
}
.f-shop__slider .f-shop__main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.f-shop__slider .swiper-button-next,
.f-shop__slider .swiper-button-prev {
  background: #fff;
  width: 40px !important;
  aspect-ratio: 1/1;
  height: auto !important;
  border-radius: 100%;
  background-color: rgba(52, 52, 52, 0.5);
  border: 1px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .f-shop__slider .swiper-button-next,
  .f-shop__slider .swiper-button-prev {
    width: 32px !important;
  }
}
.f-shop__slider .swiper-button-next:hover,
.f-shop__slider .swiper-button-prev:hover {
  opacity: 0.8;
}
.f-shop__slider .swiper-button-next {
  right: 0px !important;
  top: 40% !important;
}
@media screen and (max-width: 599px) {
  .f-shop__slider .swiper-button-next {
    top: 42% !important;
  }
}
.f-shop__slider .swiper-button-prev {
  left: 0px !important;
  top: 40% !important;
}
@media screen and (max-width: 599px) {
  .f-shop__slider .swiper-button-prev {
    top: 42% !important;
  }
}
.f-shop__slider .swiper-button-next::after,
.f-shop__slider .swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .f-shop__slider .swiper-button-next::after,
  .f-shop__slider .swiper-button-prev::after {
    font-size: 16px !important;
  }
}
.f-shop__slider .swiper-button-next::after {
  content: "→" !important;
}
.f-shop__slider .swiper-button-prev::after {
  content: "←" !important;
}
.f-shop__slider .f-shop__thumb-slider {
  height: auto;
}
.f-shop__slider .f-shop__thumb-slider .swiper-slide {
  width: 25%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.f-shop__slider .f-shop__thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #fff;
}
.f-shop__slider .f-shop__thumb-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.f-shop__info {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .f-shop__info {
    width: 100%;
  }
}
.f-shop__info dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .f-shop__info dl {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .f-shop__info dl {
    padding-inline: 20px;
  }
}
.f-shop__info dl:first-of-type {
  margin-top: 0;
}
.f-shop__info dl dt {
  width: 88px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.f-shop__info dl dt::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
}
.f-shop__area {
  background-color: #e0f7f9;
  padding-block: 40px;
  padding-inline: 40px;
}
@media screen and (max-width: 1200px) {
  .f-shop__area {
    margin-top: 24px;
    padding-block: 30px;
  }
}
@media screen and (max-width: 991px) {
  .f-shop__area {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 991px) {
  .f-shop__area {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .f-shop__area {
    margin-top: 20px;
    padding-block: 20px;
    padding-inline: 24px;
  }
}
.f-shop__area h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4%;
}
@media screen and (max-width: 599px) {
  .f-shop__area h3 {
    font-size: 16px;
  }
}
.f-shop__text {
  margin-top: 10px;
}
.f-shop__comment {
  margin-top: 10px;
  font-size: 14px;
}
.f-shop iframe {
  margin-top: 30px;
  max-width: 1080px;
  margin-inline: auto;
  display: block;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .f-shop iframe {
    margin-top: 28px;
  }
}

.f-cta {
  background-color: #fff;
  padding-block: 64px 64px;
}
@media screen and (max-width: 599px) {
  .f-cta {
    padding-bottom: 40px;
  }
}

.reviews__columns {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .reviews__columns {
    grid-template-columns: repeat(3, 32%);
    column-gap: 2%;
    row-gap: 2%;
    justify-content: center;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .reviews__columns {
    margin-top: 24px;
    grid-template-columns: repeat(2, 46%);
    column-gap: 4%;
    row-gap: 2%;
    justify-content: center;
  }
}
.reviews__column {
  width: 100%;
  transition: all 0.3s ease;
}
.reviews__column:hover {
  opacity: 0.8;
}
.reviews__column h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .reviews__column h3 {
    margin-top: 8px;
    font-size: 14px;
  }
}
.reviews__column h3 span:first-of-type {
  margin-right: 8px;
}
.reviews__car-info {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .reviews__car-info {
    margin-top: 2px;
  }
}
.reviews__car-info span {
  margin-inline: 4px;
}
.reviews__mileage {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
}
.reviews__mileage span {
  margin-right: 4px;
}
.reviews__img {
  width: 100%;
}
.reviews__img img {
  border-radius: 10px;
}

.p-reviews {
  background-color: #fff;
}
.p-reviews__archive {
  padding-block: 64px 80px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-reviews__archive {
    padding-block: 32px 56px;
  }
}
.p-reviews__text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-reviews__text .pc-display--tb {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .p-reviews__text .pc-display--tb {
    display: none;
  }
}
.p-reviews__text .tb-display {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-reviews__text .tb-display {
    display: inline-block;
  }
}
@media screen and (max-width: 1400px) {
  .p-reviews__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .p-reviews__text {
    font-size: 14px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 375px) {
  .p-reviews__text {
    font-size: 13px;
  }
}
.p-reviews__text::before, .p-reviews__text::after {
  content: "";
  width: 2px;
  height: 28px;
  background-color: #333;
  display: inline-block;
  transform: rotate(-30deg);
  margin-right: 16px;
  vertical-align: -8px;
}
@media screen and (max-width: 1400px) {
  .p-reviews__text::before, .p-reviews__text::after {
    height: 24px;
  }
}
@media screen and (max-width: 400px) {
  .p-reviews__text::before, .p-reviews__text::after {
    margin-right: 10px;
  }
}
.p-reviews__text::after {
  transform: rotate(30deg);
  margin-left: 16px;
}
@media screen and (max-width: 400px) {
  .p-reviews__text::after {
    margin-left: 10px;
  }
}
.p-reviews__no-posts {
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* モーダル */
.p-reviews__modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.5);
  z-index: 9998;
}

.p-reviews__modal-overlay.is-active {
  display: block;
}

.p-reviews__modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: #fff;
  z-index: 9999;
  padding: 40px;
  border-radius: 10px;
  overflow-y: auto;
}
@media screen and (min-width: 1520px) {
  .p-reviews__modal {
    max-width: 1024px;
  }
}
@media screen and (max-width: 768px) {
  .p-reviews__modal {
    padding: 52px 24px 52px 24px;
  }
}

.p-reviews__modal.is-active {
  display: block;
}

.p-reviews__modal__flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.p-reviews__modal__img {
  flex: 0 0 55%;
}

.p-reviews__modal__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.p-reviews__modal__text {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .p-reviews__modal__text {
    width: 100%;
  }
}

.p-reviews__modal__title {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4%;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: 12px;
}
@media screen and (min-width: 1520px) {
  .p-reviews__modal__title {
    margin-top: 120px;
  }
}
@media screen and (max-width: 991px) {
  .p-reviews__modal__title {
    margin-top: 28%;
  }
}
@media screen and (max-width: 768px) {
  .p-reviews__modal__title {
    margin-top: 0px;
  }
}
.p-reviews__modal__title span {
  margin-right: 8px;
}

.p-reviews__modal__info p {
  font-size: 16px;
}

.p-reviews__modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}
.p-reviews__modal__close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .p-reviews__modal__flex {
    flex-direction: column;
    gap: 20px;
  }
}
.results__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 900;
}
@media screen and (max-width: 599px) {
  .results__title {
    margin-top: 10px;
    font-size: 14px;
  }
}
.results__car-info {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 599px) {
  .results__car-info {
    margin-top: 10px;
    gap: 6px;
    flex-direction: column;
  }
}
.results__car-info p {
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .results__car-info p {
    width: 100%;
    font-size: 14px;
  }
}
.results__car-info p span {
  border-radius: 4px;
  background-color: #333;
  font-weight: 700;
  color: #fff;
  padding: 1px 4px 2px 4px;
  font-size: 12px;
  vertical-align: 1.5px;
  margin-right: 6px;
}
.results__price-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (max-width: 660px) {
  .results__price-wrap {
    gap: 6px;
  }
}
@media screen and (max-width: 599px) {
  .results__price-wrap {
    margin-top: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}
.results__label {
  background-color: #e23536;
  border-radius: 6px;
  padding: 6px 8px 8px 12px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 599px) {
  .results__label {
    width: 100%;
  }
}
@media screen and (max-width: 370px) {
  .results__label {
    padding: 6px 0px 8px 2px;
  }
}
.results__label::after {
  content: "▲";
  font-size: 16px;
  color: #e23536;
  position: absolute;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  right: -8px;
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .results__label::after {
    top: auto;
    bottom: 8px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(100%) rotate(180deg);
  }
}
.results__label p {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .results__label p {
    text-align: center;
  }
}
.results__label p span:first-of-type {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.results__label p span:last-of-type {
  font-size: 14px;
  font-weight: 700;
  color: #e23536;
  background-color: #fff;
  padding: 1px 4px 2px 4px;
  border-radius: 2px;
  margin-right: 4px;
}
.results__price {
  font-size: 36px;
  font-weight: 900;
  color: #e23536;
}
.results__price p {
  display: flex;
  align-items: center;
}
.results__price .price-decimal {
  font-size: 24px;
}
.results__unit {
  color: #333;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 1px;
  margin-left: 2px;
  margin-top: 13px;
}
@media screen and (max-width: 599px) {
  .results__unit {
    margin-top: 15px;
  }
}
.results__link {
  margin-top: 16px;
}
@media screen and (max-width: 599px) {
  .results__link {
    margin-top: 4px;
  }
}
.results__link p {
  padding-block: 10px 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4%;
  color: #e23536;
  border: 1px solid #e23536;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .results__link p {
    font-size: 14px;
  }
}
.results__link p:hover {
  background-color: #e23536;
  color: #fff;
  opacity: 1;
}

.p-results__archive {
  padding-block: 64px 80px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .p-results__archive {
    padding-block: 32px 32px;
  }
}
.p-results .container {
  max-width: 1400px;
}
.p-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 16px;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .p-results__grid {
    grid-template-columns: repeat(3, 32%);
    column-gap: 2%;
    row-gap: 2%;
    justify-content: center;
    margin-top: 24px;
  }
}
@media screen and (max-width: 991px) {
  .p-results__grid {
    margin-top: 24px;
    grid-template-columns: repeat(2, calc(50% - 10px));
    column-gap: 10px;
    row-gap: 10px;
    justify-content: center;
  }
}
.p-results__item {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  padding: 16px;
}
@media screen and (max-width: 599px) {
  .p-results__item {
    padding: 10px;
  }
}
.p-results__item a:hover {
  opacity: 1;
}
.p-results__no-posts {
  text-align: center;
}

.main-slider {
  margin-bottom: 4px;
  overflow: hidden;
}

.main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  width: 48px !important;
  aspect-ratio: 1/1;
  height: auto !important;
  border-radius: 100%;
  background-color: rgba(52, 52, 52, 0.5);
  border: 1px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 32px !important;
  }
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
}

.swiper-button-next {
  right: 0px !important;
  top: 40% !important;
}
@media screen and (max-width: 599px) {
  .swiper-button-next {
    top: 42% !important;
  }
}

.swiper-button-prev {
  left: 0px !important;
  top: 40% !important;
}
@media screen and (max-width: 599px) {
  .swiper-button-prev {
    top: 42% !important;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }
}

.swiper-button-next::after {
  content: "→" !important;
}

.swiper-button-prev::after {
  content: "←" !important;
}

.thumb-slider {
  height: auto;
}

.thumb-slider .swiper-slide {
  width: 25%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #fff;
}

.thumb-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.p-result__archive {
  background-color: #fff;
}
.p-result__content {
  background-color: #fff;
  padding-block: 64px 80px;
}
@media screen and (max-width: 599px) {
  .p-result__content {
    padding-block: 32px 56px;
  }
}
.p-result__columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 42px;
}
@media screen and (max-width: 991px) {
  .p-result__columns {
    flex-direction: column;
    gap: 24px;
  }
}
.p-result__slider {
  width: 50%;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}
@media screen and (max-width: 991px) {
  .p-result__slider {
    width: 100%;
    padding: 0 16px;
  }
}
.p-result__info {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .p-result__info {
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-result__info {
    width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 400px) {
  .p-result__info {
    padding-inline: 0;
  }
}
.p-result__info h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4%;
}
@media screen and (max-width: 599px) {
  .p-result__info h2 {
    font-size: 24px;
  }
}
.p-result__overview {
  margin-top: 12px;
  display: flex;
  column-gap: 24px;
  row-gap: 4px;
  flex-wrap: wrap;
}
@media screen and (max-width: 375px) {
  .p-result__overview {
    column-gap: 20px;
  }
}
.p-result__records {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.p-result__record {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 16px;
}
.p-result__record span {
  font-size: 15px;
  width: 75px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 4px;
  padding-bottom: 2px;
  margin-top: 5px;
}
.p-result__price-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}
@media screen and (max-width: 599px) {
  .p-result__price-wrap {
    gap: 24px;
  }
}
@media screen and (max-width: 400px) {
  .p-result__price-wrap {
    justify-content: space-between;
    gap: 12px;
  }
}
@media screen and (max-width: 370px) {
  .p-result__price-wrap {
    margin-top: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}
.p-result__label {
  background-color: #e23536;
  border-radius: 6px;
  padding: 6px 8px 8px 12px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 370px) {
  .p-result__label {
    width: 100%;
  }
}
.p-result__label::after {
  content: "▲";
  font-size: 16px;
  color: #e23536;
  position: absolute;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  right: -10px;
  z-index: 0;
}
@media screen and (max-width: 370px) {
  .p-result__label::after {
    top: auto;
    bottom: 8px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(100%) rotate(180deg);
  }
}
.p-result__label p {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .p-result__label p {
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .p-result__label p {
    font-size: 20px;
    text-align: center;
  }
}
.p-result__label p span:first-of-type {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .p-result__label p span:first-of-type {
    font-weight: 700;
  }
}
@media screen and (max-width: 599px) {
  .p-result__label p span:first-of-type {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.p-result__label p span:last-of-type {
  font-size: 22px;
  font-weight: 700;
  color: #e23536;
  background-color: #fff;
  padding: 1px 4px 2px 4px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: 1px;
}
@media screen and (max-width: 599px) {
  .p-result__label p span:last-of-type {
    font-size: 18px;
    margin-right: 4px;
  }
}
.p-result__price {
  font-size: 64px;
  font-weight: 900;
  color: #e23536;
}
@media screen and (max-width: 400px) {
  .p-result__price {
    margin-inline: auto;
  }
}
.p-result__price p {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .p-result__price {
    font-size: 56px;
  }
}
.p-result__price .price-decimal {
  font-size: 36px;
}
.p-result__unit {
  color: #333;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 2px;
  margin-top: 28px;
}
@media screen and (max-width: 599px) {
  .p-result__unit {
    margin-top: 22px;
  }
}
.p-result__point {
  margin-top: 12px;
  border-radius: 4px;
  width: 100%;
  padding: 16px 20px 20px 20px;
}
.p-result__point h3 {
  font-size: 14px;
  font-weight: 700;
  padding: 3px 7px 4px 30px;
  background-color: #fff;
  width: fit-content;
  border-radius: 100px;
  position: relative;
}
.p-result__point h3::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  height: auto;
  display: inline-block;
  border-radius: 100px;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.p-result__point--plus {
  background-color: rgba(226, 53, 54, 0.05);
}
.p-result__point--plus h3 {
  border: 1px solid #e23536;
  color: #e23536;
}
.p-result__point--plus h3::before {
  background-image: url(../../assets/image/result/plus-point.webp);
  background-color: #e23536;
}
.p-result__point--minus {
  background-color: rgba(44, 86, 211, 0.05);
}
.p-result__point--minus h3 {
  border: 1px solid #2c56d3;
  color: #2c56d3;
}
.p-result__point--minus h3::before {
  background-image: url(../../assets/image/result/minus-point.webp);
  background-color: #2c56d3;
}
.p-result__comment {
  margin-top: 12px;
}
.p-result__back {
  margin-top: 56px;
}
.p-result__cta {
  background-color: #fafafa;
  padding-block: 80px 64px;
}

.p-faq {
  background-color: #fff;
}
.p-faq__faqs {
  padding-block: 80px;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .p-faq__faqs {
    padding-block: 32px 56px;
  }
}
.p-faq__wrap {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: 20px;
}
.p-faq__wrap:last-of-type {
  margin-bottom: 0;
}
.p-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 60px;
  position: relative;
  cursor: pointer;
}
.p-faq__question::before {
  content: "Q";
  flex-shrink: 0;
  color: #e23536;
  font-size: 26px;
  font-weight: 900;
  margin-right: 14px;
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  padding-bottom: 7px;
}
@media screen and (max-width: 599px) {
  .p-faq__question::before {
    font-size: 24px;
    width: 42px;
  }
}
.p-faq__question p {
  margin-top: 9px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-faq__question p {
    font-size: 16px;
  }
}
.p-faq__icon {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 28px;
  height: 28px;
  background-color: #e23536;
  border-radius: 100px;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__question.is-active .p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq__answer {
  height: 0;
  overflow: hidden; /* ここで高さを削る */
  transition: height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
  position: relative;
}
.p-faq__answer-content {
  padding-top: 12px;
}
.p-faq__answer-inner {
  padding: 20px 20px 28px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #f4f4f4;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-faq__answer-inner {
    padding: 16px 16px 20px 16px;
  }
}
.p-faq__answer-inner::before {
  content: "A";
  color: #ffb715;
  font-size: 26px;
  font-weight: 900;
  margin-right: 14px;
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding-bottom: 7px;
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .p-faq__answer-inner::before {
    font-size: 24px;
    width: 42px;
  }
}
.p-faq__answer-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  background-color: #f4f4f4;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1; /* 背面に隠れないように設定 */
}
.p-faq__answer-inner p {
  margin-top: 9px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .p-faq__answer-inner p {
    margin-bottom: 9px;
  }
}

.p-staff {
  background-color: #fff;
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .p-staff {
    padding-bottom: 56px;
  }
}
.p-staff__bubble {
  max-width: 560px;
  margin-inline: auto;
  margin-top: -80px;
}
@media screen and (max-width: 599px) {
  .p-staff__bubble {
    margin-top: -40px;
    width: 85%;
  }
}
.p-staff__columns {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-staff__columns {
    grid-template-columns: repeat(3, 32%);
    column-gap: 2%;
    row-gap: 2%;
    justify-content: center;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-staff__columns {
    margin-top: 24px;
    grid-template-columns: repeat(2, 46%);
    column-gap: 4%;
    row-gap: 2%;
    justify-content: center;
  }
}
.p-staff__column {
  width: 100%;
}
.p-staff__img {
  width: 100%;
}
.p-staff__img img {
  border-radius: 10px;
}
.p-staff__text-inner {
  padding-inline: 16px;
}
@media screen and (max-width: 599px) {
  .p-staff__text-inner {
    padding-inline: 2%;
  }
}
.p-staff__position {
  margin-top: 12px;
  color: #e23536;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4%;
}
@media screen and (max-width: 599px) {
  .p-staff__position {
    margin-top: 8px;
  }
}
.p-staff__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4%;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .p-staff__name {
    font-size: 18px;
  }
}
.p-staff__personal {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  letter-spacing: 4%;
  width: 100%;
  margin-bottom: 12px;
}
.p-staff__personal:last-of-type {
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .p-staff__personal {
    gap: 8px;
  }
}
.p-staff__personal dt {
  width: 42px;
  height: 24px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #e2a635;
  color: #e2a635;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .p-staff__personal dt {
    font-size: 14px;
    width: 38px;
    height: 22px;
  }
}
.p-staff__personal dd {
  width: calc(100% - 56px);
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .p-staff__personal dd {
    font-size: 14px;
  }
}
.p-staff__no-posts {
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-assessment {
  padding-bottom: 80px;
  background-image: repeating-linear-gradient(90deg, #fafafa, #fafafa 5px, #ffffff 5px, #ffffff 10px);
  background-attachment: scroll;
}
@media screen and (max-width: 599px) {
  .p-assessment {
    padding-bottom: 48px;
  }
}

.form {
  margin-top: 56px;
  max-width: 600px;
  margin-inline: auto;
  background-color: #ffffff;
  padding: 6px;
  border-radius: 10px;
}
@media screen and (min-width: 1520px) {
  .form {
    max-width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .form {
    margin-top: 32px;
  }
}
.form__title {
  background-color: #e23536;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 6px 6px 0 0;
  height: 72px;
}
@media screen and (max-width: 599px) {
  .form__title {
    height: 68px;
  }
}
.form__title h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4%;
}
@media screen and (max-width: 599px) {
  .form__title h2 {
    font-size: 22px;
  }
}
.form__comment {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4%;
}
.form__wrap {
  padding-inline: 40px;
  padding-block: 40px;
}
@media screen and (max-width: 599px) {
  .form__wrap {
    padding-block: 32px;
    padding-inline: 16px;
  }
}
.form__category {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.form__category:last-of-type {
  padding-top: 16px;
}
.form dl {
  width: 100%;
  font-size: 16px;
  letter-spacing: 4%;
  margin-bottom: 24px;
}
.form dl dt {
  width: 100%;
  font-weight: 500;
}
.form dl .select-wrap {
  position: relative;
}
.form dl .select-wrap::after {
  content: "";
  background-image: url(../../assets/image/assessment/select-arrow.webp);
  background-size: cover;
  width: 9px;
  aspect-ratio: 9/6;
  height: auto;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.form dl dd {
  width: 100%;
  margin-top: 8px;
}
.form dl dd input,
.form dl dd select {
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.3);
  padding: 8px 12px;
  border-radius: 4px;
}
.form dl dd select {
  padding-right: 24px;
}
.form dl dd ::placeholder {
  opacity: 0.25;
  color: #333;
}
.form dl dd {
  /* Edge, Chrome, Safari 用 */
}
.form dl dd ::-webkit-input-placeholder {
  opacity: 0.25;
}
.form dl dd {
  /* Firefox 用 */
}
.form dl dd ::-moz-placeholder {
  opacity: 0.25;
}
.form dl dd {
  /* IE 用 */
}
.form dl dd :-ms-input-placeholder {
  opacity: 0.25;
}
.form dl dd .js-select-placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form dl dd .js-select-placeholder option {
  color: #333;
}
.form__required {
  background-color: #e23536;
  color: #fff;
  margin-left: 8px;
  font-size: 12px;
  width: 30px;
  height: 18px;
  display: inline-block;
  padding-left: 2.5px;
  vertical-align: 1px;
}
.form__privacy {
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 24px;
}
.form__privacy .wpcf7-list-item-label {
  margin-left: 4px;
}
.form__privacy a {
  color: #2780ea;
  text-decoration: underline;
}
.form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__submit .wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 56px;
  border-radius: 100px;
  background-color: #e23536;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #e23536;
  text-align: center;
  letter-spacing: 4%;
  transition: all 0.3s ease;
  padding-bottom: 3px;
}
@media screen and (max-width: 991px) {
  .form__submit .wpcf7-submit {
    font-weight: 700;
  }
}
.form__submit .wpcf7-submit:hover {
  background-color: #fff;
  color: #e23536;
  opacity: 1;
}

@media screen and (max-width: 599px) {
  .thanks .form__title h2 {
    font-size: 18px;
  }
}
.thanks__tel {
  color: #2780ea;
}
.thanks__comment {
  margin-top: 24px;
  width: 100%;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.thanks__business-time {
  margin-top: 10px;
}

.p-privacy {
  background-color: #fafafa;
}
.p-privacy .container {
  padding-block: 64px 80px;
  max-width: 1080px;
}
@media screen and (max-width: 599px) {
  .p-privacy .container {
    padding-block: 32px 56px;
  }
}
.p-privacy h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 20%;
}
@media screen and (max-width: 599px) {
  .p-privacy h2 {
    font-size: 24px;
  }
}
.p-privacy h2 span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  margin-bottom: 6px;
}
@media screen and (max-width: 991px) {
  .p-privacy h2 span {
    margin-bottom: 0;
  }
}
.p-privacy__content {
  margin-top: 64px;
}
@media screen and (max-width: 599px) {
  .p-privacy__content {
    margin-top: 32px;
  }
}
.p-privacy__content p {
  margin-top: 24px;
  line-height: 28px;
}
.p-privacy__date {
  text-align: right;
  margin-top: 40px !important;
}

.p-404__wrap {
  background-color: #fafafa;
}
.p-404__wrap .container {
  padding-block: 140px;
}
@media screen and (max-width: 599px) {
  .p-404__wrap .container {
    padding-block: 60px 96px;
  }
}
.p-404__wrap h1 {
  text-align: center;
  color: #e23536;
  font-weight: 900;
  font-size: 28px;
}
.p-404__text {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 64px;
}/*# sourceMappingURL=style.css.map */