.intro-hero{
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 4%;
}

.intro-hero .hero-grid{
  display: grid;
  grid-template-columns: repeat(3, calc(99% / 3));
  box-sizing: border-box;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.intro-hero .hero-grid.inview{
  opacity: 1;
  transform: none;
}

.intro-hero .hero-grid img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.intro-hero .hero-center{
  position: relative;
  display: block;
}

/* 各画像を覆うラッパーを作って、その上にマスクを載せる */
.intro-hero .hero-item {
  position: relative;
  display: block;
}

.intro-hero .hero-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* 中央下部のタイトル（h1） */
.intro-hero .hero-title{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  color: #eeeeee;
  z-index: 1;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.intro-hero .hero-grid {
    gap: 0.5%;
    padding: 0;
}

@media (min-width: 768px){
  .intro-hero .hero-grid{ gap: 14px; padding: 14px; }
}

@media (min-width: 1600px){
  .intro-hero .hero-grid{ max-width: 1100px; }
}






/* ===== Profile ===== */
.profile{
  max-width: 1100px;
  margin: 6% auto;
}

.profile-inner{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "photo"
    "text";
  align-items: center;
}

.profile-photo{
    grid-area: photo;
    text-align: center;
}

.profile-photo img{
  width: 40%;
  height: auto;
  display: block;
  margin: 5% auto;
}

.profile-text{
  grid-area: text;
  background: rgba(238, 238, 238, 0.08);
  color: #eeeeee;
  padding: 4%;
  margin: 0 6%;
  text-align: center;
}

.profile-eyebrow{
  margin: 0 0 .6rem;
  letter-spacing: .12em;
  opacity: .7;
}

.profile-name{
  margin: 0 0 1.2rem;
  font-weight: 300; /* Oswald Light */
}

.profile-body{
  text-align: center;
  line-height: 1.9;
}
.profile-body p{ margin: 0 0 1rem; }

/* PC：写真左・テキスト右に固定 */
@media (min-width: 768px){
  .profile-inner{
    grid-template-columns: 0.3fr 0.7fr;
    grid-template-areas: "photo text";
  }
  .profile-text{
      width: 80%;
    text-align: center;
    color: #eeeeee;
    padding: 4% 4%;
    margin: 0 6%;
  }
  
  .profile-photo img{
      width: 90%;
      margin: 4% 0;
      padding: 0 0 0 15%;
  }

}

/* ===== プロフィール情報リスト ===== */
.profile-facts{
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
  opacity: .9;
/*  font-size: 0.7rem;*/
}

.profile-facts .fact-title{
  margin: 0;
  letter-spacing: .02em;
}

.profile-facts .fact-content{
  margin: .35rem 0 0;
  line-height: 1.9;
}

.profile-facts a{
  color: inherit;
  text-decoration: underline;
}
.profile-facts a:hover{
  text-decoration: none;
}

/* PCでは余白を少し広げてバランス取り */
@media (min-width: 768px){
  .profile-facts{
      gap: 1.4rem;
      margin-top: 1.4rem;
  }
}


/* ===== Split（「アーティフィシャルフラワーとは」「想い」用） ===== */
.split{
  max-width: 1100px;
  margin: 6% auto;
  padding: 0 6%;
}
.split-inner{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "photo"
    "text";
  gap: 28px;
  align-items: center;
}
.split-photo{
    grid-area: photo;
}
.split-photo img{
  width: 40%;
/*  width: min(100%, 520px);*/
  height: auto;
  display: block;
  margin: 0 auto;
}
.split-text{
  grid-area: text;
  background: rgba(238, 238, 238, 0.08);
  color: #eeeeee;
  padding: 8%;
  text-align: center;
}
.split-eyebrow{
    margin: 0 0 .6rem;
    letter-spacing: .12em;
    opacity: .7;
}
.split-title{
    margin: 0 0 1.2rem;
    font-weight: 300;
    letter-spacing: .02em;
}
.split-body{
    text-align: left;
    line-height: 1.9;
}
.split-body p{
    margin: 0 0 1rem;
    text-align: center;
}
.split .points{
    margin: .4rem 0 0;
    padding-left: 1.2rem;
}
.split .points li{
    margin: .2rem 0;
    font-size: 0.7rem;
}

/* PC：テキスト左 / 写真右 */
@media (min-width: 768px){
  .split-inner{
    grid-template-columns: 1.15fr .85fr;
    grid-template-areas: "text photo";
    column-gap: 6%;
  }
  .split-text{
      background: rgba(238, 238, 238, 0.08);
      color: #eeeeee;
      text-align: center;
      padding: 8% 10%;
  }
  .split .points li{
      font-size: 0.8rem;
  }
  
  .split-photo img{
      width: 60%;
  }

}

/* ===== 「アーティフィシャルフラワーとは」は文字のみ　===== */
#about-artificial .split-inner{
  grid-template-columns: 1fr;
  grid-template-areas: "text";
}

#about-artificial .split-text{
  max-width: 820px;
  margin: 0 auto;
}

#about-artificial .split-body{ text-align: left; }
#about-artificial .split-body p{ text-align: left; }

/* PCでも2カラム化しないよう再指定（既存の@media上書き） */
@media (min-width: 768px){
  #about-artificial .split-inner{
    grid-template-columns: 1fr !important;
    grid-template-areas: "text" !important;
    column-gap: 0;
  }
}
