@charset "UTF-8";
@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-border: #dee2e6;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  --color-primary: #007bff;
  --color-primary-hover: #0056b3;
  --color-secondary: #6c757d;
  --color-secondary-hover: #545b62;
  --color-success: #28a745;
  --color-text: #333;
  --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: 1040px;
  --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;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    line-height: var(--line-height-base);
    -moz-osx-font-smoothing: grayscale;
  }
  @media (min-width: 769px) {
    body {
      min-width: 1400px;
    }
  }
  @media (max-width: 768px) {
    body {
      max-width: 100%;
      overflow-x: hidden;
    }
  }
  :where(a) {
    color: inherit;
  }
}
@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;
  }
}
#gb_footer {
  min-width: 100% !important;
}

@media (max-width: 768px) {
  .to-top.visible {
    left: initial !important;
    right: 0;
  }
}
@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;
    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;
    color: var(--color-text);
  }
  .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 pages {
  .mainVisual {
    background: url(../img/main_visual01.jpg) no-repeat;
    background-size: cover;
    background-position: center 60px;
    width: 100%;
    aspect-ratio: 3840/2090;
    height: auto;
    min-height: 1345px;
  }
  @media (max-width: 768px) {
    .mainVisual {
      display: block;
      width: 100%;
      background: url(../img/main_visual01_sp.jpg) no-repeat center center/cover;
      aspect-ratio: 768/560;
      height: auto;
      min-height: 70vh;
    }
    @supports (height: 100lvh) {
      .mainVisual {
        min-height: 70lvh;
      }
    }
    .mainVisual {
      padding-top: 52px;
    }
  }
  .mainVisual-inner {
    position: relative;
    max-width: 1162px;
    margin: 0 auto;
    height: 100%;
  }
  @media (min-width: 769px) {
    .mainVisual-inner {
      display: flex;
      flex-direction: column;
      padding-bottom: 70px;
    }
  }
  @media (max-width: 768px) {
    .mainVisual-inner {
      max-width: 450px;
      padding-bottom: 50px;
      min-height: 70lvh;
    }
  }
  .mainVisual-ttl {
    position: absolute;
    top: 200px;
    left: 0;
    width: 349px;
  }
  @media (max-width: 768px) {
    .mainVisual-ttl {
      top: 52px;
      left: 35px;
      width: 243px;
    }
  }
  @media (max-width: 480px) {
    .mainVisual-ttl {
      top: 32px;
    }
  }
  .mainVisual-btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  @media (min-width: 769px) {
    .mainVisual-btn {
      position: sticky;
      bottom: 70px;
      left: 90px;
      width: 403px;
      height: 52px;
      margin-top: auto;
    }
  }
  @media (max-width: 768px) {
    .mainVisual-btn {
      position: absolute;
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
      width: 302px;
      height: 39px;
    }
  }
  .mainVisual-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 90px;
    background: rgba(0, 60, 55, 0.5);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  @media (max-width: 768px) {
    .mainVisual-btn a {
      font-size: 14px;
    }
  }
  .modal {
    background: rgba(0, 0, 0, 0.7);
  }
  .modal--movie .modal-content {
    position: absolute;
    top: 143px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1161px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background: #000;
  }
  @media (max-width: 768px) {
    .modal--movie .modal-content {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      width: 100%;
      max-width: 688px;
      height: auto;
      max-height: none;
      background: transparent;
    }
  }
  .modal--movie iframe,
  .modal--movie .modal-video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  @media (max-width: 768px) {
    .modal--movie iframe,
    .modal--movie .modal-video {
      height: auto;
    }
  }
  .modal--movie .modal-close {
    top: -57px;
    right: 0;
    color: #fff;
    position: absolute;
    width: 48px;
    height: 48px;
  }
  .modal--movie .modal-close::before,
  .modal--movie .modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 2px;
    background: #fff;
    transform-origin: center;
  }
  .modal--movie .modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .modal--movie .modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .modal--movie .modal-close:hover {
    transform: none;
  }
}
@layer pages {
  .About {
    background: url(../img/about_bg.jpg) no-repeat center center/cover;
    padding: 80px 0 150px;
  }
  @media (max-width: 768px) {
    .About {
      padding: 40px 0 90px;
    }
  }
  .About-head-ttl {
    width: 396px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .About-head-ttl {
      width: 218px;
    }
  }
  .About-head-ttl-bottom {
    text-align: center;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
    line-height: 1;
    padding: 12px 0 0;
  }
  @media (max-width: 768px) {
    .About-head-ttl-bottom {
      font-size: 14px;
      padding: 6px 0 0;
    }
  }
  .About-head-ttl-small {
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 100px auto 26px;
    font-family: "Outfit", sans-serif;
  }
  @media (max-width: 768px) {
    .About-head-ttl-small {
      font-size: 15px;
      margin: 52px auto 10px;
    }
  }
  .About-head-ttl-sub {
    font-size: 53px;
    letter-spacing: 0.1em;
    text-align: center;
  }
  @media (min-width: 769px) {
    .About-head-ttl-sub {
      line-height: 1;
    }
  }
  @media (max-width: 768px) {
    .About-head-ttl-sub {
      font-size: 25px;
      line-height: 1.4;
    }
  }
  .About-head-lead {
    font-size: 23px;
    margin: 37px auto 0;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  @media (max-width: 768px) {
    .About-head-lead {
      font-size: 15px;
      margin: 10px auto 44px;
      text-align: left;
    }
  }
  .About-guide {
    padding-top: 80px;
    width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .About-guide {
      width: 100%;
      padding-top: 0;
    }
  }
  .About-guide-ttl {
    font-size: 33px;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 42px;
  }
  @media (max-width: 768px) {
    .About-guide-ttl {
      font-size: 22px;
      margin-bottom: 20px;
    }
  }
  .About-guide-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  @media (max-width: 768px) {
    .About-guide-list {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  }
  .About-guide-list-item a {
    position: relative;
  }
  .About-guide-list-item a .About-guide-list-item-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .About-guide-list-item a:hover .About-guide-list-item-img::after {
    opacity: 1;
  }
  @media (min-width: 769px) {
    .About-guide-list-item {
      width: 440px;
    }
  }
  @media (max-width: 768px) {
    .About-guide-list-item {
      max-width: 320px;
    }
  }
  .About-guide-list-item:first-child .About-guide-list-item-txt {
    background: #404748;
  }
  .About-guide-list-item:nth-child(2) .About-guide-list-item-txt {
    background: #806e2e;
  }
  .About-guide-list-item:nth-child(3) .About-guide-list-item-txt {
    background: #23497a;
  }
  .About-guide-list-item:nth-child(4) .About-guide-list-item-txt {
    background: #1e6149;
  }
  .About-guide-list-item-img {
    position: relative;
  }
  .About-guide-list-item-img img {
    width: 100%;
  }
  .About-guide-list-item-img-ttl {
    position: absolute;
    top: 27px;
    width: 166px;
    left: 34px;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .About-guide-list-item-img-ttl {
      width: 120px;
      top: 20px;
      left: 24px;
    }
  }
  .About-guide-list-item-txt {
    font-size: 24px;
    letter-spacing: 0.15em;
    text-align: center;
    color: #fff;
    padding: 32px 0;
  }
  @media (max-width: 768px) {
    .About-guide-list-item-txt {
      font-size: 17px;
      padding: 22px 26px;
    }
  }
}
@layer pages {
  .services {
    padding: 150px 0 162px;
  }
  @media (max-width: 768px) {
    .services {
      padding: 0px 20px 70px;
      scroll-margin-top: 80px;
    }
  }
  @media (min-width: 769px) {
    .services .wrap {
      padding: 0 !important;
      max-width: 100% !important;
    }
  }
  .services.service01 {
    background: #cbcbcb;
  }
  @media (max-width: 768px) {
    .services.service01 {
      padding-top: 90px;
    }
  }
  .services.service02 {
    background: #e4e0cb;
  }
  @media (min-width: 769px) {
    .services.service02 .services-contents-note {
      width: -moz-fit-content;
      width: fit-content;
      max-width: none;
      margin: 0;
      margin-left: 470px;
      white-space: nowrap;
    }
  }
  .services.service03 {
    background: #c1cad2;
  }
  .services.service04 {
    background: #c3cfc1;
  }
  @media (min-width: 769px) {
    .services.service04 .services-contents-note {
      width: -moz-fit-content;
      width: fit-content;
      max-width: none;
      margin-left: 240px;
      white-space: nowrap;
    }
  }
  .services-main {
    position: relative;
    max-width: 1162px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .services-main {
      width: 100vw;
      margin: 0 calc(50% - 50vw);
    }
  }
  .services-main-img {
    position: relative;
  }
  @media (max-width: 768px) {
    .services-main-img {
      height: 184px;
    }
    .services-main-img img {
      width: 100%;
      height: 100% !important;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  .services-main-img:after {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .services-main-ttl {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 166px;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .services-main-ttl {
      top: 30px;
      width: 93px;
    }
  }
  .services-main-txt {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    text-align: center;
    color: #fff;
    width: 100%;
    z-index: 2;
    letter-spacing: 0.08em;
  }
  @media (max-width: 768px) {
    .services-main-txt {
      font-size: 24px;
      padding-top: 18px;
      line-height: 1.6;
    }
  }
  .services-contents {
    max-width: 1440px;
    margin: 0 auto;
  }
  @media (min-width: 769px) {
    .services-contents {
      padding: 0 20px;
    }
  }
  @media (max-width: 768px) {
    .services-contents {
      width: 100%;
      padding-top: 35px;
    }
  }
  .services-contents-list {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin-top: 150px;
  }
  @media (max-width: 768px) {
    .services-contents-list {
      flex-direction: column;
      align-items: center;
      margin: 0;
      gap: 32px;
    }
  }
  .services-contents-list-txt {
    width: 700px;
    font-size: 36px;
  }
  @media (max-width: 768px) {
    .services-contents-list-txt {
      width: 100%;
      margin-bottom: 0;
    }
  }
  .services-contents-list-txt-ttl {
    font-size: 36px;
    letter-spacing: 0.04em;
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .services-contents-list-txt-ttl {
      font-size: 20px;
      margin-bottom: 26px;
    }
  }
  .services-contents-list-txt-lead {
    font-size: 21px;
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: 2;
  }
  @media (max-width: 768px) {
    .services-contents-list-txt-lead {
      font-size: 14px;
      line-height: 2;
    }
  }
  @media (min-width: 769px) {
    .services-contents-list-img {
      width: 510px;
    }
  }
  @media (max-width: 768px) {
    .services-contents-list-img {
      max-width: 510px;
    }
  }
  @media (min-width: 769px) {
    .services-contents-list-img.narrow {
      width: 450px;
      height: 100%;
      margin-right: 40px;
      margin-left: 20px;
    }
  }
  .services-contents-list.right {
    justify-content: flex-end;
  }
  @media (max-width: 768px) {
    .services-contents-list.right .services-contents-list-img {
      margin-right: -20px;
    }
    .services-contents-list.right .services-contents-list-img img {
      display: block;
      margin-left: auto;
    }
  }
  .services-contents-list.left {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  @media (max-width: 768px) {
    .services-contents-list.left {
      flex-direction: column-reverse;
      padding-left: 0;
      padding-top: 35px;
    }
  }
  @media (max-width: 768px) {
    .services-contents-list.left .services-contents-list-img {
      margin-left: -20px;
    }
  }
  .services-contents-note {
    text-align: right;
    padding-top: 27px;
    letter-spacing: 0.08em;
  }
  @media (max-width: 768px) {
    .services-contents-note {
      text-align: left;
      font-size: 10px;
      padding-top: 18px;
    }
  }
}
@layer pages {
  .History {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    background: url(../img/history_visual.jpg) no-repeat center center/cover;
    height: 1250px;
    color: #fff;
    text-align: center;
    margin-bottom: 120px;
  }
  @media (max-width: 768px) {
    .History {
      height: 100%;
      padding: 70px 0 40px;
      margin-bottom: 64px;
    }
  }
  .History:after {
    content: "";
    display: block;
    background: rgba(33, 33, 33, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .History-ttl {
    font-size: 36px;
    letter-spacing: 0.08em;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
  }
  @media (max-width: 768px) {
    .History-ttl {
      font-size: 19px;
      text-align: left;
      margin-bottom: 60px;
    }
  }
  .History-text {
    font-size: 24px;
    letter-spacing: 0.08em;
    line-height: 1.8;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .History-text {
      font-size: 14px;
      text-align: left;
    }
  }
  .History .swiper {
    width: 100%;
  }
  .History-slider-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 110px;
  }
  @media (max-width: 768px) {
    .History-slider-wrap {
      margin-bottom: 48px;
    }
  }
  .History-slider.swiper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .History-slider.swiper::-webkit-scrollbar {
    display: none;
  }
  .History-slider .swiper-wrapper {
    transition-timing-function: linear;
    align-items: stretch;
  }
  .History-slider-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: -moz-max-content;
    width: max-content;
  }
  .History-slider-list.is-looping {
    animation: historyLoop var(--history-loop-duration, 120s) linear infinite;
    will-change: transform;
  }
  .History-slider-list.is-paused {
    animation-play-state: paused;
  }
  .History-slider-list-item {
    background: #000;
    width: 480px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  @media (min-width: 769px) {
    .History-slider-list-item {
      cursor: pointer;
    }
    .History-slider-list-item.is-expanded {
      transform: scale(1.1);
      z-index: 2;
    }
  }
  @media (max-width: 768px) {
    .History-slider-list-item {
      width: 360px;
    }
  }
  .History-slider-list-item:nth-child(2n) .History-slider-list-item-caption {
    background: #444444;
  }
  .History-slider-list-item.swiper-slide {
    width: 480px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
  }
  @media (max-width: 768px) {
    .History-slider-list-item.swiper-slide {
      width: 360px !important;
    }
  }
  .History-slider-list-item-img {
    width: 480px;
    position: relative;
  }
  @media (max-width: 768px) {
    .History-slider-list-item-img {
      width: 360px;
    }
  }
  .History-slider-list-item-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .History-slider-list-item-img-year {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    letter-spacing: 0.08em;
    font-family: "Outfit", sans-serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }
  @media (max-width: 768px) {
    .History-slider-list-item-img-year {
      font-size: 30px;
      top: 10px;
      left: 15px;
    }
  }
  .History-slider-list-item-caption {
    font-size: 20px;
    color: rgb(203, 203, 203);
    line-height: 1.8;
    text-align: left;
    padding: 24px;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
  }
  @media (max-width: 768px) {
    .History-slider-list-item-caption {
      font-size: 15px;
      padding: 18px;
    }
  }
  .History .swiper-slide {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: auto;
  }
  .History .swiper-pagination {
    bottom: var(--spacing-lg);
  }
  .History .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
  }
  .History .swiper-pagination-bullet-active {
    background: #fff;
  }
  .History .swiper-button-prev,
  .History .swiper-button-next {
    color: #fff;
  }
  .History .swiper-button-prev::after,
  .History .swiper-button-next::after {
    font-size: 1.5rem;
  }
  @keyframes historyLoop {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(calc(var(--history-loop-distance, 0px) * -1), 0, 0);
    }
  }
  .modal--history .modal-content {
    position: relative;
    overflow: visible;
    padding: 0;
    width: 1000px;
    max-width: 80vw;
    max-height: none;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  @media (min-width: 769px) {
    .modal--history .modal-content {
      top: 30px;
    }
  }
  .modal--history .modal-close {
    top: -57px;
    right: 0;
    color: #fff;
    position: absolute;
    width: 48px;
    height: 48px;
  }
  .modal--history .modal-close::before,
  .modal--history .modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 2px;
    background: #fff;
    transform-origin: center;
  }
  .modal--history .modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .modal--history .modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .modal--history .modal-close:hover {
    transform: none;
  }
  .History-modal {
    background: #000;
    width: 100%;
  }
  .History-modal-imgWrap {
    position: relative;
  }
  .History-modal-img {
    display: block;
    width: 100%;
    height: auto;
  }
  .History-modal-year {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    font-family: "Outfit", sans-serif;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }
  .History-modal-caption {
    font-size: 20px;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 24px;
    color: #fff;
  }
}
@layer pages {
  .SectionMv.Mv02 {
    width: 100%;
    height: 1150px;
    background: url(../img/main_visual02.jpg) no-repeat center center/cover;
  }
  @media (max-width: 768px) {
    .SectionMv.Mv02 {
      height: 434px;
      background-position-x: 100%;
    }
  }
  .SectionMv.Mv03 {
    width: 100%;
    height: 1150px;
    background: url(../img/main_visual03.jpg) no-repeat center bottom/cover;
  }
  @media (max-width: 768px) {
    .SectionMv.Mv03 {
      background-position-x: 43%;
      height: 434px;
    }
  }
  .SectionMv.Mv03 .inner {
    position: relative;
    width: 1400px;
    height: 100%;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .SectionMv.Mv03 .inner {
      width: 100%;
    }
  }
  .SectionMv.Mv03 .Mv03-ttl {
    width: 411px;
    position: absolute;
    top: 46%;
    right: 10%;
  }
  @media (max-width: 768px) {
    .SectionMv.Mv03 .Mv03-ttl {
      width: 111px;
      top: 41%;
      right: 13%;
    }
  }
}
/* その他の商品 */
.product {
  padding: 120px 0 160px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .product {
    padding: 64px 0 80px;
  }
}
.product_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1040px;
}
.product_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .product_head {
    padding: 0;
    margin-bottom: 20px;
  }
}
.product_head_bar {
  width: 3px;
  height: 24px;
  background-color: #d3992f;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .product_head_bar {
    height: 20px;
  }
}
.product_head_title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .product_head_title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .product_body {
    padding: 0;
  }
}
.product_category_title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 24px;
  gap: 12px;
}
@media (max-width: 768px) {
  .product_category_title {
    margin-bottom: 20px;
  }
}
.product_category_title_image {
  width: 141px;
}
@media (max-width: 768px) {
  .product_category_title_image {
    width: 118px;
  }
}
.product_category_title_image.cross {
  width: 186px;
}
@media (max-width: 768px) {
  .product_category_title_image.cross {
    width: 140px;
  }
}
.product_category_title_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .product_list {
    flex-direction: column;
    gap: 16px;
  }
}
.product_list_item {
  width: 484px;
  height: 135px;
  border-radius: 4px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: ) {
  .product_list_item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product_list_item {
    width: 100%;
    height: 100px;
  }
}
.product_list_item--full {
  width: 100%;
}
.product_list_item_img {
  width: 240px;
  height: 135px;
  flex-shrink: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product_list_item_img {
    width: 128px;
    height: 96px;
  }
}
.product_list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px 0 0 4px;
}
.product_list_item_title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .product_list_item_title {
    font-size: 14px;
    padding-left: 16px;
  }
}
.product_list_item_title--split {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.product_list_item_title_sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.product_list_item_sup {
  font-size: 11.61px;
  vertical-align: 0.55em;
  padding-right: 8px;
}
@media (max-width: 768px) {
  .product_list_item_sup {
    font-size: 8px;
    margin-left: 0;
  }
}
.product_list_item_arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 16px;
}
.product_list_item_arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.product_other_link {
  width: 100%;
  text-align: right;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .product_other_link {
    font-size: 14px;
    justify-content: flex-end;
  }
}
.product_other_link a {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #167cba;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .product_other_link a {
    font-size: 14px;
    text-align: left;
    align-items: center;
  }
}
.product_other_link .product_list_item_arrow {
  margin-right: 0;
}

.pickup {
  padding: 40px 0 120px;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .pickup {
    padding: 48px 0 80px;
  }
}
.pickup-lead {
  font-size: 24px;
  color: #D3992F;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .pickup-lead {
    font-size: 20px;
  }
}
.pickup-title {
  margin-top: 16px;
  font-size: 64px;
}
@media (max-width: 768px) {
  .pickup-title {
    font-size: 32px;
    margin-top: 12px;
  }
}
.pickup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 30px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .pickup-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    margin-top: 48px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pickup-list::-webkit-scrollbar {
    display: none;
  }
}
.pickup-list-item {
  width: calc(33.333% - 20px);
}
@media (max-width: 768px) {
  .pickup-list-item {
    width: 240px;
    flex: 0 0 240px;
    padding-bottom: 25px;
  }
}
.pickup-list-item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.pickup-list-item-image img {
  border-radius: 4px;
}
.pickup-list-item-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .pickup-list-item-title {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 20px;
  }
}
.pickup-list-item-title::after {
  content: "";
  background: url(../img/box-arrow_b.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .pickup-list-item-title::after {
    width: 20px;
    height: 20px;
    right: -32px;
  }
}
.pickup-list-item-text {
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .pickup-list-item-text {
    margin-top: 12px;
  }
}
.pickup-pagination {
  display: none;
}
@media (max-width: 768px) {
  .pickup-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
  }
}
.pickup-pagination-prev, .pickup-pagination-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
}
.pickup-pagination-prev:hover:not(:disabled), .pickup-pagination-next:hover:not(:disabled) {
  opacity: 0.7;
}
.pickup-pagination-prev:disabled, .pickup-pagination-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pickup-pagination-prev img, .pickup-pagination-next img {
  display: block;
}
.pickup-pagination-info {
  display: flex;
  align-items: center;
  gap: 0;
}
.pickup-pagination-current {
  color: #167CBA;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}
.pickup-pagination-separator {
  color: #000;
  font-size: 20px;
  padding: 0 8px;
  display: flex;
}
.pickup-pagination-total {
  color: #000;
  font-weight: 300;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.pickup.other-pickup {
  background-color: #fff;
}
.pickup.other-pickup .product_category_title {
  margin-top: 25px;
}
@media (min-width: 769px) {
  .pickup.other-pickup .pickup-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .pickup.other-pickup .pickup-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
  }
}
.pickup.other-pickup .pickup-list-item {
  width: 100%;
}
@media (max-width: 768px) {
  .pickup.other-pickup .pickup-list-item {
    width: 240px;
    flex: 0 0 240px;
  }
}

.contact {
  margin: 0 auto;
  padding: 120px 0 0;
  background: #fff;
}
@media (max-width: 768px) {
  .contact {
    width: 100%;
    padding: 40px 20px 64px;
  }
}
.contact_inner {
  max-width: 1240px;
  padding: 0 20px 120px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact_inner {
    padding: 0;
  }
}
.contact_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .contact_list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact_list-item {
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact_list-item {
    width: 100%;
    padding: 0;
  }
}
.contact_list-item-image-area {
  height: 292px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact_list-item-image-area {
    height: 168px;
  }
}
.contact_list-item-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.contact_list-item-text-area {
  padding: 24px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
@media (max-width: 768px) {
  .contact_list-item-text-area {
    padding: 20px 20px 24px;
    min-height: auto;
  }
}
.contact_list-item-text-area--blue {
  background-image: linear-gradient(to right, #167CBA, #3BA7E9);
  border-radius: 0 0 4px 4px;
}
.contact_list-item-text-area--orange {
  background-image: linear-gradient(to right, #D3992F, #DCB774);
  border-radius: 0 0 4px 4px;
}
.contact_list-item-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .contact_list-item-title {
    font-size: 18px;
  }
}
.contact_list-item-title::after {
  content: "";
  background: url(../img/box-arrow_w.svg) no-repeat;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .contact_list-item-title::after {
    width: 24px;
    height: 24px;
    background-size: 100%;
  }
}
.contact_list-item-description {
  margin-top: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .contact_list-item-description {
    font-size: 14px;
  }
}

.FeatureOfMisawa {
  padding: 120px 0 160px;
}
@media (max-width: 768px) {
  .FeatureOfMisawa {
    padding: 0px 0 70px;
  }
}
.FeatureOfMisawa .wrap {
  max-width: 1240px;
}
.FeatureOfMisawa-ttl {
  text-align: center;
  padding-bottom: 80px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-ttl {
    font-size: 18px;
    padding-bottom: 64px;
  }
}
.FeatureOfMisawa-contents {
  display: flex;
  gap: 64px;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents {
    flex-direction: column;
    gap: 60px;
  }
}
.FeatureOfMisawa-contents-block {
  width: 568px;
  border-radius: 4px;
  color: #fff;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents-block {
    width: 100%;
  }
}
.FeatureOfMisawa-contents-block:first-child {
  background: #245472;
}
.FeatureOfMisawa-contents-block:last-child {
  background: #703D44;
}
.FeatureOfMisawa-contents-block a {
  pointer-events: none;
}
.FeatureOfMisawa-contents-block-inner {
  padding: 0 40px 28px;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents-block-inner {
    padding: 0 20px 38px;
  }
}
.FeatureOfMisawa-contents-block-img {
  margin-top: -32px;
}
.FeatureOfMisawa-contents-block-img img {
  border-radius: 4px;
}
.FeatureOfMisawa-contents-block-ttl {
  margin: 24px auto 12px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents-block-ttl {
    margin: 16px auto 8px;
    font-size: 20px;
    padding-bottom: 12px;
  }
}
.FeatureOfMisawa-contents-block-ttl.blue {
  border-bottom: 1px solid #5A86A1;
}
.FeatureOfMisawa-contents-block-ttl.red {
  border-bottom: 1px solid #A16C73;
}
.FeatureOfMisawa-contents-block-lead {
  position: relative;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents-block-lead {
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .FeatureOfMisawa-contents-list {
    display: none !important;
  }
}
.FeatureOfMisawa-contents-list {
  padding: 32px 40px;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}
.FeatureOfMisawa-contents-list-item {
  background: #fff;
  padding: 12px 4px 18px;
  border-radius: 4px;
  width: 240px;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.FeatureOfMisawa-contents-list-item-number {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.FeatureOfMisawa-contents-list-item-txt {
  position: relative;
  font-weight: 500;
  line-height: 1;
}
.FeatureOfMisawa-contents-list-item-txt-strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  padding-bottom: 6px;
  letter-spacing: -0.04em;
}
.FeatureOfMisawa-contents-list-item-txt-strong.blue {
  color: #376581;
  border-bottom: 1px solid #9FBAC6;
}
.FeatureOfMisawa-contents-list-item-txt-strong.red {
  color: #7B484F;
  border-bottom: 1px solid #BCACAE;
}
.FeatureOfMisawa-contents-list-item-icon {
  width: 12px;
  height: 6px;
}
.FeatureOfMisawa-contents-list.blue {
  background-color: #376581;
}
.FeatureOfMisawa-contents-list.blue .FeatureOfMisawa-contents-list-item-number {
  color: #376581;
}
.FeatureOfMisawa-contents-list.red {
  background-color: #7B484F;
}
.FeatureOfMisawa-contents-list.red .FeatureOfMisawa-contents-list-item-number {
  color: #7B484F;
}
.FeatureOfMisawa-contents-list.red .FeatureOfMisawa-contents-list-item:nth-child(3) {
  width: 100%;
}
.FeatureOfMisawa-btn {
  margin: 28px auto 0;
}
.FeatureOfMisawa-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 90px;
  background: linear-gradient(to right, #224251, #609fbe);
  color: #fff;
  padding: 10px 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.FeatureOfMisawa-btn-link:hover {
  opacity: 0.8;
}
.FeatureOfMisawa-btn-link-icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.FeatureOfMisawa-btn-link-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 13%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-color: #609fbe;
  transform: rotate(45deg);
}

@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;
    }
  }
  @media (min-width: 769px) {
    .pc {
      display: block;
    }
    .sp {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
  }
  .wrap {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
  }
  @media (max-width: 768px) {
    .wrap {
      padding: 0 20px;
      max-width: 100%;
    }
  }
  img {
    max-width: 100%;
    height: auto;
  }
  sup {
    font-size: 11.61px;
    vertical-align: 0.55em;
    color: #000;
  }
  @media (max-width: 768px) {
    sup {
      font-size: 12px;
      vertical-align: 0;
      top: -0.4em;
    }
  }
  .float-banner {
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 100;
    width: 120px;
    height: 120px;
    background: #527586;
  }
  @media (max-width: 768px) {
    .float-banner {
      width: 90px;
      height: 90px;
      bottom: 0;
    }
  }
  .float-banner a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .float-banner a {
      gap: 7px;
    }
  }
  .float-banner a:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  .float-banner-icon {
    width: 40px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .float-banner-icon {
      width: 30px;
      height: 22px;
      margin: 0 auto;
    }
    .float-banner-icon img {
      vertical-align: baseline;
    }
  }
  .float-banner-txt {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 9px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .float-banner-txt {
      font-size: 14px;
      margin-top: 0;
      line-height: 1.2;
    }
  }
  .fadeUpTrigger {
    opacity: 0;
    transition: opacity 1.5s ease, translate 1.5s ease;
    will-change: opacity, translate;
    translate: 0 20px;
  }
  .services-contents-list.fadeUpTrigger.left {
    translate: -20px 0;
  }
  .services-contents-list.fadeUpTrigger.right {
    translate: 20px 0;
  }
  .fadeUpTrigger.fadeUp {
    translate: 0 0;
  }
  .services-contents-list.fadeUpTrigger.left.fadeUp,
  .services-contents-list.fadeUpTrigger.right.fadeUp {
    translate: 0 0;
  }
  .fadeUp {
    opacity: 1;
    translate: 0 0;
  }
  @media (prefers-reduced-motion: reduce) {
    .fadeUpTrigger {
      opacity: 1;
      transition: none;
      translate: none;
    }
  }
}/*# sourceMappingURL=style.css.map */