@layer reset, base, layout, components, pages, utilities;
:root {
  --border-width: 1px;
  --border-radius: 4px;
  --box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  --border-radius-lg: 8px;
  --border-radius-sm: 2px;
  --box-shadow-lg: 0 4px 8px rgb(0 0 0 / 15%);
  --box-shadow-sm: 0 1px 2px rgb(0 0 0 / 5%);
  --color-bg: #f8f9fa;
  --color-bg-gray: #f7f7f7;
  --color-border: #dee2e6;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  --color-orange: #ed901c;
  --color-primary: #167cba;
  --color-primary-hover: #0056b3;
  --color-secondary: #6c757d;
  --color-secondary-hover: #545b62;
  --color-success: #28a745;
  --color-text: #1a1a1a;
  --color-text-muted: #6c757d;
  --color-warning: #ffc107;
  --font-family-base: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", meiryo, sans-serif;
  --font-family-mono: "Courier New", monospace;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  --spacing-lg: 1.5rem;
  --spacing-md: 1rem;
  --spacing-sm: .5rem;
  --spacing-unit: 1rem;
  --spacing-xl: 2rem;
  --spacing-xs: .25rem;
  --transition-base: all .3s ease;
  --transition-fast: all .15s ease;
  --transition-slow: all .5s ease;
  --width-pc: 1240px;
  --width-sp: 375px;
}

@layer reset {
  *, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
  }
  :where(html) {
    line-height: 1.15;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
  :where(body) {
    margin: 0;
  }
  :where(main) {
    display: block;
  }
  :where(p, table, blockquote, address, pre, iframe, form, figure, dl) {
    margin: 0;
  }
  :where(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
  }
  :where(ul, ol) {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  :where(dt) {
    font-weight: bold;
  }
  :where(dd) {
    margin-left: 0;
  }
  :where(hr) {
    clear: both;
    overflow: visible;
    box-sizing: content-box;
    margin: 0;
    height: 0;
    border-top-width: 1px;
    color: inherit;
  }
  :where(pre) {
    font-size: inherit;
    font-family: monospace;
  }
  :where(address) {
    font-style: inherit;
  }
  :where(a) {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
  }
  :where(abbr[title]) {
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
  }
  :where(b, strong) {
    font-weight: bolder;
  }
  :where(code, kbd, samp) {
    font-size: inherit;
    font-family: monospace;
  }
  :where(small) {
    font-size: 80%;
  }
  :where(sub, sup) {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
  }
  :where(sub) {
    bottom: -0.25em;
  }
  :where(sup) {
    top: -0.5em;
  }
  :where(svg, img, embed, object, iframe) {
    vertical-align: bottom;
  }
  :where(button, input, optgroup, select, textarea) {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    text-transform: inherit;
    font: inherit;
  }
  :where(button, [type=button], [type=reset], [type=submit]) {
    cursor: pointer;
  }
  :where(button:disabled,
  [type=button]:disabled,
  [type=reset]:disabled,
  [type=submit]:disabled) {
    cursor: default;
  }
  :-moz-focusring {
    outline: auto;
  }
  :where(select:disabled) {
    opacity: inherit;
  }
  :where(option) {
    padding: 0;
  }
  :where(fieldset) {
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  :where(legend) {
    padding: 0;
  }
  :where(progress) {
    vertical-align: baseline;
  }
  :where(textarea) {
    overflow: auto;
  }
  :where([type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button) {
    height: auto;
  }
  :where([type=search]) {
    outline-offset: -2px;
  }
  :where([type=search]::-webkit-search-decoration) {
    -webkit-appearance: none;
            appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
            appearance: button;
    font: inherit;
  }
  :where([type=number]) {
    -webkit-appearance: textfield;
       -moz-appearance: textfield;
            appearance: textfield;
  }
  :where(label[for]) {
    cursor: pointer;
  }
  :where(details) {
    display: block;
  }
  :where(summary) {
    display: list-item;
  }
  :where([contenteditable]:focus) {
    outline: auto;
  }
  :where(table) {
    border-collapse: collapse;
    border-color: inherit;
  }
  :where(caption) {
    text-align: left;
  }
  :where(td, th) {
    padding: 0;
    vertical-align: top;
  }
  :where(th) {
    text-align: left;
    font-weight: bold;
  }
}
@layer base {
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  body {
    background: #fff;
    color: #1a1a1a;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
  }
  @media (width >= 769px) {
    body {
      min-width: 1440px;
    }
  }
  @media (max-width: 768px) {
    body {
      max-width: 100%;
    }
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: bold;
    line-height: var(--line-height-heading);
  }
  :where(a) {
    color: inherit;
  }
  @media (width >= 769px) {
    main {
      position: relative;
      top: -56px;
    }
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}
@layer layout {
  .header {
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 32px 32px 0;
    height: 56px;
    color: #fff;
  }
  @media (width >= 769px) {
    .header {
      min-width: 1440px;
    }
  }
  @media (max-width: 768px) {
    .header {
      padding: 8px 20px;
      height: auto;
      background: #fff;
    }
  }
  .header-logo {
    width: 266px;
  }
  @media (max-width: 768px) {
    .header-logo {
      width: 156px;
    }
  }
  .header-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-nav-list-item a {
    color: #fff;
    font-weight: 700;
    line-height: 1;
  }
  .header-nav-list-item-btn {
    padding: 15px 32px;
    border-radius: 900px;
    background: var(--grad-contact, linear-gradient(107deg, #C86A0D 17.16%, #FF9429 46.49%, #C86A0D 85.7%));
  }
  @media (max-width: 768px) {
    .header-nav-list-item-btn {
      padding: 10px 32px;
      width: 120px;
      height: 30px;
    }
  }
  .header-nav-list-item-btn a {
    display: flex;
    color: #fff;
    font-weight: 700;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .header-nav-list-item-btn a {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  @media (width >= 769px) {
    .nav-toggle {
      display: none;
    }
  }
  .nav-toggle-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
  }
  .nav-toggle-icon::before, .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
  }
  .nav-toggle-icon::before {
    top: -8px;
  }
  .nav-toggle-icon::after {
    bottom: -8px;
  }
  .nav-toggle-text {
    margin-top: 4px;
    color: var(--color-text);
    font-size: 0.625rem;
  }
  .nav-toggle.is-active .nav-toggle-icon {
    background: transparent;
  }
  .nav-toggle.is-active .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle.is-active .nav-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition-base);
  }
  .nav-overlay.is-visible {
    visibility: visible;
    opacity: 1;
  }
}
@layer layout {
  .Footer {
    padding: 40px 0 64px;
  }
  @media (max-width: 768px) {
    .Footer {
      padding: 40px 14px 93px;
    }
  }
  .Footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .Footer .wrap {
      flex-direction: column;
      gap: 32px;
    }
  }
  .Footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .Footer-links a {
    position: relative;
    font-size: 12px;
    line-height: 1;
  }
  .Footer-links a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 6px;
    background: url("../images/arrow-icon.png") no-repeat center/contain;
  }
  .Footer-copy {
    font-size: 12px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .Footer-copy {
      text-align: center;
    }
  }
}
@layer components {
  .button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
  }
  .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .button-primary {
    background: var(--color-primary);
    color: #fff;
  }
  .button-primary:hover:not(:disabled) {
    background: var(--color-primary-hover);
  }
  .button-secondary {
    background: var(--color-secondary);
    color: #fff;
  }
  .button-secondary:hover:not(:disabled) {
    background: var(--color-secondary-hover);
  }
  .button-outline {
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
  }
  .button-outline:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
  }
  .button-lg {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.25rem;
  }
  .button-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.875rem;
  }
}
@layer components {
  .card {
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition-base);
  }
  @container (min-width: 400px) {
    .card-body {
      padding: var(--spacing-lg);
    }
    .card-title {
      font-size: 1.5rem;
    }
  }
  @container (min-width: 600px) {
    .card {
      display: grid;
      grid-template-columns: 200px 1fr;
    }
    .card-image {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  .card:hover {
    box-shadow: var(--box-shadow-lg);
  }
  .card-image {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-body {
    padding: var(--spacing-md);
  }
  .card-title {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-weight: bold;
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .card-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: var(--line-height-base);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
@layer components {
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition-base);
  }
  .modal.is-active {
    visibility: visible;
    opacity: 1;
  }
  .modal-content {
    position: relative;
    overflow-y: auto;
    padding: var(--spacing-xl);
    max-width: 600px;
    max-height: 90vh;
    width: 100%;
    border-radius: var(--border-radius-lg);
    background: #fff;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition-base);
    transform: scale(0.9);
  }
  .modal.is-active .modal-content {
    transform: scale(1);
  }
  .modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
  }
  .modal-title {
    margin-bottom: var(--spacing-md);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: var(--line-height-heading);
  }
  .modal-text {
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
  }
}
@layer components {
  .accordion-item {
    border-bottom: 1px solid var(--color-border);
  }
  .accordion-item:first-child {
    border-top: 1px solid var(--color-border);
  }
  .accordion-trigger {
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 0;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .accordion-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transition: var(--transition-fast);
    transform: rotate(45deg);
  }
  .accordion-trigger:hover {
    color: var(--color-primary);
  }
  .accordion-trigger[aria-expanded=true] {
    color: var(--color-primary);
  }
  .accordion-trigger[aria-expanded=true]::after {
    transform: rotate(225deg);
  }
  .accordion-content {
    overflow: hidden;
    padding: 0 var(--spacing-lg);
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .accordion-item.is-open .accordion-content {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    max-height: 1000px;
  }
  .accordion-content-text {
    margin: 0;
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
  }
}
@layer components {
  .form-group {
    margin-bottom: var(--spacing-lg);
  }
  .form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.875rem;
  }
  .form-required {
    margin-left: var(--spacing-xs);
    color: var(--color-danger);
    font-size: 0.75rem;
  }
  .form-input, .form-select {
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: #fff;
    font-size: 1rem;
    line-height: var(--line-height-base);
    transition: var(--transition-fast);
  }
  .form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }
  .form-input:invalid:not(:focus, :-moz-placeholder), .form-select:invalid:not(:focus, :-moz-placeholder) {
    border-color: var(--color-danger);
  }
  .form-input:invalid:not(:focus, :placeholder-shown), .form-select:invalid:not(:focus, :placeholder-shown) {
    border-color: var(--color-danger);
  }
  .form-textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    min-height: 120px;
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: #fff;
    font-size: 1rem;
    line-height: var(--line-height-base);
    resize: vertical;
    transition: var(--transition-fast);
  }
  .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }
  .form-textarea:invalid:not(:focus, :-moz-placeholder) {
    border-color: var(--color-danger);
  }
  .form-textarea:invalid:not(:focus, :placeholder-shown) {
    border-color: var(--color-danger);
  }
  .form-error {
    display: block;
    margin-top: var(--spacing-xs);
    color: var(--color-danger);
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
  }
  .form-error:not(:empty) {
    opacity: 1;
  }
  .form-group:has(.form-input:invalid:not(:focus, :-moz-placeholder)) .form-error {
    opacity: 1;
  }
  .form-group.has-error .form-error, .form-group:has(.form-input:invalid:not(:focus, :placeholder-shown)) .form-error {
    opacity: 1;
  }
}
@layer components {
  .fixed-menu {
    position: fixed;
    right: 0;
    bottom: 50%;
    z-index: 999;
  }
  @media (width >= 769px) {
    .fixed-menu {
      width: 64px;
      height: 249px;
      border-radius: 4px 0 0 4px;
      background-color: #7e7a50;
    }
    .fixed-menu a {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      width: 100%;
      height: 100%;
      color: #fff;
      letter-spacing: 0.2em;
      font-weight: 700;
      line-height: 1.2;
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }
    .fixed-menu:hover {
      opacity: 0.7;
    }
  }
  @media (max-width: 768px) {
    .fixed-menu {
      bottom: 10px;
      margin: 0 auto;
      padding: 0 8px;
      width: 100%;
      height: 56px;
    }
    .fixed-menu a {
      display: flex;
      align-items: center;
      gap: 15px;
      justify-content: center;
      margin: 0 auto;
      width: 100%;
      height: 100%;
      border-radius: 4px;
      background-color: #7e7a50;
      color: #fff;
      font-weight: 600;
      line-height: 1.4;
    }
  }
  .fixed-menu-icon {
    width: 20px;
  }
  @media (max-width: 768px) {
    .fixed-menu-icon {
      height: 29px;
    }
  }
}
@layer components {
  .pageBreadcrumb {
    margin: 0 auto;
    max-width: 1200px;
  }
  @media (max-width: 768px) {
    .pageBreadcrumb {
      padding: 0 20px;
      max-width: 100%;
    }
  }
  .pageBreadcrumb-list {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
  }
  .pageBreadcrumb-list-item.current {
    color: #626262;
  }
  .pageBreadcrumb-list a {
    position: relative;
    text-decoration: underline;
  }
  .pageBreadcrumb-list a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
    transform: rotate(45deg) translateY(-50%);
  }
}
@layer components {
  main {
    top: 0;
  }
  .pageMv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 64px;
  }
  @media (max-width: 768px) {
    .pageMv-top {
      align-items: flex-start;
      flex-direction: column;
      gap: 32px;
      padding: 48px 0;
    }
  }
  .pageMv-top-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 700;
    font-size: 48px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .pageMv-top-title {
      gap: 16px;
      font-size: 32px;
    }
  }
  .pageMv-top-title-en {
    color: #7e7a50;
    font-weight: 500;
    font-size: 20px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .pageMv-top-title-en {
      font-size: 16px;
    }
  }
  .pageMv-top-lead {
    font-size: 18px;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .pageMv-top-lead {
      font-size: 16px;
      line-height: 1.8;
    }
  }
  .pageMv-img {
    margin: 0 auto;
    width: 100%;
  }
  .pageMv-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@layer components {
  .pageCommonButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0;
    padding-right: 20px;
    width: 330px;
    height: 68px;
    border-radius: 4px;
    background-color: #274874;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 4;
  }
  @media (max-width: 768px) {
    .pageCommonButton {
      max-width: 100%;
      height: 60px;
      font-size: 14px;
    }
  }
  .pageCommonButton.sp {
    margin: 48px auto 0;
  }
  .pageCommonButton.olive {
    background-color: #7e7a50;
  }
  .pageCommonButton.single {
    margin: 48px auto 0;
  }
  .pageCommonButton::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow_white.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
}
.button-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .button-flex {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
  }
  .button-flex .pageCommonButton {
    margin-top: 0;
  }
}

@layer pages {
  main.top {
    overflow-x: clip;
    max-width: 100%;
  }
  .topMv {
    position: relative;
    margin-top: 0;
    width: 100%;
    height: 771px;
    background-image: url("../images/top/mv.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .topMv {
      margin-top: 12px;
      height: 100%;
    }
  }
  .topMv-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 346px;
    max-width: 1200px;
  }
  @media (max-width: 768px) {
    .topMv-section-head {
      padding-top: 239px;
    }
  }
  .topMv-section-head-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .topMv-section-head-title {
      gap: 20px;
    }
  }
  .topMv-section-head-title-sub {
    position: relative;
    color: #fff;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topMv-section-head-title-sub {
      font-size: 14px;
    }
  }
  .topMv-section-head-title-main {
    position: relative;
    padding-bottom: 38px;
    color: #fff;
    font-weight: 700;
    font-size: 56px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  .topMv-section-head-title-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.6;
  }
  @media (max-width: 768px) {
    .topMv-section-head-title-main {
      padding-bottom: 24px;
      white-space: nowrap;
      font-size: 32px;
    }
  }
  .topMv-section-head-title-lead {
    margin-top: 12px;
    color: #fff;
    font-size: 20px;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .topMv-section-head-title-lead {
      margin-top: 0;
      font-size: 16px;
      line-height: 1.8;
    }
  }
}
@layer pages {
  .topMenu {
    position: relative;
    padding: 80px 0 96px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .topMenu {
      padding: 64px 0 80px;
    }
  }
  .topMenu-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topMenu-title {
      font-size: 24px;
    }
  }
  .topMenu-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -36px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/glass.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .topMenu-contents-list {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
  }
  @media (max-width: 768px) {
    .topMenu-contents-list {
      flex-direction: column;
      gap: 12px;
    }
  }
  .topMenu-contents-list-item {
    position: relative;
    width: calc((100% - 24px) / 2);
    border: 1px solid #d2cfae;
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .topMenu-contents-list-item {
      width: 100%;
    }
  }
  .topMenu-contents-list-item a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .topMenu-contents-list-item a {
      align-items: center;
      flex-direction: row;
      gap: 0;
    }
  }
  .topMenu-contents-list-item-icon {
    margin: 0 auto;
    padding-top: 24px;
    width: 64px;
  }
  @media (max-width: 768px) {
    .topMenu-contents-list-item-icon {
      position: absolute;
      top: 50%;
      left: 20px;
      padding: 0;
      width: 40px;
      transform: translateY(-50%);
    }
  }
  .topMenu-contents-list-item-ttl {
    padding-bottom: 4px;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topMenu-contents-list-item-ttl {
      padding: 32px 0 32px 84px;
      font-size: 16px;
    }
  }
  .topMenu-contents-list-item-arrow {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }
  @media (max-width: 768px) {
    .topMenu-contents-list-item-arrow {
      margin: 0 20px 0 auto;
      width: 24px;
      height: 24px;
    }
  }
  .topMenu-link {
    position: absolute;
    right: 0;
    bottom: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 56px;
    max-width: min(560px, 100%);
    width: 560px;
    height: 80px;
    border-radius: 4px 0 0;
    background-color: #f5f5f5;
    color: #274874;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topMenu-link {
      position: relative;
      right: -20px;
      justify-content: flex-start;
      margin: 48px 0 0 auto;
      padding: 0 20px 0 22px;
      max-width: 100%;
      width: 100%;
      width: 289px;
      border-radius: 4px 0 0;
      font-size: 14px;
      line-height: 1.4;
    }
  }
  .topMenu-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 56px;
    width: 40px;
    height: 40px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topMenu-link::after {
      right: 16px;
      width: 32px;
      height: 32px;
    }
  }
  .topMenu-contents-banner-list {
    display: grid;
    gap: 24px;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 48px;
  }
  @media (max-width: 768px) {
    .topMenu-contents-banner-list {
      gap: 12px;
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 0;
    }
  }
  .topMenu-contents-banner-list-item-img {
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    .topMenu-contents-banner-list-item-img {
      margin-bottom: 8px;
    }
  }
  .topMenu-contents-banner-list-item-ttl {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topMenu-contents-banner-list-item-ttl {
      font-size: 12px;
    }
  }
  .topMenu-contents-banner-list-item-ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topMenu-contents-banner-list-item-ttl::after {
      width: 20px;
      height: 20px;
    }
  }
}
@layer pages {
  .topService {
    padding: 96px 0 120px;
    background-color: #274874;
  }
  @media (max-width: 768px) {
    .topService {
      padding: 64px 0 80px;
    }
  }
  .topService-title {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topService-title {
      font-size: 24px;
      line-height: 1.4;
    }
  }
  .topService-list {
    display: grid;
    align-items: center;
    gap: 1px;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    margin: 64px auto 24px;
  }
  @media (max-width: 768px) {
    .topService-list {
      gap: 16px;
      grid-template-columns: repeat(1, 1fr);
      margin: 32px auto 16px;
    }
  }
  .topService-list-item {
    height: 100%;
    background-color: #fff;
  }
  .topService-list-item-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 40px 48px;
  }
  @media (max-width: 768px) {
    .topService-list-item-inner {
      gap: 12px;
      padding: 24px;
    }
  }
  .topService-list-item-inner-ttl {
    color: #7e7a50;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topService-list-item-inner-ttl {
      font-size: 20px;
    }
  }
  @media (width >= 769px) {
    .topService-list-item-inner-lead {
      height: 77px;
    }
  }
  @media (max-width: 768px) {
    .topService-list-item-inner-lead {
      font-size: 14px;
    }
  }
  .topService-list-item-inner-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
  }
  .topService-list-item-inner-link-list-item {
    position: relative;
    padding-right: 19px;
    max-width: 100%;
    width: 303px;
    height: 56px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    color: #274874;
  }
  @media (max-width: 768px) {
    .topService-list-item-inner-link-list-item {
      width: 100%;
      height: 52px;
      font-size: 14px;
    }
  }
  .topService-list-item-inner-link-list-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .topService-list-item-inner-link-list-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow05.png");
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
  }
  .topService-rental-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 48px;
    background-color: #e8edf4;
  }
  @media (max-width: 768px) {
    .topService-rental-container {
      padding: 24px;
    }
  }
  .topService-rental-container-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .topService-rental-container-inner-title {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topService-rental-container-inner-title {
      font-size: 20px;
    }
  }
  .topService-rental-container-inner-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
  }
  .topService-rental-container-inner-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
  }
  @media (max-width: 768px) {
    .topService-rental-container-inner-list {
      gap: 8px;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .topService-rental-container-inner-list-item {
    position: relative;
    padding-right: 19px;
    width: 267px;
    height: 56px;
    border-radius: 4px;
    background-color: #274874;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
  }
  @media (max-width: 768px) {
    .topService-rental-container-inner-list-item {
      padding-right: 12px;
      width: 100%;
      text-align: left;
      font-size: 12px;
    }
  }
  .topService-rental-container-inner-list-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow_white.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topService-rental-container-inner-list-item::after {
      right: 12px;
      width: 14px;
      height: 14px;
    }
  }
  .topService-rental-container-inner-list-item a {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .topService-rental-support-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
  }
  @media (max-width: 768px) {
    .topService-rental-support-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .topService-rental-support-list-item {
    position: relative;
    padding-right: 19px;
    height: 56px;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
  }
  @media (max-width: 768px) {
    .topService-rental-support-list-item {
      padding-right: 12px;
      text-align: left;
      font-size: 12px;
    }
  }
  .topService-rental-support-list-item a {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .topService-rental-support-list-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow05.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topService-rental-support-list-item::after {
      right: 12px;
      width: 14px;
      height: 14px;
    }
  }
  .topService-rental-support-title {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  .topService-rental-support-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background-color: #afc1d9;
    transform: translateY(-50%);
  }
  @media (width >= 769px) {
    .topService-rental-support-title::after {
      width: 980px;
    }
  }
  @media (max-width: 768px) {
    .topService-rental-support-title {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    .topService-rental-support-title::after {
      position: static;
      flex: 1;
      min-width: 0;
      width: auto;
      transform: none;
    }
  }
}
@layer pages {
  .top-section-header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    .top-section-header-block {
      align-items: stretch;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 48px;
    }
  }
  .top-section-header-block-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .top-section-header-block-title {
      gap: 12px;
    }
  }
  .top-section-header-block-title-small {
    color: #7e7a50;
    font-size: 20px;
    line-height: 1.2;
  }
  @media (max-width: 768px) {
    .top-section-header-block-title-small {
      letter-spacing: 0.06em;
      font-size: 14px;
    }
  }
  .top-section-header-block-title-main {
    color: #274874;
    font-weight: 700;
    font-size: 48px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .top-section-header-block-title-main {
      font-size: 32px;
    }
  }
  .top-section-header-block-title-lead {
    margin-top: 16px;
  }
  @media (max-width: 768px) {
    .top-section-header-block-title-lead {
      margin-top: 12px;
      font-size: 14px;
    }
  }
  .top-section-header-block-img {
    max-width: 100%;
    width: 534px;
  }
  .top-section-header-block-img img {
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .top-section-header-block-img {
      width: 100%;
    }
  }
  .top-section-header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .top-section-header-bottom {
      gap: 32px;
      justify-content: space-between;
    }
  }
  .top-section-header-bottom-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .top-section-header-bottom-title {
      gap: 12px;
    }
  }
  .top-section-header-bottom-title-en {
    position: relative;
    padding-left: 20px;
    color: #7e7a50;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .top-section-header-bottom-title-en {
      letter-spacing: 0.06em;
      font-size: 12px;
    }
  }
  .top-section-header-bottom-title-en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #7e7a50;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .top-section-header-bottom-title-main {
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .top-section-header-bottom-title-main {
      font-size: 24px;
      line-height: 1.2;
    }
  }
  .top-section-header-bottom-link {
    position: relative;
    padding-right: 64px;
    padding-bottom: 4px;
    color: #274874;
    text-decoration: underline;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #274874;
  }
  @media (max-width: 768px) {
    .top-section-header-bottom-link {
      margin-top: 20px;
      padding-right: 36px;
      font-size: 14px;
      line-height: 1.4;
    }
  }
  .top-section-header-bottom-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 48px;
    height: 48px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .top-section-header-bottom-link::after {
      width: 24px;
      height: 24px;
    }
  }
  .topSupport {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .topSupport {
      padding: 64px 0 80px;
    }
  }
  .topSupport-contents-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list {
      gap: 12px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .topSupport-contents-list-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 24px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list-item {
      flex-direction: row;
      justify-content: flex-start;
      padding: 20px;
    }
  }
  .topSupport-contents-list-item:nth-child(4n)::after {
    display: none;
  }
  .topSupport-contents-list-item-img {
    width: 64px;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list-item-img {
      position: relative;
      width: 40px;
      height: 40px;
    }
  }
  .topSupport-contents-list-item:last-child .topSupport-contents-list-item-img::after {
    content: none;
  }
  .topSupport-contents-list-item-text-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list-item-text-wrap {
      align-items: flex-start;
    }
  }
  .topSupport-contents-list-item-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list-item-title {
      margin: 0;
      font-size: 16px;
    }
  }
  .topSupport-contents-list-item-text {
    text-align: center;
  }
  @media (max-width: 768px) {
    .topSupport-contents-list-item-text {
      text-align: left;
      font-size: 14px;
    }
  }
  .topSupport-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 96px;
    padding: 64px;
    border-radius: 4px;
    background-image: url("../images/top/banner-bg01.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .topSupport-banner {
      align-items: stretch;
      flex-direction: column;
      gap: 24px;
      margin-top: 64px;
      padding: 24px;
      background-image: url("../images/top/banner-bg01_sp.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
  }
  .topSupport-banner-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    min-width: 0;
    max-width: 100%;
    width: 684px;
  }
  @media (max-width: 768px) {
    .topSupport-banner-inner {
      gap: 20px;
      width: 100%;
    }
  }
  .topSupport-banner-title {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topSupport-banner-title {
      font-size: 24px;
    }
  }
  .topSupport-banner-lead {
    color: #fff;
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .topSupport-banner-lead {
      font-size: 16px;
    }
  }
  .topSupport-banner-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    max-width: 100%;
    width: 300px;
    height: 80px;
    border-radius: 4px;
    background-color: #fff;
    color: #274874;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topSupport-banner-link {
      width: 100%;
      height: 60px;
      font-size: 14px;
    }
  }
  .topSupport-banner-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow05.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
}
@layer pages {
  .topBuysell {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .topBuysell {
      padding: 64px 0 80px;
    }
  }
  .topBuysell-block {
    position: relative;
    display: grid;
    align-items: flex-start;
    gap: 97px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 96px;
  }
  @media (max-width: 768px) {
    .topBuysell-block {
      gap: 32px;
      grid-template-columns: 1fr;
      margin-bottom: 64px;
    }
  }
  @media (width >= 769px) {
    .topBuysell-block::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background-color: #d9d9d9;
      transform: translateX(-50%);
    }
  }
  .topBuysell-block-contents-list {
    display: flex;
    gap: 16px;
    width: 100%;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list {
      flex-direction: column;
    }
  }
  .topBuysell-block-contents-list-item:first-child {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }
  .topBuysell-block-contents-list-item-en {
    width: 288px;
    color: #7e7a50;
    letter-spacing: 0.01em;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-en {
      width: 100%;
      font-size: 14px;
    }
  }
  .topBuysell-block-contents-list-item-title {
    padding: 16px 0 24px;
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-title {
      padding: 8px 0 12px;
      font-size: 24px;
    }
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-text {
      font-size: 14px;
    }
  }
  .topBuysell-block-contents-list-item-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
    padding-right: 64px;
    padding-bottom: 13px;
    width: -moz-fit-content;
    width: fit-content;
    color: #274874;
    text-decoration: underline;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #274874;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-link {
      margin: 28px 0 0 auto;
      padding-right: 30px;
      font-size: 14px;
    }
  }
  .topBuysell-block-contents-list-item-link::after {
    content: "";
    position: absolute;
    top: -59%;
    right: 0;
    width: 48px;
    height: 48px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-link::after {
      top: -10%;
      width: 20px;
      height: 20px;
    }
  }
  .topBuysell-block-contents-list-item-img {
    width: 260px;
  }
  .topBuysell-block-contents-list-item-img img {
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .topBuysell-block-contents-list-item-img {
      margin-bottom: 12px;
      width: 100%;
    }
  }
  .topBuysell-contents-list-wrap {
    display: flex;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-wrap {
      flex-direction: column;
    }
  }
  .topBuysell-contents-list-flex {
    width: 50%;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-flex {
      width: 100%;
    }
  }
  .topBuysell-contents-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    width: 100%;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list {
      gap: 12px;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 32px;
    }
  }
  .topBuysell-contents-list-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 24px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-item {
      gap: 8px;
      padding: 20px 16px;
    }
  }
  .topBuysell-contents-list-item-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #fff;
    color: #7e7a50;
    font-weight: 700;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-item-tag {
      top: 8px;
      left: 8px;
      font-size: 12px;
    }
  }
  .topBuysell-contents-list-item-img {
    width: 64px;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-item-img {
      width: 40px;
    }
  }
  .topBuysell-contents-list-item-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-list-item-title {
      font-size: 14px;
      line-height: 1.4;
    }
  }
  .topBuysell-contents-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-link {
      margin-top: 0;
    }
  }
  .topBuysell-contents-link a {
    position: relative;
    padding-right: 64px;
    padding-bottom: 4px;
    color: #274874;
    text-align: right;
    text-decoration: underline;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #274874;
  }
  @media (max-width: 768px) {
    .topBuysell-contents-link a {
      margin: 28px 0 0 auto;
      padding-right: 30px;
      font-size: 14px;
    }
  }
  .topBuysell-contents-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 48px;
    height: 48px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topBuysell-contents-link a::after {
      width: 20px;
      height: 20px;
    }
  }
  .topBuysell-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 96px;
    padding: 64px;
    border-radius: 4px;
    background-image: url("../images/top/banner-bg02.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .topBuysell-banner {
      align-items: stretch;
      flex-direction: column;
      gap: 24px;
      margin-top: 64px;
      padding: 24px;
      background-image: url("../images/top/banner-bg02_sp.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
  }
  .topBuysell-banner-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    min-width: 0;
    max-width: 100%;
    width: 684px;
  }
  @media (max-width: 768px) {
    .topBuysell-banner-inner {
      gap: 20px;
      width: 100%;
    }
  }
  .topBuysell-banner-title {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topBuysell-banner-title {
      font-size: 24px;
    }
  }
  .topBuysell-banner-lead {
    color: #fff;
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .topBuysell-banner-lead {
      font-size: 16px;
    }
  }
  .topBuysell-banner-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    max-width: 100%;
    width: 300px;
    height: 80px;
    border-radius: 4px;
    background-color: #fff;
    color: #7e7a50;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topBuysell-banner-link {
      width: 100%;
      height: 60px;
      font-size: 14px;
    }
  }
  .topBuysell-banner-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow04.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
}
@layer pages {
  .topInvestment {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .topInvestment {
      padding: 64px 0 80px;
    }
  }
  .topInvestment-block {
    position: relative;
    display: grid;
    align-items: flex-start;
    gap: 97px;
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 768px) {
    .topInvestment-block {
      gap: 48px;
      grid-template-columns: 1fr;
    }
  }
  @media (width >= 769px) {
    .topInvestment-block::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background-color: #d9d9d9;
      transform: translateX(-50%);
    }
  }
  .topInvestment-block-contents-list {
    display: flex;
    align-items: stretch;
    gap: 12px;
    justify-content: space-between;
  }
  .topInvestment-block-contents-list-item:first-child {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }
  .topInvestment-block-contents-list-item-text {
    margin: 16px 0 20px;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-text {
      margin-bottom: 16px;
      font-size: 14px;
    }
  }
  .topInvestment-block-contents-list-item-en {
    color: #7e7a50;
    letter-spacing: 0.01em;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-en {
      font-size: 14px;
    }
  }
  .topInvestment-block-contents-list-item-title {
    padding: 16px 0 24px;
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-title {
      padding: 8px 0 12px;
      font-size: 24px;
    }
  }
  .topInvestment-block-contents-list-item-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 0 auto;
    margin-top: auto;
    padding-right: 64px;
    padding-bottom: 13px;
    width: -moz-fit-content;
    width: fit-content;
    color: #274874;
    text-decoration: underline;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #274874;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-link {
      padding-right: 30px;
      font-size: 14px;
    }
  }
  .topInvestment-block-contents-list-item-link::after {
    content: "";
    position: absolute;
    top: -59%;
    right: 0;
    width: 48px;
    height: 48px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-link::after {
      top: -10%;
      width: 20px;
      height: 20px;
    }
  }
  .topInvestment-block-contents-list-item-img {
    max-width: 100%;
    width: 160px;
  }
  @media (max-width: 768px) {
    .topInvestment-block-contents-list-item-img {
      width: 110px;
    }
  }
  .topInvestment-block-contents-list-item-img img {
    border-radius: 4px;
  }
}
@layer pages {
  .topReason {
    width: 100%;
    height: 100%;
    background-image: url("../images/top/reason-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .topReason {
      padding: 64px 0 80px;
    }
  }
  .topReason-contents {
    padding: 104px 82px 120px;
    background-color: #274874;
  }
  @media (max-width: 768px) {
    .topReason-contents {
      padding: 48px 20px;
    }
  }
  .topReason-contents-title {
    position: relative;
    margin-bottom: 48px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topReason-contents-title {
      margin-bottom: 32px;
      font-size: 28px;
    }
  }
  .topReason-contents-title::before {
    content: "Reason";
    position: absolute;
    top: -87px;
    left: 50%;
    width: 24px;
    width: auto;
    height: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 160px;
    font-family: Barlow, sans-serif;
    line-height: 1;
    opacity: 0.05;
    transform: translateX(-50%);
  }
  @media (max-width: 768px) {
    .topReason-contents-title::before {
      top: -47px;
      font-size: 90px;
    }
  }
  .topReason-contents-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 768px) {
    .topReason-contents-list {
      gap: 12px;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .topReason-contents-list-item {
    padding: 24px 24px 48px;
    border-radius: 4px;
    background-color: #f6f7f8;
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item {
      padding: 20px;
    }
  }
  .topReason-contents-list-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .topReason-contents-list-item-head-top {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #7e7a50;
    letter-spacing: 0.01em;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item-head-top {
      font-size: 14px;
    }
  }
  .topReason-contents-list-item-head-top-num {
    letter-spacing: 1.92px;
    font-size: 32px;
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item-head-top-num {
      font-size: 24px;
    }
  }
  .topReason-contents-list-item-head-img {
    width: 64px;
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item-head-img {
      width: 48px;
    }
  }
  .topReason-contents-list-item-title {
    margin-bottom: 16px;
    color: #274874;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item-title {
      font-size: 20px;
    }
  }
  @media (max-width: 768px) {
    .topReason-contents-list-item-text {
      font-size: 14px;
    }
  }
}
@layer pages {
  .topNews {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .topNews {
      padding: 64px 0 80px;
    }
  }
  .topNews-contents {
    display: flex;
    gap: 120px;
    justify-content: flex-start;
  }
  @media (max-width: 768px) {
    .topNews-contents {
      align-items: stretch;
      flex-direction: column;
      gap: 40px;
    }
  }
  .topNews-contents-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 56px;
  }
  @media (max-width: 768px) {
    .topNews-contents-head {
      align-items: flex-end;
      flex-direction: row;
      gap: 16px;
    }
  }
  .topNews-contents-head-title {
    color: #274874;
    font-weight: 700;
    font-size: 48px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topNews-contents-head-title {
      font-size: 32px;
    }
  }
  .topNews-contents-head-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 64px;
    padding-bottom: 13px;
    width: -moz-fit-content;
    width: fit-content;
    color: #274874;
    text-decoration: underline;
    line-height: 1;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #274874;
  }
  @media (max-width: 768px) {
    .topNews-contents-head-link {
      margin: 0 0 0 auto;
      padding-right: 30px;
      font-size: 16px;
    }
  }
  .topNews-contents-head-link::after {
    content: "";
    position: absolute;
    top: -59%;
    right: 0;
    width: 48px;
    height: 48px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .topNews-contents-head-link::after {
      top: -10%;
      width: 24px;
      height: 24px;
    }
  }
  .topNews-contents-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    max-width: 100%;
    width: 866px;
  }
  @media (max-width: 768px) {
    .topNews-contents-list {
      width: 100%;
    }
  }
  .topNews-contents-list-item {
    position: relative;
    padding: 0 0 24px 12px;
    border-bottom: 1px solid #d8d8d8;
  }
  @media (max-width: 768px) {
    .topNews-contents-list-item {
      padding-left: 0;
    }
  }
  .topNews-contents-list-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow05.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .topNews-contents-list-item-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    color: #a0a0a0;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topNews-contents-list-item-date {
      gap: 12px;
      font-size: 14px;
    }
  }
  .topNews-contents-list-item-category {
    padding: 4px 8px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .topNews-contents-list-item-category {
      font-size: 12px;
    }
  }
}
@layer pages {
  .top-slide-banner {
    padding: 0 0 64px;
  }
  .topSlideBanner-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (width >= 769px) {
    .topSlideBanner-wrap {
      margin: 0 auto;
    }
  }
  @media (width >= 769px) {
    .topSlideBanner-list {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .topSlideBanner-list {
      min-width: 0;
      width: 100%;
    }
  }
  .topSlideBanner-list-item {
    flex: 0 0 auto;
    box-sizing: border-box;
  }
  @media (width >= 769px) {
    .topSlideBanner-list-item {
      width: 286px !important;
    }
  }
  @media (max-width: 768px) {
    .topSlideBanner-list-item {
      width: 286px !important;
    }
  }
  .topSlideBanner-list-item a {
    display: block;
    box-sizing: border-box;
    padding: 0 8px;
  }
  .topSlideBanner-list-item img {
    display: block;
    width: 100%;
    height: auto;
  }
  .topSlideBanner-wrap .slick-slide {
    height: auto;
  }
  @media (width >= 769px) {
    .topSlideBanner-wrap .slick-list {
      overflow: hidden;
      margin: 0 auto;
      width: 858px;
    }
  }
  .topSlideBanner-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 80px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.2s ease;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topSlideBanner-nav {
      display: none;
    }
  }
  .topSlideBanner-nav:not(:disabled) {
    cursor: pointer;
  }
  .topSlideBanner-nav:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .topSlideBanner-nav--prev {
    left: 0;
    background-image: url("../images/top/prev.jpg");
  }
  .topSlideBanner-nav--next {
    right: 0;
    background-image: url("../images/top/next.jpg");
  }
}
@layer pages {
  .topLogin {
    padding: 58px 0;
    background-color: #636363;
  }
  @media (max-width: 768px) {
    .topLogin {
      margin-bottom: 120px;
      padding: 24px 0;
    }
  }
  .topLogin-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 240px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .topLogin-list {
      flex-direction: column;
      gap: 32px;
    }
  }
  @media (width >= 769px) {
    .topLogin-list::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 1px;
      height: 100%;
      background-color: #fff;
      transform: translateY(-50%) translateX(-50%);
    }
  }
  .topLogin-list-item {
    position: relative;
    padding-right: 36px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .topLogin-list-item {
      padding-right: 30px;
      font-size: 16px;
    }
  }
  .topLogin-list-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/login.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .topLogin-list-item::after {
      width: 20px;
      height: 20px;
    }
  }
  .topLogin-list-item:first-child::after {
    content: none;
  }
}
@layer pages {
  .buy-section-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .buy-section-title {
      gap: 12px;
    }
  }
  .buy-section-title-en {
    position: relative;
    padding-left: 20px;
    color: #7e7a50;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buy-section-title-en {
      letter-spacing: 0.06em;
      font-size: 14px;
    }
  }
  .buy-section-title-en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #7e7a50;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .buy-section-title-main {
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buy-section-title-main {
      font-size: 24px;
      line-height: 1.4;
    }
  }
  .buy-section-title-lead {
    font-size: 18px;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .buy-section-title-lead {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  .buyMv {
    padding: 17px 0 0;
  }
  @media (max-width: 768px) {
    .buyMv {
      padding: 12px 0 0;
    }
  }
}
@layer pages {
  .buySearchNav {
    padding: 64px 0 80px;
    background-color: #274874;
  }
  @media (max-width: 768px) {
    .buySearchNav {
      padding: 48px 0 64px;
    }
  }
  .buySearchNav-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buySearchNav-title {
      font-size: 24px;
    }
  }
  .buySearchNav-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -36px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/glass.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .buySearchNav-contents-list {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list {
      flex-direction: column;
      gap: 12px;
      margin-top: 32px;
    }
  }
  .buySearchNav-contents-list-item {
    position: relative;
    width: calc((100% - 24px) / 2);
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item {
      width: 100%;
    }
  }
  .buySearchNav-contents-list-item::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item::after {
      top: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
    }
  }
  .buySearchNav-contents-list-item a {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item a {
      gap: 12px;
    }
  }
  .buySearchNav-contents-list-item-icon {
    margin: 0 auto;
    padding-top: 20px;
    width: 64px;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item-icon {
      position: absolute;
      top: 50%;
      left: 20px;
      padding: 0;
      width: 40px;
      transform: translateY(-50%);
    }
  }
  .buySearchNav-contents-list-item-text {
    color: #5f5f5f;
    text-align: center;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item-text {
      padding: 24px 0 0 26px;
      font-size: 14px;
    }
  }
  .buySearchNav-contents-list-item-ttl {
    padding-bottom: 32px;
    color: #274874;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item-ttl {
      padding: 0 0 24px 24px;
      font-size: 20px;
    }
  }
  .buySearchNav-contents-list-item-ttl-small {
    padding-left: 8px;
    color: #1a1a1a;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .buySearchNav-contents-list-item-ttl-small {
      padding-left: 4px;
      font-size: 16px;
    }
  }
}
@layer pages {
  .buyProperty {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .buyProperty {
      padding: 64px 0 80px;
    }
  }
  .buyProperty-contents-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list {
      flex-direction: column;
      gap: 32px;
    }
  }
  .buyProperty-contents-list-item {
    display: flex;
    flex-direction: column;
  }
  .buyProperty-contents-list-item:first-child {
    flex-shrink: 0;
    width: 378px;
  }
  .buyProperty-contents-list-item.search-area {
    flex-direction: row;
    gap: 32px;
    padding: 32px 48px;
    width: 718px;
    border-radius: 4px;
    background-color: #f6f5ec;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item.search-area {
      position: relative;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 16px;
      padding: 24px 15px 32px;
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture {
      display: contents;
    }
  }
  .buyProperty-contents-list-item-prefecture-ttl {
    margin-bottom: 24px;
    color: #274874;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture-ttl {
      order: 1;
      margin-bottom: 0;
      padding-left: 5px;
      width: 140px;
      font-size: 16px;
    }
  }
  .buyProperty-contents-list-item-prefecture-place {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture-place {
      order: 3;
      margin-top: 4px;
      width: 100%;
    }
  }
  .buyProperty-contents-list-item-prefecture-place-link {
    position: relative;
    width: 110px;
    height: 32px;
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture-place-link {
      width: calc((100% - 8px) / 2);
      height: 28px;
    }
  }
  .buyProperty-contents-list-item-prefecture-place-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 16px;
    height: 16px;
    background-image: url("../images/common/arrow04.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .buyProperty-contents-list-item-prefecture-place-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture-place-link a {
      padding: 0 8px 0 0;
      font-size: 14px;
    }
  }
  .buyProperty-contents-list-item-prefecture-place-link:hover, .buyProperty-contents-list-item-prefecture-place-link:focus-visible {
    background-color: #7e7a50;
    color: #fff;
  }
  .buyProperty-contents-list-item-prefecture-place-link:hover::after, .buyProperty-contents-list-item-prefecture-place-link:focus-visible::after {
    background-image: url("../images/common/arrow_white.png");
  }
  @media (max-width: 768px) {
    .buyProperty-contents-list-item-prefecture-map {
      flex: 0 0 auto;
      order: 2;
      margin: 0;
      padding-right: 5px;
    }
  }
  .buyProperty-map {
    position: relative;
    width: 230px;
  }
  @media (max-width: 768px) {
    .buyProperty-map {
      width: 140px;
    }
  }
  .buyProperty-map-base {
    display: block;
    width: 100%;
    height: auto;
  }
  .buyProperty-map-overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 150ms ease;
    pointer-events: none;
    inset: 0;
  }
}
@layer pages {
  .buyUsed {
    padding: 96px 0 137px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .buyUsed {
      padding: 64px 0 80px;
    }
  }
  .buyUsed-contents-list {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-list {
      flex-direction: column;
      gap: 0;
    }
  }
  .buyUsed-contents-list-item:last-child {
    max-width: 480px;
  }
  .buyUsed-contents-list-item:last-child img {
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-list-item-img {
      margin-top: 20px;
    }
  }
  .buyUsed-contents-sumstock {
    margin: 48px auto 0;
    max-width: 1440px;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-sumstock {
      margin: 48px 20px 0;
    }
  }
  .buyUsed-contents-sumstock-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: flex-start;
    margin: 0 0 0 auto;
    padding: 48px 64px;
    max-width: 1320px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-sumstock-inner {
      flex-direction: column;
      gap: 24px;
      margin: 0 auto;
      padding: 32px 20px;
    }
  }
  @media (width >= 769px) {
    .buyUsed-contents-sumstock-inner::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 120px;
      width: 64px;
      height: 64px;
      background-image: url("../images/common/arrow01.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }
  .buyUsed-contents-sumstock-img {
    width: 292px;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-sumstock-img {
      width: 207px;
    }
  }
  .buyUsed-contents-sumstock-detail {
    max-width: 668px;
  }
  .buyUsed-contents-sumstock-detail-title {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d8d8d8;
    color: #274874;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-sumstock-detail-title {
      position: relative;
      font-size: 20px;
      line-height: 1.4;
    }
    .buyUsed-contents-sumstock-detail-title::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 32px;
      height: 32px;
      background-image: url("../images/common/arrow01.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }
  .buyUsed-contents-sumstock-detail-text {
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .buyUsed-contents-sumstock-detail-text {
      font-size: 14px;
      line-height: 1.4;
    }
  }
}
@layer pages {
  .buySupport {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .buySupport {
      padding: 64px 0 80px;
    }
  }
  @media (max-width: 768px) {
    .buySupport-contents {
      margin-top: 32px;
    }
  }
  .buySupport-contents-list {
    display: grid;
    gap: 24px;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .buySupport-contents-list {
      gap: 12px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .buySupport-contents-list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item {
      gap: 12px;
      padding: 20px;
    }
  }
  .buySupport-contents-list-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .buySupport-contents-list-item-head-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item-head-title {
      font-size: 20px;
    }
  }
  .buySupport-contents-list-item-head-icon {
    width: 64px;
    height: 64px;
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item-head-icon {
      width: 48px;
      height: 48px;
    }
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item-lead {
      font-size: 14px;
    }
  }
  .buySupport-contents-list-item-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #274874;
    font-size: 14px;
  }
  .buySupport-contents-list-item-btn a {
    padding-right: 36px;
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item-btn a {
      padding-right: 32px;
    }
  }
  .buySupport-contents-list-item-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .buySupport-contents-list-item-btn a::after {
      width: 20px;
      height: 20px;
    }
  }
}
@layer pages {
  .buyOnline {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .buyOnline {
      padding: 64px 0 80px;
    }
  }
  .buyOnline-contents-list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .buyOnline-contents-list {
      flex-direction: column;
      gap: 24px;
    }
  }
  .buyOnline-contents-list-item:last-child {
    max-width: 480px;
  }
  .buyOnline-contents-list-item:last-child img {
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .buyOnline-contents-list-item-img {
      margin-top: 20px;
    }
  }
}
@layer pages {
  .buyPurchaseMenu {
    padding: 96px 0 120px;
    background-color: #5f5f5f;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu {
      padding: 64px 0 80px;
    }
  }
  .buyPurchaseMenu-banner a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .buyPurchaseMenu-contents {
    margin-top: 64px;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu-contents {
      margin-top: 48px;
    }
  }
  .buyPurchaseMenu-contents-title {
    position: relative;
    padding-left: 20px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu-contents-title {
      font-size: 20px;
    }
  }
  .buyPurchaseMenu-contents-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .buyPurchaseMenu-contents-list {
    display: grid;
    gap: 48px 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu-contents-list {
      gap: 32px 15px;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 24px;
    }
  }
  .buyPurchaseMenu-contents-list-item-title {
    padding: 12px 0 4px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu-contents-list-item-title {
      padding: 8px 0 4px;
      font-size: 16px;
    }
  }
  .buyPurchaseMenu-contents-list-item-text {
    color: #fff;
  }
  @media (max-width: 768px) {
    .buyPurchaseMenu-contents-list-item-text {
      font-size: 14px;
      line-height: 1.4;
    }
  }
}
@layer pages {
  .sale-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .sale-section-head-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media (max-width: 768px) {
    .sale-section-head-title {
      gap: 12px;
    }
  }
  .sale-section-head-title-en {
    position: relative;
    padding-left: 20px;
    color: #7e7a50;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 20px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .sale-section-head-title-en {
      font-size: 14px;
    }
  }
  .sale-section-head-title-en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #7e7a50;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .sale-section-head-title-main {
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .sale-section-head-title-main {
      font-size: 24px;
      line-height: 1.4;
    }
  }
  .sale-section-head-title-lead {
    font-size: 18px;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .sale-section-head-title-lead {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  .saleMv {
    padding: 17px 0 0;
  }
  @media (max-width: 768px) {
    .saleMv {
      padding: 12px 0 0;
    }
  }
}
@layer pages {
  .saleSearchNav {
    padding: 64px 0 80px;
    background-color: #274874;
  }
  @media (max-width: 768px) {
    .saleSearchNav {
      padding: 48px 0 64px;
    }
  }
  .saleSearchNav-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleSearchNav-title {
      font-size: 24px;
    }
  }
  .saleSearchNav-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -36px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/glass.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .saleSearchNav-contents-list {
    display: flex;
    align-items: stretch;
    gap: 24px;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 24px;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list {
      flex-direction: column;
      gap: 12px;
      margin: 32px auto 16px;
    }
  }
  .saleSearchNav-contents-list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% - 24px) / 2);
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item {
      width: 100%;
    }
  }
  .saleSearchNav-contents-list-item::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item::after {
      top: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
    }
  }
  .saleSearchNav-contents-list-item a {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    width: 100%;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item a {
      gap: 12px;
    }
  }
  .saleSearchNav-contents-list-item-icon {
    margin: 0 auto;
    padding-top: 20px;
    width: 64px;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item-icon {
      position: absolute;
      top: 50%;
      left: 20px;
      padding: 0;
      width: 40px;
      transform: translateY(-50%);
    }
  }
  .saleSearchNav-contents-list-item-text {
    color: #5f5f5f;
    text-align: center;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item-text {
      padding: 24px 0 0 26px;
      font-size: 14px;
    }
  }
  .saleSearchNav-contents-list-item-ttl {
    padding-bottom: 32px;
    color: #274874;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item-ttl {
      padding: 0 0 24px 24px;
      font-size: 20px;
    }
  }
  .saleSearchNav-contents-list-item-ttl-small {
    padding-left: 8px;
    color: #1a1a1a;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .saleSearchNav-contents-list-item-ttl-small {
      padding-left: 4px;
      font-size: 16px;
    }
  }
  .saleSearchNav-contents-list-item-ttl-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1;
  }
  .note {
    color: #fff;
    text-align: center;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .note {
      text-align: left;
      font-size: 14px;
      line-height: 1.4;
    }
  }
}
@layer pages {
  .saleMethod {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .saleMethod {
      padding: 64px 0 80px;
    }
  }
  .saleMethod-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  .saleMethod-contents-list {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: space-between;
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list {
      flex-direction: column;
      margin-top: 32px;
    }
  }
  .saleMethod-contents-list-item {
    position: relative;
    display: flex;
    gap: 24px;
    width: calc((100% - 48px) / 2);
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list-item {
      gap: 20px;
      width: 100%;
    }
  }
  .saleMethod-contents-list-item-img {
    width: 162px;
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list-item-img {
      width: 120px;
    }
  }
  .saleMethod-contents-list-item-img img {
    border-radius: 4px;
  }
  .saleMethod-contents-list-item-text {
    width: 390px;
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list-item-text {
      width: 195px;
    }
  }
  .saleMethod-contents-list-item-text-title {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list-item-text-title {
      font-size: 20px;
    }
  }
  .saleMethod-contents-list-item-text-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  .saleMethod-contents-list-item-text-lead {
    margin-top: 16px;
  }
  @media (max-width: 768px) {
    .saleMethod-contents-list-item-text-lead {
      margin-top: 12px;
      font-size: 14px;
    }
  }
}
@layer pages {
  .saleFlow {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .saleFlow {
      padding: 64px 0 80px;
    }
  }
  .saleFlow-contents-list {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .saleFlow-contents-list-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list-item {
      flex-direction: row;
      justify-content: flex-start;
    }
  }
  .saleFlow-contents-list-item:nth-child(4n)::after {
    display: none;
  }
  @media (width >= 769px) {
    .saleFlow-contents-list-item::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -26%;
      width: 108px;
      height: 10px;
      background-image: url("../images/common/next-arrow.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
    }
  }
  .saleFlow-contents-list-item-img {
    width: 160px;
    height: 160px;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list-item-img {
      position: relative;
      width: 96px;
      height: 96px;
    }
    .saleFlow-contents-list-item-img::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -35%;
      left: 50%;
      width: 10px;
      height: 44px;
      background-image: url("../images/common/next-arrow_sp.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateX(-50%);
    }
  }
  .saleFlow-contents-list-item:last-child .saleFlow-contents-list-item-img::after {
    content: none;
  }
  .saleFlow-contents-list-item-text-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list-item-text-wrap {
      align-items: flex-start;
    }
  }
  .saleFlow-contents-list-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list-item-title {
      margin: 0;
      font-size: 18px;
    }
  }
  .saleFlow-contents-list-item-text {
    text-align: center;
  }
  @media (max-width: 768px) {
    .saleFlow-contents-list-item-text {
      text-align: left;
      font-size: 14px;
    }
  }
}
@layer pages {
  .saleValuation {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .saleValuation {
      padding: 64px 0 80px;
    }
  }
  .saleValuation-contents-list {
    display: grid;
    align-items: flex-end;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list {
      flex-direction: column;
      gap: 8px;
      grid-template-columns: 1fr;
      margin-top: 32px;
    }
  }
  .saleValuation-contents-list-item {
    overflow: hidden;
    border-radius: 4px;
    background-color: #fff;
  }
  .saleValuation-contents-list-item:first-child {
    width: 480px;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item:first-child {
      width: 100%;
    }
  }
  .saleValuation-contents-list-item:last-child {
    width: 640px;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item:last-child {
      width: 100%;
    }
  }
  .saleValuation-contents-list-item-img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .saleValuation-contents-list-item-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 60px;
    border-bottom: 1px solid #d8d8d8;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 12px;
      padding: 24px 0 54px;
    }
  }
  .saleValuation-contents-list-item-head-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-head-title {
      font-size: 20px;
    }
  }
  .saleValuation-contents-list-item-head-link {
    position: relative;
    padding-right: 16px;
  }
  @media (width >= 769px) {
    .saleValuation-contents-list-item-head-link {
      width: 330px;
      height: 68px;
      border-radius: 4px;
      background-color: #274874;
    }
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-head-link {
      padding-right: 32px;
      font-size: 14px;
    }
  }
  @media (width >= 769px) {
    .saleValuation-contents-list-item-head-link::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 16px;
      width: 20px;
      height: 20px;
      background-image: url("../images/common/arrow_white.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-head-link::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 20px;
      height: 20px;
      background-image: url("../images/common/arrow01.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }
  .saleValuation-contents-list-item-head-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  @media (width >= 769px) {
    .saleValuation-contents-list-item-head-link a {
      color: #fff;
      font-weight: 700;
      line-height: 1;
    }
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-head-link a {
      padding-right: 0;
      color: #274874;
      font-size: 14px;
    }
  }
  .saleValuation-contents-list-item-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .saleValuation-contents-list-item-text {
      bottom: 24px;
    }
  }
}
@layer pages {
  .saleSituation {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .saleSituation {
      padding: 64px 0 80px;
    }
  }
  .saleSituation-contents-list {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list {
      gap: 40px;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .saleSituation-contents-list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
    border-bottom: 1px solid #d8d8d8;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list-item {
      gap: 12px;
      padding-bottom: 40px;
    }
  }
  .saleSituation-contents-list-item-img img {
    border-radius: 4px;
  }
  .saleSituation-contents-list-item-ttl {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list-item-ttl {
      padding-top: 4px;
      font-size: 20px;
    }
  }
  .saleSituation-contents-list-item-ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list-item-lead {
      font-size: 14px;
    }
  }
  .saleSituation-contents-list-item-btn {
    position: relative;
    margin-top: 8px;
    padding-right: 36px;
    color: #274874;
    text-align: right;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list-item-btn {
      padding-right: 32px;
      font-size: 14px;
    }
  }
  .saleSituation-contents-list-item-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleSituation-contents-list-item-btn::after {
      width: 20px;
      height: 20px;
    }
  }
  .saleSituation-contents-link-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list {
      gap: 24px;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .saleSituation-contents-link-list-item {
    display: flex;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item {
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 12px;
    }
  }
  .saleSituation-contents-link-list-item-img {
    width: 214px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-img {
      flex: 0 0 142px;
      width: 142px;
    }
  }
  .saleSituation-contents-link-list-item-img img {
    border-radius: 4px;
  }
  .saleSituation-contents-link-list-item-text {
    width: 350px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text {
      display: contents;
      width: 100%;
    }
  }
  .saleSituation-contents-link-list-item-text-title {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text-title {
      flex: 1 1 auto;
      min-width: 0;
    }
  }
  .saleSituation-contents-link-list-item-text-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  .saleSituation-contents-link-list-item-text-lead {
    padding: 12px 0 20px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text-lead {
      padding: 0;
      width: 100%;
    }
  }
  .saleSituation-contents-link-list-item-text-btn {
    position: relative;
    display: block;
    padding-right: 36px;
    color: #274874;
    text-align: right;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text-btn {
      padding: 8px 32px 0 0;
      width: 100%;
      font-size: 14px;
    }
  }
  .saleSituation-contents-link-list-item-text-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text-btn::after {
      width: 20px;
      height: 20px;
    }
  }
  .saleSituation-contents-link-list-item-text-btn + .saleSituation-contents-link-list-item-text-btn {
    padding-top: 12px;
  }
  @media (max-width: 768px) {
    .saleSituation-contents-link-list-item-text-btn + .saleSituation-contents-link-list-item-text-btn {
      padding-top: 0;
    }
  }
}
@layer pages {
  .salePurpose {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .salePurpose {
      padding: 64px 0 80px;
    }
  }
  .salePurpose-contents {
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .salePurpose-contents {
      margin-top: 32px;
    }
  }
  .salePurpose-contents-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list {
      gap: 24px;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .salePurpose-contents-list-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    padding: 32px 24px;
    border-radius: 4px;
    background-color: #f5f5f5;
  }
  @media (width >= 769px) {
    .salePurpose-contents-list-item:nth-child(5) {
      height: 266px;
    }
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list-item {
      align-items: center;
      flex-flow: row wrap;
      gap: 8px 20px;
      justify-content: flex-start;
      padding: 24px 20px;
    }
  }
  .salePurpose-contents-list-item:last-child {
    height: -moz-max-content;
    height: max-content;
  }
  .salePurpose-contents-list-item-img {
    width: 48px;
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list-item-img {
      flex: 0 0 48px;
    }
  }
  .salePurpose-contents-list-item-title {
    margin: 4px auto 12px;
    font-weight: 700;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list-item-title {
      flex: 1 1 auto;
      margin: 0;
      min-width: 0;
      max-width: 227px;
      text-align: left;
      font-size: 18px;
    }
  }
  .salePurpose-contents-list-item-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0 12px 20px;
    width: 320px;
    border-radius: 4px;
    background-color: #fff;
    color: #274874;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list-item-btn {
      display: block;
      order: 2;
      width: 100%;
      font-size: 14px;
      line-height: 1.4;
    }
    .salePurpose-contents-list-item-btn:first-of-type {
      margin-top: 12px;
    }
  }
  .salePurpose-contents-list-item-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .salePurpose-contents-list-item-btn::after {
      width: 20px;
      height: 20px;
    }
  }
}
@layer pages {
  .saleLeasehold {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .saleLeasehold {
      padding: 64px 0 80px;
    }
  }
  .saleLeasehold-contents-link-list {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleLeasehold-contents-link-list {
      gap: 40px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .saleLeasehold-contents-link-list-item {
    display: flex;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .saleLeasehold-contents-link-list-item {
      flex-direction: column;
      gap: 16px;
      padding-bottom: 40px;
      border-bottom: 1px solid #d8d8d8;
    }
    .saleLeasehold-contents-link-list-item:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
  }
  .saleLeasehold-contents-link-list-item-img {
    width: 162px;
  }
  @media (max-width: 768px) {
    .saleLeasehold-contents-link-list-item-img {
      width: 100%;
    }
  }
  .saleLeasehold-contents-link-list-item-text {
    max-width: 390px;
  }
  .saleLeasehold-contents-link-list-item-text-title {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .saleLeasehold-contents-link-list-item-text-title {
      margin-bottom: 12px;
      font-size: 20px;
    }
  }
  .saleLeasehold-contents-link-list-item-text-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleLeasehold-contents-link-list-item-text-lead {
      font-size: 14px;
    }
  }
  .saleLeasehold-check {
    margin-top: 48px;
  }
  .saleLeasehold-check-title {
    position: relative;
    margin-bottom: 24px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleLeasehold-check-title {
      margin-bottom: 20px;
      font-size: 20px;
    }
  }
  .saleLeasehold-check-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/check.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .saleLeasehold-check-list {
    display: grid;
    gap: 12px;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
  }
  @media (max-width: 768px) {
    .saleLeasehold-check-list {
      gap: 9px;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .saleLeasehold-check-list-item {
    padding: 12px;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
  }
  @media (max-width: 768px) {
    .saleLeasehold-check-list-item {
      font-size: 14px;
      line-height: 1;
    }
  }
  .saleLeasehold-check-list-item-strong {
    padding-right: 4px;
    color: #274874;
    font-weight: 700;
    font-size: 18px;
  }
  @media (max-width: 768px) {
    .saleLeasehold-check-list-item-strong {
      display: block;
      padding: 0 0 8px;
      font-size: 16px;
    }
  }
}
@layer pages {
  .saleLCheck {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .saleLCheck {
      padding: 64px 0 80px;
    }
  }
  .saleLCheck-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleLCheck-list {
      gap: 12px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .saleLCheck-list-item {
    padding: 24px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item {
      padding: 20px;
    }
  }
  .saleLCheck-list-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-head {
      margin-bottom: 20px;
    }
  }
  .saleLCheck-list-item-head-ttl-sub {
    color: #7e7a50;
    font-weight: 700;
    font-size: 18px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-head-ttl-sub {
      font-size: 14px;
    }
  }
  .saleLCheck-list-item-head-ttl-sub-num {
    padding-left: 5px;
    font-size: 24px;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-head-ttl-sub-num {
      padding-left: 5px;
      font-size: 18px;
    }
  }
  .saleLCheck-list-item-head-ttl-title {
    margin-top: 16px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-head-ttl-title {
      margin-top: 12px;
      font-size: 20px;
    }
  }
  .saleLCheck-list-item-head-img {
    width: 64px;
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-head-img {
      width: 48px;
    }
  }
  @media (max-width: 768px) {
    .saleLCheck-list-item-lead {
      font-size: 14px;
    }
  }
}
@layer pages {
  .saleFaq {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .saleFaq {
      padding: 64px 0 80px;
    }
  }
  .saleFaq-wrap {
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .saleFaq-wrap {
      margin-top: 32px;
    }
  }
  .saleFaq-list {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  .saleFaq-list-item-question {
    position: relative;
    padding: 20px 24px;
    font-weight: 500;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .saleFaq-list-item-question {
      padding: 20px;
    }
  }
  .saleFaq-list-item-question-title {
    display: flex;
    align-items: flex-start;
    padding-right: 40px;
    font-size: 18px;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .saleFaq-list-item-question-title {
      padding-right: 36px;
      font-size: 16px;
      line-height: 1.4;
    }
  }
  .saleFaq-list-item-question-title-q {
    padding-right: 20px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleFaq-list-item-question-title-q {
      padding-right: 12px;
      font-size: 20px;
    }
  }
  .saleFaq-list-item-answer {
    display: flex;
    overflow: hidden;
    align-items: flex-start;
    max-height: 0;
    background-color: #fff;
    line-height: 1.8;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  @media (max-width: 768px) {
    .saleFaq-list-item-answer {
      font-size: 14px;
    }
  }
  .saleFaq-list-item-answer-a {
    padding-right: 20px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleFaq-list-item-answer-a {
      padding-right: 12px;
      font-size: 20px;
    }
  }
  .saleFaq-list .toggle-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleFaq-list .toggle-icon {
      width: 16px;
      height: 16px;
    }
  }
  .saleFaq-list .toggle-icon::before, .saleFaq-list .toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background-color: #7e7a50;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .saleFaq-list .toggle-icon::before, .saleFaq-list .toggle-icon::after {
      width: 16px;
      height: 2px;
    }
  }
  .saleFaq-list .toggle-icon::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .saleFaq-list.is-open .saleFaq-list-item-answer {
    padding: 24px;
    max-height: 300px;
    opacity: 1;
  }
  @media (max-width: 768px) {
    .saleFaq-list.is-open .saleFaq-list-item-answer {
      padding: 20px;
    }
  }
  .saleFaq-list.is-open .toggle-icon::after {
    opacity: 0;
  }
}
@layer pages {
  .saleContact {
    padding: 64px 0 80px;
    background-image: url("../images/sale/contact_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
  }
  @media (max-width: 768px) {
    .saleContact {
      padding: 48px 0 64px;
    }
  }
  .saleContact .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .saleContact .wrap {
      flex-direction: column;
      gap: 24px;
    }
  }
  .saleContact-head-title {
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleContact-head-title {
      font-size: 24px;
    }
  }
  .saleContact-head-lead {
    margin: 24px 0 32px;
    font-size: 18px;
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .saleContact-head-lead {
      margin: 20px 0 24px;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  .saleContact-head-note {
    font-size: 14px;
    line-height: 1.4;
  }
  .saleContact-head-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media (max-width: 768px) {
    .saleContact-head-btn {
      gap: 12px;
      width: 100%;
    }
  }
  .saleContact-head-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    width: 300px;
    height: 80px;
    border-radius: 4px;
    background-color: #7e7a50;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .saleContact-head-btn a {
      width: 100%;
      height: 60px;
      font-size: 14px;
    }
  }
  .saleContact-head-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .saleContact-head-btn a:last-child {
    background-color: #fff;
    color: #7e7a50;
  }
  .saleContact-head-btn a:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow04.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
}
@layer pages {
  .salePurchaseMenu {
    padding: 96px 0 120px;
    background-color: #5f5f5f;
  }
  @media (max-width: 768px) {
    .salePurchaseMenu {
      padding: 64px 0 80px;
    }
  }
  .salePurchaseMenu-banner {
    position: relative;
    overflow: hidden;
    background: url("../images/sale/banner_bg.png"), #f6f5ec;
    background-position: 102% 85%;
    background-size: 60%;
    background-repeat: no-repeat;
  }
  .salePurchaseMenu-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 47px;
    width: 64px;
    height: 64px;
    background-image: url("../images/common/arrow03.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .salePurchaseMenu-banner-ttl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 48px;
    color: #274874;
    font-family: "Shippori Mincho B1", serif;
  }
  .salePurchaseMenu-banner-ttl-flex {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
  }
  .salePurchaseMenu-banner-ttl-flex-top {
    padding: 9px 0;
    width: 240px;
    border: 1px solid #97a7bc;
    text-align: center;
    font-size: 18px;
    line-height: 1;
  }
  .salePurchaseMenu-banner-ttl-flex-bottom {
    padding-top: 9px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
  }
  .salePurchaseMenu-banner-ttl-num {
    color: #7e7a50;
    letter-spacing: -0.06em;
    font-weight: 700;
    font-size: 120px;
  }
  .salePurchaseMenu-banner-ttl-en {
    color: #7e7a50;
    font-weight: 700;
    font-size: 64px;
  }
  .salePurchaseMenu-banner-ttl-discount {
    color: #274874;
    font-weight: 700;
    font-size: 64px;
  }
  .salePurchaseMenu-banner-subject-contents {
    padding: 0 0 45px 48px;
  }
  .salePurchaseMenu-banner-subject-contents-ttl {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
  }
  .salePurchaseMenu-banner-subject-contents-ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/check.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .salePurchaseMenu-banner-subject-contents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 16px;
  }
  .salePurchaseMenu-banner-subject-contents-list-item {
    padding: 16px 24px;
    border-radius: 4px;
    background-color: #fff;
    color: #274874;
    text-align: center;
    font-weight: 700;
    line-height: 1;
  }
  .salePurchaseMenu-contents-title {
    position: relative;
    padding-left: 20px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .salePurchaseMenu-contents-title {
      font-size: 20px;
    }
  }
  .salePurchaseMenu-contents-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .salePurchaseMenu-contents-list {
    display: grid;
    gap: 48px 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .salePurchaseMenu-contents-list {
      gap: 32px 15px;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 24px;
    }
  }
  .salePurchaseMenu-contents-list-item-title {
    padding: 12px 0 4px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .salePurchaseMenu-contents-list-item-title {
      padding: 8px 0 4px;
      font-size: 16px;
      line-height: 1.4;
    }
  }
  .salePurchaseMenu-contents-list-item-text {
    color: #fff;
  }
  @media (max-width: 768px) {
    .salePurchaseMenu-contents-list-item-text {
      font-size: 14px;
      line-height: 1.4;
    }
  }
}
@layer pages {
  .owner-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .owner-section-head-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .owner-section-head-title {
      gap: 12px;
    }
  }
  .owner-section-head-title-en {
    position: relative;
    padding-left: 20px;
    color: #7e7a50;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: 18px;
    font-family: Barlow, sans-serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .owner-section-head-title-en {
      font-size: 14px;
    }
  }
  .owner-section-head-title-en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #7e7a50;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .owner-section-head-title-main {
    color: #274874;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .owner-section-head-title-main {
      font-size: 24px;
      line-height: 1.4;
    }
  }
  .owner-section-head-title-lead {
    font-size: 18px;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .owner-section-head-title-lead {
      margin-top: 12px;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  .ownerMv {
    padding: 17px 0 0;
  }
  @media (max-width: 768px) {
    .ownerMv {
      padding: 12px 0 0;
    }
  }
}
@layer pages {
  .ownerSearchNav {
    padding: 64px 0 80px;
    background-color: #274874;
  }
  @media (max-width: 768px) {
    .ownerSearchNav {
      padding: 48px 0 64px;
    }
  }
  .ownerSearchNav-title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-title {
      font-size: 24px;
    }
  }
  .ownerSearchNav-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -36px;
    width: 24px;
    height: 24px;
    background-image: url("../images/common/glass.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .ownerSearchNav-contents-list {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list {
      flex-direction: column;
      gap: 12px;
      margin: 32px auto 16px;
    }
  }
  .ownerSearchNav-contents-list-item {
    position: relative;
    width: calc((100% - 24px) / 2);
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item {
      width: 100%;
    }
  }
  .ownerSearchNav-contents-list-item::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-image: url("../images/common/arrow01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item::after {
      top: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
    }
  }
  .ownerSearchNav-contents-list-item a {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item a {
      gap: 12px;
    }
  }
  .ownerSearchNav-contents-list-item-icon {
    margin: 0 auto;
    padding-top: 16px;
    width: 64px;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item-icon {
      position: absolute;
      top: 50%;
      left: 20px;
      padding: 0;
      width: 40px;
      transform: translateY(-50%);
    }
  }
  .ownerSearchNav-contents-list-item-text {
    color: #5f5f5f;
    text-align: center;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item-text {
      padding: 24px 0 0 26px;
      font-size: 14px;
    }
  }
  .ownerSearchNav-contents-list-item-ttl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
    color: #274874;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item-ttl {
      flex-direction: row;
      gap: 0;
      justify-content: center;
      padding: 0 0 24px 24px;
      font-size: 20px;
    }
  }
  .ownerSearchNav-contents-list-item-ttl-small {
    color: #1a1a1a;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .ownerSearchNav-contents-list-item-ttl-small {
      padding-left: 4px;
      font-size: 16px;
    }
  }
}
@layer pages {
  .ownerConsultation {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .ownerConsultation {
      padding: 64px 0 80px;
    }
  }
  .ownerConsultation-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 24px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list {
      gap: 12px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 24px;
    }
  }
  .ownerConsultation-list-header {
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header {
      margin-top: 32px;
    }
  }
  .ownerConsultation-list-header-lead {
    margin-top: 12px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header-lead {
      font-size: 14px;
    }
  }
  .ownerConsultation-list-header-list {
    display: flex;
    gap: 12px;
    padding-top: 16px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header-list {
      flex-direction: column;
      gap: 8px;
      padding-top: 32px;
    }
  }
  .ownerConsultation-list-header-list-item-title {
    position: relative;
    padding: 16px;
    padding-left: 52px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 4px;
    background-color: #f6f6f6;
    color: #8a3838;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header-list-item-title {
      padding: 12px 23px 12px 52px;
      width: 100%;
      font-size: 20px;
      line-height: 1.4;
    }
  }
  .ownerConsultation-list-header-list-item-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    height: 24px;
    background-image: url("../images/check02.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header-list-item-title::before {
      left: 16px;
      width: 20px;
      height: 20px;
    }
  }
  .ownerConsultation-list-header-list-item-title-lead {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-header-list-item-title-lead {
      font-size: 14px;
    }
  }
  .ownerConsultation-list-item {
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item {
      padding: 20px;
    }
  }
  .ownerConsultation-list-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item-head {
      flex-direction: row-reverse;
      gap: 16px;
      justify-content: flex-end;
      margin-bottom: 0;
    }
  }
  .ownerConsultation-list-item-head-ttl {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item-head-ttl {
      font-size: 18px;
      line-height: 1.4;
    }
  }
  .ownerConsultation-list-item-head-ttl-sub {
    color: #7e7a50;
    font-weight: 700;
    font-size: 18px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item-head-ttl-sub {
      font-size: 14px;
      line-height: 1;
    }
  }
  .ownerConsultation-list-item-head-ttl-sub-num {
    padding-left: 3px;
    font-size: 24px;
  }
  .ownerConsultation-list-item-head-img {
    width: 48px;
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item-head-img {
      transform: translateY(14px);
    }
  }
  @media (max-width: 768px) {
    .ownerConsultation-list-item-lead {
      padding-left: 64px;
      font-size: 14px;
    }
  }
}
@layer pages {
  .ownerService {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .ownerService {
      padding: 64px 0 80px;
    }
  }
  .ownerService-contents-list {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .ownerService-contents-list {
      gap: 32px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .ownerService-contents-list-item {
    display: flex;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .ownerService-contents-list-item {
      gap: 20px;
    }
  }
  .ownerService-contents-list-item-img {
    width: 162px;
  }
  .ownerService-contents-list-item-img img {
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .ownerService-contents-list-item-img {
      width: 120px;
    }
  }
  .ownerService-contents-list-item-text {
    width: 390px;
  }
  @media (max-width: 768px) {
    .ownerService-contents-list-item-text {
      width: 195px;
    }
  }
  .ownerService-contents-list-item-text-title {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerService-contents-list-item-text-title {
      margin-bottom: 12px;
      font-size: 20px;
    }
  }
  .ownerService-contents-list-item-text-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .ownerService-contents-list-item-text-lead {
      font-size: 14px;
    }
  }
  .ownerService-detail {
    margin-top: 64px;
    padding: 48px;
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .ownerService-detail {
      padding: 32px 20px;
    }
  }
  .ownerService-detail-head {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
  }
  @media (max-width: 768px) {
    .ownerService-detail-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
    }
  }
  .ownerService-detail-head-title-sub {
    margin-bottom: 20px;
    color: #274874;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerService-detail-head-title-sub {
      margin-bottom: 16px;
      font-size: 16px;
    }
  }
  .ownerService-detail-head-title-title {
    letter-spacing: -0.03em;
    font-weight: 700;
    font-size: 32px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerService-detail-head-title-title {
      font-size: 24px;
    }
  }
  .ownerService-detail-head-text {
    position: relative;
    padding: 16px 32px;
    border-radius: 4px;
    background-color: #f5f5f5;
    text-align: left;
    font-weight: 700;
  }
  @media (max-width: 768px) {
    .ownerService-detail-head-text {
      padding: 13px;
      width: 100%;
      text-align: center;
      font-size: 14px;
    }
  }
  @media (width >= 769px) {
    .ownerService-detail-head-text::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -9px;
      width: 15px;
      height: 15px;
      border-top: 1px solid #f5f5f5;
      border-right: 1px solid #f5f5f5;
      background-color: #f5f5f5;
      transform: translateY(-50%) rotate(45deg);
    }
  }
  .ownerService-detail-list {
    position: relative;
    display: flex;
    gap: 64px;
    justify-content: space-between;
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list {
      flex-direction: column;
      gap: 48px;
      margin-top: 32px;
    }
  }
  @media (width >= 769px) {
    .ownerService-detail-list::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background-color: #d8d8d8;
      transform: translateX(-50%);
    }
  }
  .ownerService-detail-list-item {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    max-width: 520px;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item {
      width: 100%;
    }
  }
  .ownerService-detail-list-item-ttl {
    position: relative;
    margin-bottom: 16px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-ttl {
      margin-bottom: 12px;
      font-size: 20px;
    }
  }
  .ownerService-detail-list-item-ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #7e7a50;
    transform: translateY(-50%);
  }
  .ownerService-detail-list-item-lead {
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-lead {
      font-size: 14px;
      line-height: 1.6;
    }
  }
  .ownerService-detail-list-item-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
  }
  .ownerService-detail-list-item-tag-txt {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #f5f5f5;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-tag-txt {
      font-size: 12px;
    }
  }
  .ownerService-detail-list-item-list {
    flex: 1;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-list {
      padding: 20px 16px;
    }
  }
  .ownerService-detail-list-item-list-item {
    flex: 1 1 0;
    margin-left: 1.5em;
    max-width: 520px;
    list-style: disc;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-list-item {
      margin-left: 17px;
      font-size: 14px;
    }
  }
  .ownerService-detail-list-item-list-item:not(:last-child) {
    padding-bottom: 8px;
  }
  .ownerService-detail-list-item-list-item-head {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerService-detail-list-item-list-item-head {
      margin-bottom: 12px;
    }
  }
  .ownerService-detail-list-item-list-item-head::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -32px;
    width: 24px;
    height: 24px;
    background-image: url("../images/service-icon01.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .ownerService-detail-list-item-list-item-head.cost::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -32px;
    width: 24px;
    height: 24px;
    background-image: url("../images/service-icon02.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .ownerService-detail .button-search {
    margin-top: 32px;
  }
}
@layer pages {
  .ownerFlow {
    padding: 96px 0 120px;
  }
  @media (max-width: 768px) {
    .ownerFlow {
      padding: 64px 0 80px;
    }
  }
  .ownerFlow-contents-list {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .ownerFlow-contents-list-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list-item {
      flex-direction: row;
      justify-content: flex-start;
    }
  }
  .ownerFlow-contents-list-item:nth-child(4n)::after {
    display: none;
  }
  @media (width >= 769px) {
    .ownerFlow-contents-list-item::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -26%;
      width: 108px;
      height: 10px;
      background-image: url("../images/common/next-arrow.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
    }
  }
  .ownerFlow-contents-list-item-img {
    width: 160px;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list-item-img {
      position: relative;
      width: 96px;
      height: 96px;
    }
    .ownerFlow-contents-list-item-img::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -35%;
      left: 50%;
      width: 10px;
      height: 44px;
      background-image: url("../images/common/next-arrow_sp.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateX(-50%);
    }
  }
  .ownerFlow-contents-list-item:last-child .ownerFlow-contents-list-item-img::after {
    content: none;
  }
  .ownerFlow-contents-list-item-text-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list-item-text-wrap {
      align-items: flex-start;
    }
  }
  .ownerFlow-contents-list-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list-item-title {
      margin: 0;
      font-size: 18px;
    }
  }
  .ownerFlow-contents-list-item-text {
    text-align: center;
  }
  @media (max-width: 768px) {
    .ownerFlow-contents-list-item-text {
      text-align: left;
      font-size: 14px;
    }
  }
}
@layer pages {
  .ownerFaq {
    padding: 96px 0 120px;
    background-color: #f5f5f5;
  }
  @media (max-width: 768px) {
    .ownerFaq {
      padding: 64px 0 80px;
    }
  }
  .ownerFaq-wrap {
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .ownerFaq-wrap {
      margin-top: 32px;
    }
  }
  .ownerFaq-list {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  .ownerFaq-list-item-question {
    position: relative;
    padding: 20px 24px;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .ownerFaq-list-item-question {
      padding: 20px;
    }
  }
  .ownerFaq-list-item-question-title {
    display: flex;
    align-items: flex-start;
    padding-right: 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .ownerFaq-list-item-question-title {
      padding-right: 36px;
      font-size: 16px;
      line-height: 1.4;
    }
  }
  .ownerFaq-list-item-question-title-q {
    padding-right: 20px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerFaq-list-item-question-title-q {
      padding-right: 12px;
      font-size: 20px;
    }
  }
  .ownerFaq-list-item-answer {
    display: flex;
    overflow: hidden;
    max-height: 0;
    background-color: #fff;
    line-height: 1.8;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  @media (max-width: 768px) {
    .ownerFaq-list-item-answer {
      font-size: 14px;
    }
  }
  .ownerFaq-list-item-answer-a {
    padding-right: 20px;
    color: #7e7a50;
    font-weight: 700;
    font-size: 28px;
    font-family: "Shippori Mincho B1", serif;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerFaq-list-item-answer-a {
      padding-right: 12px;
      font-size: 20px;
    }
  }
  .ownerFaq-list .toggle-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .ownerFaq-list .toggle-icon {
      width: 16px;
      height: 16px;
    }
  }
  .ownerFaq-list .toggle-icon::before, .ownerFaq-list .toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background-color: #7e7a50;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .ownerFaq-list .toggle-icon::before, .ownerFaq-list .toggle-icon::after {
      width: 16px;
      height: 2px;
    }
  }
  .ownerFaq-list .toggle-icon::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .ownerFaq-list.is-open .ownerFaq-list-item-answer {
    display: flex;
    padding: 24px;
    max-height: 300px;
    opacity: 1;
  }
  @media (max-width: 768px) {
    .ownerFaq-list.is-open .ownerFaq-list-item-answer {
      padding: 20px;
    }
  }
  .ownerFaq-list.is-open .toggle-icon::after {
    opacity: 0;
  }
}
@layer pages {
  .ownerPurchaseMenu {
    padding: 96px 0 0;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu {
      padding: 64px 0 0;
    }
  }
  .ownerPurchaseMenu-contents {
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: space-between;
    margin-top: 80px;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents {
      flex-direction: column;
      gap: 48px;
    }
  }
  .ownerPurchaseMenu-contents-title {
    position: relative;
    padding-left: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents-title {
      font-size: 20px;
    }
  }
  .ownerPurchaseMenu-contents-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .ownerPurchaseMenu-contents-list {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents-list {
      gap: 48px;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 32px;
    }
  }
  .ownerPurchaseMenu-contents-list-item-title {
    padding: 12px 0 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents-list-item-title {
      padding: 8px 0 4px;
      font-size: 16px;
    }
  }
  .ownerPurchaseMenu-contents-list-item-tag {
    margin-top: 12px;
    padding: 4px 8px;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #f5f5f5;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents-list-item-tag {
      margin-top: 8px;
      font-size: 12px;
    }
  }
  .ownerPurchaseMenu-contents-list-item-text {
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-contents-list-item-text {
      font-size: 14px;
    }
  }
  .ownerPurchaseMenu-service-contents {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-contents {
      flex-direction: column;
      gap: 48px;
    }
  }
  .ownerPurchaseMenu-service-list {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list {
      gap: 15px;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 24px;
    }
  }
  .ownerPurchaseMenu-service-list-item-title {
    padding: 12px 0 4px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list-item-title {
      padding: 8px 0 4px;
      font-size: 16px;
    }
  }
  .ownerPurchaseMenu-service-list-item-text {
    color: #fff;
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list-item-text {
      font-size: 14px;
      line-height: 1.4;
    }
  }
  .ownerPurchaseMenu-service-list-item-link-wrap {
    margin-top: 20px;
    width: 268px;
    height: 44px;
    border-radius: 4px;
    background-color: #fff;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list-item-link-wrap {
      margin-top: 16px;
      width: 100%;
      height: 50px;
    }
  }
  .ownerPurchaseMenu-service-list-item-link-wrap a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    width: 100%;
    height: 100%;
    color: #274874;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list-item-link-wrap a {
      padding-right: 8px;
      text-align: center;
      font-size: 12px;
      line-height: 1.4;
    }
  }
  .ownerPurchaseMenu-service-list-item-link-wrap a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrow05.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu-service-list-item-link-wrap a::after {
      right: 8px;
      width: 14px;
      height: 14px;
    }
  }
  .ownerPurchaseMenu .bg-black {
    margin-top: 120px;
    padding: 96px 0 120px;
    background-color: #5f5f5f;
  }
  @media (max-width: 768px) {
    .ownerPurchaseMenu .bg-black {
      margin-top: 80px;
      padding: 64px 0 80px;
    }
  }
}
@layer utilities {
  @media (max-width: 768px) {
    .sp {
      display: block;
    }
    .pc {
      display: none;
    }
  }
  @media (width >= 769px) {
    .sp {
      display: none;
    }
    .pc {
      display: block;
    }
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .m-sm {
    margin: var(--spacing-sm);
  }
  .mt-sm {
    margin-top: var(--spacing-sm);
  }
  .mr-sm {
    margin-right: var(--spacing-sm);
  }
  .ml-sm {
    margin-left: var(--spacing-sm);
  }
  .mb-sm {
    margin-bottom: var(--spacing-sm);
  }
  .mx-sm {
    margin-inline: var(--spacing-sm);
  }
  .my-sm {
    margin-block: var(--spacing-sm);
  }
  .p-sm {
    padding: var(--spacing-sm);
  }
  .pt-sm {
    padding-top: var(--spacing-sm);
  }
  .pr-sm {
    padding-right: var(--spacing-sm);
  }
  .pb-sm {
    padding-bottom: var(--spacing-sm);
  }
  .px-sm {
    padding-inline: var(--spacing-sm);
  }
  .py-sm {
    padding-block: var(--spacing-sm);
  }
  .m-md {
    margin: var(--spacing-md);
  }
  .mt-md {
    margin-top: var(--spacing-md);
  }
  .mr-md {
    margin-right: var(--spacing-md);
  }
  .ml-md {
    margin-left: var(--spacing-md);
  }
  .mb-md {
    margin-bottom: var(--spacing-md);
  }
  .mx-md {
    margin-inline: var(--spacing-md);
  }
  .my-md {
    margin-block: var(--spacing-md);
  }
  .p-md {
    padding: var(--spacing-md);
  }
  .pt-md {
    padding-top: var(--spacing-md);
  }
  .pr-md {
    padding-right: var(--spacing-md);
  }
  .pb-md {
    padding-bottom: var(--spacing-md);
  }
  .px-md {
    padding-inline: var(--spacing-md);
  }
  .py-md {
    padding-block: var(--spacing-md);
  }
  .m-lg {
    margin: var(--spacing-lg);
  }
  .mt-lg {
    margin-top: var(--spacing-lg);
  }
  .mr-lg {
    margin-right: var(--spacing-lg);
  }
  .ml-lg {
    margin-left: var(--spacing-lg);
  }
  .mb-lg {
    margin-bottom: var(--spacing-lg);
  }
  .mx-lg {
    margin-inline: var(--spacing-lg);
  }
  .my-lg {
    margin-block: var(--spacing-lg);
  }
  .p-lg {
    padding: var(--spacing-lg);
  }
  .pt-lg {
    padding-top: var(--spacing-lg);
  }
  .pr-lg {
    padding-right: var(--spacing-lg);
  }
  .pb-lg {
    padding-bottom: var(--spacing-lg);
  }
  .px-lg {
    padding-inline: var(--spacing-lg);
  }
  .py-lg {
    padding-block: var(--spacing-lg);
  }
  .m-xl {
    margin: var(--spacing-xl);
  }
  .mt-xl {
    margin-top: var(--spacing-xl);
  }
  .mr-xl {
    margin-right: var(--spacing-xl);
  }
  .ml-xl {
    margin-left: var(--spacing-xl);
  }
  .mb-xl {
    margin-bottom: var(--spacing-xl);
  }
  .mx-xl {
    margin-inline: var(--spacing-xl);
  }
  .my-xl {
    margin-block: var(--spacing-xl);
  }
  .p-xl {
    padding: var(--spacing-xl);
  }
  .pt-xl {
    padding-top: var(--spacing-xl);
  }
  .pr-xl {
    padding-right: var(--spacing-xl);
  }
  .pb-xl {
    padding-bottom: var(--spacing-xl);
  }
  .px-xl {
    padding-inline: var(--spacing-xl);
  }
  .py-xl {
    padding-block: var(--spacing-xl);
  }
  .none {
    display: none;
  }
  @media (width >= 577px) {
    .none-sm-min {
      display: none;
    }
  }
  @media (max-width: 576px) {
    .none-sm-max {
      display: none;
    }
  }
  @media (width >= 769px) {
    .none-md-min {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .none-md-max {
      display: none;
    }
  }
  @media (width >= 1001px) {
    .none-lg-min {
      display: none;
    }
  }
  @media (max-width: 1000px) {
    .none-lg-max {
      display: none;
    }
  }
  @media (width >= 1201px) {
    .none-xl-min {
      display: none;
    }
  }
  @media (max-width: 1200px) {
    .none-xl-max {
      display: none;
    }
  }
  .wrap {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--width-pc);
    width: 100%;
  }
  @media (max-width: 768px) {
    .wrap {
      padding: 0 20px;
    }
  }
}/*# sourceMappingURL=style.css.map */