@charset "UTF-8";
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #FDFDFD;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/noto-sans-jp-v56-japanese_latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/noto-sans-jp-v56-japanese_latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/noto-sans-jp-v56-japanese_latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("..assets//fonts/roboto-v50-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("..assets//fonts/roboto-v50-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("..assets//fonts/roboto-v50-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.l-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .l-container {
    padding-inline: 40px;
  }
}
@media (min-width: 1024px) {
  .l-container {
    padding-inline: 0;
  }
}

.l-section {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .l-section {
    padding-block: 80px;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: block;
  }
}
@media (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .sp-none {
    display: block;
  }
}

.section-heading__label {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  color: #ffffff;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #111111;
}
.site-header.is-sticky .site-header__tagline,
.site-header.is-sticky .site-header__company-name,
.site-header.is-sticky .site-header__nav-link,
.site-header.is-sticky .site-header__tel-link,
.site-header.is-sticky .site-header__tel-note {
  color: #111111;
}
.site-header.is-sticky .site-header__tel-note {
  opacity: 0.85;
}
.site-header.is-sticky .site-header__nav-link:hover {
  opacity: 0.75;
}
.site-header.is-sticky .site-header__tel-link:hover {
  opacity: 0.75;
}
.site-header.is-sticky .site-header__tel-icon img {
  filter: brightness(0);
}
.site-header.is-sticky .site-header__toggle {
  color: #111111;
}
.site-header.is-sticky .site-header__btn--primary,
.site-header.is-sticky .site-header__btn--primary .site-header__btn-text {
  color: #ffffff;
}
.site-header.is-sticky .site-header__btn--accent {
  color: #111111;
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 0;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .site-header__inner {
    flex-wrap: nowrap;
    padding-left: 40px;
    height: 100px;
  }
}

.site-header.is-sticky .site-header__inner {
  padding-bottom: 0;
  height: 65px;
}
@media (min-width: 1024px) {
  .site-header.is-sticky .site-header__inner {
    height: 89px;
  }
}

.site-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .site-header__right {
    gap: 24px;
  }
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px;
}

.site-header__brand-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.site-header__brand-link:hover, .site-header__brand-link:focus {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.site-header__tagline {
  margin: 0;
  font-size: 10px;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__tagline {
    display: block;
  }
}

.site-header__logo-image {
  display: block;
  height: 34px;
  width: auto;
}
@media (min-width: 1024px) {
  .site-header__logo-image {
    height: 40px;
  }
}

.site-header__company-name {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .site-header__company-name {
    font-size: 18px;
  }
}

.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: block;
  }
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-item--has-submenu .site-header__nav-link {
  padding-right: 16px;
}
.site-header__nav-item--has-submenu .site-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  width: 8px;
  height: 8px;
}

.site-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 4px 0;
  padding-top: 8px;
  list-style: none;
  background: #005bac;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 10;
}
.site-header__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}

.site-header__nav-item--has-submenu:hover .site-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__submenu-item {
  margin: 0;
}

.site-header__submenu-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}
.site-header__submenu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header__nav-link {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-header__nav-link:hover {
  opacity: 0.85;
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .site-header__actions {
    display: flex;
  }
}

.site-header__btns {
  display: flex;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 1024px) {
  .site-header__btns {
    height: 90px;
  }
}

.site-header__tel {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    white-space: nowrap;
  }
}

.site-header__tel-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header__tel-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.site-header__tel-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.site-header__tel-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}
.site-header__tel-link:hover {
  opacity: 0.9;
}

.site-header__tel-note {
  font-size: 12px;
  opacity: 0.9;
}

.site-header__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}
.site-header__btn:hover {
  opacity: 0.9;
}
@media (min-width: 1024px) {
  .site-header__btn {
    min-height: 40px;
    padding: 8px 14px;
  }
}

.site-header__btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-header__btn-icon {
    width: 22px;
    height: 22px;
  }
}

.site-header__btn-text {
  display: block;
  line-height: 1.2;
  color: #ffffff;
}

.site-header__btn--primary {
  background: #005BAC;
  color: #ffffff;
}

.site-header__btn--accent {
  background: #EB9A1A;
  color: #111111;
}

.site-header__drawer {
  display: block;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .site-header__drawer {
    display: none;
  }
}

.site-header__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: 0.3s ease;
}
.site-header__toggle::-webkit-details-marker {
  display: none;
}
.site-header__toggle {
  /* 通常時：左揃え・上25px/中21px/下17px・縦は50%基準で等間隔（±7px） */
}
.site-header__toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 2px;
  margin-left: -12.5px; /* 左端を基準に（最長線の半分） */
  margin-top: -8px; /* 上線の中心が 50%-7px になるよう */
  background: currentColor;
  transition: 0.3s ease;
  transform-origin: left center;
}
.site-header__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 2px;
  margin-left: -12.5px; /* 左端を上・中と揃える */
  margin-top: 6px; /* 下線の中心が 50%+7px になるよう */
  background: currentColor;
  transition: 0.3s ease;
  transform-origin: left center;
}

.site-header.is-sticky .site-header__toggle {
  color: #005BAC;
}

.site-header__toggle-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 2px;
  margin-left: -12.5px; /* 左端を上・下と揃える */
  margin-top: -1px; /* 中央線の中心が 50% に */
  background: currentColor;
  transition: 0.3s ease;
  transform-origin: left center;
}

.site-header__drawer[open] .site-header__toggle::before {
  width: 22px;
  margin-left: -11px;
  margin-top: 0;
  transform: rotate(45deg);
  transform-origin: center center; /* ×は中央で交わるよう現状維持 */
}
.site-header__drawer[open] .site-header__toggle::after {
  content: "";
  position: absolute;
  width: 22px;
  margin-left: -11px;
  margin-top: 0;
  transform: rotate(-45deg);
  transform-origin: center center;
}
.site-header__drawer[open] .site-header__toggle .site-header__toggle-line {
  opacity: 0;
  pointer-events: none;
}

.site-header__drawer-panel {
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 80px);
  height: 100vh;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .site-header__drawer-panel {
    transition: none;
  }
}

.site-header__drawer.is-open .site-header__drawer-panel,
.site-header__drawer[open].is-open .site-header__drawer-panel {
  transform: translateX(0);
}

.site-header__drawer.is-closing .site-header__drawer-panel {
  transform: translateX(100%);
}

body.is-drawer-open {
  overflow: hidden;
}

.site-header__drawer-nav .site-header__nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.site-header__drawer-nav .site-header__nav-list--drawer {
  border-bottom: 1px solid #D9D9D9;
}
.site-header__drawer-nav .site-header__nav-item--has-submenu .site-header__nav-link::after {
  display: none;
}
.site-header__drawer-nav .site-header__nav-link--drawer {
  display: block;
  padding: 16px 24px;
  color: #111111;
  border-bottom: 1px solid #D9D9D9;
}
.site-header__drawer-nav .site-header__nav-link--drawer:hover {
  background: rgba(0, 91, 172, 0.06);
}
.site-header__drawer-nav .site-header__submenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  min-width: auto;
  padding: 0 0 8px 16px;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.site-header__drawer-nav .site-header__submenu-link {
  padding: 8px 24px;
  border-bottom: none;
  font-size: 14px;
  color: #111111;
}
.site-header__drawer-nav .site-header__submenu-link:hover {
  background: rgba(0, 91, 172, 0.06);
}
.site-header__drawer-nav .site-header__nav-link {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid #D9D9D9;
  color: #111111;
  font-weight: 500;
}
.site-header__drawer-nav .last-link {
  border-bottom: none;
}
.site-header__drawer-nav .site-header__submenu-item .site-header__submenu-link {
  border-left: none;
}

.site-header__drawer-sub {
  border-bottom: 1px solid #D9D9D9;
}
.site-header__drawer-sub[open] .site-header__drawer-sub-icon {
  transform: rotate(45deg);
}

/* JSで height を制御。grid 方式は使わない */
.site-header__drawer-sub-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.25s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .site-header__drawer-sub-panel {
    transition: none;
  }
}

.site-header__drawer-sub-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  list-style: none;
  transition: 0.3s ease;
}
.site-header__drawer-sub-summary:hover {
  background: rgba(0, 91, 172, 0.06);
}
.site-header__drawer-sub-summary::-webkit-details-marker {
  display: none;
}

.site-header__drawer-sub-label {
  flex: 1;
}

.site-header__drawer-sub-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #666666;
  transition: transform 0.3s ease;
}

.site-header__drawer-sub .site-header__submenu {
  padding: 0 0 8px 0;
  margin-left: 8px;
}

.site-header__drawer-sub .site-header__submenu-item {
  margin: 0;
}

.site-header__drawer-sub .site-header__submenu-link {
  padding: 8px 16px;
}

.site-header__drawer-cta {
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #F0FBFF;
  margin: 32px 0;
}

.site-header__drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 88%;
  min-height: 48px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-header__drawer-cta-btn::after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: currentColor;
  margin-left: 4px;
}

.site-header__drawer-cta-btn--primary {
  background: #005BAC;
  color: #ffffff;
}
.site-header__drawer-cta-btn--primary:hover {
  opacity: 0.9;
}

.site-header__drawer-cta-btn--accent {
  background: #EB9A1A;
  color: #ffffff;
}
.site-header__drawer-cta-btn--accent:hover {
  opacity: 0.9;
}

.site-header__drawer-tel {
  padding: 4px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 91, 172, 0.25);
  border-radius: 4px;
  text-align: center;
}
.site-header__drawer-tel .site-header__drawer-tel-label,
.site-header__drawer-tel .site-header__drawer-tel-note {
  margin: 0;
  font-size: 14px;
  color: #111111;
}
.site-header__drawer-tel .site-header__drawer-tel-number {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
}
.site-header__drawer-tel .site-header__drawer-tel-number a {
  color: #005BAC;
  text-decoration: none;
}
.site-header__drawer-tel .site-header__drawer-tel-number a:hover {
  text-decoration: underline;
}
.site-header__drawer-tel .site-header__drawer-tel-note {
  margin-top: 4px;
  font-size: 12px;
  color: #666666;
}

.section-heading {
  text-align: center;
}

.section-heading__heading {
  margin: 0;
}
.section-heading__heading .section-heading__label,
.section-heading__heading .section-heading__title {
  display: block;
}

.section-heading__label {
  font-size: 14px;
  font-weight: 400;
  color: #005BAC;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .section-heading__label {
    font-size: 24px;
  }
}

.section-heading__title {
  position: relative;
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #CBCBCB;
}
@media (min-width: 1024px) {
  .section-heading__title {
    font-size: 100px;
  }
}

.section-heading__title-accent {
  color: #005BAC;
}

.title-underline {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .title-underline {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.title-underline::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #005BAC;
}

.read-more {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #005BAC;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}
.read-more:hover {
  opacity: 0.85;
}
.read-more {
  /* 横線（本体） */
}
.read-more::after {
  content: "";
  display: inline-block;
  width: 84px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  margin-left: 8px;
  position: relative;
  top: 1px;
}
.read-more {
  /* 斜め線（右端で45度に落ちる線） */
}
.read-more::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 24px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  pointer-events: none;
}

.sp-btn {
  display: block;
}
@media (min-width: 768px) {
  .sp-btn {
    display: block;
  }
}
@media (min-width: 1024px) {
  .sp-btn {
    display: none;
  }
}

.pc-btn {
  display: none;
}
@media (min-width: 768px) {
  .pc-btn {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pc-btn {
    display: block;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0;
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .service-card {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .service-card {
    overflow: visible;
    padding: 16px 32px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #005BAC;
  border: none;
  border-radius: 4px;
  transition: 0.3s ease;
  cursor: pointer;
}
.button:hover {
  opacity: 0.9;
}

.button__icon {
  display: inline-flex;
  align-items: center;
}

.site-cta {
  position: relative;
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .site-cta {
    padding-block: 80px;
  }
}

.site-cta__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("../assets/images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.site-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-block: 24px;
}

.site-cta__panel {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 32px;
}
@media (min-width: 1024px) {
  .site-cta__panel {
    flex-direction: row;
    align-items: center;
    padding: 48px 64px;
    gap: 32px;
  }
}

.site-cta__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .site-cta__left {
    flex: 1;
    gap: 24px;
    width: 48%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .site-cta__left .section-heading {
    text-align: left;
  }
}

.site-cta__text p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
.site-cta__text p + p {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .site-cta__text p {
    font-size: 16px;
  }
}

.site-cta__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-cta__right {
    flex: 0 0 auto;
    width: 35%;
    gap: 32px;
  }
}

.site-cta__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.site-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  /* 横線（Read More と同じ） */
}
.site-cta__button::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  margin-left: 8px;
  position: absolute;
  top: 35px;
  right: 23px;
}
.site-cta__button {
  /* 斜め矢印（Read More と同じ） */
}
.site-cta__button::before {
  content: "";
  position: absolute;
  right: 32px;
  top: 36px;
  right: 22px;
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  pointer-events: none;
}
.site-cta__button:hover {
  opacity: 0.9;
}

.site-cta__button--primary {
  background-color: #005BAC;
}

.site-cta__button--accent {
  background-color: #EB9A1A;
  color: #ffffff;
}

.site-cta__tel {
  padding: 16px 24px;
  border: 2px solid #005BAC;
  border-radius: 6px;
  text-align: center;
}

.site-cta__tel-number {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #005BAC;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .site-cta__tel-number {
    font-size: 32px;
  }
}

.site-cta__tel-note {
  margin: 4px 0 0 0;
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
}

.site-footer {
  background-color: #005BAC;
  color: #ffffff;
  padding-block: 32px 24px;
}
@media (min-width: 1024px) {
  .site-footer {
    padding-block: 32px 24px;
  }
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 48px;
    align-items: start;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .site-footer__brand {
    align-items: flex-start;
  }
}

.site-footer__slogan {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .site-footer__slogan {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .site-footer__slogan {
    font-size: 12px;
  }
}

.site-footer__brand-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer__brand-row {
    margin-bottom: 24px;
    text-align: left;
  }
}

.site-footer__brand-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.site-footer__brand-link:hover, .site-footer__brand-link:focus {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
.site-footer__brand-link picture,
.site-footer__brand-link img {
  display: block;
  flex-shrink: 0;
}
.site-footer__brand-link img {
  height: 40px;
  width: auto;
  max-width: 160px;
}

.site-footer__company-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.site-footer__info p {
  margin: 0;
  font-size: 14px;
}

.site-footer__address {
  color: #ffffff;
}

.site-footer__tel a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer__tel a:hover {
  text-decoration: underline;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.site-footer__badges img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 24px 8px;
}
@media (min-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .site-footer__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 5px;
    align-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .site-footer__nav-group {
    min-width: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .site-footer__nav-group:not(:last-child) {
    margin-right: 24px;
  }
}

.site-footer__nav-group--double {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-footer__nav-group--double {
    gap: 32px;
  }
}

.site-footer__nav-row .site-footer__nav-title {
  margin-bottom: 8px;
}

.site-footer__nav-title {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-item {
  margin: 0;
}

.site-footer__nav-link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}
.site-footer__nav-link:hover {
  opacity: 0.85;
}

.site-footer__nav-link--parent {
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .site-footer__nav-link--parent {
    font-size: 14px;
  }
}

.site-footer__nav-link--child {
  font-size: 12px;
  font-weight: 400;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.9;
}

.page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 768px) {
  .page-hero {
    min-height: 350px;
  }
}
@media (min-width: 1024px) {
  .page-hero {
    min-height: 420px;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../assets/images/intercom-top.webp") center/cover no-repeat;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 280px;
  padding-top: 48px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .page-hero__inner {
    min-height: 350px;
  }
}
@media (min-width: 1024px) {
  .page-hero__inner {
    min-height: 420px;
    padding-bottom: 80px;
  }
}

.page-hero__title-block {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.page-hero__headings {
  display: flex;
  flex-direction: column;
}

.page-hero__title-en {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-hero__title-en {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  .page-hero__title-en {
    font-size: 92px;
  }
}

.page-hero__title-en-accent {
  color: #005BAC;
}

.page-hero__title-ja {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .page-hero__title-ja {
    font-size: 24px;
  }
}

.page-card {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .page-card {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.page-card__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-page.webp") center/cover no-repeat;
}

.page-card__inner {
  position: relative;
  z-index: 1;
}

.page-card__panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 16px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .page-card__panel {
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    padding: 32px 24px;
    border-radius: 16px;
  }
}

.page-card__content {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .page-card__content {
    width: 48%;
  }
}

.page-card__titlebar {
  margin-bottom: 16px;
  padding: 16px;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .page-card__titlebar {
    margin-bottom: 24px;
  }
}

.page-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .page-card__title {
    font-size: 20px;
  }
}

.page-card__text p {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .page-card__text p {
    font-size: 16px;
  }
}
.page-card__text p:last-child {
  margin-bottom: 0;
}

.page-card__text-note {
  margin-top: 24px !important;
  line-height: 2 !important;
}

.page-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
}
.page-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .page-card__list li {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.page-card__list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-card__list li br {
    display: none;
  }
}

.page-card__check {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  object-fit: contain;
}

.page-card__media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .page-card__media {
    width: 48%;
  }
}

.page-card__image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-card__image {
    width: 100%;
    max-height: 400px;
  }
}
@media (min-width: 1024px) {
  .page-card__image {
    width: 100%;
    max-height: 400px;
  }
}

.site-main {
  background-color: #FDFDFD;
}

.home-hero__inner {
  padding-top: 90px;
}
@media (min-width: 1024px) {
  .home-hero__inner {
    padding-top: 110px;
  }
}

.home-hero {
  scroll-margin-top: 90px;
}
@media (min-width: 1024px) {
  .home-hero {
    scroll-margin-top: 110px;
  }
}

.home-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: 85.5vh;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45)), url("../assets/images/top-hero.webp") center/cover no-repeat;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 85.5vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 16px;
  padding-top: 48px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .home-hero__inner {
    gap: 24px;
    padding-bottom: 20px;
  }
}

.home-hero__title {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 40px;
}
@media (min-width: 1024px) {
  .home-hero__title {
    font-size: 64px;
  }
}

@media (min-width: 768px) {
  .home-hero__title br {
    display: none;
  }
}

.home-hero__subtitle {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .home-hero__subtitle {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .home-hero__subtitle br {
    display: none;
  }
}

.home-hero__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 2;
  opacity: 0.95;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .home-hero__text {
    max-width: 740px;
  }
}
.home-hero__text p {
  margin: 0;
}
.home-hero__text p + p {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .home-hero__text {
    font-size: 16px;
  }
}

.home-about {
  position: relative;
  padding-block: 50px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .home-about {
    padding-block: 80px;
    padding-bottom: 0;
  }
}

.home-about__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-1.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.home-about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .home-about__inner {
    gap: 0;
  }
}

.home-about__header {
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .home-about__header {
    margin-bottom: 16px;
  }
}

.home-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .home-about__content {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

.home-about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .home-about__body {
    flex: 1;
    max-width: 55%;
    gap: 24px;
  }
}

.home-about__heading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-about__heading {
    font-size: 24px;
    text-align: left;
  }
}

.home-about__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #111111;
}
@media (min-width: 768px) {
  .home-about__lead {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .home-about__lead {
    font-size: 20px;
  }
}

.home-about__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .home-about__text {
    font-size: 16px;
  }
}

.home-about__link {
  margin-top: 8px;
  align-self: flex-end;
}

.home-about__figure {
  margin: 0;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-about__figure {
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 45%;
  }
}
.home-about__figure .read-more {
  align-self: center;
}

.home-about__image {
  display: block;
  max-width: 100%;
  width: 80%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home-about__image {
    width: 55%;
  }
}
@media (min-width: 1024px) {
  .home-about__image {
    max-width: 420px;
    width: auto;
  }
}

.home-services {
  padding-top: 50px;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .home-services {
    padding-block: 80px;
  }
}

.home-services .section-heading {
  text-align: center;
}
@media (min-width: 1024px) {
  .home-services .section-heading {
    text-align: left;
  }
}

.home-services__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .home-services__inner {
    gap: 40px;
  }
}

.home-services__header {
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .home-services__header {
    margin-bottom: 16px;
  }
}

.home-services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .home-services__list {
    gap: 100px;
  }
}

@media (min-width: 1024px) {
  .card-left {
    max-width: 90%;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .service-card--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .service-card--reverse {
    max-width: 90%;
    margin-left: auto;
  }
}

.service-card__media {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-card__media {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .service-card__media {
    width: 55%;
    position: relative;
    z-index: 0;
  }
}

.service-card__image {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .service-card__image {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .service-card__image {
    height: 450px;
  }
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  max-width: 95%;
  margin: 0 auto;
  transform: translateY(-48px);
}
@media (min-width: 768px) {
  .service-card__body {
    flex: 1;
    justify-content: center;
    padding: 24px;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .service-card__body {
    transform: translateY(32px);
    z-index: 1;
    max-width: 45%;
  }
}

@media (min-width: 1024px) {
  .service-card--reverse .service-card__body {
    transform: translateY(32px);
  }
}

.service-card__title {
  margin: 0;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  background: #005BAC;
  text-align: center;
}
@media (min-width: 768px) {
  .service-card__title {
    font-size: 24px;
    padding: 16px 24px;
  }
}

.service-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 768px) {
  .service-card__text {
    font-size: 16px;
  }
}

.service-card__link {
  margin-top: 4px;
  align-self: flex-end;
}

.service-flex-card {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .service-flex-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .service-flex-card--reverse {
    flex-direction: row-reverse;
  }
}

.service-flex-card .service-card__media {
  position: relative;
  z-index: 0;
  height: auto;
}

.service-flex-card .service-card__body {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .service-flex-card .service-card__body {
    transform: translate(-50px, 80px);
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .service-flex-card--reverse .service-card__body {
    transform: translate(50px, 80px);
  }
}

.home-flow {
  background-color: #ffffff;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .home-flow {
    padding-block: 120px;
  }
}

.home-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .home-flow__inner {
    gap: 40px;
  }
}

.home-flow__title {
  margin-bottom: 8px;
  width: 100%;
}
@media (min-width: 1024px) {
  .home-flow__title {
    margin-bottom: 16px;
  }
}

.home-flow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: 100%;
}
@media (min-width: 1024px) {
  .home-flow__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.home-flow__step {
  position: relative;
}
.home-flow__step:nth-child(1)::after, .home-flow__step:nth-child(3)::after, .home-flow__step:nth-child(5)::after, .home-flow__step:nth-child(7)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #005BAC;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .home-flow__step:nth-child(1)::after, .home-flow__step:nth-child(2)::after, .home-flow__step:nth-child(3)::after, .home-flow__step:nth-child(5)::after, .home-flow__step:nth-child(6)::after, .home-flow__step:nth-child(7)::after {
    content: "▶";
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #005BAC;
    pointer-events: none;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  min-height: 120px;
}
@media (min-width: 1024px) {
  .step-card {
    padding: 32px;
    min-height: 200px;
  }
}

.step-card__number {
  display: block;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #005BAC;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .step-card__number {
    font-size: 40px;
  }
}

.step-card__title {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .step-card__title {
    font-size: 16px;
    margin: 0 0 16px 0;
  }
}

.step-card__icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .step-card__icon {
    width: 80px;
    height: 80px;
  }
}

.home-flow__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.home-flow__cta-link {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px 16px 48px;
  font-size: 16px;
  font-weight: 700;
  color: #005BAC;
  background-color: transparent;
  border: 2px solid #005BAC;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
}
.home-flow__cta-link:hover {
  color: #ffffff;
  background-color: #005BAC;
}
.home-flow__cta-link {
  /* 横線（Read More と同じ） */
}
.home-flow__cta-link::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  position: relative;
  top: 1px;
  left: 16px;
}
.home-flow__cta-link {
  /* 斜め矢印（Read More と同じ） */
}
.home-flow__cta-link::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 38%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  pointer-events: none;
}

.intercom-classification {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #FDFDFD;
}
@media (min-width: 1024px) {
  .intercom-classification {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.intercom-classification__heading {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .intercom-classification__heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.intercom-classification__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #005BAC;
}

.intercom-classification__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.intercom-classification__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-classification__table {
    font-size: 16px;
  }
}
.intercom-classification__table thead tr {
  background-color: #F0FBFF;
}
.intercom-classification__table thead th {
  padding: 14px 16px;
  font-weight: 700;
  text-align: left;
  border: 1px solid #D9D9D9;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .intercom-classification__table thead th {
    padding: 16px 18px;
  }
}
.intercom-classification__table tbody td {
  padding: 14px 16px;
  border: 1px solid #D9D9D9;
  vertical-align: middle;
  word-break: normal;
  overflow-wrap: break-word;
}
@media (min-width: 1024px) {
  .intercom-classification__table tbody td {
    padding: 16px 18px;
  }
}

.intercom-products {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .intercom-products {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.intercom-products__heading {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-products__heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.intercom-products__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #005BAC;
}

.intercom-products__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .intercom-products__list {
    gap: 80px;
  }
}

.intercom-product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .intercom-product {
    gap: 48px;
  }
}

.intercom-product__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .intercom-product__top {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 48px;
  }
}

.intercom-product__image {
  flex-shrink: 0;
}
.intercom-product__image img {
  display: block;
  width: 80%;
  margin: 0 auto;
  background-color: #D9D9D9;
}
@media (min-width: 768px) {
  .intercom-product__image img {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .intercom-product__image img {
    width: 100%;
  }
}

.intercom-product__body {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .intercom-product__body {
    max-width: 48%;
  }
}

.intercom-product__name {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 768px) {
  .intercom-product__name {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .intercom-product__name {
    font-size: 24px;
    text-align: left;
  }
}

.intercom-product__lead {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-product__lead {
    font-size: 16px;
  }
}

.intercom-product__desc {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-product__desc {
    font-size: 16px;
  }
}
.intercom-product__desc p {
  margin: 0 0 16px 0;
}
.intercom-product__desc p:last-child {
  margin-bottom: 0;
}

.black-medium {
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 768px) {
  .black-medium {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .black-medium {
    text-align: left;
  }
}

.intercom-product__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .intercom-product__points {
    gap: 48px;
  }
}

.intercom-point {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .intercom-point {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .intercom-point--p1 .intercom-point__content {
    order: 1;
  }
  .intercom-point--p1 .intercom-point__media {
    order: 2;
  }
}

.intercom-point--p2 .intercom-point__thumbs,
.intercom-point--p2 .intercom-point__media {
  order: 1;
}
@media (min-width: 1024px) {
  .intercom-point--p2 .intercom-point__thumbs,
  .intercom-point--p2 .intercom-point__media {
    order: 1;
  }
  .intercom-point--p2 .intercom-point__content {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .intercom-point--p3 .intercom-point__content {
    order: 1;
  }
  .intercom-point--p3 .intercom-point__media {
    order: 2;
  }
}

.intercom-point__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) {
  .intercom-point__content {
    max-width: 52%;
  }
}

.intercom-point__label {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .intercom-point__label {
    font-size: 20px;
  }
}

.intercom-point__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-point__title {
    font-size: 16px;
  }
}

.intercom-point__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-point__text {
    font-size: 16px;
  }
}

.intercom-point__media {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .intercom-point__media {
    width: 40%;
  }
}
.intercom-point__media img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .intercom-point__media img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .intercom-point__media img {
    width: 100%;
  }
}

.intercom-point__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .intercom-point__thumbs {
    flex-direction: row;
    width: 40%;
  }
}
.intercom-point__thumbs img {
  display: block;
  width: 100%;
  object-fit: cover;
  background-color: #D9D9D9;
}
@media (min-width: 768px) {
  .intercom-point__thumbs img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .intercom-point__thumbs img {
    width: 100%;
  }
}

.intercom-flow {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .intercom-flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.intercom-flow__header {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .intercom-flow__header {
    margin-bottom: 48px;
  }
}

.intercom-flow__header .section-heading {
  text-align: center;
}

.intercom-flow__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .intercom-flow__list {
    max-width: 980px;
    margin: 0 auto;
  }
}
.intercom-flow__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 2px;
  border-left: 3px dashed #005BAC;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .intercom-flow__list::before {
    display: block;
    left: 140px;
  }
}

.intercom-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .intercom-flow__item {
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 80px;
  }
}
.intercom-flow__item:last-child {
  margin-bottom: 0;
}

.intercom-flow__step {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: #F0FBFF;
  border-radius: 4px 0 0 4px;
}
@media (min-width: 1024px) {
  .intercom-flow__step {
    width: 280px;
    padding: 32px;
  }
}

.intercom-flow__step-no {
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .intercom-flow__step-no {
    font-size: 24px;
  }
}

.intercom-flow__step-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .intercom-flow__step-title {
    font-size: 20px;
  }
}

.intercom-flow__icon {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .intercom-flow__icon {
    width: 80px;
    height: 80px;
  }
}

.intercom-flow__body {
  flex: 1;
  min-width: 0;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .intercom-flow__body {
    padding: 32px;
  }
}

.intercom-flow__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
}
.intercom-flow__bullets li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .intercom-flow__bullets li {
    font-size: 16px;
  }
}
.intercom-flow__bullets li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #005BAC;
}
.intercom-flow__bullets li:last-child {
  margin-bottom: 0;
}

.page-hero--autolock .page-hero__bg {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../assets/images/autolock-top.webp") center 20%/cover no-repeat;
}

.autolock-benefits {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .autolock-benefits {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.block-autolock-intro {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-intro {
    padding-block: 80px;
  }
}

.block-autolock-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-intro__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
  text-align: center;
}
@media (min-width: 1024px) {
  .block-autolock-intro__lead {
    font-size: 24px;
  }
}

.block-autolock-intro__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .block-autolock-intro__content {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 32px;
  }
}

.block-autolock-intro__figure {
  margin: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .block-autolock-intro__figure {
    flex: 0 0 52%;
    min-width: 0;
  }
}

.block-autolock-intro__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.block-autolock-intro__body {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-intro__body {
    flex: 1 1 0;
  }
}

.block-autolock-intro__title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-autolock-intro__title {
    font-size: 24px;
  }
}

.block-autolock-intro__text p {
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 2;
  color: #111111;
}
.block-autolock-intro__text p:last-child {
  margin-bottom: 0;
}

.autolock-scenes {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .autolock-scenes {
    padding-block: 80px;
  }
}

.autolock-scenes__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.autolock-scenes__heading {
  margin: 0 0 32px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .autolock-scenes__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

.autolock-scenes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .autolock-scenes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.autolock-scenes__item {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.autolock-scenes__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 16px;
}

.autolock-scenes__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #005BAC;
}

.autolock-scenes__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #111111;
  text-align: left;
}

.block-autolock-scenarios {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-scenarios {
    padding-block: 80px;
  }
}

.block-autolock-scenarios__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-scenarios__heading {
  text-align: center;
}

.block-autolock-scenarios__heading-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-scenarios__heading-text {
    font-size: 24px;
  }
}

.block-autolock-scenarios__heading-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #005BAC;
}

.block-autolock-scenarios__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .block-autolock-scenarios__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .block-autolock-scenarios__grid {
    flex-wrap: nowrap;
    gap: 32px;
  }
}

.block-autolock-scenarios__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .block-autolock-scenarios__card {
    flex: 1 1 calc(50% - 32px / 2);
  }
}
@media (min-width: 1024px) {
  .block-autolock-scenarios__card {
    flex: 1 1 0;
  }
}

.block-autolock-scenarios__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
}

.block-autolock-scenarios__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .block-autolock-scenarios__title {
    font-size: 16px;
  }
}

.block-autolock-scenarios__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #666666;
}
@media (min-width: 1024px) {
  .block-autolock-scenarios__text {
    font-size: 16px;
  }
}

.block-autolock-apartment-intro {
  position: relative;
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro {
    padding-block: 80px;
  }
}

.block-autolock-apartment-intro__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-page.webp") center/cover no-repeat;
}

.block-autolock-apartment-intro__inner {
  position: relative;
  z-index: 1;
}

.block-autolock-apartment-intro__heading {
  text-align: center;
  margin-bottom: 32px;
}

.block-autolock-apartment-intro__heading-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__heading-text {
    font-size: 24px;
  }
}

.block-autolock-apartment-intro__heading-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background-color: #005BAC;
}

.block-autolock-apartment-intro__panel {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__panel {
    padding: 48px;
  }
}

.block-autolock-apartment-intro__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__content {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    align-items: flex-start;
  }
}

.block-autolock-apartment-intro__left {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__left {
    flex: 0 0 55%;
    padding-right: 48px;
    border-right: 1px solid #D9D9D9;
  }
}

.block-autolock-apartment-intro__label {
  margin: 0 0 24px 0;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__label {
    font-size: 16px;
  }
}

.block-autolock-apartment-intro__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
}
.block-autolock-apartment-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__list li {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.block-autolock-apartment-intro__list li:last-child {
  margin-bottom: 0;
}

.block-autolock-apartment-intro__check {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  object-fit: contain;
}

.block-autolock-apartment-intro__right {
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .block-autolock-apartment-intro__right {
    flex: 0 0 45%;
    padding-left: 48px;
  }
}

.block-autolock-apartment-intro__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
}

.block-autolock-suggest {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-suggest {
    padding-block: 80px;
  }
}

.block-autolock-suggest__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-suggest__heading {
  text-align: center;
}

.block-autolock-suggest__heading-text {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__heading-text {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.block-autolock-suggest__lead {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__lead {
    font-size: 16px;
  }
}

.block-autolock-suggest__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__content {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    align-items: flex-start;
  }
}

.block-autolock-suggest__left {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__left {
    flex: 0 0 55%;
    padding-right: 48px;
  }
}

.block-autolock-suggest__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
}

.block-autolock-suggest__right {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__right {
    flex: 0 0 45%;
    padding-left: 48px;
  }
}

.block-autolock-suggest__title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__title {
    font-size: 18px;
    text-align: left;
  }
}

.block-autolock-suggest__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block-autolock-suggest__item {
  display: flex;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}

.block-autolock-suggest__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background-color: #EB9A1A;
}

.block-autolock-suggest__text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-suggest__text {
    font-size: 16px;
  }
}

.block-autolock-features {
  padding-block: 50px;
  background-color: #F0FBFF;
}
@media (min-width: 1024px) {
  .block-autolock-features {
    padding-block: 80px;
  }
}

.block-autolock-features__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-features__heading {
  text-align: center;
}
.block-autolock-features__heading h2 {
  margin: 0 0 16px 0;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-features__heading h2 {
    margin-bottom: 24px;
  }
}

.block-autolock-features__lead {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .block-autolock-features__lead {
    font-size: 16px;
  }
}

.block-autolock-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.block-autolock-features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
}
@media (min-width: 1024px) {
  .block-autolock-features__item {
    padding: 24px;
  }
}

.block-autolock-features__icon {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .block-autolock-features__icon {
    max-width: 80px;
  }
}

.block-autolock-features__title {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-autolock-features__title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.block-autolock-features__text {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  text-align: center;
  color: #666666;
}
@media (min-width: 1024px) {
  .block-autolock-features__text {
    font-size: 14px;
  }
}

.block-autolock-before-after {
  position: relative;
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .block-autolock-before-after {
    padding-block: 80px;
  }
}
.block-autolock-before-after::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(240, 251, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.block-autolock-before-after__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-before-after__lead {
  margin: 0 auto;
  line-height: 2;
}
@media (min-width: 1024px) {
  .block-autolock-before-after__lead {
    font-size: 16px;
    text-align: center;
  }
}

.block-autolock-before-after__figure {
  margin: 32px 0 0;
  display: flex;
  justify-content: center;
}

.block-autolock-before-after__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .block-autolock-before-after__image {
    max-width: 960px;
  }
}

.block-autolock-expert-intro {
  position: relative;
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-expert-intro {
    padding-block: 80px;
  }
}

.block-autolock-expert-intro__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-page.webp") center/cover no-repeat;
}

.block-autolock-expert-points {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points {
    padding-block: 80px;
  }
}

.block-autolock-expert-points__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-autolock-expert-points__heading-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto 24px;
  background-color: #005BAC;
}

.block-autolock-expert-points__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    align-items: flex-start;
  }
}

.block-autolock-expert-points__left {
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__left {
    flex: 0 0 55%;
  }
}

.block-autolock-expert-points__item {
  margin-bottom: 32px;
  min-width: 0;
}
.block-autolock-expert-points__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .block-autolock-expert-points__head {
    display: flex;
    align-items: flex-end;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__head {
    display: flex;
    align-items: flex-end;
    gap: 24px;
  }
}

.block-autolock-expert-points__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__meta {
    flex: 0 0 48px;
    min-width: 48px;
  }
}

.block-autolock-expert-points__point {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #005BAC;
  letter-spacing: 0.05em;
}

.block-autolock-expert-points__number {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__number {
    font-size: 48px;
  }
}

.block-autolock-expert-points__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__title {
    font-size: 24px;
  }
}

.block-autolock-expert-points__rule {
  height: 2px;
  width: 100%;
  margin: 16px 0;
  background-color: #005BAC;
}

.block-autolock-expert-points__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__text {
    font-size: 16px;
  }
}

.block-autolock-expert-points__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__right {
    flex: 0 0 45%;
  }
}

.block-autolock-expert-points__photo {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}
.block-autolock-expert-points__photo img {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__photo img {
    height: auto;
    display: block;
  }
}

.block-autolock-expert-points__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__bottom {
    max-width: 980px;
    margin: 50px auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 32px;
  }
}

.block-autolock-expert-points__cert {
  margin: 0;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
  order: 2;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__cert {
    flex: 0 0 38%;
  }
}
.block-autolock-expert-points__cert img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.block-autolock-expert-points__desc {
  flex: 1 1 0;
  min-width: 0;
  order: 1;
}

.block-autolock-expert-points__desc-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 768px) {
  .block-autolock-expert-points__desc-title {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__desc-title {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: left;
  }
}

.block-autolock-expert-points__desc-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .block-autolock-expert-points__desc-text {
    font-size: 16px;
  }
}

.page-hero--company .page-hero__bg {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../assets/images/company-top.webp") center/cover no-repeat;
}

.block-company-overview {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-company-overview {
    padding-block: 80px;
  }
}

.block-company-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.block-company-overview__table-wrap {
  min-width: 0;
  overflow-x: auto;
}

.block-company-overview__table {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
@media (min-width: 1024px) {
  .block-company-overview__table {
    table-layout: fixed;
  }
}

.block-company-overview__row {
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .block-company-overview__row {
    align-items: center;
    flex-direction: row;
  }
}
.block-company-overview__row:last-child {
  border-bottom: none;
}

.block-company-overview__term {
  width: 160px;
  padding: 16px 24px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 1024px) {
  .block-company-overview__term {
    width: 200px;
    padding: 24px 32px 24px 0;
    font-size: 16px;
  }
}

.block-company-overview__desc {
  padding: 0 8px 16px 0;
  font-size: 14px;
  line-height: 2;
  word-break: break-word;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-company-overview__desc {
    padding: 24px 0;
    font-size: 16px;
  }
}

.block-company-philosophy-greeting {
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting {
    padding-block: 80px;
  }
}

.block-company-philosophy-greeting__block {
  max-width: 980px;
  margin: 0 auto 50px auto;
}

.greeting-top {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .greeting-top {
    margin-bottom: 80px;
  }
}

.greeting-bottom {
  margin-bottom: 0;
}

.block-company-philosophy-greeting__page-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  text-align: center;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__page-title {
    font-size: 40px;
  }
}

.block-company-philosophy-greeting__page-sub {
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__page-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.block-company-philosophy-greeting__heading {
  text-align: center;
}

.block-company-philosophy-greeting__heading-text {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__heading-text {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.block-company-philosophy-greeting__heading-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto 24px;
  background-color: #005BAC;
}

.block-company-philosophy-greeting__body {
  max-width: 860px;
  margin: 0 auto;
  min-width: 0;
}

.block-company-philosophy-greeting__lead-title {
  margin: 0 0 24px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .block-company-philosophy-greeting__lead-title {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__lead-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.block-company-philosophy-greeting__text {
  margin: 0;
}
.block-company-philosophy-greeting__text p {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__text p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.block-company-philosophy-greeting__text p:last-child {
  margin-bottom: 0;
}

.block-company-philosophy-greeting__sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-top: 16px;
  margin-left: auto;
  min-width: 0;
}

.block-company-philosophy-greeting__sign-role {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-company-philosophy-greeting__sign-role {
    font-size: 16px;
  }
}

.block-company-philosophy-greeting__sign-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
}

.block-company-philosophy-values {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values {
    padding-block: 80px;
  }
}

.block-company-philosophy-values__inner {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.block-company-philosophy-values__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__box {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 32px;
  }
}

.block-company-philosophy-values__left {
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__left {
    justify-content: flex-start;
  }
}

.block-company-philosophy-values__image {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__image {
    margin: 0;
  }
}

.block-company-philosophy-values__right {
  min-width: 0;
}
@media (min-width: 768px) {
  .block-company-philosophy-values__right {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__right {
    width: 40%;
  }
}

.block-company-philosophy-values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.block-company-philosophy-values__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
@media (min-width: 768px) {
  .block-company-philosophy-values__item {
    width: 45%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__item {
    width: 100%;
  }
}

.block-company-philosophy-values__keyword {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__keyword {
    font-size: 32px;
  }
}

.block-company-philosophy-values__text {
  font-size: 16px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-company-philosophy-values__text {
    font-size: 20px;
  }
}

.block-company-access {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .block-company-access {
    padding-block: 80px;
  }
}

.block-company-access__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.block-company-access__address {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 1024px) {
  .block-company-access__address {
    font-size: 16px;
  }
}

.block-company-access__map {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  height: 280px;
  border: 1px solid #D9D9D9;
  background-color: #FDFDFD;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-company-access__map {
    height: 450px;
    max-width: 980px;
  }
}
.block-company-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.block-company-access__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .block-company-access__list {
    max-width: 980px;
  }
}

.block-company-access__item {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #111111;
}
@media (min-width: 1024px) {
  .block-company-access__item {
    font-size: 16px;
  }
}
.block-company-access__item:last-child {
  margin-bottom: 0;
}

.faq-section {
  padding-block: 50px;
}
@media (min-width: 1024px) {
  .faq-section {
    padding-block: 80px;
  }
}

.faq-section__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.faq-section__heading {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
  text-align: center;
}
@media (min-width: 1024px) {
  .faq-section__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.faq-section__heading-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto 32px;
  background-color: #005BAC;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.faq-accordion__item {
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
}

.faq-accordion__question {
  position: relative !important; /* 確実に ::after の基準にする */
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  padding-right: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  background-color: #005BAC;
  border: none;
  cursor: pointer;
  list-style: none;
  text-align: left;
  min-width: 0;
  overflow: hidden; /* テキストはみ出し防止。矢印は padding-right 内に収める */
}
.faq-accordion__question::-webkit-details-marker {
  display: none;
}
.faq-accordion__question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ffffff;
  transition: transform 0.28s ease;
  pointer-events: none;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .faq-accordion__question::after {
    transition: none;
  }
}
@media (min-width: 1024px) {
  .faq-accordion__question::after {
    right: 32px;
  }
}
@media (min-width: 1024px) {
  .faq-accordion__question {
    font-size: 16px;
    padding: 16px 32px;
    padding-right: 64px;
  }
}

.faq-accordion__item[open] .faq-accordion__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion__question-text {
  display: block;
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.faq-accordion__answer {
  overflow: hidden;
  background-color: #ffffff;
  padding: 0;
  min-width: 0;
}

.faq-accordion--js .faq-accordion__answer {
  transition: height 0.28s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq-accordion--js .faq-accordion__answer {
    transition: none;
  }
}

.faq-accordion__answer-inner {
  padding: 24px 32px;
}
@media (min-width: 1024px) {
  .faq-accordion__answer-inner {
    padding: 24px 48px;
  }
}

.faq-accordion__answer-text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #111111;
}
@media (min-width: 1024px) {
  .faq-accordion__answer-text {
    font-size: 16px;
  }
}

.page-hero--contact .page-hero__bg {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../assets/images/contact-top.webp") center/cover no-repeat;
}

.contact-intro {
  padding-block: 50px;
  padding-bottom: 0;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .contact-intro {
    padding-block: 80px;
    padding-bottom: 0;
  }
}

.contact-intro__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-intro__inner {
    padding-inline: 40px;
  }
}

.contact-intro__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
.contact-intro__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 24px;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .contact-intro__title {
    font-size: 24px;
    margin-bottom: 0;
  }
  .contact-intro__title::after {
    margin-bottom: 32px;
  }
}

.contact-intro__text {
  max-width: 740px;
  margin: 0 auto;
}
.contact-intro__text p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  text-align: left;
}
@media (min-width: 1024px) {
  .contact-intro__text p {
    font-size: 16px;
  }
}

.contact-form {
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .contact-form {
    padding-block: 80px;
  }
}

.contact-form__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .contact-form__inner {
    padding-inline: 40px;
  }
}

.contact-form__heading {
  margin: 0 0 32px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-form__heading {
    font-size: 24px;
    margin-bottom: 48px;
  }
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 740px;
  margin: 0 auto;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.contact-form__row--submit {
  align-items: center;
  margin-top: 16px;
}

.contact-form__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.contact-form__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
}
.contact-form__label--inline {
  font-weight: 400;
  cursor: pointer;
}

.contact-form__required {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #EF0A0D;
  border-radius: 2px;
}

.contact-form__control {
  width: 100%;
  min-width: 0;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__input {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
.contact-form__input::placeholder {
  color: #999999;
}
.contact-form__input:focus {
  outline: none;
  border-color: #005BAC;
}
.contact-form__input--checkbox {
  display: inline-block;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-form__input--error {
  border-color: #d93025;
}

.contact-form__textarea--error {
  border-color: #d93025;
}

.contact-form__input--checkbox.contact-form__input--error {
  outline: 2px solid #d93025;
  outline-offset: 2px;
}

.contact-form__error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: #d93025;
}
.contact-form__error:empty {
  display: none;
}

.contact-form__textarea {
  display: block;
  width: 100%;
  min-height: 200px;
  padding: 16px 24px;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 2;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.contact-form__textarea::placeholder {
  color: #999999;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #005BAC;
}
@media (min-width: 1024px) {
  .contact-form__textarea {
    min-height: 240px;
  }
}

.contact-form__address {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.contact-form__postcode {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.contact-form__postcode .contact-form__input {
  max-width: 140px;
}

.contact-form__postcode-prefix {
  font-size: 14px;
  color: #111111;
}

.contact-form__note {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: #999999;
}

.contact-form__consent-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}

.contact-form__consent-box {
  width: 100%;
  height: 240px;
  padding: 24px;
  overflow: auto;
  font-size: 14px;
  line-height: 2;
  background-color: #FDFDFD;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
}
.contact-form__consent-box p {
  margin: 0 0 16px 0;
}
.contact-form__consent-box p:last-child {
  margin-bottom: 0;
}
.contact-form__consent-box a {
  color: #005BAC;
  text-decoration: underline;
}

.contact-form__consent-title {
  font-weight: 700;
  color: #111111;
}

.contact-form__consent-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 64px 24px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1;
  color: #ffffff;
  background-color: #005BAC;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  /* 横線（Read More と同じ） */
}
.contact-form__submit::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  margin-left: 8px;
  position: absolute;
  top: 35px;
  right: 12px;
}
.contact-form__submit {
  /* 斜め矢印（Read More と同じ） */
}
.contact-form__submit::before {
  content: "";
  position: absolute;
  right: 32px;
  top: 36px;
  right: 11px;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  pointer-events: none;
}
.contact-form__submit:hover {
  background-color: rgb(0, 69.4139534884, 131.2);
}

.contact-form--quote .contact-form__section-label {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
.contact-form--quote .contact-form__section-label:first-of-type {
  margin-top: 0;
}

.contact-form--quote .contact-form__select {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
.contact-form--quote .contact-form__select:focus {
  outline: none;
  border-color: #005BAC;
}
.contact-form--quote .contact-form__select--error {
  border-color: #d93025;
}

.contact-form--quote .contact-form__field--suffix {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 180px;
}
.contact-form--quote .contact-form__field--suffix .contact-form__input {
  min-width: 80px;
  max-width: 120px;
}

.contact-form--quote .contact-form__suffix {
  font-size: 14px;
  color: #111111;
}

.contact-form--quote .contact-form__checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact-form--quote .contact-form__checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-form--quote .contact-form__checkbox-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-form--quote .contact-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #111111;
  cursor: pointer;
}

.contact-form--quote .contact-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-form--quote .contact-form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #111111;
  cursor: pointer;
}

.contact-form--quote .contact-form__input--radio {
  width: auto;
  margin: 0;
}

.contact-form--quote .contact-form__textarea--small {
  min-height: 80px;
}

.contact-form--quote .contact-form__row--checkboxes .contact-form__note {
  margin-top: 16px;
}

.page--confirm .confirm {
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .page--confirm .confirm {
    padding-block: 80px;
  }
}

.page--confirm .confirm__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .page--confirm .confirm__inner {
    padding-inline: 40px;
  }
}

.page--confirm .confirm__heading {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
  text-align: center;
}
.page--confirm .confirm__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 24px;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .page--confirm .confirm__heading {
    font-size: 24px;
    margin-bottom: 0;
  }
  .page--confirm .confirm__heading::after {
    margin-bottom: 32px;
  }
}

.page--confirm .confirm__lead {
  margin: 0 0 32px 0;
  font-size: 14px;
  line-height: 2;
  color: #666666;
  text-align: center;
}
@media (min-width: 1024px) {
  .page--confirm .confirm__lead {
    margin-bottom: 48px;
  }
}

.page--confirm .confirm__list {
  margin: 0 0 32px 0;
  padding: 0;
  border-top: 1px solid #D9D9D9;
  list-style: none;
}

.page--confirm .confirm__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #D9D9D9;
}
@media (min-width: 1024px) {
  .page--confirm .confirm__row {
    grid-template-columns: 200px 1fr;
    align-items: start;
    padding: 24px 0;
  }
}

.page--confirm .confirm__dt {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
}

.page--confirm .confirm__dd {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #666666;
  white-space: pre-wrap;
  word-break: break-word;
}
.page--confirm .confirm__dd br {
  display: block;
  content: "";
  margin-top: 4px;
}

.page--confirm .confirm__section-label {
  margin: 32px 0 16px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
.page--confirm .confirm__section-label:first-child {
  margin-top: 0;
}

.page--confirm .confirm__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.page--confirm .confirm__submit-form {
  margin: 0;
}

.page--confirm .confirm__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  width: 280px;
  padding: 24px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page--confirm .confirm__btn--back {
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
}
.page--confirm .confirm__btn--back:hover {
  background-color: #FDFDFD;
}
.page--confirm .confirm__btn--primary {
  color: #ffffff;
  background-color: #005BAC;
}
.page--confirm .confirm__btn--primary:hover {
  background-color: rgb(0, 69.4139534884, 131.2);
}

.page--thanks .thanks {
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .page--thanks .thanks {
    padding-block: 80px;
  }
}

.page--thanks .thanks__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page--thanks .thanks__inner {
    padding-inline: 40px;
  }
}

.page--thanks .thanks__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
}
.page--thanks .thanks__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 24px;
  background-color: #005BAC;
}
@media (min-width: 1024px) {
  .page--thanks .thanks__title {
    font-size: 24px;
    margin-bottom: 0;
  }
  .page--thanks .thanks__title::after {
    margin-bottom: 32px;
  }
}

.page--thanks .thanks__lead {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 2;
  color: #666666;
}
@media (min-width: 1024px) {
  .page--thanks .thanks__lead {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.page--thanks .thanks__note {
  margin: 0 0 32px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #999999;
}
@media (min-width: 1024px) {
  .page--thanks .thanks__note {
    margin-bottom: 48px;
  }
}

.page--thanks .thanks__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page--thanks .thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 24px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #005BAC;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.page--thanks .thanks__btn:hover {
  background-color: rgb(0, 69.4139534884, 131.2);
}

.page--thanks .thanks__link {
  font-size: 14px;
  line-height: 1.6;
  color: #005BAC;
  text-decoration: underline;
}
.page--thanks .thanks__link:hover {
  text-decoration: none;
}

.privacy {
  padding-block: 50px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .privacy {
    padding-block: 80px;
  }
}

.privacy__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .privacy__inner {
    padding-inline: 40px;
  }
}

.privacy__title {
  margin: 0 0 24px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #005BAC;
  text-align: center;
}
@media (min-width: 1024px) {
  .privacy__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

.privacy__section {
  margin-bottom: 32px;
}
.privacy__section:last-of-type {
  margin-bottom: 24px;
}

.privacy__heading {
  margin: 32px 0 16px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
}
.privacy__heading:first-child {
  margin-top: 0;
}
.privacy__heading--sub {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .privacy__heading--sub {
    font-size: 16px;
  }
}

.privacy__text {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .privacy__text {
    font-size: 16px;
  }
}

.privacy__list {
  margin: 0 0 16px 0;
  padding-left: 24px;
  font-size: 14px;
  line-height: 2;
}
.privacy__list li {
  margin-bottom: 8px;
}
.privacy__list--ordered {
  list-style: decimal;
  padding-left: 32px;
}
.privacy__list--ordered li {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .privacy__list {
    font-size: 16px;
  }
}

.privacy__table-wrap {
  min-width: 0;
  overflow-x: auto;
  margin-bottom: 24px;
}

.privacy__table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.6;
}
.privacy__table th,
.privacy__table td {
  padding: 16px 24px;
  border: 1px solid #D9D9D9;
  text-align: left;
  vertical-align: top;
}
.privacy__table th {
  font-weight: 700;
  color: #111111;
  background-color: #FDFDFD;
}
.privacy__table td {
  word-break: break-word;
}
@media (min-width: 1024px) {
  .privacy__table {
    font-size: 16px;
  }
}

.privacy__note {
  margin: 24px 0 16px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #999999;
}
@media (min-width: 1024px) {
  .privacy__note {
    font-size: 14px;
  }
}

.privacy__link {
  color: #005BAC;
  text-decoration: underline;
}
.privacy__link:hover {
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
