*,
::before,
::after {
  box-sizing: border-box;
}

.kv {
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (min-width: 769px) {
  .kv {
    display: flex;
    align-items: center;
    height: min(600px, 40vw);
    margin-top: 10rem;
    background-image: url(../img/mv.jpg);
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    height: 93rem;
    margin-top: 12rem;
    background-image: url(../img/sp/mv.jpg);
    background-size: contain;
  }
}

.kv_content {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .page_lead {
    padding-top: min(80px, 5.334vw);
    padding-bottom: min(55px, 3.667vw);
    letter-spacing: 0.14em;
    line-height: 2em;
    font-size: 2.2rem;
    text-align: center;
  }
  .page_lead > p {
    line-height: inherit;
    font: inherit;
  }
  .page_lead > p:first-of-type {
    margin-top: -0.5em;
  }
  .page_lead > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (max-width: 768px) {
  .page_lead {
    padding: 4rem 3rem 4.5rem;
    line-height: 1.834em;
    font-size: 2.4rem;
  }
  .page_lead > p {
    line-height: inherit;
    font: inherit;
  }
  .page_lead > p:first-of-type {
    margin-top: -0.416em;
  }
  .page_lead > p:last-of-type {
    margin-bottom: -0.416em;
  }
}

.person_cont {
  background-color: #efefef;
}
@media screen and (min-width: 769px) {
  .person_cont {
    padding-top: min(110px, 7.334vw);
    padding-bottom: min(130px, 8.667vw);
  }
}
@media screen and (max-width: 768px) {
  .person_cont {
    padding-top: 7rem;
  }
}

.person_head {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .person_head {
    margin-bottom: min(55px, 3.667vw);
    line-height: 1.5em;
    font-size: 4rem;
  }
  .person_head > h2 {
    line-height: inherit;
    font: inherit;
  }
  .person_head > h2:first-of-type {
    margin-top: -0.25em;
  }
  .person_head > h2:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  .person_head {
    margin-bottom: 3rem;
    line-height: 1;
    font-size: 3.6rem;
  }
  .person_head > h2 {
    line-height: inherit;
    font: inherit;
  }
  .person_head > h2:first-of-type {
    margin-top: 0em;
  }
  .person_head > h2:last-of-type {
    margin-bottom: 0em;
  }
}
.person_head span {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .person_head span {
    padding: 0 min(7px, 0.467vw) min(30px, 2vw);
  }
}
@media screen and (max-width: 768px) {
  .person_head span {
    padding: 0 0 2.5rem;
  }
}
.person_head span::before, .person_head span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50.5%;
}
@media screen and (min-width: 769px) {
  .person_head span::before, .person_head span::after {
    height: min(3px, 0.2vw);
  }
}
@media screen and (max-width: 768px) {
  .person_head span::before, .person_head span::after {
    height: 0.4rem;
  }
}
.person_head span::before {
  left: 0;
  background-color: #000;
}
.person_head span::after {
  right: 0;
  background-color: #e60012;
}

@media screen and (min-width: 769px) {
  .sec_person + .sec_person {
    margin-top: min(110px, 7.334vw);
  }
}
@media screen and (max-width: 768px) {
  .sec_person + .sec_person {
    margin-top: 9rem;
  }
}

.person_wrap {
  display: grid;
}
@media screen and (min-width: 769px) {
  .person_wrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: min(20px, 1.334vw);
         column-gap: min(20px, 1.334vw);
    width: min(1000px, 66.667vw);
    margin: 0 auto;
  }
}

.person_item {
  position: relative;
  background-color: #fff;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .person_item {
    display: flex;
    grid-template-columns: 28rem auto;
  }
}
.person_item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #d90b18;
}
@media screen and (min-width: 769px) {
  .person_item::before {
    height: min(9px, 0.6vw);
  }
}
@media screen and (max-width: 768px) {
  .person_item::before {
    height: 0.4rem;
  }
}
.person_item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .person_img {
    width: 27.8vw;
  }
}
@media screen and (max-width: 768px) {
  .person_img img {
    width: auto;
    height: 27.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 769px) {
  .person_info {
    padding: min(30px, 2vw) 0 min(52px, 3.467vw);
  }
}
@media screen and (max-width: 768px) {
  .person_info {
    padding: 3.2rem 0 3rem 2.5rem;
    padding: 2rem 0 2rem 2.5rem;
  }
}

.person_info_top {
  position: relative;
}
@media screen and (max-width: 768px) {
  .person_info_top {
    display: flex;
  }
}

.person_past {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #212121;
  clip-path: polygon(12.0481927711% 0, 100% 0, 100% 100%, 0 100%, 0 28.125%);
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .person_past {
    position: absolute;
    top: 0;
    left: min(45px, 3vw);
    width: min(83px, 5.534vw);
    height: min(32px, 2.134vw);
    margin-right: auto;
    line-height: 1;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }
  .person_past > p {
    line-height: inherit;
    font: inherit;
  }
  .person_past > p:first-of-type {
    margin-top: 0em;
  }
  .person_past > p:last-of-type {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 768px) {
  .person_past {
    width: 8.3rem;
    height: 3.3rem;
    margin-right: 1.5rem;
    line-height: 1;
    font-size: 2rem;
  }
  .person_past > p {
    line-height: inherit;
    font: inherit;
  }
  .person_past > p:first-of-type {
    margin-top: 0em;
  }
  .person_past > p:last-of-type {
    margin-bottom: 0em;
  }
}

.person_name {
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .person_name {
    line-height: 1;
    font-size: 3rem;
    letter-spacing: 0.14em;
    text-align: center;
  }
  .person_name > p {
    line-height: inherit;
    font: inherit;
  }
  .person_name > p:first-of-type {
    margin-top: 0em;
  }
  .person_name > p:last-of-type {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 768px) {
  .person_name {
    line-height: 1;
    font-size: 3rem;
  }
  .person_name > p {
    line-height: inherit;
    font: inherit;
  }
  .person_name > p:first-of-type {
    margin-top: 0em;
  }
  .person_name > p:last-of-type {
    margin-bottom: 0em;
  }
}

@media screen and (min-width: 769px) {
  .person_post {
    margin-top: min(15px, 1vw);
    line-height: 1.786em;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
  .person_post > p {
    line-height: inherit;
    font: inherit;
  }
  .person_post > p:first-of-type {
    margin-top: -0.392em;
  }
  .person_post > p:last-of-type {
    margin-bottom: -0.392em;
  }
}
@media screen and (max-width: 768px) {
  .person_post {
    margin-top: 1.6rem;
    padding-left: 10rem;
    line-height: 1.5em;
    font-size: 2rem;
  }
  .person_post > p {
    line-height: inherit;
    font: inherit;
  }
  .person_post > p:first-of-type {
    margin-top: -0.25em;
  }
  .person_post > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.person_txt {
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .person_txt {
    margin-top: min(30px, 2vw);
    line-height: 1.429em;
    font-size: 2.1rem;
    text-align: center;
  }
  .person_txt > p {
    line-height: inherit;
    font: inherit;
  }
  .person_txt > p:first-of-type {
    margin-top: -0.214em;
  }
  .person_txt > p:last-of-type {
    margin-bottom: -0.214em;
  }
}
@media screen and (max-width: 768px) {
  .person_txt {
    margin-top: 1rem;
    line-height: 1.637em;
    font-size: 2.2rem;
  }
  .person_txt > p {
    line-height: inherit;
    font: inherit;
  }
  .person_txt > p:first-of-type {
    margin-top: -0.318em;
  }
  .person_txt > p:last-of-type {
    margin-bottom: -0.318em;
  }
}

@media screen and (max-width: 768px) {
  .person_post > p {
    height: 5.5rem;
  }
}/*# sourceMappingURL=person.css.map */