/* ===== page-mamazroom-introduction ===== */

.intro-page{
  background: #f3f6f9;
  padding: clamp(28px, 4vw, 56px) 16px;
}

.intro-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.intro-page-title{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 22px;
}

.intro-section-title{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 22px;
}

/* ---------- 代表者紹介 ---------- */

.rep-grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
}

.rep-photo{
  background: rgba(255,255,255,.55);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.10);
}

.rep-photo img{
  width: 100%;
  height: auto;
  display: block;
}

.rep-name{
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 8px;
  font-weight: 800;
}

.rep-role,
.rep-qual{
  margin: 0 0 6px;
  font-weight: 700;
  color: #222;
}

.rep-text{
  margin: 14px 0 0;
  line-height: 2.0;
  color: #222;
}

.rep-btn-wrap{
  margin-top: 18px;
  text-align: right;
}

.rep-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0c8fc7;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 2px;
  min-width: 260px;
}

.rep-btn:hover{
  background: #0a7fb0;
}

.rep-btn-arrow{
  font-size: 20px;
  line-height: 1;
}

/* ---------- 事業所紹介 ---------- */

.office-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: start;
}

.office-card{
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  min-height: 320px;
}

.office-card-bar{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: #0c8fc7;
}

.office-card-body{
  padding: 28px 22px 28px 78px;
  line-height: 1.9;
}

.office-zip{
  margin: 0 0 10px;
  font-weight: 700;
}

.office-addr{
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 20px;
}

.office-tel{
  margin: 10px 0 14px;
  font-weight: 800;
  font-size: 18px;
}

.office-hours,
.office-parking,
.office-note{
  margin: 6px 0;
  font-size: 16px;
}

.office-map-embed{
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.office-map-embed iframe{
  width: 100%;
  height: 360px;
  display: block;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1023px){
  .rep-grid{
    grid-template-columns: 1fr;
  }

  .rep-btn-wrap{
    text-align: left;
  }

  .rep-btn{
    min-width: 0;
    width: 100%;
  }

  .office-grid{
    grid-template-columns: 1fr;
  }

  .office-card{
    min-height: auto;
  }

  .office-map-embed iframe{
    height: 320px;
  }
}
