/* ---------------------------------------------
*   base
--------------------------------------------- */
body {
  container-type: inline-size;
  background-color: var(--bs-white);
}

/* ---------------------------------------------
*   title
--------------------------------------------- */
.ttl-1 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
}

.ttl-2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.ttl-3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

/* ---------------------------------------------
*   button
--------------------------------------------- */
.btn-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  margin-top: 32px;
  padding: 10px 25px;
  border: 2px solid var(--DEF);
  background-color: var(--DEF);
  color: var(--bs-white);
  text-decoration: none;
  transition: 0.3s;
}
.btn-1:hover {
  background-color: var(--bs-white);
  color: var(--DEF);
}
.btn-1::after {
  display: none;
}

/* ---------------------------------------------
*   link-list
--------------------------------------------- */
.link-list-1 {
  display: flex;
  justify-content: center;
  margin: 20px calc(50% - 50cqw) 0;
  border-top: 1px solid var(--bs-gray-300);
  border-bottom: 1px solid var(--bs-gray-300);
  box-shadow: 1px 1px 1px #ccc;
}
.link-list-1__list {
  display: flex;
  flex: 1;
  max-width: 1570px;
  padding-right: 15px;
  padding-left: 15px;
}
.link-list-1 li {
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 20px 0 20px 0;
}
.link-list-1 li::before {
  display: none;
}
.link-list-1 a {
  color: var(--bs-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
}

/* ---------------------------------------------
*   card-list
--------------------------------------------- */
.card-list-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media (min-width: 576px) {
  .card-list-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-list-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .card-list-1 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card-list-1 > li {
  padding: 15px;
  border: 1px solid var(--bs-gray-400);
}
.card-list-1 > li:hover {
  box-shadow: 0 0 15px #999;
}
.card-list-1 :where(a):hover {
  color: inherit;
}
.card-list-1 :where(a):hover img {
  opacity: 1;
}
.card-list-1 :where(li) {
  margin: 0;
  padding-left: 0;
}
.card-list-1 :where(li)::before {
  display: none;
}
.card-list-1__img {
  position: relative;
  padding: 12px;
}
.card-list-1__img::after {
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--bs-black);
  content: "";
  opacity: 0.03;
  pointer-events: none;
}
.card-list-1__img img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.card-list-1__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-list-1__ttl {
  flex: 1;
  margin-block: 10px 4px;
  font-weight: 700;
  font-size: 15px;
}
.card-list-1__sub-ttl {
  flex: 1;
  margin: 0;
  margin-top: 2px;
  padding-bottom: 1rem;
  color: var(--bs-secondary);
  font-weight: 500;
  font-size: 12px;
}
.card-list-1__price {
  padding-top: 15px;
  border-top: 1px solid var(--bs-gray-400);
  font-weight: 700;
  font-size: 18px;
  text-align: right;
}
.card-list-1__color-list {
  display: flex;
  margin-block: 15px 5px;
  gap: 3px;
}
.card-list-1__color-list li {
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--bs-white);
}
.card-list-1__color-list li[data-color=BLK] {
  background-color: #000000;
}
.card-list-1__color-list li[data-color=INDG] {
  background-color: #3a4f59;
}
.card-list-1__color-list li[data-color=CHAR] {
  background-color: #555a54;
}
.card-list-1__color-list li[data-color=SAND] {
  background-color: #aca18f;
}
.card-list-1__color-preview {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
}

@media (min-width: 992px) {
  .card-list-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.card-list-2:not(.current) {
  display: none;
}
@media (min-width: 992px) {
  .card-list-2.swiper-wrapper[id] {
    opacity: 1;
  }
}
.card-list-2 li {
  aspect-ratio: 1;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .card-list-2 li:first-child {
    grid-column: span 2;
    aspect-ratio: unset;
    height: 65vh;
    min-height: 400px;
    max-height: 750px;
  }
}
.card-list-2 li::before {
  display: none;
}
.card-list-2__card-btn {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
}
.card-list-2__card-btn::after {
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--bs-black);
  content: "";
  opacity: 0.03;
  pointer-events: none;
}
.card-list-2__card-btn img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.card-list-2__card-btn img.card-list-2__image-lifestyle {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-list-2__card-btn.js-modal-trigger--movie::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 37px;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background-color: white;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .card-list-2__card-btn.js-modal-trigger--movie::before {
    width: 15px;
    height: 18px;
  }
}
.card-list-2__modal {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 30px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
}
.card-list-2__modal[open] {
  display: flex;
}
.card-list-2__modal-inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 52px 20px 20px;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.8);
}
.card-list-2__modal-img {
  max-width: 100%;
  max-height: 100%;
}
.card-list-2__modal-movie {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.card-list-2__modal-movie-inner {
  aspect-ratio: 16/9;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.card-list-2__modal-movie-inner iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.card-list-2__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 10px;
  color: white;
  font-size: 22px;
  line-height: 1;
  transition: opacity 0.3s;
}
.card-list-2__close-btn:hover {
  opacity: 0.8;
}

/* ---------------------------------------------
*   accordion
--------------------------------------------- */
.acc-1 + .acc-1 {
  border-top: 1px solid var(--bs-gray-300);
}
.acc-1__ttl {
  display: block;
  position: relative;
  padding: 25px 50px 25px 10px;
  font-weight: 500;
  cursor: pointer;
}
.acc-1__ttl::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  content: "\ea02";
  color: var(--bs-secondary);
  font-size: 0.75em;
  font-family: icons !important;
}
.acc-1[open=true] .acc-1__ttl::after {
  rotate: 180deg;
}
.acc-1__body {
  overflow: hidden;
}
.acc-1__body-inner {
  padding: 0 50px 20px 10px;
}

/* ---------------------------------------------
*   slider-list
--------------------------------------------- */
.slider-list-1__inner {
  display: flex;
}
.slider-list-1__item {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--bs-gray-300);
}
.slider-list-1__item::before {
  display: none;
}
.slider-list-1__link {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.slider-list-1__img {
  position: relative;
  aspect-ratio: 1;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
}
.slider-list-1__img::after {
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--bs-black);
  content: "";
  opacity: 0.03;
  pointer-events: none;
}
.slider-list-1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.3s;
}
.slider-list-1__ttl {
  margin-bottom: 0;
  margin-block: 10px auto;
  color: var(--DEF);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}
.slider-list-1__link:hover .slider-list-1__ttl {
  color: var(--DEF);
}
.slider-list-1__sub-ttl {
  margin-top: 6px;
  color: var(--bs-secondary);
  font-weight: 500;
  font-size: 13px;
}
.slider-list-1__link:hover .slider-list-1__sub-ttl {
  color: var(--bs-secondary);
}
.slider-list-1__price {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 5px;
  border-top: 0.5px solid var(--DEF);
  border-bottom: 0.5px solid var(--DEF);
  color: var(--DEF);
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}
.slider-list-1__link:hover .slider-list-1__price {
  background-color: var(--DEF);
  color: var(--bs-white);
}
.slider-list-1__pager {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 8px;
}
.slider-list-1 .swiper-button-next,
.slider-list-1 .swiper-button-prev {
  position: static;
  width: 28px;
  height: 28px;
  margin-top: 0;
  background-color: var(--bs-black);
  transition: opacity 0.3s;
}
.slider-list-1 .swiper-button-next.swiper-button-disabled,
.slider-list-1 .swiper-button-prev.swiper-button-disabled {
  opacity: 0.1;
}
.slider-list-1 .swiper-button-next::after,
.slider-list-1 .swiper-button-prev::after {
  display: none;
}

/* ---------------------------------------------
*   select-color
--------------------------------------------- */
.select-color__list {
  display: flex;
  gap: 5px;
}
.select-color__list li {
  margin: 0;
  padding: 0;
}
.select-color__txt {
  margin-bottom: 5px;
}
.select-color__color-name {
  font-weight: 700;
}
.select-color__btn {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--bs-white);
}
.select-color__btn.current {
  box-shadow: 0 0 0 1px #414141;
}
.select-color__btn[data-color=BLK] {
  background-color: #000000;
}
.select-color__btn[data-color=INDG] {
  background-color: #3a4f59;
}
.select-color__btn[data-color=CHAR] {
  background-color: #555a54;
}
.select-color__btn[data-color=SAND] {
  background-color: #aca18f;
}
.select-color__btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
}

/* ---------------------------------------------
*   block
--------------------------------------------- */
.block-1 {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: 1fr;
  -moz-column-gap: 45px;
  column-gap: 45px;
}
@media (min-width: 992px) {
  .block-1 {
    grid-template-rows: auto 1fr;
    grid-template-columns: 2fr 1fr;
  }
}
.block-1__right {
  grid-area: 3/1/4/2;
}
@media (min-width: 992px) {
  .block-1__right {
    grid-area: 2/2/3/3;
  }
}
.block-1__left {
  grid-area: 2/1/3/2;
  overflow: hidden;
}
@media (min-width: 992px) {
  .block-1__left {
    grid-area: 1/1/3/2;
  }
}
.block-1__preview {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  margin-bottom: 4px;
  padding: 12px;
  padding: 12px;
}
@media (min-width: 992px) {
  .block-1__preview {
    display: none;
  }
}
.block-1__preview::after {
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--bs-black);
  content: "";
  opacity: 0.03;
}
.block-1__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.block-1__preview iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.block-1__ttl-wrap {
  grid-area: 1/1/2/2;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .block-1__ttl-wrap {
    grid-area: 1/2/2/3;
    margin-bottom: 0;
  }
}
.block-1__ttl {
  display: block;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
}
.block-1__sub-ttl {
  display: block;
  margin-top: 1.2em;
  color: var(--bs-secondary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
.block-1__right-middle {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}
.block-1__right-bottom {
  display: flex;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}
.block-1__txt-1 {
  color: var(--bs-black);
  font-size: 16px;
}
.block-1__link-1 {
  position: relative;
  align-self: flex-end;
  margin-left: auto;
  padding-right: 1em;
  font-weight: 700;
  text-decoration: none;
}
.block-1__link-1::after {
  font-family: icons !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 0;
  margin: 1px 0 0;
  translate: 0 -50%;
  content: "\ea01" !important;
  font-weight: 700;
  font-size: 0.625em;
}

.block-2 {
  line-height: 24px;
}
.block-2 p {
  margin-bottom: 10px;
}
.block-2__top {
  margin-top: 60px;
  margin-bottom: 40px;
}
.block-2 .ba-grid__container {
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.block-2 .ba-grid__container, .block-2 .ba-grid__row {
  display: flex;
  justify-content: center;
}
.block-2 .ba-grid__row:nth-child(2), .block-2 .ba-grid__row:nth-child(4) {
  flex-flow: row-reverse;
}
.block-2 .ba-grid__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 345px;
  height: 400px;
  padding-right: 30px;
}
.block-2 .ba-grid__row:nth-child(4) .ba-grid__content, .block-2 .ba-grid__row:nth-of-type(2) .ba-grid__content {
  padding-right: 0;
  padding-left: 30px;
}
.block-2 .ba-grid__header {
  width: 299px;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
}
.block-2 .ba-grid__subheader {
  width: 318px;
  color: #3f4042;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
}
.block-2 .ba-grid__image {
  width: 345px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .block-2 .ba-grid__row {
    flex-flow: column-reverse !important;
  }
  .block-2 .ba-grid__image {
    width: 390px;
  }
  .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__image.atx-25 {
    height: 450px;
  }
  .block-2 .ba-grid__row:first-of-type .ba-grid__image.atx-22 {
    height: 420px;
  }
  .block-2 .ba-grid__content {
    height: 220px;
  }
  .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__content {
    height: 270px;
  }
  .block-2 .ba-grid__header {
    width: 390px;
    font-size: 22px;
  }
  .block-2 .ba-grid__subheader {
    width: 390px;
    font-size: 20px;
  }
  .block-2 .ba-grid__row:nth-of-type(2) .ba-grid__content, .block-2 .ba-grid__row:nth-of-type(4) .ba-grid__content {
    padding-left: 0;
  }
}
@media (min-width: 321px) and (max-width: 390px) {
  .block-2 .ba-grid__image {
    width: 340px;
    height: 360px;
    margin: auto;
  }
  .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__image.atx-25 {
    height: 390px;
  }
  .block-2 .ba-grid__row:first-of-type .ba-grid__image.atx-22 {
    height: 370px;
  }
  .block-2 .ba-grid__content {
    height: 220px;
  }
  .block-2 .ba-grid__header, .block-2 .ba-grid__subheader {
    width: 340px;
  }
}
@media (max-width: 320px) {
  .block-2 .ba-grid__image {
    width: 300px;
    height: 360px;
    margin: auto;
  }
  .block-2 .ba-grid__content {
    width: 300px;
    height: 220px;
  }
  .block-2 .ba-grid__row:nth-of-type(2) .ba-grid__content, .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__content {
    height: 290px;
  }
  .block-2 .ba-grid__header {
    width: 290px;
  }
  .block-2 .ba-grid__subheader {
    width: 300px;
  }
}
@media (min-width: 1440px) {
  .block-2 .ba-grid__image {
    width: 600px;
    height: 549px;
    margin: auto;
  }
  .block-2 .ba-grid__row:first-of-type .ba-grid__content.atx-22, .block-2 .ba-grid__row:first-of-type .ba-grid__image.atx-22, .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__content.atx-25, .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__image.atx-25 {
    height: 659px;
  }
  .block-2 .ba-grid__content {
    align-items: center;
    width: 600px;
    height: 549px;
  }
  .block-2 .ba-grid__header {
    width: 388px;
    height: 64px;
    font-size: 28px;
  }
  .block-2 .ba-grid__subheader {
    width: 388px;
    height: 78px;
    font-size: 20px;
  }
}
@media (min-width: 913px) and (max-width: 1439px) {
  .block-2 .ba-grid__image {
    width: 464px;
    height: 460px;
    margin: auto;
  }
  .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__content.atx-25, .block-2 .ba-grid__row:nth-of-type(3) .ba-grid__image.atx-25 {
    height: 530px;
  }
  .block-2 .ba-grid__row:first-of-type .ba-grid__content.atx-22, .block-2 .ba-grid__row:first-of-type .ba-grid__image.atx-22 {
    height: 510px;
  }
  .block-2 .ba-grid__content {
    align-items: center;
    width: 464px;
    height: 460px;
  }
  .block-2 .ba-grid__header, .block-2 .ba-grid__subheader {
    width: 378px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .block-2 .ba-grid__image {
    width: 384px;
    height: 360px;
    margin: auto;
  }
  .block-2 .ba-grid__content {
    align-items: center;
    width: 384px;
    height: 360px;
  }
  .block-2 .ba-grid__header {
    width: 384px;
    font-size: 22px;
  }
  .block-2 .ba-grid__subheader {
    width: 384px;
    font-size: 18px;
  }
}

.block-3 {
  display: flex;
  justify-content: center;
  margin: 20px calc(50% - 50cqw) 0;
  padding-block: 80px;
  background-image: url(/assets/images/products/bg-topo-gray.svg);
  background-repeat: repeat;
  background-color: #E6E7E8;
}
.block-3__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  flex-grow: 1;
  flex-direction: column;
  max-width: 1570px;
  padding-inline: 15px;
  gap: 20px 30px;
}
@media (max-width: 767.98px) {
  .block-3__inner {
    display: flex;
  }
}
.block-3__ttl-wrap {
  display: flex;
  grid-area: 1/1/2/2;
  align-items: flex-end;
  justify-content: space-between;
}
.block-3__ttl-wrap .ttl-1 {
  margin-bottom: 10px;
}
.block-3__download {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--bs-secondary);
  font-size: 13px;
  text-decoration: none;
}
.block-3__download::before {
  display: block;
  margin-right: 0.625em;
  content: "\ea08";
  font-size: 12px;
  font-family: icons !important;
}
.block-3__download::after {
  display: none;
}
.block-3__body {
  grid-area: 2/1/3/2;
  padding: 10px 20px;
  background-color: var(--bs-white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .block-3__body {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .block-3__body table,
  .block-3__body tbody {
    display: block;
  }
}
.block-3__body th,
.block-3__body td {
  padding: 0;
  border: none;
}
@media (max-width: 767.98px) {
  .block-3__body th,
  .block-3__body td {
    display: block;
  }
}
.block-3__body th {
  padding-block: 25px;
  border-left: none;
  background-color: transparent;
  color: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}
@media (max-width: 767.98px) {
  .block-3__body th {
    width: 100%;
    padding-block: 0;
    line-height: 24px;
  }
}
.block-3__body td {
  padding-block: 25px;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .block-3__body td {
    padding-block: 5px;
  }
}
@media (max-width: 767.98px) {
  .block-3__body td:nth-last-child(1) {
    flex: 7;
  }
}
@media (max-width: 767.98px) {
  .block-3__body td:nth-last-child(2) {
    flex: 5;
  }
}
@media (max-width: 767.98px) {
  .block-3__body tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.block-3__body tr:not(:first-child) {
  border-top: 1px solid var(--bs-black);
}
@media (max-width: 767.98px) {
  .block-3__body tr:not(:first-child) {
    margin-top: 15px;
    padding-top: 20px;
  }
}
.block-3__body tr:not(:first-child):not(:has(th)) {
  border-color: var(--bs-gray-300);
}
@media (max-width: 767.98px) {
  .block-3__body tr:not(:first-child):not(:has(th)) {
    margin-top: 5px;
    padding-top: 10px;
  }
}
.block-3__right {
  grid-area: 2/2/3/3;
}
@media (max-width: 767.98px) {
  .block-3__right {
    margin-top: 20px;
  }
}
.block-3__sub-card {
  padding: 15px;
  border-radius: 5px;
  background-color: var(--bs-white);
}
@media (max-width: 767.98px) {
  .block-3__sub-card {
    padding: 20px;
  }
}
.block-3__sub-card-list {
  margin-top: 10px;
}
.block-3__sub-card-list li {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--bs-gray-300);
  font-size: 14px;
}
.block-3__sub-card-list li::before {
  display: none;
}
.block-3__sub-card-link {
  display: flex;
  align-items: center;
  gap: 0.25em;
  color: var(--bs-secondary);
  text-decoration: none;
}
.block-3__sub-card-link::before {
  display: block;
  content: "\ea08";
  color: var(--DEF);
  font-size: 12px;
  font-family: icons !important;
}
.block-3__sub-card-link::after {
  display: none;
}

/* ---------------------------------------------
*   button
--------------------------------------------- */
.wrap-2 {
  padding-top: 60px;
}

/* ---------------------------------------------
*   wide-contents
--------------------------------------------- */
#contents.wide-contents {
  max-width: 1570px;
  padding-inline: 15px;
}

/* ---------------------------------------------
*   faq
--------------------------------------------- */
.faq {
  padding-inline: 15px;
  border: 1px solid var(--bs-gray-300);
}

/* ---------------------------------------------
*   margin
--------------------------------------------- */
.mt-60 {
  margin-top: 60px;
}

.mb-15 {
  margin-bottom: 15px;
}