@charset 'UTF-8';
/*----------------------------------------

	- member
		- member_heading
		- member_contents
-----------------------------------------*/

/*----------------------------------------
member
-----------------------------------------*/

.member {
  margin-top: 48px;
}

/*----------------------------------------
member_heading
-----------------------------------------*/

.member_heading {
  position: relative;
  padding-bottom: 80px;
}

.member_heading_title {
  max-width: 722px;
}

.member_heading::after {
  content: "";
  width: 240px;
  height: 480px;
  background-image: url(/guide/img/j05_heading-photo01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 30px;
  bottom: -70px;
}

.member_heading_text p {
  margin-top: 48px;
  margin-right: 318px;
}

.member_heading_text p:nth-of-type(2) {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .member_heading_title {
    max-width: 640px;
  }
}

@media screen and (max-width: 800px) {
  .member_heading {
    padding-bottom: 32px;
  }

  .member_heading_title {
    max-width: 352px;
  }

  .member_heading::after {
    width: 144px;
    height: 288px;
    right: 0;
    bottom: -48px;
  }

  .member_heading_text p {
    margin-top: 32px;
    margin-right: 160px;
    font-size: var(--font-size12);
  }
}

@media screen and (max-width: 445px) {
  .member_heading_text p:nth-of-type(1) {
	width: calc(100% - 5em);
    margin-right: 0;
  }

  .member_heading_text p:nth-of-type(2) {
    margin-top: 3px;
  }
}

@media screen and (max-width: 390px) {
  .member_heading_text p:nth-of-type(1) {
	width: 100%;
  }

  .member_heading_text p:nth-of-type(2) {
    margin-top: 0;
  }
}

/*----------------------------------------
member_contents
-----------------------------------------*/
.member_contents {
  padding-block: 64px;
	/* background-color: var(--color_aquamarine-150); */
	background-color: #E3F5FE;
}

.member_list {
  display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 48px 32px;
}

.member_list .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.member_list .item a figure {
	width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

@media (hover: hover) {
	.member_list .item a:hover figure {
		background-color: var(--color_sapphire-500);
	}

	.member_list .item a:hover img {
		opacity: 0.33;
	}
}

.member_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.member_text p:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 14px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .member_list {
    grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
    gap: 32px 24px;
  }
  .member_list .item a figure {
    width: 120px;
  }
  .member_text p:first-of-type {
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size12);
  }
  .member_text .heading_m1 {
    font-size: var(--font-size18);
  }
}