@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  color: #1b2935;
}

/* -------------------------------------------- */
/* ------------- Noto Sans CJK JP ------------- */
/* -------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

body {
  overflow-x: clip;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  margin-inline: auto;
  width: 95%;
  max-width: 71.625rem;
}

.footer {
  background-color: rgba(27, 41, 53, 0.1);
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 6.25rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2%;
  }
}

.footer__nav-title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__nav-title {
    font-size: 1.5rem;
  }
}

.footer__nav-list {
  margin-top: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    margin-top: 1.25rem;
    gap: 1.125rem;
  }
}

.footer__nav-item.footer__nav-item--time {
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer__nav-link {
  color: #1b2935;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer__nav-link--line {
  color: #FFFFFF;
  background-color: #04c755;
  border-radius: 0.625rem;
  padding: 0.625rem;
  display: inline-block;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-link--line {
    padding: 1.25rem;
  }
}

.footer__bottom {
  margin-top: 2.5rem;
  background-color: #1b2935;
  text-align: center;
  padding-block: 2.5rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 5rem;
    padding-block: 3.375rem 2.25rem;
  }
}

.footer__copyright {
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1.8125;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.header {
  background-color: #FFFFFF;
  padding-block: 0.625rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 82.6875rem;
}

.header__logo {
  width: 9.6875rem;
  max-width: 100%;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.header__nav-item {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.2em;
}

.header__nav-link {
  color: #1b2935;
}

.header__nav-link.header__nav-link--line {
  width: 7.4375rem;
  max-width: 100%;
  display: block;
}

.header__nav-link.header__nav-link--simulation {
  width: 10.3125rem;
  max-width: 100%;
  display: block;
}

.fv {
  aspect-ratio: 1440/638;
}

.fv img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.section__title {
  font-size: 1.625rem;
  line-height: 1.1875;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 3rem;
  }
}

.section__title::after {
  content: "";
  position: absolute;
  max-width: 100%;
  height: 0.25rem;
  display: inline-block;
  bottom: -1.25rem;
  background-size: 1.125rem 0.25rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .section__title::after {
    bottom: -1.875rem;
  }
}

.section__title span {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .section__title span {
    font-size: 3.75rem;
  }
}

.search {
  background-color: #bdc2f3;
  padding-block: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .search {
    padding-block: 4.6875rem;
  }
}

.search__title {
  color: #FFFFFF;
}

.search__title::after {
  width: 12.375rem;
  left: calc(50% - 6.125rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #FFFFFF), color-stop(80%, #bdc2f3));
  background-image: linear-gradient(to right, #FFFFFF 80%, #bdc2f3 80%);
}

.search__button {
  margin-top: 2.5rem;
  width: 23.625rem;
}
@media screen and (min-width: 768px) {
  .search__button {
    margin-top: 5rem;
  }
}

.button {
  position: relative;
  background-color: #f47920;
  padding-block: 0.9375rem;
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(170, 170, 170, 0.35);
          box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(170, 170, 170, 0.35);
  display: block;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.875rem;
    padding-block: 1.25rem;
  }
}

.button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid #FFFFFF;
  border-right: 0;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button a {
  display: inline-block;
  color: #FFFFFF;
}

.inventory {
  margin-block: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .inventory {
    margin-block: 8.5rem 4.3125rem;
  }
}

.inventory__title::after {
  width: 12.375rem;
  left: calc(50% - 6.125rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #1b2935), color-stop(80%, #FFFFFF));
  background-image: linear-gradient(to right, #1b2935 80%, #FFFFFF 80%);
}

.inventory__cards {
  overflow-x: scroll;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 21.5rem 1.5625rem 21.5rem 1.5625rem 21.5rem 1.5625rem 21.5rem;
  grid-template-columns: repeat(4, 21.5rem);
  gap: 1.5625rem;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .inventory__cards {
    margin-top: 7.0625rem;
  }
}

.inventory__button {
  margin-top: 4.6875rem;
  width: 23.625rem;
}

.inventory-card {
  border: 0.1875rem solid #f47920;
  border-radius: 1.25rem;
}

.inventory-card__image {
  aspect-ratio: 347/214;
}

.inventory-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-top-right-radius: 1.25rem;
  border-top-left-radius: 1.25rem;
}

.inventory-card__body {
  margin-block: 1.25rem 2.1875rem;
  margin-inline: 1.125rem;
}

.inventory-card__name {
  color: #1b2935;
  font-size: 1.3125rem;
  line-height: 1.1904761905;
  letter-spacing: 0.1em;
}

.inventory-card__price {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.inventory-card__price-label {
  background-color: #f47920;
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  border-radius: 3.125rem;
  padding: 0.625rem 1rem;
}

.inventory-card__price-value {
  color: #f47920;
  font-size: 2rem;
  line-height: 1.21875;
}

.inventory-card__price-unit {
  color: #f47920;
  font-size: 1.0625rem;
  line-height: 0.8095238095;
}

.inventory-card__spec {
  border-top: 3px dashed #f47920;
  padding-top: 1.875rem;
  margin-top: 0.75rem;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

.inventory-card__spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1b2935;
}

.inventory-card__spec-item dt {
  font-size: 0.875rem;
  line-height: 2.0714285714;
  min-width: 5.1875rem;
}

.inventory-card__spec-item dd {
  font-size: 0.875rem;
  line-height: 2.0714285714;
  font-weight: 400;
}

.support {
  margin-block: 3.75rem 6rem;
}

.support__content {
  background-image: url(../image/img/consultation-bg.png);
  background-size: 50%;
  background-position: right bottom;
  background-repeat: no-repeat;
  position: relative;
  border: solid 5px #1b2935;
  border-radius: 1.25rem;
  padding-block: 2.5625rem 2.375rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support__content {
    padding-block: 5.0625rem 4.8125rem;
    padding-inline: 2.5rem;
  }
}

.support__content:before {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  margin-left: -14px;
  border: 25px solid transparent;
  border-top: 25px solid #FFFFFF;
  z-index: 2;
}

.support__content:after {
  content: "";
  position: absolute;
  bottom: -61px;
  left: 50%;
  margin-left: -17px;
  border: 28px solid transparent;
  border-top: 28px solid #1b2935;
  z-index: 1;
}

.support__lead {
  color: #FFFFFF;
  background-color: #1b2935;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.16em;
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .support__lead {
    font-size: 1.75rem;
  }
}

.support__title {
  font-size: 1.4375rem;
  line-height: 1.2033898305;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support__title {
    font-size: 3.6875rem;
  }
}

.support__title-highlight {
  color: #f47920;
  font-size: 2rem;
  line-height: 1.1983471074;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .support__title-highlight {
    font-size: 7.5625rem;
  }
}

.support__button {
  margin-top: 10.5625rem;
  width: 30.625rem;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-inline: initial;
}
@media screen and (min-width: 768px) {
  .support__button {
    font-size: 1.875rem;
    margin-top: 2.5rem;
  }
}

.support__balloon {
  position: absolute;
  display: inline-block;
  width: 9.375rem;
  height: 9.375rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  text-align: center;
  color: #FFFFFF;
  background-color: #1b2935;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 38%;
  right: 23%;
}
@media screen and (min-width: 768px) {
  .support__balloon {
    width: 14.75rem;
    height: 14.75rem;
    font-size: 1.3125rem;
    top: 2.1875rem;
  }
}

.support__balloon:before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 11px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 23px solid #1b2935;
  z-index: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .support__balloon:before {
    bottom: 8px;
  }
}

.support__ballon-highlight {
  font-size: 1.25rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .support__ballon-highlight {
    font-size: 1.75rem;
  }
}

.quality {
  background-color: #e8f4fd;
  padding-block: 5.75rem 4.5625rem;
}

.quality__title::after {
  width: 23.375rem;
  left: calc(50% - 11.6875rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #1b2935), color-stop(80%, #e8f4fd));
  background-image: linear-gradient(to right, #1b2935 80%, #e8f4fd 80%);
}
@media screen and (min-width: 768px) {
  .quality__title::after {
    width: 43.625rem;
    left: calc(50% - 21.8125rem);
  }
}

.quality__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5625rem;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .quality__list {
    -ms-grid-columns: 1fr 2.375rem 1fr 2.375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.375rem;
    margin-top: 6.375rem;
  }
}

.quality__card {
  border: 0.1875rem solid #f47920;
  border-radius: 0.625rem;
  background-color: #FFFFFF;
  padding: 1.875rem 1.25rem;
}

.quality__card-icon {
  width: 50%;
  aspect-ratio: 158/190;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .quality__card-icon {
    width: 70%;
  }
}

.quality__card-icon img {
  height: 100%;
}

.quality__card-title {
  font-size: 1.3125rem;
  line-height: 1.1923076923;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .quality__card-title {
    font-size: 1.625rem;
  }
}

.quality__card-text {
  border-top: 3px dashed #f47920;
  margin-top: 1rem;
  padding-top: 1rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  min-height: 8.9375rem;
}

.quality__card-button {
  width: 13.1875rem;
  font-size: 1rem;
  line-height: 1.25;
}

.loan {
  background-color: #e8f4fd;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .loan {
    padding-bottom: 4.125rem;
  }
}

.loan__title::after {
  width: 23.375rem;
  left: calc(50% - 11.6875rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #1b2935), color-stop(80%, #e8f4fd));
  background-image: linear-gradient(to right, #1b2935 80%, #e8f4fd 80%);
}
@media screen and (min-width: 768px) {
  .loan__title::after {
    width: 43.625rem;
    left: calc(50% - 21.8125rem);
  }
}

.loan__text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .loan__text {
    margin-top: 4.625rem;
    font-size: 1.5rem;
  }
}

.loan__button {
  margin-top: 2rem;
  width: 23.625rem;
}
@media screen and (min-width: 768px) {
  .loan__button {
    margin-top: 3.4375rem;
  }
}

.flow {
  margin-block: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-block: 5rem 5.8125rem;
  }
}

.flow__title::after {
  width: 23.375rem;
  left: calc(50% - 11.6875rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #1b2935), color-stop(80%, #FFFFFF));
  background-image: linear-gradient(to right, #1b2935 80%, #FFFFFF 80%);
}
@media screen and (min-width: 768px) {
  .flow__title::after {
    width: 43.625rem;
    left: calc(50% - 21.8125rem);
  }
}

.flow__subtitle {
  margin-top: 2.5rem;
  background-color: #1b2935;
  color: #FFFFFF;
  padding: 1.125rem;
  font-size: 1rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  border-radius: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__subtitle {
    margin-top: 5.75rem;
    padding: 1.125rem 4.375rem;
    font-size: 1.3125rem;
  }
}

.flow__text {
  margin-top: 1.875rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.2222222222;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow__text {
    font-size: 1.125rem;
  }
}

.flow__image {
  margin-top: 4.5625rem;
}

.faq {
  background-color: #bdc2f3;
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-block: 4.375rem;
  }
}

.faq__title {
  color: #FFFFFF;
}

.faq__title::after {
  width: 17.5rem;
  left: calc(50% - 8.75rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #FFFFFF), color-stop(80%, #bdc2f3));
  background-image: linear-gradient(to right, #FFFFFF 80%, #bdc2f3 80%);
}

.faq__title-icon {
  width: 7.5rem;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__title-icon {
    width: 8.875rem;
    margin-bottom: 2.5rem;
  }
}

.faq__items {
  margin-top: 4.6875rem;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .faq__items {
    margin-top: 6.25rem;
  }
}

.faq__items.faq__items--mt {
  margin-top: 1rem;
}

.faq-item {
  background-color: #FFFFFF;
  padding-inline: 1rem;
  padding-block: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .faq-item {
    padding-inline: 2.125rem 1.25rem;
  }
}

.faq-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}

.faq-item__text {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1rem;
  line-height: 1.1666666667;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .faq-item__text {
    padding-left: 4.6875rem;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.faq-item__text::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/faq-q.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.75rem;
  height: 1.75rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .faq-item__text::before {
    width: 2.0625rem;
    height: 2.0625rem;
  }
}

.faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 21px;
  height: 12.5px;
}

.faq-item__icon:before,
.faq-item__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 16px;
  border-radius: 9999px;
  background-color: #1b2935;
  -webkit-transform-origin: 50% calc(100% - 1.5px);
          transform-origin: 50% calc(100% - 1.5px);
}

.faq-item__icon:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-item__icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.faq-item[open]:not([data-accordion-before-close]) .faq-item__icon::before,
.faq-item[open]:not([data-accordion-before-close]) .faq-item__icon::after {
  -webkit-transform-origin: 50% 1.5px;
          transform-origin: 50% 1.5px;
}

.faq-item__container {
  overflow: hidden;
  padding-top: 1.6875rem;
}

.faq-container__text {
  position: relative;
  font-size: 1rem;
  line-height: 2.2222222222;
  padding-inline: 2.5rem;
  font-weight: 400;
  text-align: left;
  color: #1b2935;
}
@media screen and (min-width: 768px) {
  .faq-container__text {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    padding-inline: 4.6875rem 3.3125rem;
  }
}

.faq-container__text::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/faq-a.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.75rem;
  height: 1.75rem;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .faq-container__text::before {
    width: 2.0625rem;
    height: 2.0625rem;
  }
}

.js-faq-container {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.faq__button {
  margin-top: 2.875rem;
  width: 23.625rem;
}

.faq__button-more {
  color: #FFFFFF;
}

.faq__button[open] {
  margin-top: initial;
  width: initial;
}

.faq__button[open].button {
  background-color: initial;
  padding: initial;
  border-radius: initial;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.faq__button[open].button::after {
  content: none;
}

.faq__button[open] .faq__button-more {
  display: none;
}

.faq__item-heading {
  text-align: left;
  font-size: 1.75rem;
  border-left: 0.3125rem solid #f47920;
}

.info-links {
  margin-block: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .info-links {
    margin-block: 6rem 5.0625rem;
  }
}

.info-links__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .info-links__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-links__item {
  padding: 0.5rem 0.8125rem;
}

.info-links__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-links__icon {
  width: 4.0625rem;
}

.info-links__body {
  color: #FFFFFF;
}

.info-links__item--blog .info-links__body {
  color: #1b2935;
}

.info-links__title {
  display: block;
  font-size: 1.3125rem;
  line-height: 1.7142857143;
}

.info-links__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}

.info-links__item--news {
  background-color: #f47920;
}

.info-links__item--column {
  background-color: #1b2935;
}

.info-links__item--blog {
  background-color: #bdc2f3;
}

.shop-search__head {
  background-color: #1b2935;
  padding-block: 2.25rem;
  text-align: center;
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .shop-search__head {
    padding-block: 3.6875rem;
  }
}

.shop-search__head-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.1875;
}
@media screen and (min-width: 768px) {
  .shop-search__head-title {
    font-size: 3rem;
  }
}

.shop-search__body {
  background-color: #e8f4fd;
  padding-block: 2.8125rem;
  margin-inline: calc(50% - 50vi);
}
@media screen and (min-width: 768px) {
  .shop-search__body {
    padding-block: 6.0625rem;
  }
}

.shop-search__title::after {
  width: 23.375rem;
  left: calc(50% - 11.6875rem);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, #1b2935), color-stop(80%, #e8f4fd));
  background-image: linear-gradient(to right, #1b2935 80%, #e8f4fd 80%);
}
@media screen and (min-width: 768px) {
  .shop-search__title::after {
    width: 47.625rem;
    left: calc(50% - 23.8125rem);
  }
}

.shop-search__areas {
  margin-top: 3.625rem;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .shop-search__areas {
    margin-top: 7.1875rem;
  }
}

.shop-search__area-title {
  background-color: #1b2935;
  padding: 0.8125rem 1.875rem;
  font-size: 1.75rem;
  line-height: 1.2285714286;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .shop-search__area-title {
    font-size: 2.1875rem;
  }
}

.shop-search__pref-list {
  padding-top: 1.875rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .shop-search__pref-list {
    -ms-grid-columns: 1fr initial 1fr initial 1fr initial 1fr initial 1fr initial 1fr initial 1fr;
    grid-template-columns: repeat(7, 1fr);
    gap: initial;
  }
}

.shop-search__link {
  color: #1b2935;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .shop-search__link {
    font-size: 1.875rem;
  }
}

.shop-search__link::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.5rem;
  height: 1.125rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .shop-search__link::before {
    width: 0.6875rem;
    height: 1.375rem;
  }
}

.open-btn {
  width: 1.875rem;
  padding: 0;
  z-index: 9999;
}

.open-btn span {
  display: block;
  background: #1b2935;
  width: 100%;
  height: 0.125rem;
  border-radius: 0.25rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 11;
}

.open-btn span:nth-of-type(2) {
  margin-block: 0.625rem;
}

.open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0.875rem;
}

.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.open-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -0.5625rem;
}

.sp-menu {
  background-color: #FFFFFF;
  height: 100%;
  padding-block: 6.25rem 5rem;
  position: fixed;
  right: -100%;
  top: 0;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 90%;
  max-width: 21.875rem;
}

.sp-menu.active {
  right: 0;
}

.sp-menu__inner {
  padding-inline: 1.5625rem;
}

.sp-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1.25rem;
  text-align: center;
}

.sp-menu__item {
  width: 48.5%;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.2em;
}

.sp-menu__item-link {
  color: #1b2935;
}
/*# sourceMappingURL=styles.css.map */