@charset "UTF-8";

/*-----------------------------
 company
-----------------------------*/
:root {
  --color-primary: #78d4cf;
  --color-secondary: #277671;
  --color-tertiary: #145955;
  --color-gray: #717171;
  --color-white: #fff;
  --color-black: #111111;
  --text-color: #111111;
  --bg-primary: #fff;
  --bg-secondary: #faf6f2;
  --font-primary: "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-KleeOne: "Klee One", cursive;
  --font-Poppins: "Poppins", sans-serif;
}

/* value */
.value__inner {
  padding-bottom: 0;
}
.value__text {
  /* font-family: var(--font-KleeOne); */
  font-size: clamp(2rem, 30 / 1240 * 100vw, 3.4rem);
  font-weight: bold;
  line-height: 2.3;
  text-align: center;
}
.value__text .text-deco {
  background: linear-gradient(
    transparent 50%,
    rgba(120, 213, 207, 0.5) 50% 100%
  );
  padding: 0 3px;
}

/* message */
.message__content {
  max-width: 960px;
}
.message__title {
  /* font-family: var(--font-KleeOne); */
  font-size: clamp(2rem, 30 / 1240 * 100vw, 3.4rem);
  font-weight: bold;
}
.message__title .text-sm {
  font-size: 1.7rem;
  font-weight: normal;
}
.message-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
}
.message-media__img {
  flex: 0 1 calc(384 / 960 * 100%);
}
.message-media__img img {
  object-fit: cover;
  aspect-ratio: 383/470;
  height: 100%;
  width: 100%;
}
.message-media__body {
  flex: 1;
  max-width: 514px;
}
.message-media__text {
  line-height: 2.4;
  margin-top: 30px;
}
.message-media + .message__title {
  margin-top: 60px;
}
.message__list {
  margin-top: 14px;
}
.message__item {
  line-height: 2.6;
}
@media screen and (max-width: 768px) {
  .message__title .text-sm {
    font-size: 1.4rem;
  }
  .message-media {
    justify-content: center;
    row-gap: 16px;
  }
  .message-media__img {
    flex: 0 1 90%;
  }
  .message-media__body {
    flex: 0 1 100%;
    max-width: none;
  }
  .message-media__title {
    text-align: center;
  }
  .message-media__text {
    line-height: 2;
    margin-top: 16px;
  }
  .message-media + .message__title {
    margin-top: 40px;
  }
  .message__item {
    line-height: 2;
  }
}

/* 会社概要 */
.profile__inner{
  padding-bottom: 0;
}
.profile__title {
  font-size: clamp(2rem, 30 / 1240 * 100vw, 3.4rem);
  font-weight: bold;
  text-align: center;
}
.profile__content {
  margin-top: 60px;
  max-width: 960px;
}
.profile-table {
  border: 1px solid #1c1c1c;
}
.profile-table__inner {
  border-collapse: collapse;
  width: 100%;
}
.profile-table__header {
  background-color: var(--color-primary);
  border-bottom: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 16px;
  text-align: left;
  vertical-align: middle;
  width: 246px;
}
.profile-table__text {
  border-bottom: 1px solid #1c1c1c;
  font-size: 1.4rem;
  padding: 16px;
}
.profile-table__row:last-child .profile-table__header,
.profile-table__row:last-child .profile-table__text {
  border-bottom-width: 0;
}
@media screen and (max-width: 768px) {
  .profile__content {
    margin-top: 40px;
  }
  .profile-table__header {
    display: block;
    padding: 16px;
    border-right: none;
    width: 100%;
  }
  .profile-table__text {
    display: block;
  }
  .profile-table__row:last-child .profile-table__header {
    border-bottom-width: 1px;
  }
}
