@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

:root {
  --base-color: #FFFFFF;
  --main-color: #008EC9;
  --accent-color: #F7BD06;
  --bg-light: #F4F9FC;
  --text-color: #333333;
  --fs-catch: 2.2rem;
  --fs-lead: 1.5rem;
  --fs-message: 1.25rem;
  --fs-h3: 1.15rem;
  --fs-body: 1rem;
  --fs-sub: 0.9rem;
  --fs-caption: 0.8rem;
  --fs-label: 0.9rem;
  --fs-btn: 1.15rem;
  --fs-tel: 1.9rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--base-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-label {
  text-align: center;
  margin: 0 0 6px;
  color: #9DB7C6;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  text-align: center;
  font-size: var(--fs-catch);
  font-weight: 700;
  color: var(--main-color);
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: -0.01rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: var(--fs-btn);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: center;
}
.btn:hover {
  transform: translateY(-3px);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--base-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  display: block;
  height: 1.5em;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: var(--fs-label);
}
.header-nav .nav-contact-btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.35);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(100deg, #FFFFFF 0%, var(--bg-light) 60%, #DCEFF7 100%);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 65% center;
     object-position: 65% center;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-light) 0%, rgba(244, 249, 252, 0) 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  width: 56%;
  padding: 60px 40px 60px 0;
  box-sizing: border-box;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--main-color);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  overflow: visible;
}
.hero-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}

.hero-title {
  font-size: var(--fs-catch);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
  color: var(--text-color);
}
.hero-title-em {
  color: var(--main-color);
}

.hero-desc {
  font-size: var(--fs-body);
  line-height: 2;
  margin: 0 0 32px;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-left: 30%;
  margin-right: 12px;
  flex-shrink: 0;
  background-color: transparent;
  border: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
  color: #0085C0;
  overflow: visible;
  isolation: isolate;
}
.hero-badge-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 152%;
  height: 152%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.hero-badge-text {
  position: relative;
  z-index: 1;
}

.hero-points {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.hero-point {
  width: 148px;
  height: 148px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-point:nth-child(1) {
  background-color: #5FC2D9;
}
.hero-point:nth-child(2) {
  background-color: #29A3C4;
}
.hero-point:nth-child(3) {
  background-color: #0E7FA6;
}
.hero-point span {
  width: 96px;
  color: #fff;
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-cta-note {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  margin: 0 0 12px;
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: center;
}
.hero-cta-note::before, .hero-cta-note::after {
  content: "";
  width: 2px;
  height: 22px;
  flex-shrink: 0;
  background-color: var(--text-color);
}
.hero-cta-note::before {
  margin-right: 10px;
  transform: rotate(-25deg);
}
.hero-cta-note::after {
  margin-left: 10px;
  transform: rotate(25deg);
}

.hero-btn {
  display: block;
  max-width: 420px;
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.12);
}

.deco {
  position: absolute;
  border-radius: 4px;
  pointer-events: none;
  z-index: 0;
}
.deco--1 {
  width: 26px;
  height: 26px;
  background-color: #BFE3F0;
}
.deco--2 {
  width: 34px;
  height: 34px;
  border: 2px solid #BFE3F0;
}
.deco--3 {
  width: 30px;
  height: 30px;
  border: 2px solid #CFE9F3;
}
.deco--4 {
  width: 20px;
  height: 20px;
  background-color: #DCF0F7;
}
.deco--5 {
  width: 46px;
  height: 46px;
  background-color: #FBEEA6;
  transform: rotate(45deg);
}

.problem-section,
.solution-section,
.flow-section,
.cta-section {
  position: relative;
  overflow: hidden;
}

.problem-section > .container,
.solution-section > .container,
.flow-section > .container,
.cta-section > .container {
  position: relative;
  z-index: 1;
}

.problem-section {
  background-color: var(--base-color);
}
.problem-section .deco--1 {
  top: 28px;
  left: 18px;
}
.problem-section .deco--2 {
  top: 58px;
  left: 50px;
}
.problem-section .deco--3 {
  top: 48%;
  right: 36px;
}
.problem-section .deco--4 {
  top: calc(48% + 22px);
  right: 14px;
}
.problem-section .deco--5 {
  bottom: 90px;
  right: -18px;
}

.problem-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.problem-item--right {
  flex-direction: row-reverse;
}
.problem-item--left .problem-figure {
  margin-right: -28px;
}
.problem-item--right .problem-figure {
  margin-left: -28px;
}

.problem-figure {
  position: relative;
  z-index: 1;
  width: 155px;
  flex-shrink: 0;
  margin: 0;
}
.problem-figure img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 165px;
  -o-object-fit: contain;
     object-fit: contain;
}

.problem-bubble {
  width: 245px;
  height: 245px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--base-color);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-bubble p {
  margin: 0;
  padding: 0 20px;
  text-align: center;
  font-size: var(--fs-sub);
  font-weight: 500;
  line-height: 1.9;
}
.problem-bubble .em {
  color: var(--main-color);
  font-weight: 700;
}

.problem-subtitle {
  margin: 70px 0 40px;
  text-align: center;
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.7;
}
.problem-subtitle .em {
  color: var(--main-color);
  font-size: 1.25em;
}

.problem-message {
  margin: 70px 0 0;
  text-align: center;
  font-size: var(--fs-message);
  font-weight: 700;
  line-height: 1.9;
}
.problem-message .marker {
  background: linear-gradient(transparent 65%, #CDE9F5 65%);
}
.problem-message .quote {
  color: var(--main-color);
}

.problem-cta {
  margin-top: 40px;
  text-align: center;
}

.problem-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
}
.problem-btn-badge {
  padding: 4px 14px;
  border-radius: 30px;
  background-color: #fff;
  color: var(--accent-color);
  font-size: var(--fs-caption);
  font-weight: 700;
}
.problem-btn-arrow {
  font-size: 1.3em;
  line-height: 1;
}

.solution-section {
  background-color: var(--bg-light);
}
.solution-section .deco--1 {
  top: 40px;
  right: 72px;
}
.solution-section .deco--2 {
  top: 18px;
  right: 28px;
}
.solution-section .deco--3 {
  top: 46%;
  left: 24px;
}
.solution-section .deco--4 {
  top: calc(46% + 24px);
  left: 52px;
}
.solution-section .deco--5 {
  bottom: 48px;
  left: -16px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
.solution-item--reverse {
  flex-direction: row-reverse;
}
.solution-item--reverse .solution-body {
  padding: 45px 40px;
  border-radius: 8px;
}

.solution-figure {
  width: 47%;
  flex-shrink: 0;
  margin: 0;
}
.solution-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.solution-body {
  flex: 1;
  min-width: 0;
}

.solution-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--main-color);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.solution-num span {
  font-size: 1.7em;
  line-height: 1;
}

.solution-heading {
  margin: 0 0 20px;
  color: var(--main-color);
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.solution-text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 2.1;
}
.solution-text .marker {
  background: linear-gradient(transparent 62%, #FCEFA8 62%);
}

.support-section {
  position: relative;
  overflow: hidden;
  background-color: var(--base-color);
}

.support-panel {
  position: relative;
  margin-top: 45px;
  padding: 60px 50px 55px;
  border-radius: 14px;
  background-color: #EAF6FA;
}

.support-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--main-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.support-deco {
  position: absolute;
  border-radius: 4px;
}
.support-deco--1 {
  top: -14px;
  left: 20px;
  width: 26px;
  height: 26px;
  background-color: #BFE3F0;
}
.support-deco--2 {
  top: 18px;
  left: 52px;
  width: 34px;
  height: 34px;
  border: 2px solid #BFE3F0;
}
.support-deco--3 {
  top: 88px;
  right: 60px;
  width: 30px;
  height: 30px;
  border: 2px solid #CFE9F3;
}
.support-deco--4 {
  top: 108px;
  right: 34px;
  width: 20px;
  height: 20px;
  background-color: #DCF0F7;
}
.support-deco--5 {
  top: 120px;
  right: -34px;
  width: 46px;
  height: 46px;
  background-color: #FBEEA6;
  transform: rotate(45deg);
}

.support-heading {
  position: relative;
  margin: 0 0 25px;
  text-align: center;
  color: var(--main-color);
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.support-intro {
  position: relative;
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: var(--fs-body);
  line-height: 2.1;
}
.support-intro .marker {
  background: linear-gradient(transparent 62%, #FCEFA8 62%);
}

.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 35px;
}

.support-card {
  text-align: center;
}
.support-card-figure {
  margin: 0 0 18px;
}
.support-card-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.support-card h3 {
  margin: 0 0 10px;
  color: var(--main-color);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.support-card p {
  margin: 0;
  font-size: var(--fs-sub);
  line-height: 1.9;
}

.support-message {
  margin-top: 60px;
  text-align: center;
  font-size: var(--fs-message);
  font-weight: 700;
  line-height: 2.2;
}
.support-message .band {
  background-color: #7FC7DE;
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.flow-section {
  background-color: #E3EDF5;
}
.flow-section .deco--1 {
  top: 22px;
  left: 24px;
}
.flow-section .deco--2 {
  top: 50px;
  left: 56px;
}
.flow-section .deco--3 {
  bottom: 88px;
  right: 48px;
}
.flow-section .deco--4 {
  bottom: 68px;
  right: 22px;
}
.flow-section .deco--5 {
  top: 64px;
  right: -20px;
}

.flow-lead {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  font-size: var(--fs-body);
}

.flow-list {
  display: flex;
  align-items: stretch;
  gap: 34px;
}

.flow-step {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 0;
  height: 0;
  border-left: 13px solid var(--main-color);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateY(-50%);
}

.flow-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--base-color);
}
.flow-card-head {
  padding: 12px 10px;
  background: linear-gradient(180deg, #3FAEE0 0%, var(--main-color) 100%);
  color: #fff;
  text-align: center;
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.flow-card-body {
  flex: 1;
  padding: 22px 16px 26px;
  text-align: center;
}
.flow-card-body h3 {
  margin: 0 0 14px;
  color: var(--main-color);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.6;
}
.flow-card-body p {
  margin: 0;
  color: #555;
  font-size: var(--fs-sub);
  line-height: 1.9;
}

.flow-cta {
  margin-top: 45px;
  text-align: center;
}

.voice-section {
  background-color: var(--bg-light);
}

.voice-lead {
  max-width: 820px;
  margin: -20px auto 40px;
  text-align: center;
  font-size: var(--fs-body);
  line-height: 2;
}

.voice-stage {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(128px, 1fr) minmax(300px, 3fr) minmax(128px, 1fr);
  grid-template-areas: "a feature b" "c feature d" "e feature f";
  gap: 14px;
  padding: 52px 28px 28px;
  background: #fff;
  border: 2px dashed #8ec8e8;
}

.voice-click,
.voice-hint {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: var(--main-color);
  font-family: "Yomogi", cursive;
  pointer-events: none;
}

.voice-click {
  top: 6px;
  left: 10px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 1.15rem;
}
.voice-click svg {
  width: 58px;
  height: 30px;
  margin-top: 10px;
}

.voice-hint {
  top: -90px;
  right: -102px;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  transform: rotate(8deg);
}
.voice-hint::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.voice-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #c5dce8;
  text-align: left;
  color: var(--text-color);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.voice-card:hover, .voice-card:focus-visible {
  border-color: var(--main-color);
  box-shadow: 0 6px 16px rgba(0, 142, 201, 0.12);
}
.voice-card.is-active {
  background: #e8f5fc;
  border-color: #F7BE05;
}

.voice-card-figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eaf6fb;
}
.voice-card-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-card-text {
  display: block;
  padding: 10px 12px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.6;
}

.voice-feature {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.voice-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.voice-prev,
.voice-next {
  padding: 0;
  color: #7aa8d6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.voice-prev:hover,
.voice-next:hover {
  color: var(--main-color);
}

.voice-feature-media {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid #c5dce8;
  background: #eaf6fb;
}
.voice-feature-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-feature-kicker {
  margin: 10px 0 6px;
  color: var(--main-color);
  font-size: var(--fs-caption);
  font-weight: 700;
  text-align: center;
}

.voice-feature-quote {
  margin: 0 0 12px;
  color: var(--text-color);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.voice-feature-body {
  margin: 0;
  color: #555;
  font-size: var(--fs-sub);
  line-height: 1.9;
  text-align: left;
}

.cta-section {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section .deco--1 {
  top: 24px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.22);
}
.cta-section .deco--2 {
  top: 52px;
  left: 52px;
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-section .deco--3 {
  top: 32px;
  right: 58px;
  border-color: rgba(255, 255, 255, 0.24);
}
.cta-section .deco--4 {
  top: 54px;
  right: 32px;
  background-color: rgba(255, 255, 255, 0.18);
}
.cta-section .deco--5 {
  top: 108px;
  right: -18px;
}

.cta-title {
  font-size: var(--fs-catch);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.cta-desc {
  font-size: var(--fs-body);
  margin-bottom: 40px;
}

.cta-box {
  background-color: var(--base-color);
  color: var(--text-color);
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cta-left {
  text-align: left;
}

.contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.contact-label {
  background-color: var(--main-color);
  color: var(--base-color);
  padding: 6px 0;
  width: 100px;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
  font-size: var(--fs-label);
  flex-shrink: 0;
}

.contact-value {
  font-size: var(--fs-body);
  font-weight: 700;
}
.contact-value.tel {
  font-size: var(--fs-tel);
  color: var(--main-color);
  line-height: 1.4;
}
.contact-value.tel .small {
  font-size: var(--fs-caption);
  color: var(--text-color);
  font-weight: normal;
  white-space: nowrap;
}

.address-info {
  margin: 30px 0;
  font-size: var(--fs-body);
  line-height: 1.8;
  padding-bottom: 20px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
}
.hours-table th,
.hours-table td {
  padding: 12px 2px;
  text-align: center;
  font-size: var(--fs-body);
}
.hours-table th:first-child,
.hours-table td:first-child {
  text-align: left;
  font-weight: 700;
}
.hours-table th {
  padding-bottom: 4px;
}
.hours-table td {
  padding-top: 4px;
}

.hours-circle {
  color: var(--accent-color);
  font-size: 1.35em;
  font-weight: bold;
}

.hours-note {
  font-size: var(--fs-caption);
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-right {
  display: flex;
  flex-direction: column;
}

.service-area {
  background-color: var(--base-color);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-area h3 {
  color: var(--main-color);
  margin: 0 0 15px 0;
  font-size: var(--fs-h3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-area p {
  margin: 0 0 20px 0;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.5;
}
.service-area p .small {
  font-size: var(--fs-caption);
  font-weight: normal;
  color: #555;
  display: block;
  margin-top: 5px;
}

.map-placeholder {
  width: 100%;
  flex-grow: 1;
  min-height: 250px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  border: 2px dashed #ccc;
}

.map-embed {
  width: 100%;
  margin-top: 15px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-button-container {
  text-align: center;
}

.call-btn {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  padding: 20px;
}

.contact-form {
  position: relative;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
  text-align: left;
}

.contact-form-title {
  font-size: var(--fs-h3);
  color: var(--main-color);
  margin: 0 0 8px;
  text-align: center;
}

.contact-form-lead {
  text-align: center;
  font-size: var(--fs-sub);
  color: #666;
  margin: 0 0 28px;
}

.contact-form-notice {
  margin: 0 0 20px;
  color: #d32f2f;
  font-size: var(--fs-sub);
  font-weight: 700;
  line-height: 1.9;
  text-align: left;
  text-align: center;
}

.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-label);
  margin-bottom: 8px;
}
.form-row .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background-color: #fff;
  color: var(--text-color);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(0, 142, 201, 0.15);
}
.form-row textarea {
  min-height: 140px;
}

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.contact-form input[type=checkbox] {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: none;
  cursor: pointer;
}
.contact-form input[type=checkbox]:checked {
  border-color: var(--main-color);
  background-color: var(--main-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' d='M3.5 8.5 L6.5 11.5 L12.5 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.contact-form input[type=checkbox]:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(0, 142, 201, 0.15);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: #c0392b;
  text-align: center;
  font-weight: 700;
  margin: 0 0 16px;
}

.contact-form .call-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.thanks-section {
  min-height: 60vh;
}

.thanks-box p {
  font-size: var(--fs-body);
  line-height: 1.9;
  margin: 0 0 32px;
}

.privacy-page section {
  padding: 0;
}
.privacy-page .privacy-head {
  padding: 80px 0 60px;
}
.privacy-page .privacy-section {
  padding: 80px 0;
}

.privacy-head {
  background: linear-gradient(100deg, #FFFFFF 0%, var(--bg-light) 60%, #DCEFF7 100%);
}
.privacy-head .section-title {
  margin-bottom: 40px;
}

.privacy-lead {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: var(--fs-body);
  line-height: 2.1;
}

.privacy-signature {
  max-width: 780px;
  margin: 0 auto;
  text-align: right;
  font-size: var(--fs-sub);
  font-weight: 700;
  line-height: 1.9;
}
.privacy-signature span {
  letter-spacing: 0.08em;
}

.privacy-section {
  background-color: var(--bg-light);
}

.privacy-panel {
  padding: 60px 50px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 142, 201, 0.08);
}

.privacy-block + .privacy-block {
  margin-top: 50px;
}

.privacy-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #E3EDF5;
  color: var(--main-color);
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
}
.privacy-heading::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 1.1em;
  border-radius: 3px;
  background-color: var(--accent-color);
}

.privacy-text {
  margin: 0 0 16px;
  font-size: var(--fs-body);
  line-height: 2.1;
}
.privacy-text:last-child {
  margin-bottom: 0;
}
.privacy-text .marker {
  background: linear-gradient(transparent 62%, #FCEFA8 62%);
}

.privacy-note {
  color: #666;
  font-size: var(--fs-sub);
}

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.privacy-list li {
  position: relative;
  padding-left: 26px;
  font-size: var(--fs-body);
  line-height: 2;
}
.privacy-list li:not(:last-child) {
  margin-bottom: 14px;
}
.privacy-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.privacy-cta {
  margin-top: 50px;
  text-align: center;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info h4 {
  font-size: var(--fs-h3);
  margin: 0 0 15px 0;
}
.footer-info p {
  margin: 5px 0;
  font-size: var(--fs-sub);
  color: #ddd;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: var(--fs-sub);
}
.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: var(--fs-caption);
  color: #888;
  border-top: 1px solid #444;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  :root {
    --fs-catch: 1.9rem;
    --fs-lead: 1.3rem;
    --fs-message: 1.1rem;
    --fs-h3: 1.05rem;
    --fs-body: 0.95rem;
    --fs-sub: 0.85rem;
    --fs-caption: 0.78rem;
    --fs-label: 0.85rem;
    --fs-btn: 1.05rem;
    --fs-tel: 1.6rem;
  }
  header {
    padding: 15px 20px;
  }
  .logo {
    font-size: 1.15rem;
    white-space: nowrap;
  }
  .header-nav {
    gap: 14px;
  }
  .header-nav a {
    white-space: nowrap;
  }
  .header-nav .nav-contact-btn {
    padding: 9px 18px;
  }
  .hero-photo {
    width: 44%;
  }
  .hero-photo img {
    -o-object-position: 70% center;
       object-position: 70% center;
  }
  .hero-inner {
    min-height: 560px;
  }
  .hero-copy {
    width: 58%;
    padding: 50px 30px 50px 0;
  }
  .hero-title {
    margin-bottom: 18px;
  }
  .hero-desc {
    margin-bottom: 26px;
  }
  .hero-badge {
    width: 68px;
    height: 68px;
    font-size: 0.72rem;
  }
  .hero-points {
    gap: 12px;
    margin-bottom: 26px;
  }
  .hero-point {
    width: 126px;
    height: 126px;
  }
  .hero-point span {
    width: 84px;
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .hero-cta-note {
    max-width: 360px;
  }
  .hero-btn {
    max-width: 360px;
    padding: 16px 20px;
  }
  .problem-row {
    gap: 10px;
  }
  .problem-figure {
    width: 125px;
  }
  .problem-bubble {
    width: 215px;
    height: 215px;
  }
  .problem-bubble p {
    padding: 0 12px;
    line-height: 1.8;
  }
  .problem-subtitle {
    margin: 55px 0 35px;
  }
  .problem-message {
    margin-top: 55px;
  }
  .solution-list {
    gap: 50px;
  }
  .solution-item {
    gap: 30px;
  }
  .solution-figure {
    width: 45%;
  }
  .solution-item--reverse .solution-body {
    padding: 30px 25px;
  }
  .solution-heading {
    margin-bottom: 15px;
  }
  .solution-text {
    line-height: 1.95;
  }
  .support-panel {
    padding: 50px 30px 45px;
  }
  .support-label {
    font-size: 1.8rem;
    top: -24px;
  }
  .support-heading {
    margin-bottom: 20px;
  }
  .support-intro {
    line-height: 2;
    margin-bottom: 35px;
  }
  .support-grid {
    gap: 30px 25px;
  }
  .support-card p {
    line-height: 1.8;
  }
  .support-message {
    margin-top: 50px;
  }
  .support-deco--3,
.support-deco--4 {
    right: 20px;
  }
  .support-deco--5 {
    right: 10px;
    top: 150px;
    width: 38px;
    height: 38px;
  }
  .deco--5 {
    width: 38px;
    height: 38px;
  }
  .flow-lead {
    margin-bottom: 30px;
  }
  .flow-list {
    gap: 24px;
  }
  .flow-step:not(:last-child)::after {
    right: -20px;
    border-left-width: 11px;
  }
  .flow-card-head {
    padding: 10px 8px;
  }
  .flow-card-body {
    padding: 18px 12px 22px;
  }
  .flow-card-body h3 {
    margin-bottom: 10px;
  }
  .flow-card-body p {
    line-height: 1.8;
  }
  .flow-cta {
    margin-top: 35px;
  }
  .voice-stage {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "feature feature feature" "a b c" "d e f";
    padding: 28px 20px 20px;
  }
  .voice-click,
.voice-hint {
    display: none;
  }
  .voice-feature {
    margin-bottom: 8px;
    height: auto;
  }
  .cta-box {
    padding: 40px 30px;
  }
  .contact-row {
    gap: 12px;
  }
  .contact-label {
    width: 82px;
  }
  .address-info {
    margin: 25px 0;
  }
  .hours-table th,
.hours-table td {
    padding: 10px 2px;
  }
  .hours-table th {
    padding-bottom: 3px;
  }
  .hours-table td {
    padding-top: 3px;
  }
  .hours-note br {
    display: none;
  }
  .service-area {
    padding: 25px 20px;
  }
  .privacy-panel {
    padding: 50px 35px;
  }
}
@media (max-width: 1250px) {
  .menu-toggle {
    display: flex;
  }
  header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background-color: var(--base-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  header.is-menu-open .header-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid #e5eef3;
    white-space: normal;
  }
  .header-nav .nav-contact-btn {
    margin-top: 16px;
    padding: 12px 25px;
    border-bottom: none;
    text-align: center;
  }
  .menu-overlay {
    display: block;
  }
  .menu-overlay[hidden] {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-catch: 1.4rem;
    --fs-lead: 1.15rem;
    --fs-message: 1rem;
    --fs-h3: 1.05rem;
    --fs-body: 0.9rem;
    --fs-sub: 0.85rem;
    --fs-caption: 0.78rem;
    --fs-label: 0.85rem;
    --fs-btn: 1rem;
    --fs-tel: 1.8rem;
  }
  header {
    padding: 15px 10px;
  }
  .hero-photo {
    position: static;
    width: 100%;
    height: 240px;
  }
  .hero-photo::after {
    background: linear-gradient(0deg, var(--bg-light) 0%, rgba(244, 249, 252, 0) 30%);
  }
  .hero-inner {
    min-height: 0;
    display: block;
  }
  .hero-copy {
    width: 100%;
    padding: 30px 0 50px;
    text-align: center;
  }
  .hero-label {
    justify-content: center;
    margin-bottom: 14px;
  }
  .hero-label::before {
    width: 24px;
  }
  .hero-badge {
    margin-left: 0;
    margin-right: 0;
    width: 62px;
    height: 62px;
    font-size: 0.65rem;
  }
  .hero-title {
    line-height: 1.7;
  }
  .hero-desc {
    line-height: 1.9;
    text-align: left;
  }
  .hero-desc br {
    display: none;
  }
  .hero-points {
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .hero-point {
    width: 31%;
    max-width: 120px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .hero-point span {
    width: 72%;
    font-size: 0.62rem;
    line-height: 1.4;
  }
  .hero-cta-note {
    max-width: none;
  }
  .hero-btn {
    margin: 0 auto;
    padding: 16px 20px;
  }
  .problem-row {
    grid-template-columns: 1fr;
  }
  .problem-item {
    justify-content: center;
  }
  .problem-figure {
    width: 30%;
    max-width: 130px;
  }
  .problem-bubble {
    width: 62%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .problem-bubble p {
    line-height: 1.8;
  }
  .problem-subtitle {
    margin: 45px 0 30px;
  }
  .problem-message {
    margin-top: 45px;
  }
  .problem-btn {
    gap: 10px;
    padding: 14px 18px;
  }
  .problem-btn-badge {
    padding: 4px 10px;
  }
  .solution-list {
    gap: 45px;
  }
  .solution-item,
.solution-item--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .solution-figure {
    width: 100%;
  }
  .solution-figure img {
    aspect-ratio: 16/10;
  }
  .solution-item--reverse .solution-body {
    padding: 25px 20px;
  }
  .solution-num {
    margin-bottom: 8px;
  }
  .solution-heading {
    margin-bottom: 12px;
  }
  .solution-text {
    line-height: 1.9;
  }
  .support-panel {
    padding: 45px 20px 40px;
    margin-top: 35px;
  }
  .support-label {
    font-size: 1.5rem;
    top: -20px;
  }
  .support-heading {
    margin-bottom: 18px;
    letter-spacing: -0.01rem;
  }
  .support-intro {
    line-height: 1.9;
    text-align: left;
    margin-bottom: 30px;
  }
  .support-intro br {
    display: none;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .support-card-figure {
    max-width: 420px;
    margin: 0 auto 15px;
  }
  .support-card p {
    text-align: left;
  }
  .support-message {
    line-height: 2.4;
    margin-top: 45px;
  }
  .support-deco--1,
.support-deco--2,
.support-deco--3,
.support-deco--4 {
    display: none;
  }
  .support-deco--5 {
    right: 8px;
    top: 55px;
    width: 30px;
    height: 30px;
  }
  .deco--1,
.deco--2,
.deco--3,
.deco--4 {
    display: none;
  }
  .deco--5 {
    width: 30px;
    height: 30px;
  }
  .problem-section .deco--5 {
    right: -10px;
    bottom: 40px;
  }
  .solution-section .deco--5 {
    left: -10px;
    bottom: 24px;
  }
  .flow-section .deco--5 {
    right: -10px;
    top: 40px;
  }
  .cta-section .deco--5 {
    right: -10px;
    top: 70px;
  }
  .flow-list {
    flex-direction: column;
    gap: 36px;
  }
  .flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -27px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 13px solid var(--main-color);
    border-bottom: none;
    transform: translateX(50%);
  }
  .flow-lead {
    margin: 0 0 28px;
  }
  .flow-card-body {
    padding: 20px 18px 24px;
  }
  .cta-box {
    padding: 30px 20px;
  }
  .cta-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
  }
  .hours-table th,
.hours-table td {
    padding: 10px 2px;
    font-size: 0.85rem;
  }
  .hours-table th {
    padding-bottom: 3px;
  }
  .hours-table td {
    padding-top: 3px;
  }
  .map-placeholder {
    min-height: 200px;
  }
  .map-embed {
    aspect-ratio: auto;
    height: 260px;
  }
  .service-area p .small {
    display: inline;
    margin-top: 0;
  }
  .contact-form {
    margin-top: 28px;
    padding-top: 28px;
  }
  .voice-lead {
    margin-top: 0;
    text-align: left;
  }
  .voice-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "feature feature" "a b" "c d" "e f";
    gap: 10px;
    padding: 16px;
  }
  .voice-card-text {
    font-size: 0.72rem;
    padding: 8px 10px 10px;
  }
  .voice-feature-quote {
    font-size: 1.05rem;
  }
  .privacy-page .privacy-head {
    padding: 50px 0 45px;
  }
  .privacy-page .privacy-section {
    padding: 45px 0 60px;
  }
  .privacy-head .section-title {
    margin-bottom: 30px;
  }
  .privacy-lead {
    text-align: left;
  }
  .privacy-lead br {
    display: none;
  }
  .privacy-panel {
    padding: 35px 20px;
    border-radius: 10px;
  }
  .privacy-block + .privacy-block {
    margin-top: 40px;
  }
  .privacy-heading {
    gap: 10px;
    align-items: flex-start;
  }
  .privacy-heading::before {
    margin-top: 0.3em;
    width: 5px;
  }
  .privacy-list li {
    padding-left: 20px;
  }
  .privacy-list li::before {
    width: 8px;
    height: 8px;
    top: 0.8em;
  }
  .privacy-cta {
    margin-top: 40px;
  }
}