/* =====================
HERO
===================== */

/* PC */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#f8f8f8;
}

.hero-bg{
  position:absolute;
  top:0;
  right:0;
  width:65%;
  height:100%;
  background-image:
    linear-gradient(
      to left,
      rgba(255,255,255,0),
      rgba(255,255,255,.95)
    ),
    url("https://mahora-corp.com/wp-content/uploads/2026/05/fv.png");
  background-size:cover;
  background-position:center;
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.hero-subtitle{
  color:#b89b5e;
  letter-spacing:3px;
  font-size:14px;
  margin-bottom:25px;
}

.hero-title{
  font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
  font-size:82px;
  font-weight:500;
  line-height:1.35;
  letter-spacing:.04em;
  color:#111;
  margin-bottom:30px;
}

.hero-text{
  max-width:520px;
  line-height:2.2;
  font-size:18px;
  color:#555;
  margin-bottom:40px;
}

.hero-btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:18px 42px;
  transition:.3s ease;
}

.hero-btn:hover{
  transform:translateY(-3px);
}

/* スマホ */

@media(max-width:768px){

  .hero-title{
    font-size:32px;
    line-height:1.35;
  }

}


/* =====================
ANIMATION
===================== */

/* PC */

.fade-up{
  opacity:0;
  transform:translateY(50px);
  transition:all 1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* スマホ */

/* 現在、ANIMATIONのスマホ専用指定はありません */


/* =====================
COMMON TITLE
===================== */

/* PC */

.service-heading h2,
.top-health h2,
.about h2,
.news h2{
  font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
  font-size:54px;
  font-weight:500;
  line-height:1.4;
  letter-spacing:.04em;
  color:#111;
}

/* スマホ */

@media(max-width:768px){

  .service-heading h2,
  .top-health h2,
  .about h2,
  .news h2{
    font-size:32px;
    line-height:1.35;
  }

}


/* =====================
SERVICE
===================== */

/* PC */

.service{
  padding:120px 30px;
  background:#f8f8f8;
}

.service-heading{
  text-align:center;
  margin-bottom:55px;
}

.service-label{
  color:#b89b5e;
  letter-spacing:5px;
  font-size:13px;
  margin-bottom:18px;
  font-family:"Cormorant Garamond","Noto Serif JP",serif;
}

.service-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#fff;
  border:1px solid #eee;
  overflow:hidden;
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

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

.service-content{
  padding:40px 30px;
  text-align:center;
}

.service-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:24px;
}

.service-icon img{
  width:95px;
  height:auto;
  display:block;
}

.service-card h3{
  font-size:34px;
  margin-bottom:10px;
  letter-spacing:2px;
}

.sub-title{
  color:#b89b5e;
  font-size:14px;
  margin-bottom:25px;
}

.service-text{
  line-height:2;
  color:#555;
  margin-bottom:30px;
}

.service-btn{
  display:inline-block;
  border:1px solid #111;
  padding:14px 28px;
  color:#111;
  transition:.3s ease;
}

.service-btn:hover{
  background:#111;
  color:#fff;
}

/* スマホ */

@media(max-width:768px){

  .service{
    padding:70px 30px 120px;
  }

  .service-heading{
    margin-bottom:38px;
  }

  .service-label{
    font-size:12px;
    margin-bottom:14px;
  }

}


/* =====================
HEALTH
===================== */

/* PC */

.top-health{
  padding:120px 30px;
  background:#fff;
}

.top-health-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.45fr;
  gap:70px;
  align-items:center;
}

.top-health-label{
  color:#b89b5e;
  letter-spacing:3px;
  font-size:14px;
  margin-bottom:28px;
}

.top-health h2{
  margin-bottom:34px;
}

.top-health-text{
  color:#444;
  font-size:16px;
  line-height:2.1;
  margin-bottom:32px;
}

.top-health-list{
  list-style:none;
  padding:0;
  margin:0 0 36px;
}

.top-health-list li{
  color:#333;
  font-size:15px;
  padding:14px 0;
  border-bottom:1px solid #ddd;
}

.top-health-list li::before{
  content:"✓";
  color:#b89b5e;
  margin-right:12px;
}

.top-health-btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:16px 38px;
  transition:.3s ease;
}

.top-health-btn:hover{
  transform:translateY(-3px);
  opacity:.85;
}

.top-health-right img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:6px;
  display:block;
}

/* スマホ */

@media(max-width:768px){

  .top-health{
    padding:75px 20px;
  }

  .top-health-inner{
    grid-template-columns:1fr;
    gap:36px;
  }

  .top-health-label{
    font-size:12px;
    margin-bottom:18px;
  }

  .top-health h2{
    margin-bottom:24px;
  }

  .top-health-text{
    font-size:15px;
    line-height:2;
    margin-bottom:26px;
  }

  .top-health-list{
    margin-bottom:30px;
  }

  .top-health-list li{
    font-size:14px;
    padding:12px 0;
  }

  .top-health-btn{
    padding:14px 30px;
    font-size:14px;
  }

  .top-health-right img{
    height:260px;
  }

}


/* =====================
ABOUT
===================== */

/* PC */

.about{
  padding:140px 30px;
  background:#fff;
}

.about-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:center;
}

.about-label{
  color:#b89b5e;
  letter-spacing:2px;
  margin-bottom:20px;
}

.about h2{
  line-height:1.5;
  margin-bottom:30px;
}

.about-text{
  line-height:2.2;
  color:#555;
  margin-bottom:40px;
}

.about-btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:16px 38px;
  transition:.3s ease;
}

.about-btn:hover{
  opacity:.8;
}

.about-right img{
  width:100%;
  border-radius:6px;
}

/* スマホ */

/* 現在、ABOUTのスマホ専用指定はありません */


/* =====================
NEWS
===================== */

/* PC */

.news{
  padding:120px 30px;
  background:#f8f8f8;
}

.news-inner{
  max-width:1000px;
  margin:0 auto;
}

.news-heading{
  text-align:center;
  margin-bottom:60px;
}

.news-label{
  color:#b89b5e;
  letter-spacing:2px;
}

.news h2{
  margin-top:10px;
}

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

.news-item{
  display:flex;
  gap:40px;
  background:#fff;
  padding:30px;
  color:#111;
  border:1px solid #eee;
  transition:.3s ease;
}

.news-item:hover{
  transform:translateY(-5px);
}

.news-date{
  color:#888;
  min-width:120px;
}

/* スマホ */

/* 現在、NEWSのスマホ専用指定はありません */