@charset "UTF-8";
/* エントリーポイント */
/* 変数（CSS変数 + Sass変数） */
:root {
  --color-primary: #1a79b3;
  --color-second: #1779b;
  --color-dark: #1f386b;
  --color-accent: #ec6500;
  --color-btn-bg: #f39800;
  --color-bg-light: #FBF8E2;
  --color-rightblue: #00b3d6;
  --color-brown: #918772;
  --color-service-btn: #6aae7e;
  --color-service-btn-dark: #57986b;
  --color-text: #595757;
  --color-subtext: #6c757d;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --font-size-base: 1.6rem;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --spacing-default: 2rem;
  --spacing-medium: 3rem;
  --spacing-large: 5rem;
  --border-radius: .4rem;
  --border-radius-pill: 9999px;
  --header-height: 5.5rem;
}

/* Sass変数（ブレークポイント等） */
/* エントリーポイント */
/* assets/scss/global/_mixin.scss */
/* 上方向（min-width） */
/* 下方向（max-width） */
/* 範囲（min <= width <= max） */
@layer reset {
  *, *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
  }
  html {
    font-size: 62.5%; /* 1rem = 10px */
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
  }
  img, video {
    height: auto;
  }
  button, input, select, textarea {
    font: inherit;
    color: inherit;
  }
  button {
    cursor: pointer;
  }
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
  }
}
@layer base {
  body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    line-height: 1.7;
    font-size: var(--font-size-base);
    background-color: #fff;
  }
  a {
    text-decoration: none;
    color: var(--color-primary);
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
  ul, ol, dl {
    list-style: none;
  }
  h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
  }
  .section-padding {
    padding: var(--spacing-large) 0;
  }
  .section-padding + .section-padding {
    padding-top: 0;
  }
}
/* エントリーポイント */
@layer layout {
  .container {
    max-width: 120rem;
    margin-inline: auto;
    padding-inline: 2rem;
  }
}
@layer layout {
  header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    background-color: #fff;
    z-index: 100;
  }
  @media (min-width: 1024px) {
    header {
      block-size: 10rem;
    }
  }
  .l-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  }
  .l-header.is-scrolled {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  @media (min-width: 1024px) {
    header .container {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 2.4rem;
      position: relative;
      padding-inline: 0;
    }
  }
  .site-logo {
    line-height: 1;
    margin-bottom: 0;
  }
  .site-logo img {
    height: 3rem;
    width: auto;
  }
  @media (min-width: 1024px) {
    .site-logo img {
      width: 30rem;
      height: auto;
    }
  }
  .menu-toggle {
    display: grid;
    grid-template-rows: repeat(3, auto) 1fr;
    gap: 0.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    justify-items: center;
    inline-size: 3.5rem;
    block-size: 3.5rem;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  @media (min-width: 1024px) {
    .menu-toggle {
      display: none;
    }
  }
  .menu-toggle .bar {
    inline-size: 100%;
    block-size: 0.3rem;
    background: var(--color-primary);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  }
  .menu-toggle .menu-label {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 0.2rem;
    line-height: 1;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(1rem) rotate(45deg);
            transform: translateY(1rem) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-0.7rem) rotate(-45deg);
            transform: translateY(-0.7rem) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    inset-inline: 0;
    inset-block-start: var(--header-height);
    block-size: calc(100dvh - var(--header-height));
    background: var(--color-primary);
    color: #fff;
    z-index: 90;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, visibility 0s linear 0.2s, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.2s ease-out, visibility 0s linear 0.2s;
    transition: transform 0.3s ease-out, opacity 0.2s ease-out, visibility 0s linear 0.2s, -webkit-transform 0.3s ease-out;
    will-change: transform;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (min-width: 1024px) {
    .main-nav {
      position: static;
      inset: auto;
      block-size: auto;
      background: transparent;
      color: var(--color-text);
      -webkit-transform: none;
              transform: none;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      -webkit-transition: none;
      transition: none;
      will-change: auto;
      overflow: visible;
      z-index: auto;
    }
  }
  .main-nav.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.2s ease-out;
    transition: transform 0.3s ease-out, opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
  }
  .main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 1.6rem;
    padding-block: 0.6rem 2.4rem;
  }
  @media (min-width: 821px) {
    .main-nav ul {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 2.8rem;
      padding: 0;
    }
  }
  @media (min-width: 1025px) {
    .main-nav ul {
      gap: 3.8rem;
    }
  }
  .main-nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  @media (min-width: 1024px) {
    .main-nav li + li {
      border: 0;
    }
  }
  .main-nav a {
    display: block;
    color: #fff;
    font-weight: 700;
    padding-block: 1.6rem;
  }
  @media (min-width: 1024px) {
    .main-nav a {
      color: var(--color-text);
      font-weight: 400;
      position: relative;
      display: inline-block;
      padding: 0.4rem 0;
      color: var(--color-text);
      text-decoration: none;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
    }
    .main-nav a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--color-primary);
      -webkit-transition: width 0.3s ease;
      transition: width 0.3s ease;
    }
    .main-nav a:hover::after {
      width: 100%;
    }
    .main-nav a.nav-btn:hover::after {
      width: 0;
      display: none;
    }
    .main-nav a.is-current::after {
      width: 100%;
    }
  }
  .main-nav a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 0.2rem;
    border-radius: 0.4rem;
  }
  .main-nav .btn {
    padding: 0;
  }
  body.no-scroll {
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    body.no-scroll {
      overflow: auto;
    }
  }
}
@layer layout {
  #hero.section-hero {
    position: relative;
    color: #fff;
    background: url("../img/main-visual-sp.jpg") top center/cover no-repeat;
    min-block-size: clamp(42rem, 100vh, 64rem);
    display: grid;
    place-items: center;
  }
  @media (min-width: 1024px) {
    #hero.section-hero {
      background-image: url("../img/main-visual.jpg");
      min-block-size: 55rem;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: end;
      max-width: 1200px;
      margin: 0 auto;
    }
  }
  .section-hero::before {
    content: "";
    position: absolute;
    inset: 0;
  }
  .section-hero .container {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  @media (min-width: 768px) {
    .section-hero .container {
      text-align: center;
      display: block;
      width: 100%;
    }
  }
  .section-hero .hero-title {
    margin-top: -5rem;
  }
  .section-hero .hero-subtext {
    position: absolute;
    right: clamp(1.2rem, 3vw, 2rem);
    bottom: clamp(1.6rem, 5vw, 8rem);
    text-align: right;
  }
  @media (min-width: 768px) {
    .section-hero .hero-subtext {
      right: auto;
      left: auto;
      bottom: clamp(1.6rem, 5vw, 4rem);
      text-align: center;
    }
  }
  @media (min-width: 768px) {
    .section-hero .hero-title {
      position: absolute;
      right: auto;
      left: auto;
      bottom: clamp(3.6rem, 25vw, 12rem);
      text-align: center;
      margin-top: 0;
    }
  }
}
@layer layout {
  .footer {
    padding: 5rem 0;
  }
  .footer-contact {
    text-align: center;
  }
  .call-icon-circle {
    width: 12rem;
    height: 12rem;
    margin: 0 auto 2rem;
  }
  .call-icon-circle img {
    max-width: 100%;
    height: auto;
  }
  .contact-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-second);
  }
  .contact-line img {
    margin-right: 1.5rem;
    width: 3rem;
    text-align: center;
  }
  @media (min-width: 768px) {
    .contact-line img {
      width: 5rem;
    }
  }
  .contact-number {
    font-size: clamp(3.8rem, 5.2vw, 7rem);
    color: var(--color-primary);
  }
  .business-hours {
    font-size: clamp(1.8rem, 2.2vw, 3.2rem);
  }
  .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem;
    margin-bottom: var(--spacing-default);
  }
  @media (min-width: 768px) {
    .footer-nav ul {
      margin-bottom: 7rem;
    }
  }
  .footer-nav a {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  @media (min-width: 768px) {
    .footer-nav a {
      margin-bottom: 0;
    }
  }
  .copyright {
    text-align: center;
    font-size: 0.8em;
    color: #bbb;
  }
  .copyright-logo {
    max-width: 33rem;
    margin: 8rem 0 2rem;
    text-align: center;
  }
  .copyright-text {
    max-width: 33rem;
    text-align: center;
    margin: 3.7rem auto 0;
  }
  @media (min-width: 768px) {
    footer .container-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .footer-contact {
      -ms-flex-preferred-size: 30rem;
          flex-basis: 30rem;
      border-bottom: none;
    }
    .footer-nav-and-info {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
    }
    .footer-nav ul {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 6rem;
    }
    .copyright {
      text-align: center;
      margin-top: 2rem;
    }
    .copyright-logo {
      margin: auto;
    }
    .contact-line {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 1.6em;
    }
    .call-icon-circle {
      margin: 0 auto 2rem;
    }
  }
  @media (min-width: 768px) and (min-width: 768px) {
    .call-icon-circle {
      display: none;
    }
  }
  .footer-divider {
    position: relative;
    height: 4rem;
    margin-top: clamp(6rem, 6vw, 15rem);
  }
  .footer-divider::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 50%;
    height: 6px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #b5b4b4;
  }
  .footer-divider img {
    position: absolute;
    right: clamp(0.8rem, 4vw, 2.4rem);
    top: 50%;
    -webkit-transform: translateY(calc(-50% - 1px));
            transform: translateY(calc(-50% - 1px));
    margin-top: -1.8rem;
    height: 3.7rem;
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  @media (min-width: 768px) {
    .footer-divider img {
      height: 6rem;
      margin-top: -2.6rem;
      right: 8.6rem;
      -webkit-transform: translateY(calc(-50% - 1.5px));
              transform: translateY(calc(-50% - 1.5px));
    }
  }
  @media (min-width: 768px) {
    .footer-divider {
      height: 5rem;
    }
    .footer-divider::before {
      height: 7px;
    }
    .footer-divider img {
      height: 6rem;
      margin-top: -2.6rem;
      right: 8.6rem;
      -webkit-transform: translateY(calc(-50% - 1.5px));
              transform: translateY(calc(-50% - 1.5px));
    }
  }
}
.contact-before {
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.contact-before .contact-before-arrow {
  margin: 0 auto 2rem;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #8c806d;
}
@media (min-width: 768px) {
  .contact-before .contact-before-arrow {
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-top: 60px solid #8c806d;
  }
}
.contact-before .contact-before-text {
  font-size: clamp(1.8rem, 3.2vw, 5rem);
  font-weight: 700;
  color: #c4002f;
  line-height: 1.6;
}

@layer component {
  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    text-align: center;
    -webkit-transition: background-color 0.2s, opacity 0.2s;
    transition: background-color 0.2s, opacity 0.2s;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
  }
  .btn:hover {
    opacity: 0.85;
  }
  .btn-primary {
    background-color: var(--color-btn-bg);
    color: #fff !important;
    min-width: 20rem;
  }
  .btn-primary:hover {
    -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
  }
  .btn-secondary {
    background-color: var(--color-service-btn);
    color: #fff !important;
    border: 1px solid var(--color-service-btn);
    padding: 1.2rem 2.5rem;
  }
  .btn-secondary:hover {
    background-color: var(--color-service-btn-dark);
    border-color: var(--color-service-btn-dark);
  }
  .btn-lg {
    font-size: clamp(2rem, 3vw, 4rem);
    max-width: 80rem;
    min-width: 33rem;
    width: 100%;
    margin: auto;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: clamp(5rem, 6vw, 8rem);
  }
  .btn-mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2rem;
  }
  .btn-mail img {
    margin-right: 1rem;
    width: 3rem;
    text-align: center;
    margin-top: 0.4rem;
  }
  @media (min-width: 768px) {
    .btn-mail img {
      width: 4.5rem;
    }
  }
  @media (min-width: 1024px) {
    .nav-btn {
      display: inline-block;
      padding: 5px 20px;
      border-radius: var(--border-radius-pill);
      text-align: center;
      -webkit-transition: background-color 0.2s, opacity 0.2s;
      transition: background-color 0.2s, opacity 0.2s;
      font-weight: var(--font-weight-bold);
      white-space: nowrap;
      background-color: var(--color-btn-bg);
      color: #fff;
      min-width: 200px;
      margin-top: 0;
    }
  }
  @media (min-width: 1024px) {
    .nav-btn:hover {
      -webkit-filter: brightness(1.15);
              filter: brightness(1.15);
    }
  }
  .btn-service-detail {
    position: relative;
    padding-left: 6rem;
  }
  .btn-service-detail span {
    display: inline-block;
    position: relative;
  }
  .btn-service-detail span::before {
    content: "";
    margin-right: 1rem;
    background: url(../img/ic-track.png) no-repeat;
    width: 4rem;
    height: 1.8rem;
    position: absolute;
    left: -5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0.2rem;
    background-size: contain;
  }
  @media (min-width: 768px) {
    .btn-service-detail span::before {
      width: 7rem;
      height: 3.6rem;
      left: -8rem;
      margin-top: 0.5rem;
    }
  }
}
.link-text-pink {
  margin-top: 5.6rem;
  text-align: center;
}
.link-text-pink a {
  color: #e6005c;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.link-text-pink a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@layer component {
  .hero-title {
    font-weight: 700;
    font-size: clamp(4rem, 5.6vw, 5.2rem);
    font-family: var(--font-family-serif);
    letter-spacing: 0.06em;
    line-height: 1.28;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    width: 100%;
  }
  .hero-subtext {
    -webkit-margin-before: 0.6em;
            margin-block-start: 0.6em;
    font-weight: 700;
    font-family: var(--font-family-serif);
    font-size: clamp(3rem, 3.2vw, 3.7rem);
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }
}
@layer component {
  .feature-heading-wrap {
    position: relative;
    border-top: 2px solid var(--color-brown);
    border-bottom: 2px solid var(--color-brown);
    padding-block: clamp(1rem, 0.5vh, 1.5rem);
    margin-bottom: 4rem;
    text-align: center;
  }
  @media (min-width: 768px) {
    .feature-heading-wrap {
      border: none;
    }
  }
  @media (min-width: 768px) {
    .feature-heading-wrap::before {
      content: "";
      position: absolute;
      top: 64%;
      width: 92%;
      height: 2px;
      background: var(--color-brown);
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      z-index: -2;
      left: 0;
      margin: auto;
    }
  }
  @media (min-width: 768px) {
    .feature-heading-wrap::after {
      content: "";
      background: url(../img/ic-hikouki.png) no-repeat;
      background-size: 100%;
      position: absolute;
      width: 7rem;
      height: 7rem;
      right: 0;
      top: 65%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }
  }
  .feature-heading-wrap::marker {
    content: none;
  }
  .feature-heading {
    position: relative;
    text-align: center;
    color: var(--color-brown);
    line-height: 1.3;
    font-weight: 700;
    font-size: clamp(3.4rem, 3.7vw, 4rem);
    letter-spacing: 0.06em;
    display: inline-block;
  }
  @media (min-width: 768px) {
    .feature-heading::before {
      position: absolute;
      top: 0;
      content: "";
      background: #fff;
      width: 100%;
      height: 10rem;
      z-index: -1;
    }
  }
  .feature-heading::after {
    content: "";
    background: url(../img/ic-hikouki.png) no-repeat;
    width: 5rem;
    height: 5rem;
    background-size: 100%;
    position: absolute;
    bottom: 0.5rem;
    right: 2rem;
  }
  @media (min-width: 768px) {
    .feature-heading::after {
      display: none;
    }
  }
  .feature-heading .num {
    margin: 0 0 0 -5rem;
    color: var(--color-accent);
    font-size: 1.85em;
    font-weight: 800;
  }
  @media (min-width: 768px) {
    .feature-heading .num {
      margin: 0 1rem;
      top: 0.5rem;
      position: relative;
    }
  }
  #service-point .feature-heading::after {
    right: -1rem;
  }
  .feature-list {
    display: grid;
    gap: 4.8rem;
  }
  @media (min-width: 768px) {
    .feature-list {
      gap: 7rem;
    }
  }
  .feature-item {
    display: grid;
    gap: 2.7rem;
  }
  @media (min-width: 768px) {
    .feature-item {
      grid-template-columns: 24rem 1fr;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 2.8rem 3.6rem;
    }
  }
  .feature-title {
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.35;
    font-size: clamp(2.6rem, 3.8vw, 4.2rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.6em;
    text-align: center;
  }
  @media (min-width: 768px) {
    .feature-title {
      text-align: left;
    }
  }
  .feature-text {
    color: var(--color-text);
    font-size: clamp(1.5rem, 2vw, 1.6rem);
    line-height: 1.9;
  }
  .feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: var(--spacing-default);
    -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .feature-media img {
    display: block;
    width: 100%;
    height: auto;
  }
  .feature-img {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
}
@layer layout {
  .service-list-grid {
    display: grid;
    gap: var(--spacing-default);
    margin-bottom: clamp(4rem, 6vw, 8.4rem);
  }
  .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border: 1px solid var(--color-accent-dark);
    border-radius: var(--border-radius);
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
  }
  .service-title {
    font-weight: 700;
    font-size: clamp(2.4rem, 2.6vw, 3.2rem);
    margin-bottom: clamp(1.8rem, 2vw, 2.6rem);
    line-height: 1.5;
  }
  .service-img {
    width: auto;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 12rem;
    min-width: 8.4rem;
  }
  @media (min-width: 768px) {
    .service-img {
      width: 30%;
      height: auto;
      min-height: 16rem;
      min-width: 11rem;
    }
  }
  .service-item dl {
    width: auto;
    padding-left: 1.5rem;
  }
  @media (min-width: 768px) {
    .service-item dl {
      width: auto;
      padding-left: 2rem;
    }
  }
  .service-description {
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  }
  @media (min-width: 768px) {
    .service-list-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-large);
    }
    .service-item {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
}
@layer component {
  .intro-section {
    padding-block: clamp(4rem, 5.5vw, 7rem);
  }
  .intro-heading {
    color: var(--color-dark);
    font-weight: 700;
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 1.5em;
  }
  .intro-text {
    max-width: 80rem;
    margin-inline: auto;
    color: var(--color-text);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    line-height: 1.8;
    text-align: left;
  }
  .intro-text + .intro-text {
    margin-top: 1em;
  }
}
.page-hero {
  padding-block: clamp(3.2rem, 6vw, 6.4rem);
  background: #fff;
}
.page-hero .page-hero__inner {
  display: grid;
  gap: clamp(3.6rem, 4vw, 5.2rem);
}
.page-hero .page-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 4rem);
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.06em;
}
.page-hero .page-hero-lead {
  max-width: 80rem;
  margin-inline: auto;
  display: grid;
  gap: 1.2rem;
}
.page-hero .page-hero-lead p {
  line-height: 1.9;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: var(--color-text);
  text-align: left;
}
.page-hero .page-hero-lead p + p {
  margin-top: 1.1em;
}
.page-hero .page-hero-subtitle {
  text-align: center;
  color: var(--color-primary, #1a79b3);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: clamp(1.9rem, 3.8vw, 4rem);
  margin-bottom: clamp(2rem, 4.5vw, 3.2rem);
}

/* NOTICE ブロック */
.page-notice {
  margin-top: clamp(3.2rem, 8vw, 6.4rem);
}

.page-notice-label {
  color: var(--color-primary, #1a79b3);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: clamp(1.6rem, 2.6vw, 4rem);
  margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
}

.page-notice-btn {
  margin-top: clamp(1.2rem, 3vw, 1.6rem);
}

/* 資料DLボタン（赤アウトライン＋角丸大） */
.btn-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  padding: clamp(1.2rem, 2.6vw, 1.8rem) clamp(2rem, 4.5vw, 3.6rem);
  border-radius: 9999px;
  border: 0.3rem solid #e34040;
  color: #e34040;
  background: #fff;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  text-decoration: none;
  max-width: 80rem;
  min-width: 33rem;
  width: 100%;
  margin: auto;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-download:hover {
  color: #fff;
  background: #e34040;
  -webkit-box-shadow: 0 0.6rem 1.6rem rgba(227, 64, 64, 0.18);
          box-shadow: 0 0.6rem 1.6rem rgba(227, 64, 64, 0.18);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-download:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ボタン内アイコン */
.btn-download .btn-icon {
  inline-size: clamp(2.4rem, 4.2vw, 3.6rem);
  block-size: clamp(2.4rem, 4.2vw, 3.6rem);
  display: inline-grid;
  place-items: center;
}

.btn-download .btn-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-download .btn-label {
  display: inline-block;
}

.btn-mail img {
  margin-right: 1.5rem;
  width: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .btn-mail img {
    width: 4rem;
  }
}
@media (min-width: 821px) {
  .btn-mail img {
    width: 5rem;
  }
}

/* スマホの改行制御（既にユーティリティがあれば不要） */
.br-sp {
  display: inline;
}

@media (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
.page-hero {
  padding-block: clamp(4rem, 6vw, 7.4rem);
}

@media (min-width: 768px) {
  .page-hero__inner {
    text-align: center;
  }
}
.page-hero + .section-padding {
  padding-top: 0;
}

.lead-section {
  margin-top: clamp(2.4rem, 5vw, 6rem);
  margin-bottom: clamp(3.4rem, 5vw, 6rem);
  background: var(--color-bg-light);
  padding-block: clamp(2.7rem, 5vw, 4.8rem);
}
.lead-section .lead-heading {
  font-weight: 700;
  color: var(--color-primary);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.2em;
}
.lead-section .lead-heading.lead-heading--second {
  color: var(--color-accent);
}
.lead-section .lead-heading.lead-heading--second::before {
  color: var(--color-accent);
}
.lead-section .lead-heading.lead-heading--third {
  color: var(--color-rightblue);
}
.lead-section .lead-heading.lead-heading--third::before {
  color: var(--color-rightblue);
}
.lead-section .lead-heading::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}
.lead-section p {
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  line-height: 1.9;
  color: var(--color-text);
}

.section-heading {
  background: #918772;
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  font-weight: normal;
  letter-spacing: 0.1em;
  padding: 1rem 2.4rem;
  margin-bottom: clamp(4rem, 5.5vw, 7rem);
  text-align: center;
}

.section-heading--alt {
  margin-bottom: clamp(5.2rem, 6vw, 7rem);
  font-size: clamp(2.6rem, 3.7vw, 5rem);
  text-align: center;
  letter-spacing: 0.5em;
  color: var(--color-brown);
}

.section-bg {
  padding-block: clamp(5rem, 6vw, 10rem);
  background-color: var(--color-bg-light);
}

.section-header {
  background: var(--color-primary);
}
.section-header.section-header--orange {
  background: var(--color-accent);
}
.section-header.section-header--rightblue {
  background: var(--color-rightblue);
}
.section-header picture {
  display: block;
}
.section-header img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}
.section-header .section-header-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .section-header .section-header-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.2rem;
  }
}
.section-header .section-eyebrow {
  font-size: clamp(1.6rem, 2.2vw, 3.2rem);
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.section-header .section-title {
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 3.2rem);
  line-height: 1.5;
  text-align: center;
}

.service-card {
  background: #fff;
  overflow: hidden;
  margin-bottom: clamp(4.8rem, 6vw, 8rem);
}
@media (min-width: 768px) {
  .service-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
  }
}

.service-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: #d8ecf7;
}
.service-card__head.service-card__head--cream {
  background: #fde6d2;
}
.service-card__head.service-card__head--cream .service-card__title {
  color: var(--color-accent);
}
@media (min-width: 768px) {
  .service-card__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .service-card__media {
    width: 50%;
  }
}
.service-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card__title {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) {
  .service-card__title {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}

.service-card__text {
  padding-top: clamp(1.6rem, 2.6vw, 4rem);
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}

.info-block {
  margin: 3.2rem auto 0;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .info-block {
    margin-top: 4rem;
  }
}

.info-block-title {
  background: #fde6d2;
  color: var(--color-accent);
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: 0.4rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .info-block-title {
    margin-bottom: 3.2rem;
    text-align: left;
    padding: 2.5rem;
  }
}

.info-block-body {
  font-size: clamp(1.5rem, 2.4vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
}

.info-block-list {
  display: grid;
}
.info-block-list dt {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.info-block-list dd {
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  line-height: 1.9;
  color: var(--color-text);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .info-block-list dd {
    margin-bottom: 5rem;
  }
}

.info-block--blue .info-block-title,
.info-block--blue .info-block-list dt {
  color: var(--color-rightblue);
}

.info-block--blue .info-block-title {
  background-color: rgba(0, 179, 214, 0.2);
}

.flow-block {
  display: grid;
  gap: 2rem;
  margin-top: 3.2rem;
  margin-bottom: clamp(3.8rem, 6vw, 8rem);
}
@media (min-width: 768px) {
  .flow-block {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
  }
}

.flow-item {
  padding: 2rem;
  background: #f8f8f5;
  border: 2px solid #ccc;
  border-radius: 0.4rem;
}

.flow-item--export {
  border-color: #5db26d;
  background: #f7fdf8;
}

.flow-item--import {
  border-color: #d54d9f;
  background: #fef6f9;
}

.flow-item-title {
  font-size: clamp(2.8rem, 3vw, 3.3rem);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.flow-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.flow-item-list li {
  font-size: clamp(1.6rem, 2.4vw, 1.8rem);
  line-height: 1.7;
  color: var(--color-text);
  list-style: decimal;
  list-style-position: inside;
}

.company-info {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.company-info-table {
  width: 100%;
  max-width: 60rem;
  margin: auto;
  border-collapse: collapse;
  font-size: clamp(1.5rem, 2.4vw, 1.6rem);
  line-height: 1.8;
  color: var(--color-text);
}
.company-info-table th,
.company-info-table td {
  padding: 1.6rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
.company-info-table th {
  width: 30%;
  background: #f5f0e7;
  font-weight: normal;
  color: #918772;
  text-align: left;
}
@media (min-width: 768px) {
  .company-info-table th {
    width: 25%;
  }
}
.company-info-table td {
  width: 80%;
  background: #fff;
}
@media (min-width: 768px) {
  .company-info-table td {
    width: 75%;
  }
}
.access-map {
  padding-block: clamp(4rem, 6vw, 6rem);
  text-align: center;
}
.access-map .container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.6rem;
}
.access-map-image {
  margin-bottom: 2rem;
}
.access-map-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.access-map-image a:hover img {
  opacity: 0.85;
}
@media (min-width: 768px) {
  .access-map-image {
    margin-bottom: 2.4rem;
  }
}

.access-map-text {
  font-size: clamp(1.4rem, 2.4vw, 1.6rem);
  color: var(--color-text);
  line-height: 1.8;
  text-align: left;
}
.access-map-text p + p {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .access-map-text {
    font-size: 1.6rem;
  }
}

.section-terms {
  padding-block: clamp(3rem, 5vw, 4rem);
}

.section-subheading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.6rem;
}
@media (min-width: 768px) {
  .section-subheading-wrap {
    gap: 1.6rem;
  }
}

.section-subheading {
  font-weight: 700;
  font-size: clamp(2.4rem, 3vw, 4rem);
  color: #8a7f6a;
}

.section-subheading-line {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 8rem;
          flex: 0 1 8rem;
  height: 1px;
  background: #8a7f6a;
}
@media (min-width: 768px) {
  .section-subheading-line {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12rem;
            flex: 0 1 12rem;
  }
}

.section-link a {
  color: #519776;
  font-size: clamp(2.2rem, 2.4vw, 2.6rem);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.section-link a:hover {
  opacity: 0.7;
}

.policy-section {
  margin-bottom: clamp(2rem, 3.5vw, 4.2rem);
}
.policy-section .policy-section-title {
  font-size: clamp(1.5rem, 2.4vw, 1.6rem);
  font-weight: normal;
}
.policy-section p {
  font-size: clamp(1.5rem, 2.4vw, 1.6rem);
}

.policy-footer-sign {
  margin-top: clamp(3rem, 5vw, 5rem);
  text-align: right;
  font-size: clamp(1.4rem, 2.4vw, 1.6rem);
  color: var(--color-text-light);
  line-height: 1.6;
}

@layer utility {
  .u-mt-30 {
    margin-top: 3rem !important;
  }
  .u-mt-40 {
    margin-top: 4rem !important;
  }
  .u-text-center {
    text-align: center !important;
  }
  .no-scroll {
    overflow: hidden !important;
  }
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
  .max-1200 {
    max-width: 120rem;
    margin-inline: auto;
  }
  .max-1100 {
    max-width: 110rem;
    margin-inline: auto;
  }
  .max-950 {
    max-width: 95rem;
    margin-inline: auto;
  }
  .max-800 {
    max-width: 80rem;
    margin-inline: auto;
  }
  @media (min-width: 768px) {
    .br-sp {
      display: none;
    }
    .br-pc {
      display: inline;
    }
  }
}
@media (min-width: 821px) {
  .max-1200, .max-1100, .max-950, .max-800 {
    padding-inline: 0;
  }
}/*# sourceMappingURL=styles.css.map */