@charset "UTF-8";
:root {
  --viewport-base-pc: 1420;
  --viewport-base-sp: 375;
  --vpx-ratio: 1;
}

@media screen and (min-width: 769px) and (max-width: 1420px) {
  :root {
    --vpx-ratio: var(--viewport-ratio-pc, calc(100vw / 1420px));
  }
}
@media screen and (max-width: 768px) {
  :root {
    --vpx-ratio: min(var(--viewport-ratio-sp, calc(100vw / 375px)), 1.4814814815);
  }
}
.message {
  width: 100%;
  padding-bottom: calc(50px * var(--vpx-ratio));
  background: #fff;
}
.message__name {
  margin-bottom: 50px;
  font-size: 23px;
}
.message__intro {
  margin-bottom: 80px;
}
.message__ttl {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.7;
}
.message__lead {
  max-width: 630px;
  font-size: 17px;
  line-height: 2;
}
.message__block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.message__block + .message__block {
  margin-top: 100px;
}
.message__block--compact {
  -moz-column-gap: 35px;
       column-gap: 35px;
}
.message__block--wide {
  -moz-column-gap: 75px;
       column-gap: 75px;
}
.message__content {
  flex: 1;
}
.message__content + .message__content {
  margin-top: 90px;
}
.message__subttl {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.message__txt {
  font-size: 17px;
  line-height: 2;
}
.message__img img {
  pointer-events: none;
}
.message__img--small {
  flex: 0 0 45%;
  margin-top: -40px;
}
.message__img--large {
  --side: clamp(calc((1205.5555555556px - 1085px) / 2),
  	calc((100vw - 1085px) / 2),
  	calc((1440px - 1085px) / 2));
  flex: 0 0 37%;
  position: relative;
  aspect-ratio: 390/480;
}
.message__img--large::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--side) * -1);
  width: calc(115% + var(--side));
  aspect-ratio: 574.5/489;
  background: linear-gradient(135deg, #82F4FE, #D2FEC9);
  clip-path: polygon(75% 0%, 100% 100%, 0% 100%, 0% 0%);
}
.message__img--large img {
  position: absolute;
  top: 225px;
  left: calc(var(--side) * -1);
  width: calc(100% + var(--side));
  clip-path: polygon(75% 0%, 100% 100%, 0% 100%, 0% 0%);
}

@media screen and (max-width: 768px) {
  .message {
    padding-bottom: calc(30px * var(--vpx-ratio));
  }
  .message__name {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .message__intro {
    margin-bottom: 48px;
  }
  .message__ttl {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 600;
  }
  .message__lead {
    max-width: none;
    font-size: 15px;
    line-height: 2;
  }
  .message__block {
    display: flex;
  }
  .message__block + .message__block {
    margin-top: 60px;
  }
  .message__block--compact {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .message__block--wide {
    flex-direction: column;
    row-gap: 24px;
  }
  .message__content {
    flex: 1;
  }
  .message__content + .message__content {
    margin-top: 54px;
  }
  .message__subttl {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .message__txt {
    font-size: 15px;
    line-height: 2;
  }
  .message__img--small {
    flex: 1;
    margin-top: 0;
  }
  .message__img--large {
    flex: 1;
    aspect-ratio: auto;
  }
  .message__img--large::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .message__img--large img {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    clip-path: polygon(75% 0%, 100% 100%, 0% 100%, 0% 0%);
  }
}
.profile {
  width: 100%;
  padding-block: calc(50px * var(--vpx-ratio)) calc(25px * var(--vpx-ratio));
  background: #fff;
}
.profile__body {
  width: 100%;
  padding: 60px 75px;
  background: #fff;
  box-shadow: 0 0 25px rgba(4, 0, 0, 0.15);
}
.profile__ttl {
  padding-bottom: 15px;
  padding-left: 15px;
  margin-bottom: 23px;
  border-bottom: 1px solid #202121;
  font-size: 23px;
}
.profile__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  justify-content: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-inline: 15px;
}
.profile__col {
  display: grid;
  row-gap: 20px;
}
.profile__group * {
  font-size: 15px;
  line-height: 1.7;
}
.profile__group > * + * {
  margin-top: 0.25em;
}
.profile__group-list {
  display: grid;
  row-gap: 0.5em;
  font: inherit;
}
.profile__group-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.profile__group-item::before {
  flex: 0 0 fit-content;
  content: "・";
}
.profile__group-item--circle {
  padding-left: 1em;
}
.profile__group-item--circle::before {
  content: "◦";
}

@media screen and (max-width: 768px) {
  .profile {
    padding-block: calc(30px * var(--vpx-ratio)) calc(15px * var(--vpx-ratio));
  }
  .profile__body {
    padding: 30px 20px;
    box-shadow: 0 0 15px rgba(4, 0, 0, 0.15);
  }
  .profile__ttl {
    padding-bottom: 10px;
    padding-left: 0;
    margin-bottom: 13px;
    font-size: 18px;
  }
  .profile__groups {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-inline: 0;
  }
  .profile__group * {
    font-size: 13px;
  }
}
/*# sourceMappingURL=greeting.css.map */
