@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/sky/morninng-sky2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 30px #ffcc92
}

.title h1 {
  font-family: "Train One", system-ui;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 15px;
}

.feature-text h2 {
  font-size: 60px ;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
}

.feature-text {
  max-width: 1200px;
  margin: 60px auto;
}

.feature-text p {
  text-align: center;
  line-height: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
}


/* 吹き出し */
.fukidashi-01-03 {
  position: relative;
  width: fit-content;
  padding: 12px 16px;
  border-bottom: 2px solid #eb83ca;
  background-color: #fff6fe;
  margin: 0 auto;
  letter-spacing: 3px;
  font-weight: bold;
}
.fukidashi-01-03::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #fff6fe; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.fukidashi-01-03::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid ;
  border-color: #eb83ca #eb83ca transparent transparent;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}

.member-list {
display: flex;
padding-top: 40px;
padding-bottom: 10px;
padding-right: 60px;
padding-left: 60px;
}


.member-list img {
  width: 250px;
  height: 250px;
}

.member {
  /* background-color: #f8f8f8; */
  padding-top: 30px;
  padding-bottom: 55px;
}

.member-list li {
  flex-shrink: 0;
width: 250px;
margin: 0 auto;
}

.member-list dl {
  margin-top: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.member-list dt {
  font-weight: bold;
}

.member-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

/* ここからモバイル用 */
@media (max-width: 800px) {
  .feature {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
  }

.member-list {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

.member-list li {
  width: 220px;
  margin-bottom: 50px;
}

}
