@charset "UTF-8";
:root {
  --vw: 1vw;
  --color-base: #111111;
  --color-line: #2c2c2c;
  --color-gray: #656565;
  --color-white: #ffffff;
  --color-orange: #e26522;
  --font-family-base: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-family-heading: "Meychan_web", sans-serif;
  --font-family-number: "Hind", sans-serif;
  --font-weight-base: 500;
  --font-weight-heading: 400;
  --font-weight-number: 500;
  --letter-spacing-base: 0.08em;
  --letter-spacing-heading: 0.2em;
  --letter-spacing-number: 0.08em;
}

.p-profile {
  padding: 4rem 0;
}
@media screen and (min-width: 720px) {
  .p-profile {
    padding: 10rem 0 5rem;
  }
}
@media screen and (max-width: 719px) {
  .p-profile {
    padding: 0 1rem;
  }
}
.p-profile__fv {
  display: grid;
  place-content: center;
}
.p-profile__fv img {
  width: 20rem;
}
@media screen and (min-width: 720px) {
  .p-profile__fv img {
    width: 45rem;
  }
}
.p-profile__subHeading {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 720px) {
  .p-profile__subHeading {
    font-size: 2.4rem;
  }
}
.p-profile__description {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}