@charset "UTF-8";
/* default settings */
/* =================================================================== */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  color: #161F20;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Inter", "AotoGothicStdN", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 769px) {
  html {
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }
}

body {
  margin: 0;
  padding: 0;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
\::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

main img,
.main img,
.breadcrumbs img,
.footer-breadcrumbs img,
.footer-backtotop img,
.fancybox__container img,
.filter-btn img,
.search-case__sidebar img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*
   * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

/* ==========================================================================
   * Author's custom styles
   * ==========================================================================*/
/* ==========================================================================
   * Helper classes
   * ==========================================================================*/
/*
   * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
   * Extends the .sr-only class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638*/
/*
   * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    `contenteditable` attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that receive the `clearfix` class.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
   * EXAMPLE Media Queries for Responsive Design.
   * These examples override the primary ('mobile first') styles.
   * Modify as content requires.
   * ==========================================================================*/
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition*/
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices*/
}
/* ==========================================================================
   * Print styles.
   * Inlined to avoid the additional HTTP request:
   * https://www.phpied.com/delay-loading-your-print-css/
   * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.mozilla {
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

@media (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}

@font-face {
  font-family: "AotoGothicStdN";
  src: url("/finder/assets/font/AP-OTF-AotoGothicStdN-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AotoGothicStdN";
  src: url("/finder/assets/font/AP-OTF-AotoGothicStdN-DeBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AotoGothicStdN";
  src: url("/finder/assets/font/AP-OTF-AotoGothicStdN-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AotoGothicStdN";
  src: url("/finder/assets/font/AP-OTF-AotoGothicStdN-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AotoGothicStdN";
  src: url("/finder/assets/font/AP-OTF-AotoGothicStdN-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .trans {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .trans:hover {
    opacity: 0.8;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
.header-pc {
  border: 0.0625rem solid #000000;
  height: 4.5625rem;
}
.header-pc__wrapper {
  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;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header-pc__wrapper {
    padding: 0 1.25rem;
  }
}
.header-pc__left {
  padding-left: 2.3125rem;
}
.header-pc__logo img {
  width: 11.8125rem;
}
.header-pc__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header-pc__center .header-pc__search {
  width: 23.125rem;
  height: 1.875rem;
  border-bottom: 1px solid #000000;
  color: #000000;
  background-size: 1.0625rem;
  position: relative;
  padding-right: 2.5rem;
}
.header-pc__center .header-pc__search form {
  width: 100%;
  height: 100%;
  padding-top: 0.25rem;
}
.header-pc__center .header-pc__search input[type=text],
.header-pc__center .header-pc__search input[type=search] {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000000;
  outline: none;
  padding: 0;
}
.header-pc__center .header-pc__search input[type=text]::-webkit-input-placeholder, .header-pc__center .header-pc__search input[type=search]::-webkit-input-placeholder {
  color: #D8D8D9;
}
.header-pc__center .header-pc__search input[type=text]::-moz-placeholder, .header-pc__center .header-pc__search input[type=search]::-moz-placeholder {
  color: #D8D8D9;
}
.header-pc__center .header-pc__search input[type=text]:-ms-input-placeholder, .header-pc__center .header-pc__search input[type=search]:-ms-input-placeholder {
  color: #D8D8D9;
}
.header-pc__center .header-pc__search input[type=text]::-ms-input-placeholder, .header-pc__center .header-pc__search input[type=search]::-ms-input-placeholder {
  color: #D8D8D9;
}
.header-pc__center .header-pc__search input[type=text]::placeholder,
.header-pc__center .header-pc__search input[type=search]::placeholder {
  color: #D8D8D9;
}
.header-pc__center .header-pc__search button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("/finder/assets/img/common/icon-search.svg") no-repeat center/1.0625rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.3125rem;
  height: 1.875rem;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header-pc__center .header-pc__search-dropdown {
  font-size: 0.8125rem;
  color: #000000;
  font-weight: 400;
  position: relative;
}
.header-pc__center .header-pc__search-dropdown-select {
  display: none;
}
.header-pc__center .header-pc__search-dropdown-selected {
  background: #fff;
  padding-right: 1.25rem;
  padding-left: 1.5625rem;
  position: relative;
  height: 1.875rem;
  line-height: 1.875rem;
  cursor: pointer;
  display: block;
  border: none;
  border-bottom: 1px solid #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.header-pc__center .header-pc__search-dropdown-selected::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: url("/finder/assets/img/common/icon-dropdown.svg") no-repeat center/contain;
  position: absolute;
  left: 0.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header-pc__center .header-pc__search-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1875rem 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #DCDCDD;
  pointer-events: none;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease;
}
.header-pc__center .header-pc__search-dropdown-list li {
  padding: 0.1875rem 0.3125rem;
  cursor: pointer;
}
.header-pc__center .header-pc__search-dropdown.is-open .header-pc__search-dropdown-selected:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header-pc__center .header-pc__search-dropdown.is-open .header-pc__search-dropdown-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 1.875rem;
  opacity: 1;
  pointer-events: auto;
}
.header-pc__center .header-pc__extra-link {
  height: 1.875rem;
  border-bottom: 1px solid #000000;
  margin-left: 0.8125rem;
  line-height: 1.875rem;
  font-size: 0.8125rem;
  font-weight: 400;
}
.header-pc__center .header-pc__extra-link a {
  text-decoration: none;
  color: #000000;
  background: url("/finder/assets/img/common/icon-link-blank.svg") no-repeat right center;
  background-size: 0.625rem auto;
  padding-left: 0.125rem;
  padding-right: 0.75rem;
  position: relative;
  top: 0.125rem;
}
.header-pc__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
  height: 4.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 1.5625rem;
}
.header-pc__right .icon-login {
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-header.svg") no-repeat left top;
  background-size: 5.5rem auto;
  cursor: pointer;
}
.header-pc__right .icon-login:not(.--active):hover {
  background-position: left -3.6875rem top;
}
.header-pc__right .icon-login.--active {
  width: 2.0625rem;
  height: 2.0625rem;
  border-radius: 50%;
  overflow: hidden;
  background-image: url("/finder/assets/img/common/icon-user-dumy.png");
  background-size: cover;
}
.header-pc__right .icon-saved {
  width: 1.0625rem;
  height: 1.4375rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-saved-pc.svg") no-repeat left top;
  background-size: 1.0625rem auto;
  cursor: pointer;
}
.header-pc__right .icon-cart {
  width: 1.375rem;
  height: 1.4375rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-header.svg") no-repeat left top -3.6875rem;
  background-size: 5.5rem auto;
  cursor: pointer;
}
.header-pc__right .icon-cart:hover {
  background-position: left -3.6875rem top -3.6875rem;
}
.header-pc__right .icon-menu {
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-menu-default.svg") no-repeat center;
  background-size: contain;
  cursor: pointer;
}
.header-pc__right .icon-menu.--opened {
  background: url("/finder/assets/img/common/icon-hamburger-close.svg") no-repeat center;
  background-size: contain;
}
.header-pc-drawer {
  background: #fff;
  overflow: hidden;
  height: calc(100vh - 4.5rem);
  display: none;
}
@media (min-width: 769px) {
  .header-pc-menu-container {
    max-width: 61.125rem;
    margin: 0 auto;
    -webkit-transform: translateX(-0.9375rem);
            transform: translateX(-0.9375rem);
  }
}
@media (max-width: 768px) {
  .header-pc-menu-container {
    padding-inline: 1.875rem;
  }
}
.header-pc-menu-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.9375rem 3.375rem;
  margin-top: 2.0625rem;
}
@media (max-width: 768px) {
  .header-pc-menu-group {
    gap: 1.8125rem 0.625rem;
  }
}
.header-pc-menu-col {
  position: relative;
  width: 18.125rem;
}
@media (max-width: 768px) {
  .header-pc-menu-col {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header-pc-menu-col-50 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.header-pc__menu-title {
  font-weight: 500;
  font-size: 1.8125rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  color: #000000;
  margin: 0;
  padding: 0 0 0.625rem;
  position: relative;
}
.header-pc__menu {
  border-top: 1px solid #000000;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 1.6875rem;
  font-size: 0.875rem;
  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.3125rem;
}
.header-pc__menu a {
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.header-pc__menu a::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.875rem;
  background: url("/finder/assets/img/common/icon-link-blank-2.svg") no-repeat center/contain;
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transform: translate(3px, -10px);
          transform: translate(3px, -10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .header-pc__menu a {
    line-height: 2;
  }
  .header-pc__menu a:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
.header-pc__menu-04, .header-pc__menu-05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.3125rem 4.8125rem;
}
@media (max-width: 768px) {
  .header-pc__menu-04, .header-pc__menu-05 {
    border-top: none;
  }
}
.header-pc__menu-05 {
  gap: 1.3125rem 3.9375rem;
}
.header-pc__newsletter {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .header-pc__newsletter {
    font-size: 0.875rem;
    line-height: 2rem;
  }
}
.header-pc__newsletter input.footer__newsletter-input {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  height: 1.625rem;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
  border: 1px solid #999999;
}
@media (max-width: 768px) {
  .header-pc__newsletter input.footer__newsletter-input {
    height: 2rem;
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }
}
@media (min-width: 769px) {
  .header-pc-btn-group {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .header-pc-btn-group {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transform: translateX(1.875rem);
            transform: translateX(1.875rem);
  }
}
.header-pc-btn-link {
  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;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.25rem;
  text-align: center;
  color: #161f20;
  text-decoration: none;
  width: 10.5625rem;
  height: 2.5625rem;
  background: transparent;
  border: 1px solid #707070;
  position: relative;
  line-height: 0;
}
@media (max-width: 768px) {
  .header-pc-btn-link {
    width: 9.6875rem;
    height: 2.5625rem;
    font-size: 0.75rem;
  }
}
.header-pc-btn-link::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.75rem;
  background: url("/finder/assets/img/common/icon-link.svg") no-repeat center/contain;
  position: absolute;
  right: 0.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-pc-btn-link.--mt {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .header-pc-btn-link.--mt {
    margin-top: 0.6875rem;
  }
}
.header-pc-language-social-container {
  width: auto;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: auto;
  position: absolute;
  top: -1.6875rem;
  right: -8.875rem;
  padding-top: 0;
}
.header-pc-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  height: 4.125rem;
}
.header-pc-language .__item {
  display: block;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
.header-pc-language .__item:not(:last-child) {
  position: relative;
  padding-right: 0.6875rem;
}
.header-pc-language .__item:not(:last-child):after {
  content: "";
  background-color: #000;
  top: 0.1875rem;
  bottom: 0.125rem;
  right: 0;
  width: 1px;
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
  position: absolute;
}
.header-pc-language .__item.--active {
  color: #000;
}
.header-pc-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
.header-pc-social__item {
  display: inline-block;
  width: 1.4375rem;
  height: 1.375rem;
  background: url("/finder/assets/img/common/icon-sns-black.svg") no-repeat left center;
  background-size: auto 1.375rem;
}
.header-pc-social__item.--instagram {
  background-position: 0 center;
}
.header-pc-social__item.--facebook {
  background-position: -2rem center;
}
.header-pc-social__item.--x {
  background-position: left -3.9375rem center;
}
.header-sp {
  border: 0.5px solid #000000;
  height: 3.375rem;
}
.header-sp__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-sp__logo {
  padding-block: 0.625rem;
  padding-inline: 1.25rem 0;
}
.header-sp__logo img {
  width: 8rem;
  height: 2rem;
}
.header-sp__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  height: 3.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 1.25rem;
}
.header-sp__right .icon-search {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-search-sp.svg") no-repeat center;
  background-size: contain;
}
.header-sp__right .icon-login {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-header.svg") no-repeat left top;
  background-size: auto 100%;
}
.header-sp__right .icon-login.--active {
  border-radius: 50%;
  overflow: hidden;
  background-image: url("/finder/assets/img/common/icon-user-dumy.png");
  background-size: cover;
}
.header-sp__right .icon-saved {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-saved.svg") no-repeat center;
  background-size: contain;
}
.header-sp__right .icon-cart {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-cart-sp.svg") no-repeat center;
  background-size: contain;
}
.header-sp__right .icon-menu {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-menu-default.svg") no-repeat center;
  background-size: contain;
}
.header-sp__right .icon-menu-close {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("/finder/assets/img/common/icon-hamburger-close.svg") no-repeat center;
  background-size: contain;
}
.header-sp__right .btn-hamburger {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.header-sp__right .btn-hamburger:is(.--opened) .icon-menu {
  display: none;
}
.header-sp__right .btn-hamburger:not(.--opened) .icon-menu-close {
  display: none;
}
.header-sp__drawer {
  position: relative;
  background-color: #fff;
  color: #000;
  padding-block: 0 4.3125rem;
  height: var(--height);
  overflow: auto;
  display: none;
}
.header-sp__drawer .header-sp-menu-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.25rem 4.375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.8125rem 0.625rem;
  padding-inline: 1.875rem;
  margin-top: 4.3125rem;
}
.header-sp__drawer .header-sp-menu-col {
  position: relative;
  width: 100%;
}
.header-sp__drawer .header-sp-menu-col-50 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-sp__drawer .header-sp__menu-title {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  color: #000;
  margin: 0;
  position: relative;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0 0 0.625rem;
  padding-bottom: 0.6875rem;
  border-bottom: 0.03125rem solid #000;
}
.header-sp__drawer .header-sp__menu-title::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5625rem;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.header-sp__drawer .header-sp__menu-title.--opened::after {
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  margin-top: -0.25rem;
}
.header-sp__drawer .header-sp__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 0.75rem;
  border: none;
  display: none;
}
.header-sp__drawer .header-sp__menu li:not(:last-child) {
  margin-bottom: 0.4375rem;
}
.header-sp__drawer .header-sp__menu a {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.875rem;
}
.header-sp__drawer .header-sp__menu-04, .header-sp__drawer .header-sp__menu-05, .header-sp__drawer .header-sp__menu-06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 3.75rem;
  border-top: none;
  padding-top: 0.1875rem;
}
.header-sp__drawer .header-sp__menu-05 {
  gap: 0 2.875rem;
  margin-left: -0.25rem;
}
.header-sp__drawer .header-sp__menu-06 {
  gap: 0 2.875rem;
  padding-top: 0.1875rem;
}
.header-sp__drawer .header-sp__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.375rem;
  position: absolute;
  top: 1.25rem;
  right: 0.4375rem;
}
.header-sp__drawer .header-sp__language .__item {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5625rem;
  letter-spacing: 0.05em;
  text-align: left;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  position: relative;
}
.header-sp__drawer .header-sp__language .__item.--active {
  color: #000000;
}
.header-sp__drawer .header-sp__language .__item:not(:last-child)::after {
  content: "";
  background-color: #161f20;
  top: 0.4375rem;
  bottom: 0.375rem;
  right: -0.625rem;
  width: 1px;
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
  position: absolute;
}
.header-sp__drawer .header-sp-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.8125rem;
}
.header-sp__drawer .header-sp-social__item {
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  background: url("/finder/assets/img/common/icon-sns-black.svg") no-repeat left center;
  background-size: auto 100%;
  opacity: 0.3;
}
.header-sp__drawer .header-sp-social__item.--instagram {
  background-position: 0 center;
}
.header-sp__drawer .header-sp-social__item.--facebook {
  background-position: left -2rem center;
}
.header-sp__drawer .header-sp-social__item.--x {
  background-position: left -3.9375rem center;
}

@media (min-width: 769px) {
  .webkit .header-pc__center .header-pc__search-dropdown-selected {
    line-height: 0;
    padding-top: 0;
    padding-bottom: 0.125rem;
  }
  .webkit .header-pc__center .header-pc__extra-link {
    line-height: 0;
    padding-bottom: 0;
    padding-top: 0.71875rem;
  }
  .webkit .header-pc__center .header-pc__search form {
    padding-top: 0;
  }
  .chrome.mac .header-pc__center .header-pc__search-dropdown-selected {
    padding-top: 0.125rem;
  }
  .chrome.mac .header-pc__center .header-pc__search-dropdown-selected::after {
    margin-top: 0.125rem;
  }
}
.footer {
  min-height: 40.625rem;
  background-color: #595757;
  padding-block: 5.125rem 1.875rem;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .footer {
    padding-block: 3.25rem 0.9375rem;
  }
}
@media (min-width: 769px) {
  .footer-container {
    max-width: 65rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-container {
    padding-inline: 1.875rem;
  }
}
.footer-menu-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.25rem 4.375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-menu-group {
    gap: 1.78125rem 0.625rem;
    overflow: hidden;
  }
}
.footer-menu-col {
  position: relative;
  width: 18.75rem;
}
@media (max-width: 768px) {
  .footer-menu-col {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-menu-col-50 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__menu-title {
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  color: #fff;
  margin: 0;
  padding: 0 0 0.625rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer__menu-title {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 0.6875rem;
    border-bottom: 0.03125rem solid #FFFFFF;
  }
  .footer__menu-title::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    -webkit-transform: translate(0, -50%) rotate(-135deg);
            transform: translate(0, -50%) rotate(-135deg);
    -webkit-transform-origin: center;
            transform-origin: center;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .footer__menu-title.--opened::after {
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
    margin-top: -0.25rem;
  }
}
.footer__menu {
  border-top: 1px solid #FFFFFF;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 0.75rem;
}
@media (max-width: 768px) {
  .footer__menu {
    padding-top: 0.75rem;
    border: none;
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__menu li:not(:last-child) {
    margin-bottom: 0.4375rem;
  }
}
.footer__menu a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .footer__menu a {
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .footer__menu a {
    font-size: 0.875rem;
  }
}
.footer__menu-04, .footer__menu-05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 3.75rem;
}
@media (max-width: 768px) {
  .footer__menu-04, .footer__menu-05 {
    border-top: none;
    padding-top: 0.4375rem;
  }
}
.footer__menu-05 {
  gap: 0 2.875rem;
}
@media (max-width: 768px) {
  .footer__menu-05 {
    -webkit-transform: translateX(-0.25rem);
            transform: translateX(-0.25rem);
  }
}
.footer__newsletter {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer__newsletter {
    font-size: 0.875rem;
    line-height: 2rem;
  }
}
.footer__newsletter .footer__newsletter-input-wraper {
  margin-top: 0.75rem;
  border: 1px solid #999999;
  border-radius: 0;
  line-height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer__newsletter .footer__newsletter-input-wraper {
    margin-top: 0.1875rem;
    height: 2rem;
  }
}
.footer__newsletter input.footer__newsletter-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  height: 1.625rem;
  padding: 0 0.5rem;
  border-radius: 0;
  outline: none;
  border: none;
}
.footer__newsletter input.footer__newsletter-input::-webkit-input-placeholder {
  color: #D8D8D9;
}
.footer__newsletter input.footer__newsletter-input::-moz-placeholder {
  color: #D8D8D9;
}
.footer__newsletter input.footer__newsletter-input:-ms-input-placeholder {
  color: #D8D8D9;
}
.footer__newsletter input.footer__newsletter-input:-moz-placeholder {
  color: #D8D8D9;
}
@media (max-width: 768px) {
  .footer__newsletter input.footer__newsletter-input {
    width: calc(19.6875rem * 16 / 12);
    height: calc(1.9375rem * 16 / 12);
    font-size: 1rem;
    padding: 0 calc(0.5rem * 16 / 12);
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media (min-width: 769px) {
  .footer-btn-group {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .footer-btn-group {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transform: translateX(1.875rem);
            transform: translateX(1.875rem);
  }
}
.footer-btn-link {
  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;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.25rem;
  text-align: center;
  color: #161f20;
  text-decoration: none;
  width: 10.5625rem;
  height: 2.5625rem;
  background: transparent;
  border: 1px solid #707070;
  position: relative;
  line-height: 0;
}
@media (max-width: 768px) {
  .footer-btn-link {
    width: 9.6875rem;
    height: 2.5625rem;
    font-size: 0.75rem;
  }
}
.footer-btn-link::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.75rem;
  background: url("/finder/assets/img/common/icon-link.svg") no-repeat center/contain;
  position: absolute;
  right: 0.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-btn-link.--mt {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer-btn-link.--mt {
    margin-top: 0.6875rem;
  }
}
.footer-banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem 1.5rem;
  margin-top: 2.9375rem;
}
@media (max-width: 768px) {
  .footer-banner-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}
.footer-banner-item {
  overflow: hidden;
}
@media (min-width: 769px) {
  .footer-banner-item:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 768px) {
  .footer-banner-item {
    width: 100%;
  }
}
.footer-banner {
  width: 16.125rem;
  height: 8.0625rem;
  background-color: #707070;
}
@media (max-width: 768px) {
  .footer-banner {
    width: 19.6875rem;
    height: 9.8125rem;
  }
}
.footer-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-language-social-container {
  width: auto;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 769px) {
  .footer-language-social-container {
    height: 8.0625rem;
  }
}
@media (max-width: 768px) {
  .footer-language-social-container {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.9375rem;
  }
}
.footer-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 769px) {
  .footer-language {
    text-align: right;
    height: 4.125rem;
  }
}
.footer-language .__item {
  display: block;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
.footer-language .__item:not(:last-child) {
  position: relative;
  padding-right: 0.6875rem;
}
.footer-language .__item:not(:last-child):after {
  content: "";
  background-color: #FFFFFF;
  top: 0.1875rem;
  bottom: 0.125rem;
  right: 0;
  width: 1px;
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
  position: absolute;
}
.footer-language .__item.--active {
  color: #FFFFFF;
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-social {
    margin-top: 1.4375rem;
  }
}
.footer-social__item {
  display: inline-block;
  width: 1.4375rem;
  height: 1.375rem;
  background: url("/finder/assets/img/common/icon-sns-black.svg") no-repeat left center;
  background-size: auto 100%;
  opacity: 0.3;
  -webkit-filter: invert(1) grayscale(1);
          filter: invert(1) grayscale(1);
}
.footer-social__item.--instagram {
  background-position: 0 center;
}
.footer-social__item.--facebook {
  background-position: left -1.9375rem center;
}
.footer-social__item.--x {
  background-position: left -3.9375rem center;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5625rem;
}
@media (min-width: 769px) {
  .footer-bottom {
    gap: 1.9375rem;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: -1.875rem;
    margin-top: 3rem;
    gap: 0.5rem 0;
  }
}
.footer-bottom__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-bottom__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-bottom__menu {
    gap: 1rem;
    margin: 0;
  }
}
.footer-bottom__menu a {
  text-decoration: none;
  font-size: 0.6875rem;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-bottom__menu a {
    font-size: 0.625rem;
  }
}
.footer-copyright {
  font-size: 0.625rem;
  font-weight: 400;
  text-align: left;
  color: #fff;
  margin: 0;
}
@media (min-width: 769px) {
  .footer-copyright {
    letter-spacing: 0.1em;
    -webkit-transform: translate(0.0625rem, 0.125rem);
            transform: translate(0.0625rem, 0.125rem);
  }
}
@media (max-width: 768px) {
  .footer-copyright {
    letter-spacing: 0.07em;
    padding-left: 0.5rem;
  }
  .footer-copyright .en {
    font-family: "Inter", sans-serif;
  }
}
@media (min-width: 769px) {
  .footer-breadcrumbs {
    padding-block: 0.6875rem 0.6875rem;
  }
}
@media (max-width: 768px) {
  .footer-breadcrumbs {
    padding-inline: 1.25rem;
    border-top: 1px solid #D8D8D9;
  }
}
@media (min-width: 769px) {
  .footer-breadcrumbs__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 3.875rem;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer-breadcrumbs__container {
    display: inline-block;
    padding-block: 0.5rem;
  }
}
@media (max-width: 768px) {
  .footer-breadcrumbs__item {
    display: inline;
  }
}
.footer-breadcrumbs__item:not(:last-child) {
  padding-right: 0.875rem;
  margin-right: 0.3125rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer-breadcrumbs__item:not(:last-child) {
    padding-right: 0.8125rem;
    margin-right: 0.375rem;
  }
}
.footer-breadcrumbs__item:not(:last-child):after {
  content: "＞";
  color: #B4B5B6;
  display: inline-block;
  padding: 0;
  position: absolute;
  top: 0rem;
  right: 0;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer-breadcrumbs__item:not(:last-child):after {
    top: 0.3125rem;
  }
}
.footer-breadcrumbs__item br {
  display: none;
}
.footer-breadcrumbs__item a, .footer-breadcrumbs__item span {
  font-size: 0.625rem;
  font-weight: 400;
  text-align: left;
  color: #B4B5B6;
  text-decoration: none;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .footer-breadcrumbs__item a, .footer-breadcrumbs__item span {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer-breadcrumbs__item a, .footer-breadcrumbs__item span {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}
@media (max-width: 768px) {
  .footer-breadcrumbs__item a sub, .footer-breadcrumbs__item span sub {
    font-size: 100%;
    bottom: -0.0625rem;
  }
  .iphone .footer-breadcrumbs__item a sub, .iphone .footer-breadcrumbs__item span sub {
    bottom: -0.25rem;
  }
}
.footer-breadcrumbs__item.-en a, .footer-breadcrumbs__item.-en span {
  font-family: "Inter", sans-serif;
}
.footer-breadcrumbs__item.-expand {
  display: none;
}
.footer-breadcrumbs__item.-expand span {
  position: relative;
  top: -0.1875rem;
}
.footer-breadcrumbs__item.is-hidden {
  display: none;
}
.footer-breadcrumbs__item.is-show {
  display: inline;
}

.footer-backtotop {
  padding-block: 7.625rem 7.375rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-backtotop {
    padding-block: 4.125rem 3.75rem;
  }
}
.footer-backtotop.no-breadcrumb {
  padding-block: 7.625rem 7.5rem;
}
@media (max-width: 768px) {
  .footer-backtotop.no-breadcrumb {
    padding-block: 5.125rem 5rem;
  }
}
.footer-backtotop .link-backtotop {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  padding-top: 1.125rem;
  position: relative;
  color: #161f20;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-backtotop .link-backtotop {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}
.footer-backtotop .link-backtotop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.75rem;
  border: solid #707070;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 0.25rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 768px) {
  .footer-backtotop .link-backtotop:before {
    left: 2.9375rem;
  }
}

.page-container {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-container {
    padding-top: 3.375rem;
  }
}

@media (min-width: 769px) {
  .inner {
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 769px) {
  .inner--w1156 {
    max-width: 72.25rem;
  }
}
@media (min-width: 769px) {
  .inner--w1100 {
    max-width: 68.75rem;
  }
}
@media (min-width: 769px) {
  .inner--w960 {
    max-width: 60rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.wow,
.--before-animated {
  opacity: 0;
}

.wow--animated-on-first-view {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.wow.--animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.--before-animated.--animated {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.link {
  text-decoration: none;
  color: inherit;
}

.__link-blank {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: under;
}
@media (min-width: 769px) {
  .__link-blank {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  .__link-blank:hover {
    color: #EB5CCA !important;
  }
}
.__link-blank:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("/finder/assets/img/common/components/ico_blank.png") no-repeat center/contain;
  display: inline-block;
  position: relative;
  top: 0.25rem;
  margin-left: 0.3125rem;
}
@media (max-width: 768px) {
  .__link-blank:after {
    top: 0.3125rem;
  }
}

html.win.chrome .__link-blank:after {
  top: 0.1875rem;
}
@media (max-width: 768px) {
  html.android .__link-blank:after {
    top: 0.25rem;
  }
}
html.webkit .__link-blank:after {
  top: 0.3125rem;
}
html.iphone .__link-blank:after {
  top: 0.375rem;
}

.text-underline {
  text-decoration: underline;
}
.text-line-through {
  text-decoration: line-through;
}
.text-no-underline {
  text-decoration: none;
}
.text-nowrap {
  white-space: nowrap;
}
.text-break-word {
  word-wrap: break-word;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis-multiline {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.text-ellipsis-multiline-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-ellipsis-multiline-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.text-ellipsis-multiline-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-300 {
  font-weight: 300;
}
.text-400 {
  font-weight: 400;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.text-700 {
  font-weight: 700;
}

.en {
  font-family: "Inter", sans-serif;
}

.jp {
  font-family: "AotoGothicStdN", sans-serif;
}

.title-20 {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .title-20 {
    font-size: 1.5rem;
  }
}
.title-28 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .title-28 {
    font-size: 1.5rem;
  }
}

.btn {
  border: none;
  text-decoration: none;
}
.btn:disabled {
  cursor: default !important;
}
.btn:not(:disabled) {
  cursor: pointer !important;
}
.btn.--lg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 13.75rem;
  height: 2.875rem;
  padding: 0 0.75rem;
  font-size: 1rem;
  line-height: 2.875rem;
  text-align: center;
}
.btn.--md {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 6.875rem;
  height: 1.875rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.875rem;
  text-align: center;
}
.btn.--sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 5.875rem;
  height: 1.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
}

.btn--primary {
  border: 1px solid #000000;
  background-color: #000000;
  color: #fff;
}
@media (min-width: 769px) {
  .btn--primary:hover {
    border: 1px solid #808080;
    background-color: #808080;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.btn--secondary {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media (min-width: 769px) {
  .btn--secondary:hover {
    border: 1px solid #D8D8D9;
    background-color: #D8D8D9;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.btn--third {
  border: 1px solid #808080;
  background-color: #808080;
  color: #fff;
}
@media (min-width: 769px) {
  .btn--third:hover {
    border: 1px solid #D8D8D9;
    background-color: #D8D8D9;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

figure, .__figure {
  margin: 0;
  padding: 0;
}

.__img-mv {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
}
.__img-mv > picture, .__img-mv .__picture {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
}
.__img-mv > picture::before, .__img-mv .__picture::before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media (max-width: 768px) {
  .__img-mv > picture::before, .__img-mv .__picture::before {
    padding-top: 100%;
  }
}
.__img-mv > picture img, .__img-mv .__picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.__img-content {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
}
.__img-content > picture, .__img-content .__picture {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
}
.__img-content > picture::before, .__img-content .__picture::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.__img-content > picture img, .__img-content .__picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.__img-thumbnail {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
}
.__img-thumbnail > picture, .__img-thumbnail .__picture {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
}
.__img-thumbnail > picture::before, .__img-thumbnail .__picture::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.__img-thumbnail > picture img, .__img-thumbnail .__picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.__figcaption {
  margin: 0.625rem 0 0 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}
@media (max-width: 768px) {
  .__figcaption {
    margin-top: 0.4375rem;
  }
}

.--img-mt {
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .--img-mt {
    margin-top: 1.25rem;
  }
}

main h1 {
  margin: 3.75rem 0 1.875rem 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.25rem;
  text-align: left;
  color: #000;
}
@media (max-width: 768px) {
  main h1 {
    margin-block: 2.5rem 1.5rem;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
main h2 {
  margin: 4.375rem 0 1.875rem 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  text-align: left;
  color: #000;
}
@media (max-width: 768px) {
  main h2 {
    margin-block: 4rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
main h3 {
  margin: 3.75rem 0 1.5625rem 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5625rem;
  text-align: left;
  color: #000;
}
@media (max-width: 768px) {
  main h3 {
    margin-block: 2.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
main h4 {
  margin: 3.125rem 0 1.25rem 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4375rem;
  text-align: left;
  color: #000;
}
@media (max-width: 768px) {
  main h4 {
    margin-block: 2.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}

.__icons-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0px;
}
@media (min-width: 769px) {
  .__icons-group {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 0.5rem;
    margin-top: -0.375rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .__icons-group {
    position: relative;
    top: 2.875rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 0.5rem;
    gap: 1.5rem;
  }
}

.__icons-group-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 769px) {
  .__icons-group-2 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 0.5rem;
    margin-top: -0.375rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .__icons-group-2 {
    position: relative;
    top: 2.875rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 0.5rem;
    gap: 1.5rem;
  }
}

.__social {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  text-decoration: none;
  position: relative;
}
.__social::before, .__social::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24.25rem;
  height: 12.5rem;
  background: url("/finder/assets/img/common/components/icon-share.png") no-repeat left top/24.25rem 12.5rem;
  -webkit-transform: scale(0.25);
          transform: scale(0.25);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.__social::after {
  top: -1.5625rem;
  opacity: 0;
}
.__social.--ins::before, .__social.--ins::after {
  left: -0.25rem;
}
.__social.--fb::before, .__social.--fb::after {
  left: -2.25rem;
}
.__social.--x::before, .__social.--x::after {
  left: -4.3125rem;
}
@media (min-width: 769px) {
  .__social:hover::before {
    opacity: 0;
  }
  .__social:hover::after {
    opacity: 1;
  }
}

.is-scroll {
  overflow: hidden;
  overflow-x: auto;
  position: relative;
}
@media (max-width: 768px) {
  .is-scroll {
    scrollbar-width: none !important; /* Hide scrollbar */
  }
  .is-scroll::-webkit-scrollbar {
    display: none !important;
  }
}

.not-safari,
.not-safari > *,
.not-safari > * > * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important; /* Hide scrollbar */
}
.not-safari::-webkit-scrollbar,
.not-safari > *::-webkit-scrollbar,
.not-safari > * > *::-webkit-scrollbar {
  display: none !important;
}

.icon-table-scroll {
  position: relative;
  width: 100%;
  padding-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .icon-table-scroll {
    padding-bottom: 0.9375rem;
  }
  .icon-table-scroll:before {
    content: "";
    display: block;
    margin: 0 0 0 auto;
    width: 3.0625rem;
    height: 1rem;
    background: url("/finder/assets/img/page-manual-send/txt_scroll.png") no-repeat center/contain;
  }
}

.custom-scroll-bar, .custom-scroll-bar {
  width: 100%;
  height: 1px;
  background-color: #E3E3E3;
  margin-top: 1.875rem;
  position: relative;
  top: -1px;
}
.custom-scroll-bar .custom-scroll-bar__drag, .custom-scroll-bar .custom-scroll-bar__drag {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #707070;
  border-radius: 0;
  cursor: -webkit-grab;
  cursor: grab;
}

.__block-brand {
  position: relative;
}
.__block-brand__link {
  position: relative;
  text-decoration: none;
  color: #000000;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 25rem;
}
@media (min-width: 769px) {
  .__block-brand__link:hover .__block-brand__img:before {
    opacity: 0.5;
  }
  .__block-brand__link:hover .__block-brand__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .__block-brand__link:hover .__block-brand__name,
  .__block-brand__link:hover .__block-brand__title,
  .__block-brand__link:hover .__block-brand__cate {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .__block-brand__link {
    width: 19.6875rem;
  }
}
.__block-brand__saved {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 0.9375rem;
  height: 1.375rem;
  margin-right: 1.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .__block-brand__saved {
    width: 1.375rem;
    height: 1.5rem;
    top: 0.625rem;
    right: 0.4375rem;
  }
}
.__block-brand__saved.--black {
  background: url("/finder/assets/img/common/icon-saved-black-pc.svg") no-repeat top right;
  background-size: contain;
}
.__block-brand__saved.--black.--checked {
  background-image: url("/finder/assets/img/common/icon-saved-black-checked-pc.svg");
}
.__block-brand__saved.--white {
  background: url("/finder/assets/img/common/icon-saved-white-pc.svg") no-repeat top right;
  background-size: contain;
}
.__block-brand__saved.--white.--checked {
  background-image: url("/finder/assets/img/common/icon-saved-white-checked-pc.svg");
}
.__block-brand__img {
  width: 100%;
  height: 18.75rem;
}
@media (min-width: 769px) {
  .__block-brand__img {
    overflow: hidden;
    position: relative;
  }
  .__block-brand__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .__block-brand__img {
    height: 14.6875rem;
  }
}
.__block-brand__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .__block-brand__img img {
    -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;
  }
}
.__block-brand__name {
  margin: 0;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5625rem;
  text-align: left;
  color: #000;
  padding: 0.625rem 0 0 0;
}
@media (min-width: 769px) {
  .__block-brand__name {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 768px) {
  .__block-brand__name {
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: 400;
  }
}
.__block-brand__title {
  margin: 0;
  border-bottom: 0.0625rem solid #707070;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  text-align: left;
  color: #000;
  padding: 0.5rem 0 0.75rem 0;
}
@media (min-width: 769px) {
  .__block-brand__title {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 768px) {
  .__block-brand__title {
    font-size: 0.875rem;
    font-weight: 400;
    padding-block: 0.3125rem 0.5rem;
  }
}
.__block-brand__cate {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
  text-align: left;
  color: #808080;
  padding-top: 0.375rem;
}
@media (min-width: 769px) {
  .__block-brand__cate {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 768px) {
  .__block-brand__cate {
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: 400;
    padding-top: 0.625rem;
  }
}

@media (min-width: 769px) {
  .__block-product {
    width: 13.875rem;
  }
}
@media (max-width: 768px) {
  .__block-product {
    width: 9.25rem;
  }
}
.__block-product .product__inner {
  text-decoration: none;
}
@media (min-width: 769px) {
  .__block-product .product__inner:hover .product__img:before {
    opacity: 0.5;
  }
  .__block-product .product__inner:hover .product__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.__block-product .product__img {
  position: relative;
  height: 13.875rem;
}
@media (min-width: 769px) {
  .__block-product .product__img {
    overflow: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .__block-product .product__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .__block-product .product__img {
    height: 9.25rem;
  }
}
.__block-product .product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .__block-product .product__img img {
    -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;
  }
}
.__block-product .product__img .book-mark {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 2;
  width: 0.9375rem;
  height: 1.3125rem;
  background: url("/finder/assets/img/common/components/ico_bookmark-black.png") no-repeat center/contain;
  cursor: pointer;
}
@media (max-width: 768px) {
  .__block-product .product__img .book-mark {
    width: 0.6875rem;
    height: 0.9375rem;
  }
}
.__block-product .product__img .book-mark.is-active {
  background-image: url("/finder/assets/img/common/components/ico_bookmark-black-active.png");
}
.__block-product .product__content {
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .__block-product .product__content {
    margin-top: 0.5625rem;
  }
}
.__block-product .product__content .title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .__block-product .product__content .title {
    font-size: 0.875rem;
  }
}
.__block-product .product__content .text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  color: #808080;
}
@media (max-width: 768px) {
  .__block-product .product__content .text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}
.__block-product .product__content .price {
  margin-top: 0.5rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .__block-product .product__content .price {
    font-size: 0.875rem;
    margin-top: 0.4375rem;
  }
}
.__block-product .product__content .price span {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .__block-product .product__content .price span {
    font-size: 0.625rem;
  }
  .__block-product .product__content .price span span {
    font-size: 1rem;
  }
}

.__block-paper {
  position: relative;
}
@media (min-width: 769px) {
  .__block-paper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10.75rem;
            flex: 0 0 10.75rem;
  }
}
.__block-paper__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-decoration: none;
  color: #000000;
  text-align: center;
}
@media (min-width: 769px) {
  .__block-paper__link:hover .__block-paper__img:before {
    opacity: 0.5;
  }
  .__block-paper__link:hover .__block-paper__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .__block-paper__link:hover .__block-paper__name {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .__block-paper__link {
    margin-right: 0.625rem;
    width: 9.25rem;
  }
  .__block-paper__link.--last {
    margin-right: 1.25rem;
  }
}
.__block-paper__img {
  width: 100%;
  height: 10.75rem;
}
@media (min-width: 769px) {
  .__block-paper__img {
    overflow: hidden;
    position: relative;
  }
  .__block-paper__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .__block-paper__img {
    width: 9.25rem;
    height: 9.25rem;
  }
}
.__block-paper__img.--border {
  position: relative;
}
.__block-paper__img.--border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #D8D8D9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
.__block-paper__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .__block-paper__img img {
    -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;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.__block-paper__name {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
  text-align: center;
  color: #000;
  padding-top: 0.6875rem;
}
@media (min-width: 769px) {
  .__block-paper__name {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 768px) {
  .__block-paper__name {
    line-height: 1.3125rem;
    padding-top: 0.5rem;
  }
}
.__block-paper__name sup {
  font-size: 60%;
}

.__block-card {
  width: 25rem;
}
@media (max-width: 768px) {
  .__block-card {
    width: 19.6875rem;
  }
}
.__block-card__url {
  display: block;
  text-decoration: none;
  color: #000;
}
@media (min-width: 769px) {
  .__block-card__url:hover .__block-card__img:before {
    opacity: 0.5;
  }
  .__block-card__url:hover .__block-card__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.__block-card__img {
  position: relative;
  height: 18.75rem;
}
@media (min-width: 769px) {
  .__block-card__img {
    overflow: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .__block-card__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .__block-card__img {
    height: 14.6875rem;
  }
}
.__block-card__img .marker {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  cursor: pointer;
  width: 0.9375rem;
  height: 1.3125rem;
  z-index: 3;
}
.__block-card__img .marker.--black {
  background: url("/finder/assets/img/common/components/ico_bookmark-black.png") no-repeat center/contain;
}
.__block-card__img .marker.--black.is-active {
  background-image: url("/finder/assets/img/common/components/ico_bookmark-black-active.png");
}
.__block-card__img .marker.--white {
  background: url("/finder/assets/img/common/components/ico_bookmark-white.png") no-repeat center/contain;
}
.__block-card__img .marker.--white.is-active {
  background-image: url("/finder/assets/img/common/components/ico_bookmark-white-active.png");
}
.__block-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .__block-card__img img {
    -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;
  }
}
.__block-card__content {
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .__block-card__content {
    margin-top: 0.6875rem;
  }
}
.__block-card__content .name-company {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .__block-card__content .name-company {
    font-size: 0.75rem;
    margin-bottom: 0.3125rem;
  }
}
.__block-card__content .title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid #707070;
  padding-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .__block-card__content .title {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.__block-card__content .text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: #808080;
  font-weight: 400;
}
@media (max-width: 768px) {
  .__block-card__content .text {
    font-size: 0.75rem;
    margin-top: 0.6875rem;
  }
}

.__block-service {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
}
@media (min-width: 769px) {
  .__block-service {
    width: 25rem;
  }
  .__block-service:hover .__block-service__img:before {
    opacity: 0.5;
  }
  .__block-service:hover .__block-service__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .__block-service:hover .__block-service__content .link {
    color: #808080;
  }
  .__block-service:hover .__block-service__content .link span:after {
    border-color: #808080;
  }
}
@media (max-width: 768px) {
  .__block-service {
    width: 19.6875rem;
  }
}
.__block-service__img {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.__block-service__img:before {
  content: "";
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 75% 0 0 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
@media (max-width: 768px) {
  .__block-service__img:before {
    padding: 74.6031746032% 0 0 0;
  }
}
.__block-service__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .__block-service__img img {
    -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;
  }
}
.__block-service__content {
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .__block-service__content {
    margin-top: 0.5625rem;
  }
}
.__block-service__content .title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid #808080;
  padding-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .__block-service__content .title {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.__block-service__content .text {
  margin-top: 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .__block-service__content .text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}
.__block-service__content .link {
  margin-top: 0.5rem;
}
@media (min-width: 769px) {
  .__block-service__content .link {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
.__block-service__content .link span {
  font-size: 0.875rem;
  text-decoration: none;
  position: relative;
}
.__block-service__content .link span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000;
  right: 0;
}
@media (min-width: 769px) {
  .__block-service__content .link span:after {
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
  }
}

@media (min-width: 769px) {
  .swiper.__slider-product {
    margin-top: 1.625rem;
  }
}
@media (max-width: 768px) {
  .swiper.__slider-product {
    margin-top: 1.25rem;
  }
  .swiper.__slider-product.--sp-pull-right {
    margin-right: -1.25rem;
  }
}
@media (min-width: 769px) {
  .swiper.__slider-product .swiper-slide {
    padding-right: 1.5rem;
  }
  .swiper.__slider-product .swiper-slide:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .swiper.__slider-product .swiper-slide {
    padding-right: 1.25rem;
  }
}
@media (max-width: 768px) {
  .swiper.__slider-product.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

@media (min-width: 769px) {
  .__slider-single {
    margin-top: 1.625rem;
  }
}
@media (max-width: 768px) {
  .__slider-single {
    margin-top: 1.25rem;
  }
}
.__slider-single .slick-slide .__figcaption {
  opacity: 0;
}
.__slider-single .slick-slide.slick-current .__figcaption {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.slick-controler {
  position: relative;
  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;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.25rem;
  gap: 1.125rem;
  font-size: 0;
  margin-top: 1.5625rem;
}
@media (max-width: 768px) {
  .slick-controler {
    height: 1.5625rem;
    margin-top: 1.125rem;
  }
}

.slick-arrow {
  width: 0.8125rem;
  height: 0.8125rem;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-indent: -9999px;
}
.slick-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.slick-arrow.slick-prev:before {
  border-top: 0.375rem solid transparent;
  border-right: 0.75rem solid #808080;
  border-bottom: 0.375rem solid transparent;
}
.slick-arrow.slick-next:before {
  border-top: 0.375rem solid transparent;
  border-left: 0.75rem solid #808080;
  border-bottom: 0.375rem solid transparent;
}

.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  line-height: 0;
}
.slick-dots button {
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -9999px;
  padding: 0;
  margin: 0;
  border: none;
  background: #D8D8D9;
  cursor: pointer;
}
.slick-dots .slick-active button {
  background: #808080;
}

.__slider-brand {
  margin: 2.1875rem 0 0 0;
}
@media (max-width: 768px) {
  .__slider-brand {
    margin-top: 1.4375rem;
  }
}
.__slider-brand .swiper-slide {
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .__slider-brand .swiper-slide {
    padding-right: 1.25rem;
  }
}
@media (max-width: 768px) {
  .__slider-brand.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.__slider-card {
  margin: 2.1875rem 0 0 0;
}
@media (max-width: 768px) {
  .__slider-card {
    margin-top: 1.4375rem;
  }
}
.__slider-card .swiper-slide {
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .__slider-card .swiper-slide {
    padding-right: 1.25rem;
  }
}
@media (max-width: 768px) {
  .__slider-card.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.__slider-service {
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .__slider-service {
    margin-top: 1.5rem;
  }
}
.__slider-service .swiper-slide {
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .__slider-service .swiper-slide {
    padding-right: 1.25rem;
  }
}
@media (max-width: 768px) {
  .__slider-service.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.__list-paper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9375rem 1.5625rem;
  margin-top: 2.1875rem;
}
@media (min-width: 769px) {
  .__list-paper__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10.75rem;
            flex: 0 0 10.75rem;
  }
}

@media (max-width: 768px) {
  .__slider-paper {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .__slider-paper.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.__slider-article {
  margin: 2.1875rem 0 0 0;
}
@media (max-width: 768px) {
  .__slider-article {
    margin-top: 1.4375rem;
  }
}
@media (max-width: 768px) {
  .__slider-article.--overflow-x-on-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.__title-with-underline {
  border-bottom: 1px solid #808080;
  padding: 0 0 0.625rem 0;
  font-weight: 600;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .__title-with-underline {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 0.25rem;
  }
}

.__text-purpose-desc {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
  color: #000;
  margin-top: 1.1875rem;
}
@media (max-width: 768px) {
  .__text-purpose-desc {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    margin-top: 0.6875rem;
  }
}

.__text-body {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.75;
  color: #000;
  margin: 1.3125rem 0 0 auto;
}
@media (max-width: 768px) {
  .__text-body {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    margin-top: 0.9375rem;
  }
}
.__text-body.--sm {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media (max-width: 768px) {
  .__text-body.--sm {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.__text-body.--pull-right {
  width: 28.25rem;
}
@media (max-width: 768px) {
  .__text-body.--pull-right {
    width: 100%;
  }
}

.__text-note {
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
  color: #000000;
}

.block-purpose-text-column {
  height: 100%;
}
@media (min-width: 769px) {
  .block-purpose-text-column .column__item {
    padding-inline: 0.75rem;
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  .block-purpose-text-column .column__item:not(:last-child) {
    margin-bottom: 1.4375rem;
  }
}
.block-purpose-text-column .column__inner {
  border: 1px solid #808080;
  padding: 1.5625rem 1.75rem;
}
@media (min-width: 769px) {
  .block-purpose-text-column .column__inner {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .block-purpose-text-column .column__inner {
    padding: 1.25rem 1.25rem 1.375rem;
  }
}
.block-purpose-text-column .column__title {
  font-weight: 500;
}
.block-purpose-text-column .column__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin-top: 0.8125rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .block-purpose-text-column .column__text {
    line-height: 1.6428571429;
    margin-top: 0.4375rem;
  }
}
.block-purpose-text-column .column__img {
  margin-top: 0.5rem;
  height: 11.625rem;
}
.block-purpose-text-column .column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-purpose-text-column .column__url {
  margin-top: 0.4375rem;
}
@media (max-width: 768px) {
  .block-purpose-text-column .column__url {
    margin-top: 0.75rem;
  }
}

.block-purpose-text-with-thumbnail .frame-img {
  margin-top: 1.25rem;
  padding: 1.75rem 1.6875rem;
  border: 1px solid #808080;
}
@media (min-width: 769px) {
  .block-purpose-text-with-thumbnail .frame-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .block-purpose-text-with-thumbnail .frame-img {
    padding: 1.4375rem 1.25rem 1.375rem;
  }
}
@media (min-width: 769px) {
  .block-purpose-text-with-thumbnail .frame-img__img {
    width: 15.5rem;
    height: 11.625rem;
  }
}
@media (max-width: 768px) {
  .block-purpose-text-with-thumbnail .frame-img__img {
    height: 13.8125rem;
  }
}
.block-purpose-text-with-thumbnail .frame-img__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .block-purpose-text-with-thumbnail .frame-img__infor {
    padding-left: 1.75rem;
    padding-top: 0.4375rem;
    width: calc(100% - 15.5rem);
  }
}
@media (max-width: 768px) {
  .block-purpose-text-with-thumbnail .frame-img__infor {
    margin-top: 1.3125rem;
  }
}
.block-purpose-text-with-thumbnail .frame-img__title {
  font-weight: 500;
}
.block-purpose-text-with-thumbnail .frame-img__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media (max-width: 768px) {
  .block-purpose-text-with-thumbnail .frame-img__text {
    line-height: 1.6428571429;
    margin-top: 0.5rem;
  }
}
.block-purpose-text-with-thumbnail .frame-img__link {
  margin-top: 0.4375rem;
}

.block-purpose-text-without-thumbnail .frame {
  border: 1px solid #808080;
  padding: 1.5rem 1.6875rem 1.6875rem;
  margin-top: 1.625rem;
}
@media (max-width: 768px) {
  .block-purpose-text-without-thumbnail .frame {
    margin-top: 1.25rem;
    padding: 1.25rem 1.1875rem;
  }
}
.block-purpose-text-without-thumbnail .frame__title {
  font-weight: 500;
}
.block-purpose-text-without-thumbnail .frame__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .block-purpose-text-without-thumbnail .frame__text {
    margin-top: 0.5rem;
    line-height: 1.6428571429;
  }
}
.block-purpose-text-without-thumbnail .frame__link {
  margin-top: 0.875rem;
}
@media (max-width: 768px) {
  .block-purpose-text-without-thumbnail .frame__link {
    margin-top: 0.4375rem;
  }
}
.block-purpose-text-without-thumbnail .frame__img {
  margin-top: 0.75rem;
}

#gdprBlock {
  position: relative;
  display: none;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  width: 100%;
  padding: 20px 20px;
  position: fixed;
  bottom: 0;
  z-index: 999;
}
#gdprBlock .gdprTxt {
  max-width: 650px;
  margin: 0 auto 20px;
}
#gdprBlock .gdprTxt a {
  outline: none;
  text-decoration: none;
  color: #39C;
}
#gdprBlock .gdprBtn {
  text-align: center;
}
#gdprBlock .gdprBtn button {
  background: #000;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  width: 144px;
  text-align: center;
  padding: 6px 0;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}