@charset "utf-8";

/* --- Base Settings --- */
:root {
  --bg-color: #FFF5F7;
  --section-bg: #FDFBF9;
  --primary-color: #B48484;
  --accent-color: #D6C6B9;
  --text-color: #594A42;
  --white: #FFFFFF;
  --section-padding: 90px 20px;
  --font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-gothic: "Helvetica Neue", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

body {
  font-family: var(--font-gothic);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.9;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif-font {
  font-family: var(--font-mincho);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

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

ul {
  list-style: none;
}

/* --- Components --- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-gothic);
  text-align: center;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(180, 132, 132, 0.2);
  font-weight: 500;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  background-color: #A07070;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: 15px auto 0;
}

.section-title span {
  display: block;
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  color: #8C7B70;
  margin-top: 10px;
}

/* --- Header --- */
header {
  background-color: rgba(255, 245, 247, 0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(180, 132, 132, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-tel {
  text-align: right;
  font-size: 1.1rem;
  font-family: var(--font-mincho);
  color: var(--primary-color);
  line-height: 1.2;
}

.header-tel span {
  font-size: 0.75rem;
  color: var(--text-color);
  font-family: var(--font-gothic);
  display: block;
  margin-bottom: 3px;
}

.header-btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  border-radius: 30px;
}

/* --- Hero Section --- */
#hero {
  height: 85vh;
  margin-top: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/33663943_m.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  max-width: 700px;
  box-shadow: 0 10px 40px rgba(180, 132, 132, 0.15);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-color);
}

.hero-sub {
  font-family: var(--font-gothic);
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: #6D5C54;
}

/* --- Philosophy --- */
#philosophy {
  padding: var(--section-padding);
  background: var(--white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.mvv-card {
  background: #f4ebec;
  border: 1px solid #eadcdc;
  border-radius: 18px;
  padding: 28px 28px 24px;
  min-height: 100%;
}

.mvv-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(191, 143, 132, 0.12);
  color: #b78478;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.mvv-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: #b78478;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mvv-text {
  line-height: 2;
  color: #5f514b;
  font-size: 1rem;
}

.mvv-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(183, 132, 120, 0.25);
  color: #9a766d;
  font-size: 0.93rem;
}

.mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mvv-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 14px 16px;
  line-height: 1.8;
  color: #5f514b;
}

.mvv-list li i {
  color: #b78478;
  margin-top: 0.35em;
  font-size: 0.9rem;
}

.mvv-list li span {
  flex: 1;
}

/* --- Human Capital Support --- */
#business {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--white) 0%, var(--section-bg) 100%);
}

.business-hero {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 70px;
}

.business-hero h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-color);
}

.business-icon-top {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.5;
}

.problem-container {
  background: #F8F2EF;
  padding: 50px;
  border-radius: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.problem-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.problem-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.problem-item {
  background: var(--white);
  padding: 15px 25px;
  border: 1px solid #EAE0DD;
  border-radius: 50px;
  color: #6D5C54;
  font-family: var(--font-mincho);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.consulting-intro {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
  padding: 0 20px;
}

.consulting-intro h4 {
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  display: inline-block;
}

.consulting-intro h4::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.consulting-intro p {
  font-size: 1.05rem;
  line-height: 2.2;
  margin-bottom: 25px;
  color: #665;
}

.method-section {
  background: var(--white);
  border: 1px solid #F0E6E6;
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 60px;
}

.method-header {
  text-align: center;
  margin-bottom: 50px;
}

.method-header h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.method-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.method-image {
  flex: 1;
  min-width: 300px;
  padding: 40px 20px;
  background-color: #FDFBF9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #B4A0A0;
  border: 2px dashed #E0D0D0;
  position: relative;
}

.method-icons {
  display: flex;
  gap: 20px;
  font-size: 3.5rem;
  color: #D6C6B9;
  margin-bottom: 15px;
}

.method-info {
  flex: 1.5;
  min-width: 300px;
}

.method-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.process-num {
  background-color: var(--primary-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.consulting-cta {
  text-align: center;
  margin-top: 60px;
  background-color: #FFF9F9;
  padding: 40px;
  border-radius: 12px;
}

/* --- Background --- */
#background {
  padding: 140px 0 120px 0;
}

/* --- Profile --- */
#profile {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--section-bg) 0%, var(--white) 100%);
}

.profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  background: var(--white);
  border: 1px solid #F0E6E6;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.profile-photo {
  flex: 0.9;
  min-width: 260px;
}

.profile-photo img {
  width: 100%;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 10px 25px rgba(180,132,132,0.15);
}

.profile-body {
  flex: 1.3;
  min-width: 280px;
}

.profile-label {
  font-size: 0.85rem;
  color: #8C7B70;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 6px;
  letter-spacing: 0.12em;
}

.profile-meta {
  color: var(--primary-color);
  font-family: var(--font-mincho);
  margin-bottom: 18px;
}

.profile-text {
  font-size: 0.98rem;
  line-height: 2.1;
  color: #665;
  margin-bottom: 14px;
}

.profile-footer {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #EFE6E6;
  color: #6D5C54;
  font-size: 0.95rem;
}

/* --- Message --- */

#omoi {
  padding: var(--section-padding);
  background: var(--bg-color);
}


/* --- Access --- */
#access {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.access-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.access-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.shop-info-list p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.shop-info-list i {
  color: var(--primary-color);
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

.sns-area {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}

.sns-btn {
  flex: 1;
  padding: 12px;
  border-radius: 4px;
  color: white;
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.sns-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.sns-phone {
  background: #b78478;
  color: #fff;
}

.sns-mail {
  background: #8c7a73;
  color: #fff;
}

.access-map {
  flex: 1;
  min-width: 300px;
  height: 450px;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
}

/* --- Footer --- */
footer {
  background-color: #594A42;
  color: #D6C6B9;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
  font-family: var(--font-gothic);
}

/* --- Mobile CTA --- */
.mobile-cta-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
}

.mobile-cta {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.mobile-cta.phone {
  background: var(--primary-color);
}

.mobile-cta.mail {
  background: #8c7a73;
}

.mobile-cta i {
  margin-right: 5px;
}



/* --- Global Nav & Hamburger --- */
.global-nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.global-nav a {
  color: #333;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.global-nav a:hover {
  color: var(--primary-color);
}

.sp-only-btn {
  display: none;
}

.hamburger {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-card {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --section-padding: 60px 20px;
  }

  .container {
    width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  section {
    padding: 50px 0 !important;
  }

  .pc-only,
  .header-tel,
  .header-btn {
    display: none !important;
  }

  .hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 11px; }
  .hamburger span:nth-child(3) { bottom: 0; }

  .hamburger.is-active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  .global-nav.is-active {
    opacity: 1;
    visibility: visible;
  }

  .global-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .global-nav a {
    font-size: 1.2rem;
  }

  .sp-only-btn {
    display: block;
    margin-top: 20px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .method-section,
  .problem-container,
  .consulting-cta,
  .access-info,
  .profile-card {
    padding: 30px 20px;
  }

  .method-content,
  .access-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .method-image,
  .method-info,
  .access-info,
  .access-map {
    width: 100%;
    min-width: 0;
  }

  .profile-name {
    font-size: 1.6rem;
  }

  .mobile-cta-wrapper {
    display: flex;
  }

  .sns-area {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .mobile-cta-wrapper {
    display: none;
  }
}
#case {
  padding: var(--section-padding);
  background: var(--bg-color);
}

.case-intro {
  max-width: 780px;
  margin: 0 auto 35px;
  text-align: center;
  line-height: 2;
  color: #6D5C54;
}

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

.case-card {
  background: #FDFBF9;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(180, 132, 132, 0.12);
}

.case-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(180, 132, 132, 0.12);
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: bold;
}

.case-quote {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-color);
}

.case-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #888;
}

.case-card-coming {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px dashed rgba(180, 132, 132, 0.35);
  background: rgba(255, 255, 255, 0.5);
}

.case-coming-text {
  color: #7a6a63;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    padding: 22px;
  }

  .case-quote {
    font-size: 1rem;
  }
}

#issues,
#solution,
#flow,
#omoi,
#access,
#case {
  padding: var(--section-padding);
}

#flow {
  padding: var(--section-padding);
  background: var(--white);
}

html {
  scroll-padding-top: 110px;
}

@media screen and (min-width: 1025px) {
  #issues,
  #solution,
  #flow {
    padding: 130px 20px 90px;
  }
}
.marker-yellow {
  background: linear-gradient(transparent 65%, #f3dea2 65%);
  font-weight: 700;
  padding: 0 2px;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* --- Utility classes moved from inline styles --- */
.header-inner-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-contact-btn {
  display: block;
  text-align: center;
}

.header-btn-compact {
  padding: 10px 25px;
}

.content-narrow-900 {
  max-width: 900px;
  margin: 0 auto;
}

.section-lead-text {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.section-note-center {
  margin-top: 28px;
  line-height: 2;
  color: #6D5C54;
  text-align: center;
}

.text-soft-line {
  line-height: 2;
  color: #6D5C54;
}

.program-label-large {
  font-size: 1.2rem;
}

.content-narrow-900-lh {
  max-width: 900px;
  margin: 0 auto;
  line-height: 2;
}

.mt-20 {
  margin-top: 20px;
}

.program-divider-box {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.program-divider-title {
  font-weight: bold;
  margin-bottom: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.text-link-underline-primary {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: underline;
}

.plus-icon-large {
  font-size: 1.5rem;
  margin-top: 15px;
}

.text-center-px20 {
  text-align: center;
  padding: 0 20px;
}

.small-caption-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.small-caption-sub {
  font-size: 0.8rem;
  color: #999;
}

.content-narrow-800-lh {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}

.message-highlight-box {
  margin-top: 30px;
  padding: 25px;
  background: #FDFBF9;
  border-left: 4px solid var(--primary-color);
}

.message-highlight-title {
  margin: 0;
  font-weight: bold;
}

.message-highlight-text {
  margin: 5px 0 0 0;
}

.shop-name {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: var(--font-mincho);
}

.shop-phone {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.map-frame {
  border: 0;
}
