@charset "UTF-8";
:root {
  --font-main: "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  color: #1e293b;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  body {
    font-size: 19px;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s, background 0.25s, color 0.25s;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-main);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 36px;
  }
}

.section-eyebrow, .sub-cta .sub-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d9488;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow span, .sub-cta .sub-cta-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: #2dd4bf;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 16px;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-desc {
  font-size: 18px;
  color: #64748b;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

.icon-box-teal {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d9488;
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-box-teal i {
  color: #ffffff;
}

.icon-box-sm {
  width: 40px;
  height: 40px;
}
.icon-box-sm i {
  font-size: 16px;
}

.icon-box-lg {
  width: 48px;
  height: 48px;
}
.icon-box-lg i {
  font-size: 20px;
}

.icon-box-slate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-box-slate i {
  color: #64748b;
  font-size: 16px;
}

.icon-box-white {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-box-white i {
  color: #ffffff;
}

.btn-teal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d9488;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.btn-teal-pill:hover {
  opacity: 1;
  background: #0f766e;
  transform: translateY(-2px);
}

.btn-line-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.28);
}
.btn-line-pill .btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.btn-line-pill:hover {
  opacity: 1;
  background: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.38);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transform: translateZ(0);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
}
.site-header.is-scrolled .logo-label {
  color: #0d9488;
}
.site-header.is-scrolled .logo-name {
  color: #1e293b;
}
.site-header.is-scrolled .logo-area {
  color: #0d9488;
}
.site-header.is-scrolled .nav-list a {
  color: #475569;
}
.site-header.is-scrolled .nav-list a:hover {
  color: #0d9488;
}
.site-header.is-scrolled .nav-tel {
  color: #475569;
}
.site-header.is-scrolled .nav-tel:hover {
  color: #0d9488;
}
.site-header.is-scrolled .nav-tel-icon {
  background: #f0fdfa !important;
}
.site-header.is-scrolled .nav-tel-icon i {
  color: #0d9488 !important;
}
.site-header.is-scrolled .nav-tel-label {
  color: #94a3b8 !important;
}
.site-header.is-scrolled .nav-tel-num {
  color: #334155 !important;
}
.site-header.is-scrolled .menu-trigger span {
  background: #334155;
}
.site-header.is-scrolled .sp-tel-btn {
  background: #f0fdfa;
}
.site-header.is-scrolled .sp-tel-btn i {
  color: #0d9488;
}
.site-header .header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    padding: 0 16px;
  }
}
.site-header .header-inner {
  max-width: 1180px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    height: 64px;
    gap: 6px;
    padding: 0 12px;
  }
}
@media (max-width: 400px) {
  .site-header .header-inner {
    gap: 4px;
    padding: 0 10px;
  }
}
@media (max-width: 340px) {
  .site-header .header-inner {
    gap: 2px;
    padding: 0 8px;
  }
}

.header-logo {
  flex: 0 0 auto;
  min-width: 0;
}
@media (max-width: 1024px) {
  .header-logo {
    flex: 1 1 0;
  }
}
.header-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
}
.header-logo .logo-link:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .header-logo .logo-link {
    gap: 8px;
  }
}
@media (max-width: 400px) {
  .header-logo .logo-link {
    gap: 6px;
  }
}
@media (max-width: 340px) {
  .header-logo .logo-link {
    gap: 4px;
  }
}
.header-logo .logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #ffffff;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .header-logo .logo-img {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 400px) {
  .header-logo .logo-img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 340px) {
  .header-logo .logo-img {
    width: 28px;
    height: 28px;
  }
}
.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.header-logo .logo-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 340px) {
  .header-logo .logo-label {
    display: none;
  }
}
.header-logo .logo-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .header-logo .logo-name {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .header-logo .logo-name {
    font-size: 12px;
  }
}
@media (max-width: 340px) {
  .header-logo .logo-name {
    font-size: 11px;
  }
}
.header-logo .logo-area {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2dd4bf;
  transition: color 0.3s;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .header-logo .logo-area {
    font-size: 11px;
  }
}
@media (max-width: 340px) {
  .header-logo .logo-area {
    font-size: 10px;
    letter-spacing: 0;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-nav .nav-list {
  display: flex;
  gap: 28px;
}
.header-nav .nav-list a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.header-nav .nav-list a:hover {
  opacity: 1;
}
.header-nav .nav-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}
.header-nav .nav-tel:hover {
  opacity: 1;
}
.header-nav .nav-tel .nav-tel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.3s;
}
.header-nav .nav-tel .nav-tel-icon i {
  font-size: 14px;
  color: #ffffff;
}
.header-nav .nav-tel .nav-tel-body {
  display: flex;
  flex-direction: column;
}
.header-nav .nav-tel .nav-tel-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  white-space: nowrap;
}
.header-nav .nav-tel .nav-tel-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  white-space: nowrap;
}
.header-nav .btn-line-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.header-nav .btn-line-nav:hover {
  opacity: 1;
  background: #05b34c;
}

.header-sp-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .header-sp-actions {
    display: flex;
  }
}
@media (max-width: 340px) {
  .header-sp-actions {
    gap: 4px;
  }
}
.header-sp-actions .sp-tel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.3s;
  flex: 0 0 auto;
}
.header-sp-actions .sp-tel-btn i {
  font-size: 14px;
  color: #ffffff;
}
@media (max-width: 400px) {
  .header-sp-actions .sp-tel-btn {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 340px) {
  .header-sp-actions .sp-tel-btn {
    width: 30px;
    height: 30px;
  }
  .header-sp-actions .sp-tel-btn i {
    font-size: 12px;
  }
}
.header-sp-actions .sp-line-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #06C755;
  border-radius: 50%;
  flex: 0 0 auto;
}
.header-sp-actions .sp-line-btn i {
  font-size: 14px;
  color: #ffffff;
}
@media (max-width: 400px) {
  .header-sp-actions .sp-line-btn {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 340px) {
  .header-sp-actions .sp-line-btn {
    width: 30px;
    height: 30px;
  }
  .header-sp-actions .sp-line-btn i {
    font-size: 12px;
  }
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
  z-index: 999;
}
@media (max-width: 1024px) {
  .drawer-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
}
.drawer-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.drawer-menu .drawer-inner {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-menu .drawer-cta {
  display: flex;
  gap: 10px;
}
.drawer-menu .drawer-cta .drawer-tel,
.drawer-menu .drawer-cta .drawer-line {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 14px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}
.drawer-menu .drawer-cta .drawer-tel {
  background: #f0fdfa;
  color: #0d9488;
}
.drawer-menu .drawer-cta .drawer-line {
  background: #06C755;
  color: #ffffff;
}
.drawer-menu .drawer-nav {
  border-top: 1px solid #e2e8f0;
}
.drawer-menu .drawer-nav li a {
  display: block;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}
.drawer-menu .drawer-nav li a:hover {
  opacity: 1;
  color: #0d9488;
}
.drawer-menu .drawer-cta-btn {
  display: block;
  text-align: center;
  background: #0d9488;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  padding: 16px;
  border-radius: 50px;
  margin-top: 4px;
}

body.is-locked {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-footer {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.footer-body {
  padding: 56px 0 0;
}
.footer-body .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-body .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-wrap .footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #ffffff;
  flex-shrink: 0;
}
.footer-logo-wrap .footer-org {
  display: flex;
  flex-direction: column;
}
.footer-logo-wrap .footer-org .footer-org-label {
  font-size: 13px;
  color: #0d9488;
  font-weight: 500;
}
.footer-logo-wrap .footer-org .footer-org-name {
  font-size: 15px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #64748b;
}
.footer-info li i {
  color: #0d9488;
  width: 14px;
  text-align: center;
  font-size: 14px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #64748b;
}
.footer-links ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul li a:hover {
  opacity: 1;
  color: #0d9488;
}
.footer-links ul li i {
  color: #2dd4bf;
  font-size: 10px;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  background: rgba(226, 232, 240, 0.5);
  padding: 16px 0;
  margin-top: 40px;
}
.footer-bottom .footer-bottom-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    padding: 0 16px;
  }
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
.footer-bottom .copyright {
  font-size: 13px;
  color: #94a3b8;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}
.footer-bottom .legal-links li a {
  font-size: 13px;
  color: #94a3b8;
}
.footer-bottom .legal-links li a:hover {
  color: #475569;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg .hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.72) 55%, rgba(51, 65, 85, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 380px) {
  .hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.hero-inner > * {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-inner .hero-badges {
  animation-delay: 0.1s;
}
.hero-inner .hero-title {
  animation-delay: 0.3s;
}
.hero-inner .hero-tel-block {
  animation-delay: 0.5s;
}
.hero-inner .hero-line-block {
  animation-delay: 0.65s;
}
.hero-inner .hero-actions {
  animation-delay: 0.8s;
}
.hero-inner .hero-trust {
  animation-delay: 0.95s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-bg-img {
  animation: heroBgZoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 3.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-badges .badge i {
  font-size: 11px;
}
.hero-badges .badge-amber {
  background: rgba(245, 158, 11, 0.8);
}
.hero-badges .badge-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  margin-bottom: 40px;
}
.hero-title .hero-title-main {
  display: block;
  font-size: clamp(28px, 8.5vw, 58px);
  font-weight: 700;
  color: #2dd4bf;
  line-height: 1.25;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-title .hero-title-sub {
  display: block;
  font-size: clamp(16px, 4.5vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.hero-tel-block {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 18px 28px;
  margin-bottom: 16px;
  transition: background 0.25s;
}
.hero-tel-block:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 768px) {
  .hero-tel-block {
    padding: 14px 16px;
    gap: 12px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 380px) {
  .hero-tel-block {
    padding: 12px 14px;
    gap: 10px;
  }
}
.hero-tel-block .hero-tel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #f59e0b;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.hero-tel-block .hero-tel-icon i {
  font-size: 26px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-tel-block .hero-tel-icon {
    width: 46px;
    height: 46px;
  }
  .hero-tel-block .hero-tel-icon i {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .hero-tel-block .hero-tel-icon {
    width: 40px;
    height: 40px;
  }
  .hero-tel-block .hero-tel-icon i {
    font-size: 16px;
  }
}
.hero-tel-block .hero-tel-body {
  display: flex;
  flex-direction: column;
}
.hero-tel-block .hero-tel-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .hero-tel-block .hero-tel-label {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .hero-tel-block .hero-tel-label {
    font-size: 13px;
  }
}
.hero-tel-block .hero-tel-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-tel-block .hero-tel-num {
    font-size: clamp(26px, 7vw, 32px);
    letter-spacing: 0.02em;
  }
}
.hero-tel-block .hero-tel-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero-tel-block .hero-tel-note {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .hero-tel-block .hero-tel-note {
    font-size: 12px;
  }
}

.hero-line-block {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(45, 212, 191, 0.38);
  border-radius: 18px;
  padding: 14px 22px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: background 0.25s;
}
@media (max-width: 768px) {
  .hero-line-block {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
  }
}
@media (max-width: 380px) {
  .hero-line-block {
    padding: 12px 14px;
    gap: 10px;
  }
}
.hero-line-block:hover {
  background: rgba(255, 255, 255, 0.16);
}
.hero-line-block .hero-line-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-line-block .hero-line-left .hero-line-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #06C755;
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-line-block .hero-line-left .hero-line-icon i {
  font-size: 18px;
  color: #ffffff;
}
.hero-line-block .hero-line-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 380px) {
  .hero-line-block .hero-line-title {
    font-size: 16px;
  }
}
.hero-line-block .hero-line-sub {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .hero-line-block .hero-line-sub {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .hero-line-block .hero-line-sub {
    font-size: 13px;
  }
}
.hero-line-block .hero-line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-line-block .hero-tag-amber,
.hero-line-block .hero-tag-teal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.hero-line-block .hero-tag-amber i,
.hero-line-block .hero-tag-teal i {
  font-size: 9px;
}
.hero-line-block .hero-tag-amber {
  background: rgba(245, 158, 11, 0.88);
  color: #ffffff;
}
.hero-line-block .hero-tag-teal {
  background: rgba(13, 148, 136, 0.44);
  color: #ffffff;
}

.hero-actions {
  margin-bottom: 36px;
}
.hero-actions .hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.25s;
  white-space: nowrap;
}
.hero-actions .hero-btn-ghost:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 768px) {
  .hero-actions .hero-btn-ghost {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
  }
}
@media (max-width: 380px) {
  .hero-actions .hero-btn-ghost {
    font-size: 15px;
    padding: 13px 20px;
  }
}

.hero-trust {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .hero-trust {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .hero-trust {
    font-size: 15px;
  }
}
.hero-trust i {
  color: #2dd4bf;
  margin-top: 2px;
  flex-shrink: 0;
}
.hero-trust strong {
  color: #2dd4bf;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.15em;
  animation: heroScroll 2s ease-in-out infinite;
}
.hero-scroll-indicator i {
  font-size: 12px;
}

@keyframes heroScroll {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.75;
  }
}
.empathy {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .empathy {
    padding: 50px 0;
  }
}
.empathy {
  background: #f8fafc;
}
@media (max-width: 768px) {
  .empathy {
    overflow: hidden;
  }
}
.empathy .empathy-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid #f1f5f9;
}
.empathy .empathy-img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .empathy .empathy-img img {
    height: 160px;
  }
}
.empathy .empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .empathy .empathy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .empathy .empathy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.empathy .empathy-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 24px 22px;
  height: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s, transform 0.3s;
}
.empathy .empathy-card:hover {
  border-color: #2dd4bf;
  transform: translateY(-3px);
}
.empathy .empathy-card .empathy-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.empathy .empathy-card .empathy-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  flex: 1;
}
@media (min-width: 701px) and (max-width: 768px) {
  .empathy .empathy-card .empathy-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .empathy .empathy-card .empathy-card-head .empathy-icon {
    flex-shrink: 0;
  }
}
.empathy .empathy-card .empathy-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #f0fdfa;
  border-radius: 12px;
  flex-shrink: 0;
}
.empathy .empathy-card .empathy-icon i {
  font-size: 18px;
  color: #0d9488;
}
.empathy .empathy-card p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.empathy .empathy-cta {
  text-align: center;
  margin-top: 44px;
}
.empathy .empathy-cta .empathy-cta-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.empathy .empathy-cta .empathy-cta-note i {
  font-size: 12px;
}

.sub-cta {
  position: relative;
  padding: 56px 0 60px;
  background: #ffffff;
  overflow: hidden;
}
.sub-cta .sub-cta-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: #e2e8f0;
}
.sub-cta .sub-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.sub-cta .sub-cta-eyebrow {
  justify-content: center;
  color: #06C755;
  margin-bottom: 20px;
}
.sub-cta .sub-cta-eyebrow span {
  background: #06C755;
}
.sub-cta .sub-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .sub-cta .sub-cta-title {
    font-size: 24px;
  }
}
.sub-cta .sub-cta-desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
}
.about {
  background: #f8fafc;
  overflow: hidden;
}
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-story {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 32px;
  margin-bottom: 24px;
}
.about-story .about-story-q {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.about-story .about-story-q2 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  margin-top: 16px;
}
.about-story p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 12px;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.about-story p strong {
  color: #1e293b;
}
.about-story p:last-child {
  margin-bottom: 0;
}
.about-story .about-neutral {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 17px;
}

.about-mission {
  background: #0f766e;
  color: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
}
.about-mission .about-mission-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-mission h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .about-mission h3 {
    font-size: 20px;
  }
}
.about-mission p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-mission .about-mission-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 0;
}

.about-neutral-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border: 2px solid #ccfbf1;
  padding: 28px;
  margin-bottom: 20px;
}
.about-neutral-card .about-neutral-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.about-neutral-card .about-neutral-head h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.about-neutral-card p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 12px;
}
.about-neutral-card p strong {
  color: #1e293b;
}
.about-neutral-card p:last-child {
  margin-bottom: 0;
}

.about-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
}
.about-img-wrap img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-promise {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border: 1px solid #ccfbf1;
  padding: 28px;
}
.about-promise h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.about-promise h3 i {
  color: #0d9488;
}
.about-promise ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 10px;
}
.about-promise ul li i {
  color: #0d9488;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-promise ul li:last-child {
  margin-bottom: 0;
}

.role {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .role {
    padding: 50px 0;
  }
}
.role {
  background: #f0fdfa;
  overflow: hidden;
}
.role .role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 36px;
}
@media (max-width: 768px) {
  .role .role-grid {
    grid-template-columns: 1fr;
  }
}
.role .role-card {
  border-radius: 18px;
  padding: 28px;
}
.role .role-card .role-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.role .role-card .role-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}
.role .role-card .role-icon i {
  color: #ffffff;
  font-size: 18px;
}
.role .role-card .role-icon-gray {
  background: #f1f5f9;
}
.role .role-card .role-icon-gray i {
  color: #64748b;
}
.role .role-card .role-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.role .role-card .role-sub-gray {
  color: #64748b;
}
.role .role-card .role-name {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}
.role .role-card .role-name-dark {
  color: #1e293b;
}
.role .role-association {
  background: #0f766e;
  box-shadow: 0 8px 28px rgba(15, 118, 110, 0.22);
}
.role .role-partner {
  background: #ffffff;
  border: 2px solid #e2e8f0;
}
.role .role-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.role .role-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}
.role .role-list .role-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}
.role .role-list .role-check i {
  font-size: 10px;
  color: #ffffff;
}
.role .role-list-gray li {
  color: #64748b;
}
.role .role-check-gray {
  background: #f1f5f9 !important;
}
.role .role-check-gray i {
  color: #94a3b8 !important;
}
.role .role-trust {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border: 1px solid #ccfbf1;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.role .role-trust .role-trust-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.role .role-trust .role-trust-icon i {
  color: #0d9488;
  font-size: 18px;
}
.role .role-trust p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
}
.role .role-trust p strong {
  color: #1e293b;
}

.representative {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .representative {
    padding: 50px 0;
  }
}
.representative {
  background: #f8fafc;
  overflow: hidden;
}
.representative .section-title .text-teal {
  color: #0d9488;
}
.representative .rep-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .representative .rep-grid {
    grid-template-columns: 260px 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .representative .rep-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.representative .rep-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/5;
}
.representative .rep-photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.representative .rep-name-card {
  margin-top: 20px;
}
.representative .rep-name-card .rep-role {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 4px;
}
.representative .rep-name-card .rep-name {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.representative .rep-name-card .rep-org {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}
.representative .rep-message-body p {
  font-size: 17px;
  color: #64748b;
  line-height: 2;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  margin-bottom: 18px;
}
.representative .rep-message-body p:last-child {
  margin-bottom: 0;
}
.representative .rep-signature {
  margin-top: 28px;
  text-align: right;
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  font-weight: 500;
}

.reasons {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .reasons {
    padding: 50px 0;
  }
}
.reasons {
  background: #ffffff;
  overflow: hidden;
}
.reasons .reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .reasons .reasons-grid {
    grid-template-columns: 1fr;
  }
}
.reasons .reason-card {
  position: relative;
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
  padding: 32px;
  overflow: hidden;
  transition: transform 0.25s;
}
.reasons .reason-card:hover {
  transform: translateY(-3px);
}
.reasons .reason-card .reason-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 64px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reasons .reason-card .reason-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ccfbf1;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.reasons .reason-card .reason-icon-box i {
  font-size: 22px;
  color: #0d9488;
}
.reasons .reason-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.45;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.reasons .reason-card p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.85;
  position: relative;
  z-index: 1;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.hokkaido {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .hokkaido {
    padding: 50px 0;
  }
}
.hokkaido {
  background: #f8fafc;
  overflow: hidden;
}
.hokkaido .hokkaido-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: start;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hokkaido .hokkaido-grid {
    grid-template-columns: 1fr;
  }
}
.hokkaido .hokkaido-img-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.hokkaido .hokkaido-img-card img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.hokkaido .hokkaido-img-card .hokkaido-img-body {
  padding: 22px;
}
.hokkaido .hokkaido-img-card .hokkaido-img-body .hokkaido-img-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hokkaido .hokkaido-img-card .hokkaido-img-body .hokkaido-img-badge p {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.hokkaido .hokkaido-img-card .hokkaido-img-body .hokkaido-img-badge .hokkaido-en {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}
.hokkaido .hokkaido-img-card .hokkaido-img-body > p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.85;
}
.hokkaido .hokkaido-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.hokkaido .hokkaido-stats .hokkaido-stat {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 18px;
  text-align: center;
}
.hokkaido .hokkaido-stats .hokkaido-stat .hokkaido-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 4px;
}
.hokkaido .hokkaido-stats .hokkaido-stat .hokkaido-stat-label {
  font-size: 13px;
  color: #64748b;
}
.hokkaido .hokkaido-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .hokkaido .hokkaido-areas-grid {
    grid-template-columns: 1fr;
  }
}
.hokkaido .hokkaido-areas-grid .area-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 18px;
  transition: border-color 0.25s;
}
.hokkaido .hokkaido-areas-grid .area-card:hover {
  border-color: #2dd4bf;
}
.hokkaido .hokkaido-areas-grid .area-card .area-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hokkaido .hokkaido-areas-grid .area-card .area-card-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}
.hokkaido .hokkaido-areas-grid .area-card .area-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background: #f0fdfa;
  border-radius: 6px;
  flex-shrink: 0;
}
.hokkaido .hokkaido-areas-grid .area-card .area-icon i {
  font-size: 11px;
  color: #0d9488;
}
.hokkaido .hokkaido-areas-grid .area-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.75;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.hokkaido .hokkaido-trust {
  background: #0f766e;
  border-radius: 14px;
  padding: 24px 28px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.hokkaido .hokkaido-trust .hokkaido-trust-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hokkaido .hokkaido-trust p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.testimonials {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0;
  }
}
.testimonials {
  background: #f8fafc;
  overflow: hidden;
}
.testimonials .stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto 48px;
}
.testimonials .stats-row .stat-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 28px 20px;
  text-align: center;
}
.testimonials .stats-row .stat-card .stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #ccfbf1;
  border-radius: 14px;
  margin: 0 auto 14px;
}
.testimonials .stats-row .stat-card .stat-icon i {
  font-size: 20px;
  color: #0d9488;
}
.testimonials .stats-row .stat-card .stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 4px;
}
.testimonials .stats-row .stat-card .stat-label {
  font-size: 14px;
  color: #64748b;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.testimonials .testimonial-card:hover {
  border-color: #2dd4bf;
}
.testimonials .testimonial-card .t-tag, .testimonials .testimonial-card .t-situation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.testimonials .testimonial-card .t-situation {
  background: rgba(240, 253, 250, 0.5);
  border-color: rgba(204, 251, 241, 0.5);
}
.testimonials .testimonial-card .t-situation i {
  color: #2dd4bf;
  font-size: 10px;
}
.testimonials .testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.5;
}
.testimonials .testimonial-card p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 16px;
}
.testimonials .testimonial-card .t-rating {
  color: #2dd4bf;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonials .testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.testimonials .testimonial-card .t-author .t-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #f0fdfa;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonials .testimonial-card .t-author .t-avatar i {
  color: #2dd4bf;
  font-size: 13px;
}
.testimonials .testimonial-card .t-author .t-name {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
}
.testimonials .testimonial-card .t-author .t-attr {
  font-size: 14px;
  color: #94a3b8;
}
.testimonials .cases-area {
  margin-bottom: 36px;
}
.testimonials .cases-area .cases-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
}
.testimonials .cases-area .cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 768px) {
  .testimonials .cases-area .cases-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .cases-area .case-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 24px;
}
.testimonials .cases-area .case-card .case-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.testimonials .cases-area .case-card .case-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonials .cases-area .case-card .case-row .case-row-label,
.testimonials .cases-area .case-card .case-result .case-row-label {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonials .cases-area .case-card .case-row .case-row-label.teal,
.testimonials .cases-area .case-card .case-result .case-row-label.teal {
  color: #0d9488;
}
.testimonials .cases-area .case-card .case-row p,
.testimonials .cases-area .case-card .case-result p {
  font-size: 17px;
  color: #334155;
  line-height: 1.8;
}
.testimonials .cases-area .case-card .case-result {
  background: #f0fdfa;
  border-radius: 10px;
  padding: 14px;
}
.testimonials .google-review {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 22px 28px;
}
.testimonials .google-review .google-review-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .testimonials .google-review .google-review-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}
.testimonials .google-review .google-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #f0fdfa;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonials .google-review .google-icon i {
  color: #0d9488;
  font-size: 20px;
}
.testimonials .google-review .google-text {
  flex: 1;
}
.testimonials .google-review .google-text .google-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.testimonials .google-review .google-text p {
  font-size: 14px;
  color: #64748b;
}
.testimonials .google-review .google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.testimonials .google-review .google-rating .google-score {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}
.testimonials .google-review .google-rating .google-stars i {
  color: #f59e0b;
  font-size: 14px;
}

.partners {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .partners {
    padding: 50px 0;
  }
}
.partners {
  background: #ffffff;
  overflow: hidden;
}
.partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .partners .partners-grid {
    grid-template-columns: 1fr;
  }
}
.partners .partner-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  transition: border-color 0.25s;
}
.partners .partner-card:hover {
  border-color: #2dd4bf;
}
.partners .partner-card .partner-img {
  height: 160px;
  overflow: hidden;
}
.partners .partner-card .partner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.partners .partner-card .partner-img:hover img {
  transform: scale(1.04);
}
.partners .partner-card .partner-body {
  padding: 22px;
}
.partners .partner-card .partner-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.partners .partner-card .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.partners .partner-card .partner-badge i {
  font-size: 10px;
}
.partners .partner-card .partner-badge-wide {
  background: rgba(245, 158, 11, 0.1);
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.3);
}
.partners .partner-card .partner-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partners .partner-card .partner-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}
.partners .partner-card .partner-info li i {
  color: #0d9488;
  font-size: 12px;
  width: 12px;
  text-align: center;
}
.partners .partners-trust {
  background: #0f766e;
  border-radius: 16px;
  padding: 28px 36px;
  text-align: center;
  color: #ffffff;
}
.partners .partners-trust .partners-trust-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.partners .partners-trust p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

.flow {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .flow {
    padding: 50px 0;
  }
}
.flow {
  background: #ffffff;
  overflow: hidden;
}
.flow .flow-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 44px;
  border: 1px solid #f1f5f9;
}
.flow .flow-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .flow .flow-img img {
    height: 140px;
  }
}
.flow .flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .flow .flow-steps {
    flex-direction: column;
    align-items: stretch;
  }
}
.flow .flow-step {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.flow .flow-step .flow-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.flow .flow-step .flow-step-label {
  font-size: 13px;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: 0.1em;
}
.flow .flow-step .flow-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}
.flow .flow-step .flow-badge.flow-badge-assoc {
  background: #ccfbf1;
  color: #0d9488;
}
.flow .flow-step .flow-badge.flow-badge-partner {
  background: #fef3c7;
  color: #92400e;
}
.flow .flow-step .flow-step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #0d9488, #0d9488);
  border-radius: 16px;
  margin-bottom: 16px;
}
.flow .flow-step .flow-step-icon i {
  font-size: 22px;
  color: #ffffff;
}
.flow .flow-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.flow .flow-step p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  flex: 1;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.flow .flow-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  flex-shrink: 0;
  color: #2dd4bf;
}
.flow .flow-arrow i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .flow .flow-arrow {
    width: auto;
    height: 28px;
  }
  .flow .flow-arrow i {
    transform: rotate(90deg);
  }
}
.flow .flow-note {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}
.flow .flow-note i {
  color: #0d9488;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.flow .flow-note p {
  font-size: 16px;
  color: #0d9488;
  line-height: 1.8;
}
.flow .flow-note p strong {
  font-weight: 700;
}
.flow .flow-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .flow .flow-cta-grid {
    grid-template-columns: 1fr;
  }
}
.flow .flow-cta-form, .flow .flow-cta-tel, .flow .flow-cta-line {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  padding: 18px 20px;
  transition: filter 0.25s, transform 0.25s;
}
.flow .flow-cta-form:hover, .flow .flow-cta-tel:hover, .flow .flow-cta-line:hover {
  opacity: 1;
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.flow .flow-cta-form .flow-cta-icon, .flow .flow-cta-tel .flow-cta-icon, .flow .flow-cta-line .flow-cta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}
.flow .flow-cta-form .flow-cta-icon i, .flow .flow-cta-tel .flow-cta-icon i, .flow .flow-cta-line .flow-cta-icon i {
  font-size: 18px;
  color: #ffffff;
}
.flow .flow-cta-form .flow-cta-icon-white, .flow .flow-cta-tel .flow-cta-icon-white, .flow .flow-cta-line .flow-cta-icon-white {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.flow .flow-cta-form .flow-cta-icon-white i, .flow .flow-cta-tel .flow-cta-icon-white i, .flow .flow-cta-line .flow-cta-icon-white i {
  color: #0d9488;
}
.flow .flow-cta-form div p:first-child, .flow .flow-cta-tel div p:first-child, .flow .flow-cta-line div p:first-child {
  font-size: 17px;
  font-weight: 700;
}
.flow .flow-cta-form div p:last-child, .flow .flow-cta-tel div p:last-child, .flow .flow-cta-line div p:last-child {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 2px;
}
.flow .flow-cta-line {
  background: #06C755;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.25);
}
.flow .flow-cta-tel {
  background: #0d9488;
  color: #ffffff;
}
.flow .flow-cta-form {
  background: #f1f5f9;
  color: #334155;
}
.flow .flow-cta-form div p:last-child {
  color: #94a3b8;
  opacity: 1;
}

.promise {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .promise {
    padding: 50px 0;
  }
}
.promise {
  background: #f8fafc;
  overflow: hidden;
}
.promise .promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .promise .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .promise .promise-grid {
    grid-template-columns: 1fr;
  }
}
.promise .promise-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  padding: 28px 24px;
  transition: transform 0.25s;
}
.promise .promise-card:hover {
  transform: translateY(-3px);
}
.promise .promise-card .promise-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #ccfbf1;
  border-radius: 14px;
  margin-bottom: 18px;
}
.promise .promise-card .promise-icon i {
  font-size: 20px;
  color: #0d9488;
}
.promise .promise-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.45;
  margin-bottom: 10px;
}
.promise .promise-card p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.faq {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
.faq {
  background: #f0fdfa;
  overflow: hidden;
}
.faq .faq-list {
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq .faq-item {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.faq .faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.2s;
}
.faq .faq-q:hover {
  background: rgba(13, 148, 136, 0.04);
}
.faq .faq-q .faq-q-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq .faq-q .faq-q-text {
  flex: 1;
  line-height: 1.5;
}
.faq .faq-q .faq-toggle {
  flex-shrink: 0;
  color: #0d9488;
  transition: transform 0.3s;
}
.faq .faq-q .faq-toggle i {
  font-size: 14px;
}
.faq .faq-q[aria-expanded=true] .faq-toggle {
  transform: rotate(45deg);
}
.faq .faq-a {
  display: none;
  padding: 18px 20px 22px;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.faq .faq-a[aria-hidden=true] {
  display: none;
}
.faq .faq-a .faq-a-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq .faq-a p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.85;
  flex: 1;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.faq .faq-bottom {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.faq .faq-bottom p {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 18px;
}

.contact {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }
}
.contact {
  background: #ffffff;
  overflow: hidden;
}
.contact .contact-eyebrow {
  color: #06C755 !important;
}
.contact .contact-eyebrow span {
  background: #06C755 !important;
}
.contact .contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 940px;
  margin: 0 auto 44px;
}
@media (max-width: 768px) {
  .contact .contact-methods {
    grid-template-columns: 1fr;
  }
}
.contact .contact-line {
  grid-column: 1/-1;
  background: #06C755;
  border-radius: 24px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.22);
}
@media (max-width: 768px) {
  .contact .contact-line {
    padding: 22px 20px;
  }
}
.contact .contact-line::before, .contact .contact-line::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.contact .contact-line::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -40px;
}
.contact .contact-line::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: -30px;
}
.contact .contact-line .contact-line-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.contact .contact-line .contact-line-pulse span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.contact .contact-line .contact-line-body {
  display: flex;
  gap: 28px;
}
@media (max-width: 768px) {
  .contact .contact-line .contact-line-body {
    flex-direction: column;
  }
}
.contact .contact-line .contact-line-left {
  flex: 1;
}
.contact .contact-line .contact-line-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.contact .contact-line .contact-line-head .contact-line-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  flex-shrink: 0;
}
.contact .contact-line .contact-line-head .contact-line-icon i {
  font-size: 24px;
  color: #ffffff;
}
.contact .contact-line .contact-line-head .contact-line-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .contact .contact-line .contact-line-head .contact-line-title {
    font-size: 22px;
  }
}
.contact .contact-line .contact-line-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.contact .contact-line .contact-line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.contact .contact-line .contact-line-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 50px;
}
.contact .contact-line .contact-line-tags span i {
  font-size: 9px;
}
.contact .contact-line .contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #06C755;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: opacity 0.25s, transform 0.25s;
}
.contact .contact-line .contact-line-btn i {
  font-size: 16px;
}
.contact .contact-line .contact-line-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.contact .contact-line .contact-line-qr {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact .contact-line .contact-line-qr {
    justify-content: center;
  }
}
.contact .contact-line .contact-line-qr .qr-img-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
}
.contact .contact-line .contact-line-qr .qr-img-wrap img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.contact .contact-line .contact-line-qr .qr-text p {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.contact .contact-line .contact-line-qr .qr-text img {
  height: 34px;
  width: auto;
  cursor: pointer;
  display: block;
  margin-bottom: 10px;
}
.contact .contact-line .contact-line-qr .qr-text .qr-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.contact .contact-tel {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 18px;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.22);
  transition: filter 0.25s, transform 0.25s;
  grid-column: span 1;
}
@media (max-width: 768px) {
  .contact .contact-tel {
    grid-column: auto;
  }
}
.contact .contact-tel:hover {
  opacity: 1;
  filter: brightness(1.07);
  transform: translateY(-2px);
}
.contact .contact-tel .contact-tel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  flex-shrink: 0;
}
.contact .contact-tel .contact-tel-icon i {
  font-size: 22px;
  color: #ffffff;
}
.contact .contact-tel .contact-tel-body {
  flex: 1;
}
.contact .contact-tel .contact-tel-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}
.contact .contact-tel .contact-tel-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact .contact-tel .contact-tel-num {
    font-size: 24px;
  }
}
.contact .contact-tel .contact-tel-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.contact .contact-tel .contact-tel-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
}
.contact .contact-form-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact .contact-form-btn:hover {
  opacity: 1;
  border-color: #2dd4bf;
  transform: translateY(-2px);
}
.contact .contact-form-btn .contact-form-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background: #f0fdfa;
  border-radius: 16px;
  flex-shrink: 0;
}
.contact .contact-form-btn .contact-form-icon i {
  font-size: 22px;
  color: #0d9488;
}
.contact .contact-form-btn div {
  flex: 1;
}
.contact .contact-form-btn p {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}
.contact .contact-form-btn .contact-form-sub {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}
.contact .contact-form-btn .contact-form-arrow {
  color: #cbd5e1;
  font-size: 18px;
  transition: color 0.25s;
}
.contact .contact-form-btn:hover .contact-form-arrow {
  color: #0d9488;
}
.contact .contact-office {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 22px;
  grid-column: 1/-1;
}
.contact .contact-office .contact-office-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.contact .contact-office .contact-office-head p {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}
.contact .contact-office .contact-office-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .contact .contact-office .contact-office-info {
    grid-template-columns: 1fr;
  }
}
.contact .contact-office .contact-office-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.contact .contact-office .contact-office-info li i {
  color: #94a3b8;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 12px;
}
.contact .contact-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 48px;
}
.contact .contact-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}
.contact .contact-trust span i {
  color: #0d9488;
  font-size: 16px;
}
.contact .contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.contact .contact-form-wrap .contact-form-header {
  padding: 22px 28px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}
.contact .contact-form-wrap .contact-form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.contact .contact-form-wrap .contact-form-header p {
  font-size: 15px;
  color: #94a3b8;
}
.contact .contact-form-wrap .contact-form-body {
  padding: 32px 28px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .contact .contact-form-wrap .contact-form-body {
    padding: 24px 18px;
  }
}
.contact .contact-form-wrap .contact-form-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  padding: 14px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.contact .contact-form-wrap .contact-form-note i {
  color: #0d9488;
}
.contact .wpcf7 .cf7-field {
  margin-bottom: 20px;
}
.contact .wpcf7 .cf7-field:last-of-type {
  margin-bottom: 0;
}
.contact .wpcf7 label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1;
}
.contact .wpcf7 .cf7-required {
  font-size: 10px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}
.contact .wpcf7 .cf7-optional {
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 4px;
}
.contact .wpcf7 input[type=text],
.contact .wpcf7 input[type=email],
.contact .wpcf7 input[type=tel] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-main);
  background: #ffffff;
  color: #1e293b;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .wpcf7 input[type=text]::-moz-placeholder, .contact .wpcf7 input[type=email]::-moz-placeholder, .contact .wpcf7 input[type=tel]::-moz-placeholder {
  color: #94a3b8;
}
.contact .wpcf7 input[type=text]::placeholder,
.contact .wpcf7 input[type=email]::placeholder,
.contact .wpcf7 input[type=tel]::placeholder {
  color: #94a3b8;
}
.contact .wpcf7 input[type=text]:focus,
.contact .wpcf7 input[type=email]:focus,
.contact .wpcf7 input[type=tel]:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.contact .wpcf7 textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-main);
  background: #ffffff;
  color: #1e293b;
  height: 140px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact .wpcf7 textarea::-moz-placeholder {
  color: #94a3b8;
}
.contact .wpcf7 textarea::placeholder {
  color: #94a3b8;
}
.contact .wpcf7 textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.contact .wpcf7 input[type=submit],
.contact .wpcf7 #cf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: #1e293b;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  position: relative;
}
.contact .wpcf7 input[type=submit]:hover:not(:disabled),
.contact .wpcf7 #cf7-submit:hover:not(:disabled) {
  background: #0f172a;
  transform: translateY(-1px);
}
.contact .wpcf7 input[type=submit]:disabled,
.contact .wpcf7 #cf7-submit:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}
.contact .wpcf7 .wpcf7-not-valid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.contact .wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
}
.contact .wpcf7 .wpcf7-not-valid-tip::before {
  content: "⚠ ";
}
.contact .wpcf7 .wpcf7-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: cf7Spin 0.7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
.contact .wpcf7 .wpcf7-response-output {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: none !important;
  text-align: center;
}
.contact .wpcf7.sent .wpcf7-response-output {
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
}
.contact .wpcf7.sent .wpcf7-response-output::before {
  content: "✓ ";
  font-weight: 700;
}
.contact .wpcf7.failed .wpcf7-response-output, .contact .wpcf7.invalid .wpcf7-response-output {
  background: rgba(239, 68, 68, 0.07);
  color: #b91c1c;
}
.contact .cf7-thanks {
  display: none;
  margin-top: 24px;
}
.contact .cf7-thanks.is-visible {
  display: block;
}
.contact .cf7-thanks .cf7-thanks-inner {
  text-align: center;
  padding: 40px 20px;
}
.contact .cf7-thanks .cf7-thanks-inner .cf7-thanks-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: #f0fdfa;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.contact .cf7-thanks .cf7-thanks-inner .cf7-thanks-icon i {
  font-size: 28px;
  color: #0d9488;
}
.contact .cf7-thanks .cf7-thanks-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.contact .cf7-thanks .cf7-thanks-inner p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.85;
}
.contact .cf7-thanks .cf7-thanks-inner p a {
  color: #0d9488;
  text-decoration: underline;
}

@keyframes cf7Spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.floating-cta .floating-cta-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
@media (max-width: 1024px) {
  .floating-cta .floating-cta-pc {
    display: none;
  }
}
.floating-cta .floating-tel {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity 0.25s;
}
.floating-cta .floating-tel:hover {
  opacity: 0.8;
}
.floating-cta .floating-tel .floating-tel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #f0fdfa;
  border-radius: 50%;
}
.floating-cta .floating-tel .floating-tel-icon i {
  font-size: 20px;
  color: #0d9488;
}
.floating-cta .floating-tel .floating-tel-body {
  display: flex;
  flex-direction: column;
}
.floating-cta .floating-tel .floating-tel-label {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.2;
}
.floating-cta .floating-tel .floating-tel-num {
  font-size: 24px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.floating-cta .floating-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-cta .floating-btns .floating-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}
.floating-cta .floating-btns .floating-btn-line:hover {
  opacity: 1;
  background: #05b34c;
}
.floating-cta .floating-btns .floating-btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 50px;
}
.floating-cta .floating-btns .floating-btn-mail:hover {
  background: #e2e8f0;
  opacity: 1;
}
.floating-cta .floating-cta-sp {
  display: none;
}
@media (max-width: 1024px) {
  .floating-cta .floating-cta-sp {
    display: flex;
    gap: 8px;
    padding: 10px 0;
  }
}
.floating-cta .floating-cta-sp .floating-sp-tel,
.floating-cta .floating-cta-sp .floating-sp-line,
.floating-cta .floating-cta-sp .floating-sp-mail {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 52px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.floating-cta .floating-cta-sp .floating-sp-tel i,
.floating-cta .floating-cta-sp .floating-sp-line i,
.floating-cta .floating-cta-sp .floating-sp-mail i {
  font-size: 19px;
}
.floating-cta .floating-cta-sp .floating-sp-tel {
  background: #f0fdfa;
  color: #0d9488;
}
.floating-cta .floating-cta-sp .floating-sp-line {
  background: #06C755;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
}
.floating-cta .floating-cta-sp .floating-sp-mail {
  background: #f1f5f9;
  color: #475569;
}

.menu-trigger {
  display: none;
  width: 36px;
  height: 26px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 0 0 36px;
}
@media (max-width: 1024px) {
  .menu-trigger {
    display: block;
  }
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.is-active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.js-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-fade.is-fadein {
  opacity: 1;
  transform: translateY(0);
}

.empathy-card:nth-child(1),
.reason-card:nth-child(1),
.testimonial-card:nth-child(1),
.partner-card:nth-child(1),
.promise-card:nth-child(1),
.area-card:nth-child(1),
.flow-step:nth-child(1) {
  transition-delay: 0.07s;
}

.empathy-card:nth-child(2),
.reason-card:nth-child(2),
.testimonial-card:nth-child(2),
.partner-card:nth-child(2),
.promise-card:nth-child(2),
.area-card:nth-child(2),
.flow-step:nth-child(2) {
  transition-delay: 0.14s;
}

.empathy-card:nth-child(3),
.reason-card:nth-child(3),
.testimonial-card:nth-child(3),
.partner-card:nth-child(3),
.promise-card:nth-child(3),
.area-card:nth-child(3),
.flow-step:nth-child(3) {
  transition-delay: 0.21s;
}

.empathy-card:nth-child(4),
.reason-card:nth-child(4),
.testimonial-card:nth-child(4),
.partner-card:nth-child(4),
.promise-card:nth-child(4),
.area-card:nth-child(4),
.flow-step:nth-child(4) {
  transition-delay: 0.28s;
}

.empathy-card:nth-child(5),
.reason-card:nth-child(5),
.testimonial-card:nth-child(5),
.partner-card:nth-child(5),
.promise-card:nth-child(5),
.area-card:nth-child(5),
.flow-step:nth-child(5) {
  transition-delay: 0.35s;
}

.empathy-card:nth-child(6),
.reason-card:nth-child(6),
.testimonial-card:nth-child(6),
.partner-card:nth-child(6),
.promise-card:nth-child(6),
.area-card:nth-child(6),
.flow-step:nth-child(6) {
  transition-delay: 0.42s;
}

.empathy-card:nth-child(7),
.reason-card:nth-child(7),
.testimonial-card:nth-child(7),
.partner-card:nth-child(7),
.promise-card:nth-child(7),
.area-card:nth-child(7),
.flow-step:nth-child(7) {
  transition-delay: 0.49s;
}

.empathy-card:nth-child(8),
.reason-card:nth-child(8),
.testimonial-card:nth-child(8),
.partner-card:nth-child(8),
.promise-card:nth-child(8),
.area-card:nth-child(8),
.flow-step:nth-child(8) {
  transition-delay: 0.56s;
}

.page-main {
  margin-top: 72px;
  padding: 60px 0;
  min-height: 50vh;
}
.page-main h1 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2e8f0;
}
.page-main .page-content {
  font-size: 17px;
  line-height: 1.95;
  color: #64748b;
}
.page-main .page-content h2,
.page-main .page-content h3 {
  color: #1e293b;
  font-weight: 700;
  margin: 22px 0 10px;
}
.page-main .page-content p {
  margin-bottom: 14px;
}

.cf7-optional.is-over {
  color: #ef4444 !important;
  font-weight: 600;
}

.rep-lead {
  background: #f8fafc;
  border-left: 3px solid #0d9488;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.rep-lead > p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 10px;
}

.rep-voice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rep-voice-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}
.rep-voice-list li i {
  color: #2dd4bf;
  font-size: 14px;
  flex-shrink: 0;
}

.rep-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #0f766e;
  color: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 22px 0;
}
.rep-highlight .rep-highlight-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}
.rep-highlight .rep-highlight-icon i {
  font-size: 16px;
  color: #ffffff;
}
.rep-highlight p {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffff !important;
  margin-bottom: 0 !important;
}
.rep-highlight p strong {
  color: #2dd4bf;
  font-weight: 700;
}

.rep-voices {
  background: #f0fdfa;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}
.rep-voices .rep-voices-label {
  font-size: 12px;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: 0.05em;
  margin-bottom: 10px !important;
}
.rep-voices ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rep-voices li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #334155;
}
.rep-voices li i {
  color: #0d9488;
  font-size: 15px;
  flex-shrink: 0;
}

.rep-closing {
  font-size: 18px !important;
  color: #1e293b !important;
  font-weight: 600;
  line-height: 1.85 !important;
}
.rep-closing strong {
  color: #0d9488;
}

.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-fade.is-fadein {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-left {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-fade-left.is-fadein {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}
.js-fade-right.is-fadein {
  opacity: 1;
  transform: translateY(0);
}

.js-scale, .hokkaido-stat, .stat-card {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-scale.is-fadein, .is-fadein.hokkaido-stat, .is-fadein.stat-card {
  opacity: 1;
  transform: scale(1);
}

.empathy-card,
.reason-card,
.promise-card,
.partner-card,
.testimonial-card {
  transition: border-color 0.25s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.empathy-card:hover,
.reason-card:hover,
.promise-card:hover,
.partner-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.section-title {
  position: relative;
  display: inline-block;
}

.flow-step:nth-child(1) {
  transition-delay: 0s;
}

.flow-step:nth-child(3) {
  transition-delay: 0.12s;
}

.flow-step:nth-child(5) {
  transition-delay: 0.24s;
}

.flow-step:nth-child(7) {
  transition-delay: 0.36s;
}

.area-card:nth-child(1) {
  transition-delay: 0s;
}

.area-card:nth-child(2) {
  transition-delay: 0.07s;
}

.area-card:nth-child(3) {
  transition-delay: 0.14s;
}

.area-card:nth-child(4) {
  transition-delay: 0.21s;
}

.area-card:nth-child(5) {
  transition-delay: 0.28s;
}

.area-card:nth-child(6) {
  transition-delay: 0.35s;
}/*# sourceMappingURL=main.css.map */