/* ========================================
   民泊運営事業ページ
   ======================================== */

/* ヒーロー背景 */
.minpaku-hero-bg {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 50%, #2c3e50 100%);
}

/* リード文 */
.minpaku-lead {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.minpaku-lead-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 28px;
}

.minpaku-lead-text {
  font-size: 15px;
  color: #555;
  line-height: 2;
}

/* ========================================
   サービス内容グリッド
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-item {
  background: #fff;
  border-radius: 4px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-number {
  font-size: 32px;
  font-weight: 700;
  color: #8b7355;
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-item-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   選ばれる理由
   ======================================== */
.reason-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.reason-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b7355;
  font-size: 14px;
}

.reason-content h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.reason-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   ご利用の流れ
   ======================================== */
.flow-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  position: relative;
  padding: 32px 0 32px 0;
  border-bottom: 1px solid #e8e4de;
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step-number {
  font-size: 12px;
  font-weight: 700;
  color: #8b7355;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.flow-step-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.flow-step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   CTA
   ======================================== */
.minpaku-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  text-align: center;
}

.cta-content {
  padding: 20px 0;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* ========================================
   物件ギャラリー
   ======================================== */
.minpaku-gallery {
  width: 100%;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 480px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ========================================
   間取り図
   ======================================== */
.floorplan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.floorplan-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  height: 320px;
  background: #f5f2ee;
}

.floorplan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.floorplan-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.floorplan-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}

.floorplan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floorplan-list li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.floorplan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b7355;
  font-weight: 700;
}

/* ========================================
   実績数字
   ======================================== */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-item {
  background: #fff;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.achievement-number {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #8b7355;
  line-height: 1;
  margin-bottom: 12px;
}

.achievement-unit {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
}

.achievement-label {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.05em;
}

/* ========================================
   料金プラン
   ======================================== */
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 4px;
  padding: 48px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card-main {
  border: 2px solid #8b7355;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b7355;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #8b7355;
  margin-bottom: 8px;
}

.pricing-plan-name {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.pricing-fee {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.pricing-fee-formula {
  font-size: 13px;
  color: #666;
}

.pricing-fee-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.pricing-fee-unit {
  font-size: 18px;
  color: #555;
}

.pricing-fee-note {
  font-size: 12px;
  color: #8b7355;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #f0ede8;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b7355;
  font-weight: 700;
}

.pricing-option {
  color: #999 !important;
  border-bottom-color: #f8f8f8 !important;
}

.pricing-option::before {
  content: '+' !important;
  color: #bbb !important;
}

/* ========================================
   導入事例
   ======================================== */
.case-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.case-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.case-header {
  background: #2c3e50;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.case-stars {
  font-size: 14px;
  color: #f0c040;
  letter-spacing: 0.05em;
}

.case-body {
  padding: 28px;
}

.case-results {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ede8;
}

.case-result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-result-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.05em;
}

.case-result-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  color: #8b7355;
  line-height: 1;
}

.case-result-value small {
  font-size: 16px;
  font-weight: 400;
}

.case-voice {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  font-style: normal;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #e8e4de;
}

.case-voice-author {
  margin-top: 12px;
  font-size: 12px;
  color: #999;
  font-style: normal;
}

/* ========================================
   トップページ: 民泊カードリンク
   ======================================== */
a.business-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.business-card-link .business-card {
  box-shadow: none;
  transition: none;
}

a.business-card-link:hover .business-card {
  transform: none;
}

a.business-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.business-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: #8b7355;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.business-card-more::after {
  content: ' →';
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 260px;
  }

  .floorplan-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .achievement-item {
    padding: 28px 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 28px 20px;
  }

  .reason-item {
    gap: 16px;
  }

  .reason-icon {
    width: 32px;
    height: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card {
    padding: 40px 24px;
  }

  .case-results {
    gap: 24px;
  }

  .case-body {
    padding: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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