@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-txt: #4b4b4b;
  --color-main: #9b51e0;
  --color-sub: #f6edff;
  --color-sub02: #ebc8ff;
  --color-sub03: #c699e2;
  --color-gray: #adadad;
  --color-accent: #ff62b6;
}

/* =======================================================
common
======================================================= */
@media screen and (max-width: 767px) {
  .c-name-wrapper {
    display: none;
  }
}

/* =======================================================
profile
======================================================= */
.p-profile {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding: 0.3125rem 0;
  }
}
.p-profile .c-hgroup {
  margin-bottom: 1.5rem;
}
.p-profile__column {
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__column {
    grid-template-columns: 1fr 35rem;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__column {
    gap: 1.6875rem;
  }
}
.p-profile__column-body {
  display: grid;
  gap: 1.5rem;
  align-self: start;
  padding: 0 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-body {
    gap: 0;
    order: 2;
    padding: 0;
    margin-bottom: 0;
  }
}
.p-profile__column-job {
  padding: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-profile__column-job {
    padding-bottom: 0;
    margin-bottom: 0.25rem;
  }
}
.p-profile__column-name {
  width: 28.25rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-name {
    width: 18.75rem;
    margin: 0 auto 0.75rem;
  }
}
.p-profile__column-strong {
  padding: 0 2.6875rem 0 1.1875rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-profile__column-strong {
    padding: 0;
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
  }
}
.p-profile__column-txt {
  padding: 0 2.6875rem 0 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-txt {
    padding: 0;
    margin-bottom: 0.5rem;
  }
}
.p-profile__column-def-wrapper {
  display: grid;
  place-content: center;
  width: 25.875rem;
  height: 12.3125rem;
  padding: 0 1rem;
  margin-left: 1.1875rem;
  background: url("../images/profile/profile-def-bg.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-profile__column-def-wrapper {
    width: 21.875rem;
    height: 10.4375rem;
    padding: 0 1.5rem;
    margin-left: 0;
  }
}
.p-profile__column-def {
  display: grid;
  gap: 1.3125rem;
  line-height: calc(21/16);
}
@media screen and (max-width: 767px) {
  .p-profile__column-def {
    gap: 1.25rem;
    font-size: 0.9375rem;
    line-height: calc(20/15);
  }
}
.p-profile__column-dttl {
  display: flex;
}
.p-profile__column-dttl::before {
  content: "【";
}
.p-profile__column-dttl::after {
  content: "】";
}
.p-profile__column-ditem {
  padding-left: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-profile__column-ditem {
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__column-picture {
    width: 14.5rem;
    margin: 0 auto;
  }
}

/* =======================================================
vision
======================================================= */
.p-vision .c-hgroup {
  margin-bottom: 1.75rem;
}
.p-vision__list {
  display: grid;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-vision__list {
    gap: 0.625rem;
  }
}
.p-vision__item {
  display: grid;
  gap: 1rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-vision__item {
    gap: 0;
  }
}
.p-vision__item-ttl {
  padding: 1.875rem 0.625rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-vision__item-ttl {
    grid-area: ttl;
  }
}
@media screen and (max-width: 767px) {
  .p-vision__item-ttl {
    padding: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.p-vision__item-txt {
  padding: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-vision__item-txt {
    grid-area: txt;
  }
}
@media screen and (max-width: 767px) {
  .p-vision__item-txt {
    padding: 0;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item-figure {
    grid-area: figure;
    align-self: start;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:nth-of-type(odd) {
    grid-template: "figure ttl" "figure txt";
    grid-template-rows: auto 1fr;
    grid-template-columns: 30.375rem 1fr;
  }
}
.p-vision__item:nth-of-type(odd) .p-vision__item-figure {
  padding: 3.125rem 3.5625rem 3.75rem 3.625rem;
  margin: 0 2.5rem 0 2.5625rem;
  background: url("../images/profile/vision-item-bg-odd.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-vision__item:nth-of-type(odd) .p-vision__item-figure {
    padding: 2.25rem 2.625rem 2.75rem;
    margin: 0 1.75rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:nth-of-type(even) {
    grid-template: "ttl figure" "txt figure";
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 30.375rem;
  }
}
.p-vision__item:nth-of-type(even) .p-vision__item-figure {
  padding: 0.90625rem 6.25rem 5.59375rem 3.3125rem;
  margin: 0.34375rem 1rem 0.03125rem 1.6875rem;
  background: url("../images/profile/vision-item-bg-even.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-vision__item:nth-of-type(even) .p-vision__item-figure {
    padding: 0.625rem 4.5rem 4rem 2.375rem;
    margin: 0.25rem 0.75rem 1rem 1.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:not(:first-of-type) {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:not(:first-of-type)::before {
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 71.25rem;
    height: 1rem;
    content: "";
    background: url("../images/profile/vision-item-separator.svg") top center/contain no-repeat;
    transform: translateX(-50%);
  }
}