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

:root {
  --brown: #7e551b;
  --brown-light: #fef1bc;
  --orange: #f4880d;
  --orange-cta: #ff7003;
  --pink-bg: #fff5f7;
  --text: #333;
  --max-w: 390px;
}

body {
  font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
  color: var(--text);
  background: #fff;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  z-index: 100;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

.header-logo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--brown-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  letter-spacing: -1.8px;
  padding: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  background: var(--brown);
  color: var(--brown-light);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -1.4px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.btn-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.btn-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* Hero */
.sec-hero {
  position: relative;
  height: 660px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(0.5px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.hero-sub {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  color: var(--brown);
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  letter-spacing: -2.4px;
  text-align: center;
  background: rgba(255,255,255,0.7);
  width: 100%;
  padding: 4px 0;
}

.hero-main {
  background: rgba(255,255,255,0.7);
  width: 100%;
  padding: 16px 0;
  text-align: center;
}

.hero-main h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  color: var(--brown);
  text-shadow: 0 4px 8px rgba(0,0,0,0.25);
  letter-spacing: -3px;
}

.hero-service {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-shadow: 2px 2px 8px white;
  letter-spacing: -1.6px;
  text-align: center;
}

.hero-service span {
  font-size: 18px;
}

/* Section common */
.section-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: -2px;
  width: 100%;
  margin-bottom: 32px;
}

/* Problem */
.sec-problem {
  position: relative;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.problem-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(254,241,188,0.65) 0%, rgba(79,57,46,0.39) 50%);
  filter: blur(5px);
  z-index: 0;
}

.sec-problem > * {
  position: relative;
  z-index: 1;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.card-cloud {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  letter-spacing: -2px;
  color: #000;
  background: rgba(255,255,255,0.85);
  border-radius: 60% 60% 50% 50% / 50% 50% 40% 40%;
  padding: 40px 24px;
  width: 90%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
}

.problem-summary {
  text-align: center;
  padding: 24px 16px;
}

.problem-summary p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.6;
  color: rgba(0,0,0,0.67);
  letter-spacing: -2.8px;
}

/* Solution */
.sec-solution {
  position: relative;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.solution-bg {
  position: absolute;
  inset: 0;
  background: rgba(254,241,188,0.7);
  filter: blur(5px);
  z-index: 0;
}

.sec-solution > * {
  position: relative;
  z-index: 1;
}

.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.card-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
}

.card-img {
  width: 255px;
  height: 144px;
  border-radius: 30px;
  overflow: hidden;
  opacity: 0.85;
}

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

.card-solution h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: var(--brown);
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  letter-spacing: -2px;
}

.card-solution p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  width: 100%;
  max-width: 340px;
}

.card-solution .accent {
  color: var(--orange);
  font-size: 22px;
}

/* CTA */
.sec-cta {
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fff;
}

.cta-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  text-align: center;
  color: #000;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 110px;
  background: var(--orange-cta);
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.25);
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.btn-cta span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -2px;
}

/* Schedule */
.sec-schedule {
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.schedule-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 8px;
}

.time-tag {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: #ffc480;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
  letter-spacing: -1.2px;
  flex-shrink: 0;
  line-height: 1.6;
  min-width: 72px;
  text-align: center;
}

.schedule-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.schedule-title span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -1.5px;
  line-height: 1.6;
}

.schedule-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -1px;
  color: #000;
}

/* Facility & Staff */
.sec-intro {
  padding: 32px 16px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.facility-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.facility-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facility-photo {
  width: 100%;
  height: 191px;
  overflow: hidden;
  background: #d9d9d9;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  letter-spacing: -1.2px;
  line-height: 1.6;
}

.staff-list {
  background: var(--pink-bg);
  margin: 0 -16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.staff-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.staff-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  letter-spacing: -1.2px;
}

.staff-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.6;
}

.staff-role {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #000;
  font-size: 13px;
  line-height: 1.6;
}

.staff-comment {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #000;
  font-size: 13px;
  line-height: 1.6;
}

/* CTA alt */
.sec-cta--alt {
  background: #fff;
}

/* Usage */
.sec-usage {
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.usage-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.usage-item {
  position: relative;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 20px 20px 20px 80px;
  width: 100%;
}

.usage-step {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: var(--orange-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-step span {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.usage-item h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -2px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.usage-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -1px;
}

.usage-arrow {
  font-size: 28px;
  color: var(--orange-cta);
  padding: 8px 0;
  line-height: 1;
}

/* Contact */
.sec-contact {
  background: var(--pink-bg);
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-tel {
  text-align: center;
}

.tel-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -2px;
  line-height: 1.6;
  color: #000;
}

.tel-hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: -1px;
  line-height: 1.6;
  color: #000;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: -1.2px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.form-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}

.form-item label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  width: 90px;
  flex-shrink: 0;
  padding-top: 12px;
  letter-spacing: -1px;
  text-align: right;
  line-height: 1.4;
}

.form-item input,
.form-item select,
.form-item textarea {
  flex: 1;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  outline: none;
  letter-spacing: -0.5px;
  appearance: none;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  border-color: var(--orange);
}

.form-item select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-item textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 12px auto 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -1px;
  line-height: 1.6;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
}

/* Access */
.sec-access {
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.map-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.8px;
}

.access-label {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

/* Footer */
.footer {
  background: var(--orange);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: #000;
  text-align: center;
  letter-spacing: 0;
}
