/* 共通 */
img {
  width: 100%;
}
h1 {
  font-size: clamp(32px, 5vw, 64px);
}
.capt-cmn01 {
  margin: 16px 0;
}
.capt-dis {
  margin-bottom: 40px;
  line-height: 1.6rem;
  color: var(--main-color);
}
.question {
  padding-left: 48px;
  margin: 56px 0;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: black;
}
/* sec-lead */
.dis-wrap-lead {
  display: flex;
  align-items: center;
  background-color: var(--white);
}
.dis-wrap-lead .capt-dis {
  margin-top: 40px;
}
.dis-wrap-lead > div {
  width: 50%;
  padding: 24px;
}
.wrap-sec-lead-img img {
  border-radius: 56px;
}
.wrap-member {
  background-color: var(--white);
  padding: 16px 24px;
  margin-top: 40px;
}
.wrap-member ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wrap-member ul > li {
  width: 320px;
  display: flex;
  margin: 16px 0;
}
.wrap-member ul li > div:first-child {
  width: 32%;
}
.wrap-member ul li div:last-child {
  width: 68%;
  padding: 16px;
}
.wrap-member img {
  border-radius: 80px;
}
.name-lead {
  width: 100%;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line-color);
}
.kana {
  font-size: 13px;
  padding-left: 8px;
}
.post {
  font-size: 13px;
  line-height: 1.2rem;
  word-break: keep-all;
}
/* sec-Part（写真あり） */
.dis-wrap-text_img p {
  padding: 24px;
}
.dis-name {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}
.dis-wrap-text_img {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: stretch
}
.dis-wrap-text_img p {
  width: 58%;
  background-color: var(--white);
  border-radius: 16px;
}
.dis-wrap-text_img div {
  width: 40%;
}
/* sec-Part（写真なし） */
.dis-wrap-text {
  margin-bottom: 24px;
  display: flex;
}
.dis-wrap-text > div {
  width: 20%;
  max-width: 160px;
  min-width: 80px;
  padding: 16px;
}
.dis-wrap-text img {
  width: 100%;
  border-radius: 80px;
}
.dis-wrap-text p {
  padding: 24px;
  flex-grow: 1;
  width: 80%;
  background-color: var(--white);
  border-radius: 16px;
}
.dis-sec-Closure {
  text-align: center;
}
.capt-closure {
  margin: 0 auto 40px;
  width: 80%;
  word-break: keep-all;
  font-size: clamp(20px, 3vw, 32px)
}
.capt-closure span {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.capt-closure span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width:100%;
  height: 0.5em;
  z-index: -1;
  background-color: var(--light-color);
}
.dis-sec-Closure .wrap-content {
  width: 100%;
  padding: 40px;
  background-color: var(--white);
}
 /*=============================== ここからタブレット===============================*/
 @media screen and (max-width: 1023px) {
  .dis-wrap-lead {
    flex-direction: column;
  }
  .dis-wrap-lead > div {
    width: 100%;
  }
  .dis-wrap-lead .text {
    margin-bottom: 0;
  }
  .dis-wrap-text_img {
    flex-direction: column;
  }
  .dis-wrap-text_img p {
    width: 100%;
  }
  .dis-wrap-text_img div {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
  }
  .dis-wrap-text_img div img {
    max-width: 640px;
  }
  .img-b {
    flex-direction: column-reverse;
  }
 }