﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

:root {
  --teal-900: #002330;
  --teal-800: #003043;
  --teal-700: #00374c;
  --teal-600: #0a5066;
  --teal-500: #1c6e88;
  --teal-400: #4f95ac;
  --sky-300: #b2e0f8;
  --sky-200: #cdeafa;
  --sky-100: #e4f4fd;
  --sky-50: #f4fbff;
  --yellow-600: #e3a800;
  --yellow-500: #fac010;
  --yellow-300: #ffdd76;
  --ink: #003043;
  --muted: #3d5a66;
  --subtle: #6e8590;
  --line: #d8e7ee;
  --line-soft: #e8f1f6;
  --surface: #fff;
  --bg: var(--sky-50);
  --shadow: 0 8px 22px rgba(0, 48, 67, 0.1);
  --shadow-soft: 0 2px 8px rgba(0, 48, 67, 0.08);
  --shadow-cta: 0 6px 16px rgba(250, 192, 16, 0.35);
  --radius: 16px;
  --radius-sm: 8px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Homepage content and scale refinement */
.home-section {
  padding: 104px 0;
}

.home-heading {
  margin-bottom: 42px;
}

.home-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #16708d;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-heading h2,
.company-home h2 {
  margin: 0;
  color: #003043;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.35;
}

.home-heading p {
  margin: 14px 0 0;
  color: #315562;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.movie-section {
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid #e8f7ff;
  border-bottom: 1px solid #e8f7ff;
}

.movie-feature {
  position: relative;
  display: block;
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 16px 36px rgba(0, 48, 67, 0.14);
}

.movie-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.movie-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.movie-feature.is-playing .movie-trigger {
  display: none;
}

.movie-feature picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.movie-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-play,
.youtube-card div > span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 48, 67, 0.18);
  transform: translate(-50%, -50%);
}

.movie-play::before,
.youtube-card div > span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #00374c;
}

.home-page .section {
  padding-top: 120px;
}

.home-page .bordered {
  margin-top: 96px;
  padding-top: 120px;
}

.home-page .section-heading {
  margin-bottom: 28px;
}

.home-page .section-heading h2 {
  font-size: 36px;
}

.section-intro {
  max-width: 720px;
  margin: -12px 0 34px 61px;
  color: #315562;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.business-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.business-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2f1f8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 48, 67, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 48, 67, 0.13);
}

.business-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: contain;
  background: #f8fcfe;
}

.business-card div {
  padding: 24px 24px 28px;
}

.business-card h3 {
  margin: 0 0 10px;
  color: #003043;
  font-size: 24px;
  line-height: 1.45;
}

.business-card p {
  margin: 0;
  color: #315562;
  font-size: 14px;
  line-height: 1.85;
  text-wrap: pretty;
}

.subsection-title {
  margin: 58px 0 24px;
  color: #003043;
  font-size: 28px;
  line-height: 1.45;
}

.home-page .menu-card {
  min-height: 188px;
  border-radius: 8px;
  font-size: 15px;
}

.home-page .service-icon {
  width: 96px;
  height: 96px;
}

.home-page .reason-grid,
.home-page .case-grid,
.home-page .voice-grid {
  gap: 24px;
}

.home-page .case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.home-page .reason-card {
  min-height: 228px;
  padding: 32px 26px;
  border-radius: 8px;
}

.home-page .reason-card h3 {
  font-size: 19px;
}

.home-page .reason-card p {
  font-size: 14px;
}

.home-page .case-card {
  display: grid;
  grid-template-columns: minmax(168px, 42%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 168px;
  border-radius: 8px;
}

.home-page .case-card img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}

.home-page .case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 18px 22px 16px;
}

.home-page .case-card h3 {
  margin: 0;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.home-page .case-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 400;
}

.home-page .voice-card {
  min-height: 190px;
  padding: 28px 24px;
  border-radius: 8px;
}

.home-page .voice-card h3 {
  font-size: 18px;
}

.home-page .voice-card p {
  font-size: 14px;
}

.home-page .area-section {
  margin-top: 96px;
  padding: 72px 0;
}

.company-home {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid #e8f7ff;
}

.company-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.company-home-copy h3 {
  margin: 28px 0 22px;
  color: #003043;
  font-size: 32px;
  line-height: 1.65;
}

.company-home-copy p {
  max-width: 610px;
  margin: 0 0 30px;
  color: #315562;
  font-size: 16px;
  line-height: 2;
  text-wrap: pretty;
}

.company-home-image {
  margin: 0;
}

.company-home-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news-home {
  background: rgba(244, 251, 255, 0.72);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.news-list {
  background: #fff;
  border-top: 1px solid #d8e7ee;
}

.news-list a {
  display: grid;
  grid-template-columns: 130px 110px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 104px;
  padding: 20px 26px;
  border-bottom: 1px solid #d8e7ee;
  transition: background 0.2s var(--ease-out);
}

.news-list a:hover {
  background: #f7fcff;
}

.news-list time {
  color: #54727e;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.news-list span,
.youtube-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 92px;
  min-height: 28px;
  padding: 2px 12px;
  color: #00374c;
  background: #dff3fd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.news-list strong {
  color: #003043;
  font-size: 17px;
  line-height: 1.65;
}

.youtube-home {
  background: rgba(255, 255, 255, 0.78);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.youtube-card {
  overflow: hidden;
  padding-bottom: 26px;
  background: #fff;
  border: 1px solid #e2f1f8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 48, 67, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 48, 67, 0.13);
}

.youtube-card > div {
  position: relative;
  height: 224px;
  margin-bottom: 20px;
  overflow: hidden;
}

.youtube-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-card div > span {
  width: 52px;
  height: 52px;
}

.youtube-card div > span::before {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 12px;
}

.youtube-card small,
.youtube-card h3 {
  margin-left: 22px;
  margin-right: 22px;
}

.youtube-card small {
  color: #b33a3a;
  background: #fff;
  border: 1px solid #dc5c5c;
}

.youtube-card h3 {
  margin-top: 12px;
  margin-bottom: 0;
  color: #003043;
  font-size: 19px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-section {
    padding: 80px 0;
  }

  .home-page .section {
    padding-top: 96px;
  }

  .home-page .bordered {
    margin-top: 80px;
    padding-top: 96px;
  }

  .home-page .section-heading h2,
  .home-heading h2,
  .company-home h2 {
    font-size: 32px;
  }

  .business-card h3 {
    font-size: 20px;
  }

  .company-home-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .youtube-card > div {
    height: 180px;
  }

  .home-page .case-grid {
    grid-template-columns: 1fr;
  }

  .home-page .case-card {
    grid-template-columns: minmax(180px, 36%) minmax(0, 1fr);
    min-height: 156px;
  }

  .home-page .case-card img {
    min-height: 156px;
  }
}

@media (max-width: 640px) {
  .home-section {
    padding: 64px 0;
  }

  .home-heading {
    margin-bottom: 28px;
  }

  .home-heading h2,
  .company-home h2,
  .home-page .section-heading h2 {
    font-size: 26px;
  }

  .home-heading p,
  .company-home-copy p {
    font-size: 14px;
  }

  .movie-play {
    width: 58px;
    height: 58px;
  }

  .home-page .section {
    padding-top: 80px;
  }

  .home-page .bordered {
    margin-top: 64px;
    padding-top: 80px;
  }

  .section-intro {
    margin: -4px 0 26px;
    font-size: 15px;
  }

  .business-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .business-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 156px;
  }

  .business-card img {
    width: 132px;
    height: 100%;
    aspect-ratio: auto;
  }

  .business-card div {
    align-self: center;
    padding: 18px;
  }

  .business-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .business-card p {
    font-size: 12px;
  }

  .subsection-title {
    margin: 42px 0 18px;
    font-size: 23px;
  }

  .home-page .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .menu-card {
    min-height: 196px;
    padding: 16px 10px 14px;
    font-size: 13px;
  }

  .home-page .service-icon {
    width: 108px;
    height: 108px;
  }

  .home-page .reason-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .home-page .case-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-page .case-card img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .home-page .case-body {
    padding: 18px 16px 20px;
    gap: 6px;
  }

  .home-page .case-card h3 {
    font-size: 16px;
  }

  .home-page .area-section {
    margin-top: 64px;
    padding: 56px 0;
  }

  .company-home-grid {
    gap: 32px;
  }

  .company-home-copy h3 {
    margin: 20px 0 16px;
    font-size: 24px;
    line-height: 1.6;
  }

  .split-heading {
    align-items: flex-start;
  }

  .news-list a {
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    min-height: 0;
    padding: 20px 16px;
  }

  .news-list strong {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .youtube-card > div {
    height: 220px;
  }
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.ambient-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-page > .site-header,
.home-page > main,
.home-page > .site-footer {
  position: relative;
  z-index: 1;
}

.ambient-shape {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  opacity: 0;
  transform-origin: center;
  will-change: transform;
}

.ambient-shape-1 {
  top: 2%;
  left: -8%;
  width: clamp(220px, 34vw, 560px);
  background: rgba(185, 227, 248, 0.68);
  border-radius: 42% 58% 63% 37% / 55% 36% 64% 45%;
}

.ambient-shape-2 {
  top: 13%;
  right: -9%;
  width: clamp(180px, 27vw, 440px);
  border: clamp(32px, 5vw, 76px) solid rgba(250, 192, 16, 0.2);
  border-radius: 50%;
}

.ambient-shape-3 {
  top: 26%;
  left: 8%;
  width: clamp(150px, 22vw, 340px);
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(50% 0, 100% 100%, 0 76%);
}

.ambient-shape-4 {
  top: 38%;
  right: 3%;
  width: clamp(240px, 38vw, 620px);
  background: rgba(205, 234, 250, 0.68);
  border-radius: 66% 34% 43% 57% / 35% 62% 38% 65%;
}

.ambient-shape-5 {
  top: 51%;
  left: -7%;
  width: clamp(170px, 26vw, 420px);
  border: clamp(26px, 4vw, 62px) solid rgba(178, 224, 248, 0.54);
  border-radius: 44% 56% 65% 35% / 62% 42% 58% 38%;
}

.ambient-shape-6 {
  top: 63%;
  right: 13%;
  width: clamp(130px, 18vw, 280px);
  background: rgba(250, 192, 16, 0.16);
  clip-path: polygon(15% 0, 100% 30%, 72% 100%, 0 68%);
}

.ambient-shape-7 {
  top: 74%;
  left: 12%;
  width: clamp(230px, 33vw, 520px);
  background: rgba(221, 242, 252, 0.82);
  border-radius: 37% 63% 48% 52% / 61% 34% 66% 39%;
}

.ambient-shape-8 {
  top: 86%;
  right: -5%;
  width: clamp(190px, 29vw, 460px);
  border: clamp(30px, 4.5vw, 70px) solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
}

.ambient-shape-9 {
  top: 94%;
  left: 32%;
  width: clamp(120px, 17vw, 260px);
  background: rgba(176, 222, 246, 0.5);
  clip-path: polygon(50% 0, 100% 82%, 12% 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 251, 255, 0.9);
  border-bottom: 1px solid rgba(216, 231, 238, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-800);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 4px solid var(--teal-700);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px -8px 0 -3px var(--sky-300);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid var(--yellow-500);
  border-radius: 4px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 50%;
  border-left: 3px solid var(--teal-700);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.nav a:hover {
  color: var(--teal-500);
  background: rgba(178, 224, 248, 0.25);
}

.header-contact,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 22px;
  color: var(--teal-800);
  background: var(--yellow-500);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: var(--shadow-cta);
  transition: background 180ms var(--ease-out), transform 140ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.header-contact:hover,
.button:hover {
  background: var(--yellow-600);
  box-shadow: 0 8px 20px rgba(250, 192, 16, 0.42);
}

.header-contact:active,
.button:active,
.quick-card:active,
.text-link:active {
  transform: scale(0.98);
}

.header-contact::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: rotate(-10deg);
}

.hero {
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(244, 251, 255, 0.98) 0%, rgba(244, 251, 255, 0.94) 37%, rgba(244, 251, 255, 0.52) 62%, rgba(244, 251, 255, 0.1) 100%),
    url("assets/hero-interior.jpg") right center / auto 100% no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-inner {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(650px, 100%);
  padding: 46px 0 34px;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--teal-800);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--teal-800);
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--yellow-600);
  border-bottom: 3px solid var(--yellow-600);
  transform: translateY(-50%) rotate(-45deg);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}

.quick-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 82px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-800);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-300);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-actions .quick-card.quick-card-line {
  color: #fff;
  background: #06c755;
  border-color: #06c755;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.22);
}

.hero-actions .quick-card.quick-card-line:hover {
  color: #fff;
  background: #05b84f;
  border-color: #05b84f;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.3);
}

.hero-actions .quick-card.quick-card-line strong,
.hero-actions .quick-card.quick-card-line small {
  color: #fff;
}

.quick-card strong,
.quick-card small {
  grid-column: 2;
  line-height: 1.35;
}

.quick-card strong {
  font-weight: 900;
}

.quick-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.quick-icon {
  grid-row: 1 / span 2;
  position: relative;
  width: 34px;
  height: 34px;
  color: var(--teal-700);
  background: var(--sky-100);
  border-radius: 50%;
}

.quick-icon.line-cta {
  display: grid;
  place-items: center;
  color: #06a948;
  background: #fff;
  font-size: 9px;
  font-weight: 900;
}

.quick-icon.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: url("assets/official/phone.svg") center / contain no-repeat;
}

.quick-icon.mail-cta::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: url("assets/official/mail.svg") center / contain no-repeat;
}

.quick-icon.mail-cta::after {
  content: none;
}

.quick-icon.calc::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid currentColor;
  border-radius: 3px;
  background: radial-gradient(circle, var(--yellow-500) 2px, transparent 3px) 4px 5px / 9px 9px;
}

.quick-icon.search::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.quick-icon.search::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 4px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.quick-icon.camera::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 20px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.quick-icon.camera::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 5px;
  height: 5px;
  border: 3px solid var(--yellow-600);
  border-radius: 50%;
}

.section {
  padding: 52px 0 0;
}

.bordered {
  margin-top: 42px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--teal-800);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0;
}

.section-heading::before {
  content: "";
  align-self: stretch;
  width: 5px;
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-500), var(--sky-300));
}

.section-heading.split {
  justify-content: space-between;
}

.section-heading.split > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading.split::before {
  display: none;
}

.section-icon {
  display: block;
  width: 42px;
  height: 42px;
  max-width: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.menu-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--teal-800);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-300);
  box-shadow: var(--shadow);
}

.service-icon {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  color: var(--teal-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.text-link:hover {
  color: var(--teal-700);
  background: var(--sky-100);
  border-color: var(--sky-300);
}

.text-link::after,
.button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link.center {
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 15px;
}

.text-link.right {
  display: flex;
  width: fit-content;
  margin: 18px 0 0 auto;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  min-height: 166px;
  padding: 24px 20px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(244, 251, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.reason-card h3 {
  margin: 0 0 8px;
  color: var(--teal-800);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.round-icon {
  display: block;
  width: 60px;
  height: 60px;
  max-width: 60px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.campaign {
  min-height: 104px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(250px, 390px) 1fr 170px auto;
  align-items: center;
  gap: 22px;
  padding: 18px 18px 18px 26px;
  background: #fff;
  border: 2px solid var(--yellow-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.campaign-title {
  color: var(--teal-800);
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 900;
  line-height: 1.45;
}

.campaign p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.campaign img {
  width: 170px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(168px, 42%) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
}

.case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px 16px 16px;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  padding: 2px 10px;
  color: var(--teal-800);
  background: var(--sky-100);
  border: 1px solid var(--sky-300);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.8;
}

.case-card h3 {
  margin: 0;
  color: var(--teal-800);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  min-height: 152px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.voice-card h3 {
  margin: 0 0 8px;
  color: var(--teal-800);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.voice-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.voice-card small {
  color: var(--teal-600);
  font-weight: 800;
}

.avatar {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.area-section {
  margin-top: 46px;
  padding: 42px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 251, 255, 0.7));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-inner {
  min-height: 160px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.area-copy strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--teal-800);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  line-break: strict;
}

.area-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.area-inner > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f4efe6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  margin-top: 42px;
  margin-bottom: 34px;
  padding: 30px 28px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0 0 18px;
  color: var(--teal-800);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky-50);
  color: var(--teal-800);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--sky-300);
  box-shadow: var(--shadow-soft);
}

.contact-card small,
.contact-card strong {
  display: block;
  line-height: 1.35;
}

.contact-card small {
  color: var(--teal-600);
  font-size: 14px;
  font-weight: 900;
}

.contact-card strong {
  color: var(--teal-800);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-card span {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: var(--teal-700);
  background: #fff;
  border-radius: 50%;
}

.contact-card.tel span::before {
  content: "";
  position: absolute;
  inset: 13px 17px;
  border: 10px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 4px 14px 14px;
  transform: rotate(-45deg);
}

.contact-card.line {
  border-color: rgba(6, 199, 85, 0.35);
}

.contact-card.line span {
  display: grid;
  place-items: center;
  color: #fff;
  background: #06c755;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.contact-card.line small,
.contact-card.line strong {
  color: #098f43;
}

.contact-card.line.is-primary {
  color: #fff;
  background: #06c755;
  border-color: #06c755;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.2);
}

.contact-card.line.is-primary span {
  color: #06a948;
  background: #fff;
}

.contact-card.line.is-primary small,
.contact-card.line.is-primary strong {
  color: #fff;
}

.contact-card.line.is-primary:hover {
  color: #fff;
  background: #05b84f;
  border-color: #05b84f;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.28);
}

.contact-card.mail span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 42px;
  height: 30px;
  border: 5px solid currentColor;
  border-radius: 6px;
}

.contact-card.mail span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 28px;
  height: 19px;
  border-left: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(-45deg);
}

.page-hero {
  padding: 66px 0 58px;
  background:
    linear-gradient(90deg, rgba(244, 251, 255, 0.98), rgba(244, 251, 255, 0.84)),
    url("assets/hero-interior.jpg") right center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 14px;
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0;
  color: var(--teal-800);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.page-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.breadcrumb {
  margin-top: 14px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--teal-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-section {
  padding: 56px 0 0;
}

.page-section.alt {
  margin-top: 56px;
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-copy {
  max-width: 760px;
  margin: -8px 0 24px 61px;
  color: var(--muted);
  font-weight: 600;
  line-height: 2;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.detail-body {
  padding: 22px 22px 24px;
}

.detail-body h3 {
  margin: 9px 0 8px;
  color: var(--teal-800);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.detail-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 28px;
  width: 11px;
  height: 7px;
  border-left: 3px solid var(--yellow-600);
  border-bottom: 3px solid var(--yellow-600);
  transform: rotate(-45deg);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: flow;
}

.flow-card {
  position: relative;
  padding: 26px 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.flow-card::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--yellow-600);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.flow-card h3 {
  margin: 0 0 8px;
  color: var(--teal-800);
  font-size: 17px;
  font-weight: 900;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.info-table th {
  width: 180px;
  color: var(--teal-800);
  background: var(--sky-50);
  font-weight: 900;
}

.info-table td {
  color: var(--muted);
  font-weight: 600;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.voice-list {
  display: grid;
  gap: 20px;
}

.voice-wide {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.voice-wide h3 {
  margin: 0 0 10px;
  color: var(--teal-800);
  font-size: 20px;
  font-weight: 900;
}

.voice-wide p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 2;
}

.voice-wide small {
  color: var(--teal-600);
  font-weight: 900;
}

.notice-box {
  padding: 28px;
  background: linear-gradient(180deg, #fff, var(--sky-50));
  border: 2px solid var(--yellow-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice-box h3 {
  margin: 0 0 10px;
  color: var(--teal-800);
  font-size: 24px;
  font-weight: 900;
}

.notice-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.site-footer {
  color: #eaf6fc;
  background: var(--teal-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.2fr 1fr 1fr;
  gap: 34px;
  padding: 38px 0;
}

.footer-grid > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 34px;
}

.footer-brand .brand {
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand .brand-mark {
  border-color: #fff;
  box-shadow: 8px -8px 0 -3px rgba(178, 224, 248, 0.55);
}

.footer-brand .brand-mark::after {
  border-color: #fff;
}

.footer-brand p,
.footer-info p {
  margin: 0 0 7px;
  color: #9fc4d4;
  font-size: 13px;
  font-weight: 500;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer-links h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  color: #d7edf7;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.86;
}

.footer-links a:hover {
  color: var(--yellow-300);
  opacity: 1;
}

.copyright {
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fc4d4;
  font-size: 12px;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(244, 251, 255, 0.98), rgba(244, 251, 255, 0.86)),
      url("assets/hero-interior.jpg") right center / auto 100% no-repeat;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-actions,
  .reason-grid,
  .case-grid,
  .voice-grid,
  .detail-grid,
  .flow-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .campaign {
    grid-template-columns: 1fr auto;
  }

  .campaign p,
  .campaign img {
    grid-column: 1 / -1;
  }

  .area-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid > * + * {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 24px, 480px);
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-contact {
    order: 2;
    width: 100%;
    margin-left: 0;
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 430px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-actions,
  .menu-grid,
  .reason-grid,
  .case-grid,
  .voice-grid,
  .contact-grid,
  .footer-grid,
  .campaign {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading.split {
    display: grid;
    gap: 12px;
  }

  .section-heading.split > div {
    align-items: flex-start;
  }

  .campaign img {
    width: 100%;
    height: 95px;
  }

  .area-copy strong,
  .area-copy p {
    margin-left: 0;
  }

  .area-copy strong {
    white-space: normal;
  }

  .voice-card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .section-copy {
    margin-left: 0;
  }

  .detail-grid,
  .feature-list,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    height: 170px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .info-table td {
    padding-top: 6px;
  }

  .voice-wide {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .avatar {
    width: 60px;
    height: 60px;
  }
}

/* Official-site fidelity pass: keep this prototype's sections,
   but borrow the current site logo, menu shape, colors, and imagery. */
.site-header {
  position: relative;
  top: auto;
  z-index: 40;
  background: #f4fbff;
  border-bottom: 0;
  box-shadow: none;
}

.header-inner {
  position: relative;
  width: 90%;
  max-width: none;
  min-height: 208px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 190px;
}

.brand {
  width: 128px;
  gap: 0;
  font-size: 0;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-mark {
  display: none;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 0;
  display: flex;
  transform: translate(-50%, -50%);
  gap: 0;
  min-width: 676px;
  justify-content: center;
  padding: 20px 48px;
  background: #fff;
  border: 1px solid #e8f7ff;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(177, 224, 247, 0.2), inset 0 -3px 6px rgba(177, 224, 247, 0.1);
  color: #003043;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 0.8em 1.5em;
  border-radius: 0;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  opacity: 0;
  background: #ffd83b;
  border-radius: 50%;
  filter: blur(6px);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: opacity 0.24s var(--ease-out);
}

.nav a:hover {
  color: #003043;
  background: transparent;
}

.nav a:hover::before {
  opacity: 0.55;
}

.header-contact-group {
  position: absolute;
  top: 0;
  right: 0;
  width: min(178px, 13vw);
  min-width: 144px;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 0 0 40px;
  font-weight: 700;
  text-align: center;
}

.header-tel,
.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  padding: 10px 8px;
  line-height: 1.35;
  box-shadow: none;
  border-radius: 0;
}

.header-tel {
  flex-direction: column;
  flex-wrap: nowrap;
  color: #00374c;
  background: #fac010;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-tel::before {
  content: "";
  width: 16px;
  height: 16px;
  margin: 0 0 4px;
  background: url("assets/official/tel.svg") center / contain no-repeat;
  opacity: 0.9;
}

.header-contact {
  color: #fff;
  background: #00374c;
  font-size: 14px;
}

.header-contact::before,
.header-contact::after {
  display: none;
}

.header-contact:hover {
  color: #fff;
  background: #005879;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  background: rgba(244, 251, 255, 0.36);
  border-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(68vw, 930px);
  height: 100%;
  background-image: url("assets/official/top-mv-pc.png");
  background-image: image-set(
    url("assets/official/top-mv-pc.webp") type("image/webp"),
    url("assets/official/top-mv-pc.png") type("image/png")
  );
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 251, 255, 0.78) 0%, rgba(244, 251, 255, 0.7) 34%, rgba(244, 251, 255, 0.24) 58%, rgba(244, 251, 255, 0) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-copy {
  width: min(560px, 48%);
  padding: 62px 0 48px;
}

.home-page .hero-inner {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.home-page .hero-copy {
  align-self: flex-start;
}

.home-page .hero-actions {
  align-self: flex-start;
  width: 100%;
  max-width: 900px;
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .hero-actions .quick-card {
  row-gap: 0;
  align-items: center;
}

.home-page .hero-actions .quick-card strong,
.home-page .hero-actions .quick-card small {
  line-height: 1.15;
  white-space: nowrap;
}

.home-page .hero-actions .quick-card small {
  margin-top: 0;
}

.page-kicker {
  border-color: #e8f7ff;
  box-shadow: 0 3px 6px rgba(177, 224, 247, 0.2), inset 0 -3px 6px rgba(177, 224, 247, 0.1);
  color: #00374c;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.hero h1,
.page-hero h1 {
  color: #003043;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(38px, 4.3vw, 50px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-shadow: none;
}

.home-page .hero h1 {
  margin: 0 0 14px;
}

@media (min-width: 981px) {
  .home-page .hero-copy {
    padding: 36px 0 8px;
  }
}

.lead {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

.check-list {
  gap: 8px;
  margin: 0;
  color: #003043;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.lead,
.page-lead,
.section-copy,
.detail-body p,
.case-card p,
.reason-card p,
.voice-card p,
.voice-wide p,
.info-table td {
  color: #003043;
}

.home-page .lead {
  color: #3d5c6b;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.lead,
.page-lead,
.section-copy,
.detail-body p,
.case-card p,
.reason-card p,
.voice-card p,
.voice-wide p,
.footer-brand p,
.footer-info p {
  text-wrap: pretty;
}

.quick-card,
.menu-card,
.reason-card,
.case-card,
.voice-card,
.detail-card,
.flow-card,
.feature-list li,
.voice-wide,
.info-table,
.contact-panel,
.contact-card,
.notice-box {
  border-color: #e8f7ff;
  box-shadow: 0 3px 6px rgba(177, 224, 247, 0.2), inset 0 -6px 6px rgba(177, 224, 247, 0.1);
}

.quick-card:hover,
.menu-card:hover,
.case-card:hover,
.contact-card:hover {
  box-shadow: 0 0 24px 6px rgba(63, 187, 255, 0.15), inset 0 0 0 rgba(17, 224, 247, 0.3);
  color: #005879;
}

.text-link {
  border-color: #e8f7ff;
  box-shadow: 0 3px 6px rgba(177, 224, 247, 0.2), inset 0 -6px 6px rgba(177, 224, 247, 0.1);
}

.button {
  color: #00374c;
  background: #fac010;
  box-shadow: none;
}

.button:hover {
  background: #fdd910;
  color: #005879;
  box-shadow: none;
}

.service-icon,
.section-icon,
.quick-icon,
.round-icon {
  color: #00374c;
}

.section-heading h2,
.campaign-title,
.case-card h3,
.detail-body h3,
.reason-card h3,
.voice-card h3,
.voice-wide h3,
.contact-panel h2,
.notice-box h3,
.info-table th {
  color: #003043;
  letter-spacing: 0;
}

.page-hero {
  padding: 70px 0 64px;
  background:
    linear-gradient(90deg, rgba(244, 251, 255, 0.98), rgba(244, 251, 255, 0.82)),
    url("assets/official/top-mv-pc.png") right bottom / contain no-repeat;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.4;
}

.page-lead {
  max-width: 680px;
  line-height: 1.85;
}

.page-section {
  padding-top: 64px;
}

.page-section.alt {
  margin-top: 64px;
  padding: 64px 0;
}

.section-copy {
  margin: 4px 0 28px 61px;
  line-height: 1.9;
}

.detail-card img,
.case-card img,
.campaign img {
  background: #fff;
}

.site-footer {
  background: #003043;
}

.official-line-button {
  position: fixed;
  right: 5%;
  z-index: 20;
  width: 56px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.official-line-button img {
  width: 100%;
  height: auto;
}

.official-line-button:hover {
  transform: scale(1.08);
}

.official-line-text-wrap {
  position: fixed;
  right: 5%;
  bottom: 82px;
  z-index: 21;
  width: 56px;
  overflow: visible;
  transition: opacity 0.2s var(--ease-out);
}

.official-line-text-wrap.--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.official-line-text-wrap .official-line-text {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
}

.official-line-text-wrap .js-line-close-button {
  display: none;
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  right: auto;
  z-index: 30;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.official-line-text-wrap .js-line-close-button:hover {
  transform: scale(1.1);
}

.official-line-text-wrap .js-line-close-button::before,
.official-line-text-wrap .js-line-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #003043;
}

.official-line-text-wrap .js-line-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.official-line-text-wrap .js-line-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-phone {
  display: none !important;
}

.official-line-icon {
  bottom: 22px;
}

.footer-brand .brand {
  width: 96px;
  margin-bottom: 16px;
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 176px;
    padding-right: 150px;
  }

  .brand {
    width: 104px;
  }

  .nav {
    min-width: 560px;
    padding: 14px 22px;
    font-size: 13px;
  }

  .nav a {
    padding: 0.75em 0.9em;
  }

  .header-tel,
  .header-contact {
    min-height: 74px;
  }
}

@media (max-width: 980px) {
  .site-header {
    background: #f4fbff;
  }

  .header-inner {
    min-height: 150px;
    align-items: flex-start;
    padding: 12px 0 16px;
  }

  .brand {
    width: 96px;
  }

  .header-contact-group {
    display: none;
  }

  .header-tel,
  .header-contact {
    min-height: 45px;
    font-size: 12px;
  }

  .nav {
    display: none !important;
  }

  .mobile-phone {
    position: absolute;
    top: 28px;
    right: 5%;
    left: auto;
    z-index: 80;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fac010;
    border-radius: 50%;
  }

  .mobile-phone img {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero::before {
    top: 24px;
    right: 50%;
    bottom: auto;
    width: min(calc(100% - 40px), 720px);
    height: clamp(360px, 56vw, 450px);
    background-image: url("assets/official/top-mv-sp.png");
    background-image: image-set(
      url("assets/official/top-mv-sp.webp") type("image/webp"),
      url("assets/official/top-mv-sp.png") type("image/png")
    );
    background-position: center top;
    background-size: contain;
    opacity: 1;
    transform: translateX(50%);
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: clamp(400px, 60vw, 500px) 0 0;
  }

  .home-page .hero-copy {
    width: 100%;
    padding: clamp(400px, 60vw, 500px) 0 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px) !important;
    max-width: none;
  }

  .header-inner {
    width: 90% !important;
    min-height: 112px;
    padding: 12px 0 16px;
  }

  .brand {
    width: 64px;
  }

  .header-contact-group {
    display: none;
  }

  .header-tel {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .header-tel::before {
    width: 22px;
    height: 22px;
    margin-right: 0;
  }

  .header-contact {
    display: none;
  }

  .nav {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero::before {
    top: 12px;
    right: 50%;
    bottom: auto;
    width: min(calc(100% - 16px), 520px);
    height: clamp(210px, 64vw, 340px);
    background-image: url("assets/official/top-mv-sp.png");
    background-image: image-set(
      url("assets/official/top-mv-sp.webp") type("image/webp"),
      url("assets/official/top-mv-sp.png") type("image/png")
    );
    background-position: center top;
    background-size: contain;
    opacity: 1;
    transform: translateX(50%);
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-copy {
    padding: clamp(215px, 64vw, 340px) 0 0;
  }

  .home-page .hero-copy {
    padding: clamp(215px, 64vw, 340px) 0 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.42;
  }

  .lead {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .page-hero {
    padding: 46px 0 48px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.45;
  }

  .page-lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.85;
  }

  .page-section {
    padding-top: 48px;
  }

  .page-section.alt {
    margin-top: 48px;
    padding: 48px 0;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 25px;
    line-height: 1.45;
  }

  .section-copy {
    margin: 0 0 28px;
    line-height: 1.85;
  }

  .official-line-button {
    right: 14px;
    width: 50px;
  }

  .official-line-text-wrap {
    right: 14px;
    bottom: 76px;
    width: 50px;
  }

  .official-line-text-wrap .js-line-close-button {
    display: block;
    top: -0.3rem;
    left: -0.3rem;
    right: auto;
    z-index: 30;
    margin-left: 0;
    width: 1.6rem;
    height: 1.6rem;
  }

  .official-line-icon {
    bottom: 16px;
  }

  .mobile-phone {
    position: absolute;
    top: 28px;
    right: 5%;
    left: auto;
    z-index: 80;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fac010;
    border-radius: 50%;
  }

  .mobile-phone img {
    width: 22px;
    height: 22px;
  }

  .footer-brand .brand {
    width: 70px;
  }
}

/* Final homepage balance refinements */
@media (min-width: 1200px) {
  .site-header .header-inner {
    min-height: 152px;
    padding-right: 320px;
  }

  .site-header .brand {
    width: 96px;
  }

  .site-header .nav {
    min-width: 640px;
    padding: 18px 38px;
    font-size: 15px;
  }

  .site-header .nav a {
    padding: 0.8em 1.35em;
  }

  .site-header .header-contact-group {
    top: 28px;
    display: grid;
    grid-template-columns: max-content minmax(96px, 1fr);
    width: 280px;
    min-width: 280px;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 8px 22px rgba(0, 48, 67, 0.1);
  }

  .site-header .header-tel,
  .site-header .header-contact {
    min-height: 72px;
    padding: 10px 10px;
  }

  .site-header .header-tel {
    flex-direction: row;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-header .header-tel::before {
    margin: 0 6px 0 0;
  }

  .site-header .header-contact {
    font-size: 13px;
  }

  .home-page .hero,
  .home-page .hero-inner {
    min-height: 590px;
  }

  .home-page .hero-copy {
    width: 640px;
  }

  .home-page .hero-actions {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 900px;
    margin-top: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    transform: none;
  }

  .home-page .quick-card {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    justify-content: stretch;
    column-gap: 14px;
    row-gap: 0;
    min-height: 82px;
    padding: 12px 20px;
  }

  .home-page .quick-card strong,
  .home-page .quick-card small {
    justify-self: start;
    margin-top: 0;
    text-align: left;
    white-space: nowrap;
  }

  .home-page .hero-actions .quick-icon {
    width: 36px;
    height: 36px;
    justify-self: start;
  }

  .home-page .hero-actions .quick-card::after {
    content: "";
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }
}

.campaign-section {
  margin-top: 88px;
}

.home-page .campaign {
  min-height: 270px;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #00374c;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 48, 67, 0.16);
}

.campaign-content {
  align-self: center;
  padding: 38px 42px;
}

.campaign-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  color: #00374c;
  background: #fac010;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.home-page .campaign-title {
  color: #fff;
  font-size: 34px;
  line-height: 1.35;
}

.campaign-highlight {
  display: block;
  margin-top: 4px;
  color: #fac010;
  font-size: 26px;
  line-height: 1.45;
}

.home-page .campaign p {
  margin: 14px 0 22px;
  color: #e8f7ff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.campaign-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: #06c755;
  border: 1px solid #06c755;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.22);
}

.campaign-line:hover {
  color: #fff;
  background: #05b84f;
  border-color: #05b84f;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.3);
}

.home-page .campaign > img,
.home-page .campaign > picture {
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 22px;
  background: #f4fbff;
  border-radius: 0;
  box-sizing: border-box;
}

.home-page .campaign > img {
  object-fit: contain;
}

.home-page .campaign > picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .campaign > picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.youtube-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 22px;
}

.youtube-card > .youtube-card-meta {
  height: auto;
  aspect-ratio: auto;
  margin-bottom: 0;
  overflow: visible;
}

.youtube-card-meta small {
  margin: 0;
}

.youtube-card-meta time {
  color: #6e8590;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.youtube-card > div:first-child {
  height: auto;
  aspect-ratio: 16 / 9;
}

.youtube-card h3 {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .home-page .hero-actions {
    width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .site-header .header-inner {
    min-height: 160px;
  }

  .site-header .brand {
    width: 88px;
  }
}

@media (max-width: 980px) {
  .campaign-section {
    margin-top: 72px;
  }

  .home-page .campaign {
    grid-template-columns: 1fr 320px;
  }

  .campaign-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .campaign-actions .button,
  .campaign-actions .campaign-line {
    width: 100%;
    max-width: 280px;
    padding-right: 16px;
    padding-left: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .campaign-section {
    margin-top: 56px;
  }

  .home-page .campaign {
    grid-template-columns: 1fr;
  }

  .campaign-content {
    padding: 28px 24px;
  }

  .home-page .campaign-title {
    font-size: 27px;
  }

  .campaign-highlight {
    font-size: 22px;
  }

  .home-page .campaign > img,
  .home-page .campaign > picture {
    min-height: 210px;
    max-height: 240px;
    padding: 18px;
  }

  .campaign-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .campaign-actions .button,
  .campaign-actions .campaign-line {
    width: 100%;
    max-width: none;
    min-height: 46px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .youtube-card-meta {
    margin: 0 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1379px) {
  .site-header .header-inner {
    padding-right: 320px;
  }

  .site-header .nav {
    min-width: 0;
    max-width: calc(90vw - 640px);
    padding-right: 24px;
    padding-left: 24px;
    font-size: 14px;
  }

  .site-header .nav a {
    padding-right: 1em;
    padding-left: 1em;
  }

  .site-header .header-contact-group {
    width: 280px;
    min-width: 280px;
  }

  .site-header .header-tel {
    font-size: 14px;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .site-header .header-contact-group {
    width: 186px;
    min-width: 186px;
  }

  .site-header .header-tel {
    font-size: 15px;
    white-space: nowrap;
  }

  .site-header .nav {
    min-width: 0;
    max-width: calc(90vw - 360px);
    width: max-content;
    padding: 12px 16px;
    font-size: 13px;
  }

  .site-header .nav a {
    padding: 0.7em 0.85em;
  }

  .home-page .hero-copy {
    width: min(560px, 58%);
  }

  .home-page .hero-actions {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 900px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .quick-card strong,
  .home-page .quick-card small {
    white-space: nowrap;
  }

  .area-inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .site-header .header-inner {
    padding-right: 340px;
  }

  .site-header .nav {
    min-width: 0;
    max-width: calc(90vw - 640px);
    width: max-content;
    padding: 16px 24px;
    font-size: 14px;
  }

  .site-header .nav a {
    padding: 0.75em 1.05em;
  }

  .site-header .header-contact-group {
    width: 280px;
    min-width: 280px;
  }
}

@media (max-width: 980px) {
  .business-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .hero-actions {
    gap: 10px;
  }

  .home-page .hero-actions .quick-card {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 72px;
    padding: 10px 12px;
    column-gap: 10px;
  }

  .home-page .hero-actions .quick-icon {
    width: 32px;
    height: 32px;
  }

  .business-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 156px;
  }

  .business-card img {
    width: 160px;
    height: 100%;
    aspect-ratio: auto;
  }

  .business-card div {
    align-self: center;
    padding: 18px 20px;
  }

  .youtube-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .business-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .business-card img {
    width: 132px;
  }

  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-actions {
    grid-template-columns: 1fr;
  }

  .home-page .quick-card strong,
  .home-page .quick-card small {
    white-space: normal;
  }
}

.p-top-banner_wrapper {
  position: fixed;
  bottom: 1rem;
  left: 5%;
  width: 58%;
  max-width: 15rem;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in;
}

.p-top-banner_wrapper.--active {
  opacity: 1;
  pointer-events: auto;
}

.p-top-banner_wrapper.--hidden {
  opacity: 0;
  pointer-events: none;
}

.p-top-banner_wrapper .c-banner {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-top-banner_wrapper .tite-area {
  position: relative;
  padding: 0.4rem;
  color: #fff;
  background-color: #003043;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-align: center;
}

.p-top-banner_wrapper .tite-area::before {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  display: inline-flex;
  width: 0.6rem;
  height: 0.4rem;
  background-color: #003043;
  clip-path: polygon(50% 100%, 0% 0, 100% 0);
  transform: translateX(-50%);
}

.p-top-banner_wrapper .cont-area {
  padding: 0.8rem 0.5rem 0.5rem;
  background-color: #fff;
  text-align: center;
}

.p-top-banner_wrapper .cont-area span {
  display: inline-block;
  width: 85%;
  margin-top: 0.5rem;
  color: #003043;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-top-banner_wrapper .js-close-button {
  position: absolute;
  top: -0.7rem;
  right: -0.4rem;
  z-index: 2;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.p-top-banner_wrapper .js-close-button:hover {
  transform: scale(1.1);
}

.p-top-banner_wrapper .js-close-button::before,
.p-top-banner_wrapper .js-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #003043;
  transform: translate(-50%, -50%);
}

.p-top-banner_wrapper .js-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-top-banner_wrapper .js-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-top-banner_wrapper .p-top-banner_inner {
  overflow: hidden;
  border-radius: 1rem;
}

.p-top-banner_wrapper .p-top-banner_inner .cont-area .img {
  display: block;
  width: 82%;
  max-width: 10rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 640px) {
  .p-top-banner_wrapper {
    left: 12px;
    bottom: 0.7rem;
    width: 42%;
    max-width: 11rem;
  }

  .p-top-banner_wrapper .tite-area {
    padding: 0.28rem 0.32rem;
    font-size: 10px;
    letter-spacing: 0.04rem;
  }

  .p-top-banner_wrapper .cont-area {
    padding: 0.5rem 0.35rem 0.35rem;
  }

  .p-top-banner_wrapper .cont-area span {
    width: 90%;
    margin-top: 0.28rem;
    font-size: 9px;
  }

  .p-top-banner_wrapper .p-top-banner_inner .cont-area .img {
    width: 74%;
    max-width: 7.5rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-top-banner_wrapper .js-close-button {
    top: -0.72rem;
    right: -0.72rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-banner_wrapper {
    left: 2rem;
    max-width: 17rem;
  }

  .p-top-banner_wrapper .tite-area {
    font-size: 13px;
  }

  .p-top-banner_wrapper .cont-area {
    padding: 1rem 0.8rem 0.8rem;
  }

  .p-top-banner_wrapper .cont-area span {
    font-size: 11px;
  }

  .p-top-banner_wrapper .p-top-banner_inner .cont-area .img {
    max-width: 11rem;
  }
}

