@layer reset, base, layout, components, pages, utilities;
:root {
  --border-width: 1px;
  --border-radius: 4px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --border-radius-lg: 8px;
  --border-radius-sm: 2px;
  --box-shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --color-bg: #f8f9fa;
  --color-red: #DE7671;
  --color-purple: #796CA4;
  --color-green: #42904F;
  --color-blue: #0075C2;
  --color-yellow: #E49D0A;
  --color-gray: #F9F9F9;
  --color-light-gray: #F8F9FA;
  --color-dark-gray: #343A40;
  --color-text: #3E3A39;
  --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: 0.5rem;
  --spacing-unit: 1rem;
  --spacing-xl: 2rem;
  --spacing-xs: 0.25rem;
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.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%;
  }
  :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, 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, 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) {
    -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;
    -webkit-appearance: none;
  }
  :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;
  }
  ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
  }
  :where([type=number]) {
    -moz-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;
  }
  body {
    min-width: 1440px;
    background: #fff;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: var(--line-height-base);
    -moz-osx-font-smoothing: grayscale;
  }
  @media (max-width: 768px) {
    body {
      min-width: 0;
    }
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    line-height: var(--line-height-heading);
  }
  :where(a) {
    color: inherit;
  }
  a {
    transition: ease-in-out 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  @media (max-width: 768px) {
    .sp {
      display: block;
    }
  }
  @media (min-width: 769px) {
    .sp {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .pc {
      display: none;
    }
  }
  @media (min-width: 769px) {
    .pc {
      display: block;
    }
  }
  #gb_footer {
    min-width: 100% !important;
  }
}
@layer layout {
  .header {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
    background: #fff;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    max-width: 1200px;
  }
  @media (min-width: 769px) {
    .header-container {
      padding: 0 var(--spacing-lg);
    }
  }
  .header-logo-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    transition: var(--transition-fast);
  }
  .header-logo-link:hover {
    opacity: 0.8;
  }
  @media (min-width: 769px) {
    .header-nav {
      display: flex;
      gap: var(--spacing-lg);
    }
  }
  .header-nav-list {
    display: none;
  }
  @media (min-width: 769px) {
    .header-nav-list {
      display: flex;
      gap: var(--spacing-lg);
      list-style: none;
      margin: 0;
      padding: 0;
    }
  }
  .header-nav.is-open .header-nav-list {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    gap: var(--spacing-xl);
  }
  .header-nav-item {
    list-style: none;
  }
  .header-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
  }
  .header-nav-link:hover {
    color: var(--color-primary);
  }
  @media (min-width: 769px) {
    .header-nav-link {
      font-size: 0.875rem;
    }
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  @media (min-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 {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
    content: "";
  }
  .nav-toggle-icon::before {
    top: -8px;
  }
  .nav-toggle-icon::after {
    bottom: -8px;
  }
  .nav-toggle-text {
    margin-top: 4px;
    font-size: 0.625rem;
    color: var(--color-text);
  }
  .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;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
  }
  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }
}
@layer layout {
  .footer {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: #333;
    color: #fff;
  }
  .footer-container {
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    max-width: 1200px;
  }
  .footer-content {
    display: grid;
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-lg);
  }
  @media (min-width: 769px) {
    .footer-content {
      gap: var(--spacing-xl);
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .footer-section-title {
    margin-bottom: var(--spacing-sm);
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
  }
  .footer-section-text {
    color: #ccc;
    font-size: 0.875rem;
    line-height: var(--line-height-base);
  }
  .footer-section-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer-section-item {
    margin-bottom: var(--spacing-xs);
  }
  .footer-section-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
  }
  .footer-section-link:hover {
    color: #fff;
  }
  .footer-copyright {
    padding-top: var(--spacing-md);
    border-top: 1px solid #555;
    color: #999;
    text-align: center;
    font-size: 0.875rem;
  }
}
@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);
    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;
    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;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 0;
    border: none;
    background: transparent;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .accordion-trigger::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
    transition: var(--transition-fast);
    content: "";
  }
  .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 {
    max-height: 0;
    padding: 0 var(--spacing-lg);
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .accordion-item.is-open .accordion-content {
    max-height: 1000px;
    padding: 0 var(--spacing-lg) var(--spacing-md);
  }
  .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);
    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, .form-textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    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, .form-textarea: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):not(:-moz-placeholder), .form-select:invalid:not(:focus):not(:-moz-placeholder), .form-textarea:invalid:not(:focus):not(:-moz-placeholder) {
    border-color: var(--color-danger);
  }
  .form-input:invalid:not(:focus):not(:placeholder-shown), .form-select:invalid:not(:focus):not(:placeholder-shown), .form-textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: var(--color-danger);
  }
  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }
  .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):not(:-moz-placeholder)) .form-error {
    opacity: 1;
  }
  .form-group:has(.form-input:invalid:not(:focus):not(:placeholder-shown)) .form-error,
  .form .form-group.has-error .form-error {
    opacity: 1;
  }
}
@layer components {
  .section-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    .section-header {
      gap: 20px;
      margin-bottom: 48px;
      padding-top: 40px;
    }
  }
  .section-header-sub-ttl {
    position: relative;
    font-size: 20px;
    line-height: 1;
    padding-left: 30px;
  }
  @media (max-width: 768px) {
    .section-header-sub-ttl {
      font-size: 16px;
      padding-left: 20px;
    }
  }
  .section-header-sub-ttl.red {
    color: var(--color-red);
  }
  .section-header-sub-ttl.red::before {
    background-image: url("../img/red.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .section-header-sub-ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
  }
  @media (max-width: 768px) {
    .section-header-sub-ttl::before {
      width: 12px;
      height: 12px;
    }
  }
  .section-header-sub-ttl.purple {
    color: var(--color-purple);
  }
  .section-header-sub-ttl.purple::before {
    background-image: url("../img/purple.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .section-header-sub-ttl.green {
    color: var(--color-green);
  }
  .section-header-sub-ttl.green::before {
    background-image: url("../img/green.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .section-header-sub-ttl.blue {
    color: var(--color-blue);
  }
  .section-header-sub-ttl.blue::before {
    background-image: url("../img/blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .section-header-sub-ttl.yellow {
    color: var(--color-yellow);
  }
  .section-header-sub-ttl.yellow::before {
    background-image: url("../img/yellow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .section-header-ttl {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .section-header-ttl {
      font-size: 30px;
    }
  }
  .section-header-text {
    padding-top: 16px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .section-header-text {
      padding-top: 12px;
      font-size: 16px;
      font-feature-settings: "halt" on;
    }
  }
  .homeHearing .section-header::after {
    content: "01";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 400;
    color: #FAF8F0;
    font-family: "BIZ UDPMincho", serif;
  }
  @media (max-width: 768px) {
    .homeHearing .section-header::after {
      font-size: 56px;
    }
  }
  .homeResearch .section-header::after {
    content: "02";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 400;
    color: #FAF8F0;
    font-family: "BIZ UDPMincho", serif;
  }
  @media (max-width: 768px) {
    .homeResearch .section-header::after {
      font-size: 56px;
    }
  }
  .homePlanning .section-header::after {
    content: "03";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 400;
    color: #FAF8F0;
    font-family: "BIZ UDPMincho", serif;
  }
  @media (max-width: 768px) {
    .homePlanning .section-header::after {
      font-size: 56px;
    }
  }
  .homeSolution .section-header::after {
    content: "04";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 400;
    color: #FAF8F0;
    font-family: "BIZ UDPMincho", serif;
  }
  @media (max-width: 768px) {
    .homeSolution .section-header::after {
      font-size: 56px;
    }
  }
  .homeTotalDesign .section-header::after {
    content: "05";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 400;
    color: #FAF8F0;
    font-family: "BIZ UDPMincho", serif;
  }
  @media (max-width: 768px) {
    .homeTotalDesign .section-header::after {
      font-size: 56px;
    }
  }
}
@layer components {
  .fixContact {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 50;
    width: 163px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
  }
  @media (max-width: 768px) {
    .fixContact {
      display: none;
    }
  }
  .fixContact.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .fixContact:hover {
    opacity: 0.85;
  }
  .fixContact:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
  }
  .fixContact img {
    display: block;
    width: 100%;
    height: auto;
  }
  @media (max-width: 768px) {
    .fixContact {
      width: 120px;
      right: 16px;
    }
  }
}
@layer components {
  .breadcrumb {
    padding: 12px 0 0;
    margin-top: 81px;
    height: -moz-min-content;
    height: min-content;
  }
  .breadcrumb_list {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .breadcrumb_list-item {
    font-size: 14px;
    color: #fff;
  }
  .breadcrumb_list-item-link {
    color: #fff;
    text-decoration: none;
  }
  .breadcrumb_list-item-link:hover {
    text-decoration: underline;
  }
}
@layer pages {
  .homeMv {
    position: relative;
    background-image: url(../img/mv.jpg);
    background-image: -webkit-image-set(url(../img/mv.webp) type("image/webp"), url(../img/mv.jpg) type("image/jpeg"));
    background-image: image-set(url(../img/mv.webp) type("image/webp"), url(../img/mv.jpg) type("image/jpeg"));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
  @media (max-width: 768px) {
    .homeMv {
      background-image: url(../img/mv_sp.jpg);
      background-image: -webkit-image-set(url(../img/mv_sp.webp) type("image/webp"), url(../img/mv_sp.jpg) type("image/jpeg"));
      background-image: image-set(url(../img/mv_sp.webp) type("image/webp"), url(../img/mv_sp.jpg) type("image/jpeg"));
    }
  }
  .homeMv::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, #fff 100%);
    pointer-events: none;
  }
  @media (max-width: 768px) {
    .homeMv::after {
      height: 80px;
    }
  }
  .homeMv-inner {
    position: relative;
    z-index: 1;
    padding: 200px 0 97px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  @media (max-width: 768px) {
    .homeMv-inner {
      padding: 116px 20px 120px;
    }
  }
  .homeMv-img {
    width: 520px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .homeMv-img {
      padding: 0 20px;
      width: 100%;
    }
  }
  .homeMv-btn {
    position: relative;
    background-color: #009B63;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 24px;
    color: #fff;
    margin: 79px auto 0;
    width: 360px;
    height: 80px;
    font-size: 18px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .homeMv-btn {
      max-width: 335px;
      height: 72px;
      font-size: 16px;
      padding-right: 20px;
      margin-top: 48px;
    }
  }
  .homeMv-btn::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url(../img/arrow-right_w.svg);
    background-size: contain;
  }
  @media (max-width: 768px) {
    .homeMv-btn::after {
      right: 20px;
      width: 24px;
      height: 24px;
    }
  }
}
@layer components {
  .homeNav {
    --homeNav-curve: clamp(160px, 10vw, 240px);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: calc(var(--homeNav-curve) * -1);
    padding-top: var(--homeNav-curve);
    background-color: transparent;
  }
  @media (max-width: 768px) {
    .homeNav {
      --homeNav-curve: 70px;
    }
  }
  .homeNav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-image: url("../img/nav_bg.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: var(--homeNav-curve);
  }
  @media (max-width: 768px) {
    .homeNav::before {
      background-image: url("../img/nav_bg_sp.png");
      background-position: center top;
    }
  }
  .homeNav-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  @media (max-width: 768px) {
    .homeNav-list {
      display: flex;
      flex-direction: column;
    }
  }
  .homeNav-list-item {
    border-right: 1px solid #CECECE;
    padding: 0 16px;
  }
  @media (max-width: 768px) {
    .homeNav-list-item {
      border-right: none;
      padding: 20px 0;
      border-bottom: 1px solid #CECECE;
      border-right: none;
    }
  }
  .homeNav-list-item:first-child {
    border-left: 1px solid #CECECE;
  }
  @media (max-width: 768px) {
    .homeNav-list-item:first-child {
      border-left: none;
      border-top: 1px solid #CECECE;
    }
    .homeNav-list-item:first-child .homeNav-list-item-link-img {
      width: 84px;
    }
  }
  @media (max-width: 768px) {
    .homeNav-list-item:nth-child(2) .homeNav-list-item-link-img {
      width: 92px;
    }
  }
  @media (max-width: 768px) {
    .homeNav-list-item:nth-child(3) .homeNav-list-item-link-img {
      width: 90px;
    }
  }
  @media (max-width: 768px) {
    .homeNav-list-item:nth-child(4) .homeNav-list-item-link-img {
      width: 88px;
    }
  }
  @media (max-width: 768px) {
    .homeNav-list-item:nth-child(5) .homeNav-list-item-link-img {
      width: 121px;
    }
  }
  .homeNav-list-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .homeNav-list-item-link::after {
    content: "";
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 8px;
    background: url("../img/nav-arrow.svg") center/contain no-repeat;
  }
  @media (max-width: 768px) {
    .homeNav-list-item-link::after {
      width: 24px;
      height: 24px;
    }
  }
  .homeNav-list-item-link-text {
    font-size: 20px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .homeNav-list-item-link {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
    }
    .homeNav-list-item-link::after {
      order: -1;
      margin-top: 0;
    }
    .homeNav-list-item-link-img {
      flex-shrink: 0;
    }
    .homeNav-list-item-link-text {
      margin-left: auto;
      font-size: 16px;
    }
  }
}
@layer components {
  .spNav {
    display: none;
  }
  @media (max-width: 768px) {
    .spNav {
      display: block;
      position: fixed;
      top: 50px;
      left: 0;
      z-index: 100;
      width: 100%;
      background-color: #EEE;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-100%);
      transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }
    .spNav.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
  }
  .spNav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin: 0;
    padding: 9px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .spNav-list::-webkit-scrollbar {
    display: none;
  }
  .spNav-item {
    flex: 0 0 auto;
  }
  .spNav-link {
    display: block;
    padding: 8px;
    border-radius: 2px;
    background-color: #fff;
    color: #717171;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .spNav-link.is-active {
    color: #fff;
    border-color: transparent;
  }
  .spNav-link[data-theme=red].is-active {
    background-color: var(--color-red);
  }
  .spNav-link[data-theme=purple].is-active {
    background-color: var(--color-purple);
  }
  .spNav-link[data-theme=green].is-active {
    background-color: var(--color-green);
  }
  .spNav-link[data-theme=yellow].is-active {
    background-color: var(--color-yellow);
  }
  .spNav-link[data-theme=blue].is-active {
    background-color: var(--color-blue);
  }
  .spNav-link:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
  }
  @media (max-width: 768px) {
    #Hearing,
    #Research,
    #Planning,
    #Solution,
    #TotalDesign {
      scroll-margin-top: 56px;
    }
  }
}
@layer components {
  .spContactBanner {
    display: none;
  }
  @media (max-width: 768px) {
    .spContactBanner {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      left: 0;
      bottom: 0;
      z-index: 90;
      width: 100%;
      max-width: 100%;
      height: 48px;
      padding: 0 20px;
      box-sizing: border-box;
      overflow: hidden;
      background-color: #009b63;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(100%);
      transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }
    .spContactBanner.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
    .spContactBanner:focus-visible {
      outline: 2px solid #fff;
      outline-offset: -4px;
    }
    .spContactBanner::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 20px;
      width: 24px;
      height: 24px;
      background: url("../img/arrow-right_w.svg") center/contain no-repeat;
      transform: translateY(-50%);
    }
  }
}
@layer pages {
  .homeAbout {
    position: relative;
    background-color: #fff;
    width: 100%;
    padding: 74px 0 273px;
  }
  @media (max-width: 768px) {
    .homeAbout {
      padding: 0 0 70px;
    }
  }
  .homeAbout::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/tochie_bg.png);
    background-image: -webkit-image-set(url(../img/tochie_bg.webp) type("image/webp"), url(../img/tochie_bg.png) type("image/png"));
    background-image: image-set(url(../img/tochie_bg.webp) type("image/webp"), url(../img/tochie_bg.png) type("image/png"));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 160px);
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 160px);
    pointer-events: none;
    z-index: 0;
  }
  @media (max-width: 768px) {
    .homeAbout::before {
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 70px);
              mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 70px);
    }
  }
  .homeAbout > * {
    position: relative;
    z-index: 1;
  }
  .homeAbout-ttl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    font-size: 64px;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .homeAbout-ttl {
      -moz-column-gap: 12px;
           column-gap: 12px;
      row-gap: 12px;
      font-size: 40px;
    }
  }
  .homeAbout-ttl-wisdom {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homeAbout-ttl-wisdom {
      gap: 12px;
    }
  }
  .homeAbout-ttl-wisdom::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("../img/plus.svg") center/contain no-repeat;
  }
  @media (max-width: 768px) {
    .homeAbout-ttl-wisdom::before {
      width: 16px;
      height: 16px;
    }
  }
  .homeAbout-ttl-green {
    display: inline-flex;
    align-items: center;
    color: var(--color-green);
  }
  @media (max-width: 768px) {
    .homeAbout-ttl-green {
      flex-basis: 100%;
    }
  }
  .homeAbout-ttl-green::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 8px;
    margin-right: 16px;
    background: url("../img/equal.svg") center/contain no-repeat;
  }
  @media (max-width: 768px) {
    .homeAbout-ttl-green::before {
      margin-right: 12px;
      width: 16px;
      height: 16px;
    }
  }
  .homeAbout-ttl-small {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    padding-left: 4px;
    color: var(--color-text);
    letter-spacing: initial;
  }
  @media (max-width: 768px) {
    .homeAbout-ttl-small {
      font-size: 20px;
      padding-left: 0;
    }
  }
  .homeAbout-inner {
    padding: 120px 0 97px;
  }
  .homeAbout .section-header {
    padding-top: 0;
  }
  @media (max-width: 768px) {
    .homeAbout .section-header-sub-ttl {
      padding-bottom: 4px;
    }
  }
  .homeAbout .section-header-sub-ttl::before {
    content: "";
    background-image: url(../img/green.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .homeAbout-contents {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 120px;
  }
  @media (max-width: 768px) {
    .homeAbout-contents {
      grid-template-columns: 1fr;
      max-width: 100%;
      width: 100%;
      gap: 32px;
      margin-top: 0;
    }
  }
  .homeAbout-contents-text {
    font-size: 20px;
    line-height: 3;
  }
  @media (max-width: 768px) {
    .homeAbout-contents-text {
      font-size: 16px;
      line-height: 2;
      margin-bottom: 80px;
    }
  }
}
@layer pages {
  .homeHearing {
    position: relative;
    padding: 140px 0 96px;
  }
  @media (max-width: 768px) {
    .homeHearing {
      padding: 48px 0;
    }
  }
  .homeHearing::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1312px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #D9D9D9;
  }
  @media (max-width: 768px) {
    .homeHearing::after {
      left: 20px;
      right: 20px;
      width: auto;
      max-width: none;
      transform: none;
    }
  }
  .homeHearing-contents.column2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  @media (max-width: 768px) {
    .homeHearing-contents.column2 {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 0;
    }
  }
  @media (max-width: 768px) {
    .homeHearing-contents.column1 {
      margin-top: 20px;
    }
  }
  .homeHearing-contents-block {
    background-color: #FAF8F0;
    padding: 32px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homeHearing-contents-block {
      padding: 24px 20px 32px;
    }
  }
  .homeHearing-contents-block-ttl {
    color: #DE7671;
    font-size: 32px;
    line-height: 1.4;
    padding-bottom: 6px;
  }
  @media (max-width: 768px) {
    .homeHearing-contents-block-ttl {
      font-size: 24px;
      padding-bottom: 4px;
    }
  }
  .homeHearing-contents-block-text {
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .homeHearing-contents-block-text {
      font-size: 14px;
    }
  }
}
@layer pages {
  .homeResearch {
    position: relative;
    padding: 96px 0;
  }
  @media (max-width: 768px) {
    .homeResearch {
      padding: 24px 0 48px;
    }
  }
  .homeResearch::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1312px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #D9D9D9;
  }
  @media (max-width: 768px) {
    .homeResearch::after {
      left: 20px;
      right: 20px;
      width: auto;
      max-width: none;
      transform: none;
    }
  }
  .homeResearch-contents {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents {
      gap: 20px;
    }
  }
  .homeResearch-contents-block {
    background-color: #FAF8F0;
    padding: 32px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block {
      padding: 24px 20px 32px;
    }
  }
  .homeResearch-contents-block:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block:first-child {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
  .homeResearch-contents-block-text-title {
    color: var(--color-purple);
    font-size: 32px;
    line-height: 1.4;
    padding-bottom: 24px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-text-title {
      font-size: 24px;
      padding-bottom: 20px;
    }
  }
  .homeResearch-contents-block-text-lead {
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-text-lead {
      font-size: 14px;
    }
  }
  .homeResearch-contents-block-case {
    margin-top: 48px;
  }
  .homeResearch-contents-block-case-ttl {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-ttl {
      font-size: 20px;
    }
  }
  .homeResearch-contents-block-case-ttl-sub {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-purple);
    border-radius: 100px;
    border: 1px solid #BCB3D1;
    padding: 6px 20px;
    margin-left: 20px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-ttl-sub {
      display: block;
      margin: 12px 0 0;
      width: -moz-fit-content;
      width: fit-content;
    }
  }
  .homeResearch-contents-block-case-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list {
      grid-template-columns: 1fr;
      gap: 12px;
      max-width: 100%;
      width: 100%;
    }
  }
  .homeResearch-contents-block-case-list-item {
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list-item-img img {
      width: 100%;
    }
  }
  .homeResearch-contents-block-case-list-item-detail {
    background-color: #fff;
    padding: 16px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list-item-detail {
      padding: 12px 16px 24px;
    }
  }
  .homeResearch-contents-block-case-list-item-detail-title {
    color: var(--color-purple);
    font-size: 20px;
    line-height: 1.4;
    padding-bottom: 16px;
    border-bottom: 1px dotted #796CA4;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list-item-detail-title {
      font-size: 18px;
      padding-bottom: 12px;
      margin-bottom: 4px;
    }
  }
  .homeResearch-contents-block-case-list-item-detail-text {
    padding-top: 8px;
    font-weight: 400;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list-item-detail-text {
      font-size: 14px;
      padding: 0;
    }
  }
  .homeResearch-contents-block-case-list-item-detail-answer {
    position: relative;
    line-height: 1.4;
    color: var(--color-purple);
    padding-left: 16px;
  }
  @media (max-width: 768px) {
    .homeResearch-contents-block-case-list-item-detail-answer {
      font-size: 14px;
    }
  }
  .homeResearch-contents-block-case-list-item-detail-answer::before {
    content: "";
    position: absolute;
    top: 63%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 12px;
    background-image: url(../img/research-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@layer pages {
  .homePlanning {
    position: relative;
    padding: 96px 0;
  }
  @media (max-width: 768px) {
    .homePlanning {
      padding: 24px 0 48px;
    }
  }
  .homePlanning::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1312px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #D9D9D9;
  }
  @media (max-width: 768px) {
    .homePlanning::after {
      left: 20px;
      right: 20px;
      width: auto;
      max-width: none;
      transform: none;
    }
  }
  @media (min-width: 769px) {
    .homePlanning .section-header::before {
      content: "";
      position: absolute;
      right: 0;
      top: 156px;
      width: 580px;
      height: 408px;
      background-image: url(../img/section03-img01.png);
      background-image: -webkit-image-set(url(../img/section03-img01.webp) type("image/webp"), url(../img/section03-img01.png) type("image/png"));
      background-image: image-set(url(../img/section03-img01.webp) type("image/webp"), url(../img/section03-img01.png) type("image/png"));
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }
  }
  .homePlanning-contents {
    margin-top: 132px;
    background-color: #FAF8F0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .homePlanning-contents {
      margin: 0;
      padding: 24px 20px 32px;
      gap: 20px;
    }
    .homePlanning-contents-img {
      margin-top: 12px;
    }
  }
  .homePlanning-contents-ttl {
    font-size: 32px;
    line-height: 1.4;
    color: var(--color-green);
  }
  @media (max-width: 768px) {
    .homePlanning-contents-ttl {
      font-size: 24px;
    }
  }
  .homePlanning-contents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list {
      grid-template-columns: 1fr;
      max-width: 100%;
      width: 100%;
      gap: 12px;
    }
  }
  .homePlanning-contents-list-item {
    padding: 20px 24px;
    background-color: #fff;
    display: flex;
    gap: 32px;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list-item {
      display: grid;
      grid-template-columns: 1fr 96px;
      align-items: start;
      padding: 16px;
      gap: 12px 16px;
    }
    .homePlanning-contents-list-item:last-child .homePlanning-contents-list-item-detail-ttl {
      align-self: center;
    }
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list-item-img {
      grid-column: 2;
      grid-row: 1;
      width: 93px;
      height: auto;
    }
  }
  .homePlanning-contents-list-item-detail {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list-item-detail {
      display: contents;
    }
  }
  .homePlanning-contents-list-item-detail-ttl {
    color: var(--color-green);
    font-size: 20px;
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dotted var(--color-green);
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list-item-detail-ttl {
      grid-column: 1;
      grid-row: 1;
      font-size: 18px;
      padding-bottom: 12px;
    }
  }
  .homePlanning-contents-list-item-detail-text {
    font-weight: 400;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homePlanning-contents-list-item-detail-text {
      grid-column: 1/-1;
      grid-row: 2;
      width: 100%;
      font-size: 14px;
    }
  }
}
@layer pages {
  .homeSolution {
    position: relative;
    padding: 96px 0;
  }
  @media (max-width: 768px) {
    .homeSolution {
      padding: 24px 0 48px;
    }
  }
  .homeSolution::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1312px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #D9D9D9;
  }
  @media (max-width: 768px) {
    .homeSolution::after {
      left: 20px;
      right: 20px;
      width: auto;
      max-width: none;
      transform: none;
    }
  }
  .homeSolution-case {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 80px;
  }
  @media (max-width: 768px) {
    .homeSolution-case {
      margin-top: 0;
      gap: 20px;
    }
  }
  .homeSolution-case-contents {
    background-color: #FAF8F0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents {
      padding: 24px 20px 32px;
    }
  }
  .homeSolution-case-contents-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    min-width: 0;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-header {
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
    }
  }
  .homeSolution-case-contents-header-main {
    flex: 1;
    min-width: 0;
  }
  .homeSolution-case-contents-header-ttl {
    color: #E49D0A;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-header-ttl {
      font-size: 24px;
      margin-bottom: 20px;
      font-feature-settings: "halt" on;
    }
  }
  .homeSolution-case-contents-header-text {
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-header-text {
      font-size: 14px;
    }
  }
  .homeSolution-case-contents-header-img {
    width: 520px;
    max-width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-header-img {
      width: 100%;
    }
  }
  .homeSolution-case-contents-list {
    display: grid;
    grid-template-columns: 1fr 1fr 312px;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-list {
      grid-template-columns: 1fr;
    }
  }
  .homeSolution-case-contents-list-item {
    min-width: 0;
    max-width: 100%;
  }
  .homeSolution-case-contents-list-item-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .homeSolution-case-contents-list-item-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .homeSolution-case-contents-list-item-img-caption {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    padding-top: 8px;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents-list-item-img-caption {
      font-size: 12px;
    }
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list {
    grid-template-columns: minmax(0, 572fr) minmax(0, 548fr);
    align-items: stretch;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item:first-child > figure {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item:first-child > figure img {
    flex: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item:first-child > figure img {
      -o-object-fit: contain;
         object-fit: contain;
      height: auto;
    }
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item:nth-child(2) {
    gap: 16px;
    min-width: 0;
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item-img-list {
    display: grid;
    grid-template-columns: minmax(0, 250fr) minmax(0, 282fr);
    gap: 16px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  @media (max-width: 768px) {
    .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item-img-list {
      grid-template-columns: 1fr;
    }
  }
  .homeSolution-case-contents:nth-child(3) .homeSolution-case-contents-list-item-img-list figure {
    height: auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .homeSolution-group {
    margin-top: 80px;
  }
  @media (max-width: 768px) {
    .homeSolution-group {
      margin-top: 48px;
    }
  }
  .homeSolution-group-ttl {
    color: #E49D0A;
    font-size: 24px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeSolution-group-ttl {
      font-size: 20px;
    }
  }
  .homeSolution-group-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }
  @media (max-width: 768px) {
    .homeSolution-group-list {
      gap: 32px 23px;
      margin-top: 24px;
    }
  }
  .homeSolution-group-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .homeSolution-group-list-item {
      flex-direction: column;
      gap: 12px;
    }
    .homeSolution-group-list-item:first-child .homeSolution-group-list-item-img img {
      width: 65px;
    }
    .homeSolution-group-list-item:nth-child(2) .homeSolution-group-list-item-img img {
      width: 111px;
    }
    .homeSolution-group-list-item:nth-child(3) .homeSolution-group-list-item-img img {
      width: 38px;
    }
    .homeSolution-group-list-item:last-child .homeSolution-group-list-item-img img {
      width: 111px;
    }
  }
  .homeSolution-group-list-item-img {
    width: 280px;
    height: 112px;
    background-color: #F9F9F9;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .homeSolution-group-list-item-img {
      width: 100%;
      height: 62px;
      padding: 13px;
    }
  }
  .homeSolution-group-list-item-detail {
    width: 272px;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homeSolution-group-list-item-detail {
      width: 100%;
      padding: 0;
      gap: 8px;
    }
  }
  .homeSolution-group-list-item-detail-ttl {
    font-size: 20px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeSolution-group-list-item-detail-ttl {
      font-size: 18px;
    }
  }
  .homeSolution-group-list-item-detail-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
  }
}
@layer pages {
  .homeTotalDesign {
    padding: 96px 0 160px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign {
      padding: 24px 0 80px;
    }
  }
  .homeTotalDesign img {
    display: block;
    width: 100%;
    height: auto;
  }
  .homeTotalDesign-contents-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list {
      gap: 20px;
    }
  }
  .homeTotalDesign-contents-list-item {
    padding: 32px;
    background: #faf8f0;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item {
      padding: 24px 20px 32px;
    }
  }
  .homeTotalDesign-contents-list-item-head {
    display: flex;
  }
  @media (min-width: 769px) {
    .homeTotalDesign-contents-list-item-head {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
    }
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-head {
      flex-direction: column;
      gap: 32px;
    }
  }
  @media (min-width: 769px) {
    .homeTotalDesign-contents-list-item-head-detail {
      flex: 0 0 520px;
      max-width: 520px;
    }
  }
  .homeTotalDesign-contents-list-item-head-detail-subttl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
  }
  .homeTotalDesign-contents-list-item-head-detail-subttl::before {
    flex-shrink: 0;
    width: 16px;
    height: 2px;
    background: #0075c2;
    content: "";
  }
  .homeTotalDesign-contents-list-item-head-detail-ttl {
    margin-top: 8px;
    color: #0075c2;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-head-detail-ttl {
      font-size: 24px;
    }
  }
  .homeTotalDesign-contents-list-item-head-detail-text {
    display: block;
    margin-top: 32px;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-head-detail-text {
      margin-top: 12px;
      font-size: 16px;
    }
  }
  .homeTotalDesign-contents-list-item-head-detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-head-detail-list {
      margin-top: 24px;
    }
  }
  .homeTotalDesign-contents-list-item-head-detail-list-item {
    position: relative;
    padding-left: 14px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
  }
  .homeTotalDesign-contents-list-item-head-detail-list-item::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #0075c2;
    border-radius: 50%;
    content: "";
  }
  .homeTotalDesign-contents-list-item-head-figure {
    margin: 0;
  }
  @media (min-width: 769px) {
    .homeTotalDesign-contents-list-item-head-figure {
      flex: 1;
      max-width: 568px;
      min-width: 0;
    }
  }
  .homeTotalDesign-contents-list-item-head-figure figcaption {
    margin-top: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-head-figure figcaption {
      font-size: 12px;
    }
  }
  .homeTotalDesign-contents-list-item-body {
    display: none;
    margin-top: 48px;
  }
  .homeTotalDesign-contents-list-item-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 64px;
    margin-top: 32px;
    padding: 0 20px 0 0;
    border: 1px solid transparent;
    background: #9a8b78;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-toggle {
      margin-top: 32px;
      font-size: 14px;
      padding: 0 16px 0 0;
    }
  }
  .homeTotalDesign-contents-list-item-toggle:hover {
    opacity: 0.9;
  }
  .homeTotalDesign-contents-list-item-toggle-icon {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item-toggle-icon {
      position: absolute;
      right: 16px;
      width: 20px;
      height: 20px;
    }
  }
  .homeTotalDesign-contents-list-item-toggle-icon::before, .homeTotalDesign-contents-list-item-toggle-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    content: "";
  }
  .homeTotalDesign-contents-list-item-toggle-icon::before {
    width: 8px;
    height: 1px;
    transform: translate(-50%, -50%);
  }
  .homeTotalDesign-contents-list-item-toggle-icon::after {
    width: 1px;
    height: 8px;
    transform: translate(-50%, -50%);
  }
  .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-body {
    display: block;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-body {
      margin-top: 32px;
    }
  }
  .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle {
    width: 222px;
    height: 48px;
    margin-inline: auto;
    border-color: #96907A;
    background: transparent;
    color: #96907A;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle {
      width: 187px;
      height: 40px;
    }
  }
  .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle:hover {
    opacity: 1;
    background: transparent;
  }
  .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  @media (max-width: 768px) {
    .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle-icon {
      right: 16px;
    }
  }
  .homeTotalDesign-contents-list-item.is-open .homeTotalDesign-contents-list-item-toggle-icon::after {
    display: none;
  }
  .homeTotalDesign-overview {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 40px;
    }
  }
  @media (min-width: 769px) {
    .homeTotalDesign-overview::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      width: 34px;
      height: 34px;
      transform: translate(-50%, -50%);
      background: url("../img/double-arrow.svg") center/contain no-repeat;
      pointer-events: none;
    }
  }
  .homeTotalDesign-overview-concern, .homeTotalDesign-overview-insight {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-concern, .homeTotalDesign-overview-insight {
      width: 100%;
    }
  }
  .homeTotalDesign-overview-concern-ttl, .homeTotalDesign-overview-insight-ttl {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-concern-ttl, .homeTotalDesign-overview-insight-ttl {
      font-size: 18px;
      padding: 12px;
    }
  }
  .homeTotalDesign-overview-concern-ttl::after, .homeTotalDesign-overview-insight-ttl::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 12px;
    height: 10px;
    transform: translateX(-50%);
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .homeTotalDesign-overview-concern-ttl-icon, .homeTotalDesign-overview-insight-ttl-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-concern-ttl-icon, .homeTotalDesign-overview-insight-ttl-icon {
      width: 20px;
      height: 20px;
    }
  }
  .homeTotalDesign-overview-concern-list, .homeTotalDesign-overview-insight-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 12px;
    padding: 30px 32px 32px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-concern-list, .homeTotalDesign-overview-insight-list {
      padding: 22px 16px 24px;
    }
  }
  .homeTotalDesign-overview-concern-list-item, .homeTotalDesign-overview-insight-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 12px;
  }
  .homeTotalDesign-overview-concern-list-item-icon, .homeTotalDesign-overview-insight-list-item-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
  .homeTotalDesign-overview-concern-list-item-text, .homeTotalDesign-overview-insight-list-item-text {
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-concern-list-item-text, .homeTotalDesign-overview-insight-list-item-text {
      font-size: 14px;
    }
  }
  .homeTotalDesign-overview-concern-ttl {
    background: #b5a88a;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-overview-insight {
      position: relative;
      overflow: visible;
    }
    .homeTotalDesign-overview-insight::after {
      content: "";
      position: absolute;
      top: -32px;
      left: 50%;
      z-index: 1;
      width: 24px;
      height: 24px;
      transform: translateX(-50%) rotate(90deg);
      background: url("../img/double-arrow.svg") center/contain no-repeat;
      pointer-events: none;
    }
  }
  .homeTotalDesign-overview-insight-ttl {
    background: #0075c2;
  }
  .homeTotalDesign-process {
    margin-top: 48px;
  }
  .homeTotalDesign-process-ttl {
    margin-bottom: 19px;
    padding-bottom: 16px;
    border-bottom: 1px dotted #0075c2;
    color: #0075c2;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-process-ttl {
      font-size: 20px;
      margin-bottom: 16px;
    }
  }
  .homeTotalDesign-point {
    margin-top: 48px;
  }
  .homeTotalDesign-point-ttl {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dotted #0075c2;
    color: #0075c2;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
  }
  @media (min-width: 769px) {
    .homeTotalDesign-point-ttl {
      grid-column: 1/-1;
    }
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-ttl {
      order: 1;
      font-size: 20px;
    }
  }
  .homeTotalDesign-point-inner {
    display: grid;
    grid-template-columns: 496px 560px;
    justify-content: space-between;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-inner {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
  }
  .homeTotalDesign-point-visual {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-visual {
      display: contents;
    }
  }
  .homeTotalDesign-point-visual-img {
    width: 280px;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-visual-img {
      order: 3;
      width: 100%;
      margin: 20px auto 12px;
    }
  }
  .homeTotalDesign-point-visual-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-visual-text {
      order: 4;
    }
  }
  .homeTotalDesign-point-detail {
    flex: 0 0 100%;
    max-width: 560px;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-detail {
      order: 2;
      flex: none;
      max-width: none;
      width: 100%;
    }
  }
  .homeTotalDesign-point-detail-text {
    font-weight: 400;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeTotalDesign-point-detail-text {
      font-size: 14px;
    }
  }
  .homeTotalDesign-point-detail-text + .homeTotalDesign-point-detail-text {
    margin-top: 1em;
  }
}
@layer pages {
  .homeContact {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    background: #D4ECEA;
  }
  @media (max-width: 768px) {
    .homeContact {
      padding: 64px 0 80px;
    }
  }
  .homeContact .wrap {
    position: relative;
    z-index: 1;
  }
  .homeContact-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  @media (max-width: 768px) {
    .homeContact-bg {
      display: none;
    }
  }
  .homeContact-bg img {
    width: min(100%, 1312px);
    height: auto;
  }
  .homeContact-header {
    margin-bottom: 64px;
    text-align: center;
  }
  @media (max-width: 768px) {
    .homeContact-header {
      margin-bottom: 48px;
    }
  }
  .homeContact-header-subttl {
    display: block;
    color: #009B63;
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeContact-header-subttl {
      font-size: 16px;
    }
  }
  .homeContact-header-ttl {
    margin-top: 12px;
    font-size: 48px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .homeContact-header-ttl {
      font-size: 30px;
      margin-top: 8px;
    }
  }
  .homeContact-header-text {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
  }
  @media (max-width: 768px) {
    .homeContact-header-text {
      margin-top: 24px;
      font-size: 16px;
      line-height: 1.6;
      text-align: left;
    }
  }
  .homeContact-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .homeContact-btns {
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }
  }
  .homeContact-btns-form, .homeContact-btns-tel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 450px;
    height: 96px;
    padding: 0 0 0 20px;
    font-size: 18px;
    line-height: 1;
    transition: var(--transition-fast);
  }
  @media (max-width: 768px) {
    .homeContact-btns-form, .homeContact-btns-tel {
      height: 72px;
      font-size: 16px;
      padding: 0 0 0 20px;
    }
  }
  .homeContact-btns-icon {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
  }
  @media (max-width: 768px) {
    .homeContact-btns-icon {
      left: 20px;
      width: 24px;
      height: 24px;
    }
  }
  .homeContact-btns-icon img {
    width: 100%;
    height: 100%;
  }
  .homeContact-btns-form {
    background: #009b63;
    color: #fff;
  }
  .homeContact-btns-form:hover {
    opacity: 0.85;
  }
  .homeContact-btns-tel {
    border: 1px solid #009b63;
    background: #fff;
    color: #009b63;
  }
  .homeContact-btns-tel:hover {
    background: #f3faf7;
  }
}
@layer utilities {
  .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 (min-width: 577px) {
    .none-sm-min {
      display: none;
    }
  }
  @media (max-width: 576px) {
    .none-sm-max {
      display: none;
    }
  }
  @media (min-width: 769px) {
    .none-md-min {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .none-md-max {
      display: none;
    }
  }
  @media (min-width: 993px) {
    .none-lg-min {
      display: none;
    }
  }
  @media (max-width: 992px) {
    .none-lg-max {
      display: none;
    }
  }
  @media (min-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);
  }
}/*# sourceMappingURL=style.css.map */