* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.single-works h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: revert;
  font-weight: revert;
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  padding: 0;
  border: 0;
}

button:not(:disabled):not([aria-disabled="true"]) {
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1.7;
  word-break: break-all;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
}

@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}

[v-cloak] {
  visibility: hidden;
}

.inner-content {
  width: 1032px;
  margin: auto;
}

@media screen and (max-width: 1439px) and (min-width: 1025px) {
  .inner-content {
    width: 900px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .inner-content {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .inner-content {
    width: 90%;
  }
}

/* Breadcrumb & Title */
.c-page-index {
  background-color: #ebf2f0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.c-page-index_breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 1.4rem;
  color: #808c8c;
}

@media only screen and (max-width: 750px) {
  .c-page-index_breadcrumb ul {
    font-size: 1.2rem;
  }
}

.c-page-index_breadcrumb ul li {
  color: #000000;
  font-weight: 700;
}

.c-page-index_breadcrumb ul > li span {
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 8px;
  height: 8px;
  background-color: #808C8C;
}

.c-page-index_title {
  margin-top: 24px;
}

.c-page-index_title img {
  width: 48px;
}

@media only screen and (max-width: 750px) {
  .c-page-index_title img {
    width: 40px;
  }
}

.c-page-index_title span {
  display: inline-block;
  margin-left: 16px;
  font-weight: 700;
  font-size: 3.6rem;
}

@media only screen and (max-width: 750px) {
  .c-page-index_title span {
    font-size: 2.8rem;
  }
}

/* Member Section */
.c-member {
  padding: 80px 0;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .c-member {
    padding: 60px 0;
  }
}



/* Section Header (front-pageと共通) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 750px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #008037;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media only screen and (max-width: 750px) {
  .section-label {
    font-size: 1.2rem;
  }
}

.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .section-title {
    font-size: 2.4rem;
  }
}

/* Member Grid */
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media only screen and (max-width: 900px) {
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media only screen and (max-width: 600px) {
  .member-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Member Card */
.member-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  overflow: hidden;
}

.member-card__image {
  width: 100%;
  height: 340px;
  background-color: #f5f5f5;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .member-card__image {
    height: 240px;
	  width: 60%;
	  margin: 0 auto;
  }
}

.member-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.member-card__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.member-card__name {
  font-size: 2rem;
  font-weight: 700;
  color: #232926;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .member-card__name {
    font-size: 1.8rem;
  }
}

.member-card__position {
  font-size: 1.4rem;
  font-weight: 700;
  color: #818181;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .member-card__position {
    font-size: 1.3rem;
  }
}

.member-card__description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

@media only screen and (max-width: 750px) {
  .member-card__description {
    font-size: 1.3rem;
  }
}

.member-card__description p {
  margin: 0;
}