@charset "UTF-8";

.lineup-summer-bouquet-border-area {
  border: 1px solid #ccc;
  padding: 2rem;
  margin: 3rem 0;
}

.lineup-summer-bouquet-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.lineup-summer-bouquet {
  display: flex;
  align-items: center;
}

.lineup-summer-bouquet p+p {
  margin-top: 15px;
}

.lineup-summer-bouquet a {
  font-weight: bold;
  text-decoration: underline;
}

.lineup-summer-bouquet__img {
  position: relative;
  flex: 0 0 22%;
  margin-right: 20px;
}


@media screen and (max-width: 767px) {
  .lineup-summer-bouquet {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }

  .lineup-summer-bouquet__img {
    width: 90%;
    justify-content: center;
    margin: 15px auto;
  }

  .lineup-summer-bouquet-title {
    margin: 0;
    font-size: 18px;
  }
}

/* ================================================
プロフィール
================================================ */
.c-grid-profile {
  padding: 3rem;
  display: grid;
  grid-template-areas: "image title" "image text";
  grid-template-columns: 120px 1fr;
  column-gap: 2rem;
  row-gap: 1.6rem;
background-color: #f9f9f9;
margin-top: 30px;
}

.c-grid-profile-2 {
  padding: 3rem;
  display: grid;
  grid-template-areas: "image text" "image title";
  grid-template-columns: 120px 1fr;
  column-gap: 2rem;
  row-gap: 1rem;
}

.c-grid-profile__img {
  grid-area: image;
height: auto;
}

.c-grid-profile__title {
  grid-area: title;
}

.c-grid-profile__text {
  grid-area: text;
  font-size: 1.4rem;
}

.c-grid-profile__title .staff-name {
  font-weight: 600;
}

.c-grid-profile__title .staff-name--en {
  margin-left: 1em;
}

.c-grid-profile__title .katagaki {
  font-size: 1.2rem;
}


@media screen and (max-width: 767px) {
  .c-grid-profile {
    grid-template-areas: "image title" "text text";
    grid-template-columns: 100px 1fr;
    padding: 2rem;
  }

  .c-grid-profile__title .staff-name {
    line-height: 1.5;
  }

  .c-grid-profile__title .staff-name--en {
    margin-left: 0;
  }

  .c-grid-profile__title .katagaki {
    font-size: 1.2rem;
  }

  .c-grid-profile-2 {
    padding: 2rem;
    grid-template-areas: "text text" "image title";
    grid-template-columns: 5rem 1fr;
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: center;
  }

  .c-grid-profile-2 .c-grid-profile__img {
    justify-self: flex-end;
    width: 5rem;
  }
}