@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@300;400;500;700&family=Work+Sans:wght@400;500&display=swap");
.interviews {
  margin: 0 auto;
  width: 95%;
  padding-top: 104px;
}
@media screen and (min-width: 960px) {
  .interviews {
    padding-top: 104px;
  }
}
@media screen and (min-width: 1300px) {
  .interviews {
    width: 80%;
    margin-right: 0;
  }
}
.interviews__inner {
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .interviews__inner {
    width: 90%;
  }
}
@media screen and (min-width: 1300px) {
  .interviews__inner {
    margin-left: 0;
  }
}
.interviews__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 960px) {
  .interviews__wrap {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 64px;
  }
}
.interviews__item {
  width: 100%;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .interviews__item {
    width: calc((100% - 20px) / 2);
    max-width: 480px;
  }
  .interviews__item:hover .data span:last-child {
    padding-left: 10px;
  }
  .interviews__item:hover .data span:last-child::before {
    width: 30px;
    right: 0;
  }
  .interviews__item:hover .data span:last-child::after {
    height: 0;
    right: 0;
  }
}
.interviews__item .data {
  margin-top: -80px;
}
.interviews__item .data span {
  display: inline-block;
}
.interviews__item .data span:first-child {
  margin-left: 50px;
  margin-right: 16px;
  font-size: 18px;
  font-weight: 700;
}
.interviews__item .data span:last-child {
  position: relative;
  padding-right: 30px;
  font-size: 20px;
  font-family: "Cardo", "Noto Sans JP", serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interviews__item .data span:last-child::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interviews__item .data span:last-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interviews__item .year {
  margin-left: 50px;
  font-size: 16px;
}
.interviews__img {
  width: 100%;
  aspect-ratio: 480/530;
  position: relative;
  z-index: -1;
}
.interviews__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #59554C;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}
.interviews__img::after {
  content: attr(data-num);
  font-family: "Cardo", "Noto Sans JP", serif;
  display: block;
  color: #ffffff;
  opacity: 0.4;
  position: absolute;
  font-size: 67px;
  left: 9px;
  bottom: 65px;
}
@media screen and (min-width: 960px) {
  .interviews__img::after {
    left: 20px;
    bottom: 55px;
    line-height: 75px;
  }
}
.interviews__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interviews .hopup {
  position: fixed;
  width: 90%;
  top: 150%;
  left: 50%;
  height: 90vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 80px 0 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  max-width: 1070px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 960px) {
  .interviews .hopup {
    padding: 65px 0 50px;
    max-height: 600px;
  }
}
.interviews .hopup.active {
  opacity: 1;
  top: 50%;
  visibility: visible;
}
.interviews .hopup::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 12.5px;
  border-style: solid;
  border-top-color: #E87DA5;
  border-left-color: #E87DA5;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (min-width: 960px) {
  .interviews .hopup::before {
    border-width: 35px;
  }
}
.interviews .hopup__inner {
  overflow: auto;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__inner {
    padding: 0 70px;
    max-height: 485px;
  }
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.interviews .hopup__info .img {
  width: 100%;
  display: block;
  aspect-ratio: 265/257;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .img {
    width: 30%;
    margin: 0;
  }
}
.interviews .hopup__info .img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #59554C;
  opacity: 0.3;
  position: absolute;
}
.interviews .hopup__info .img img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content {
    width: 68%;
  }
}
.interviews .hopup__info .content__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content__meta {
    gap: 16px;
  }
}
.interviews .hopup__info .content__meta .num {
  font-size: 18px;
  font-family: "Cardo", "Noto Sans JP", serif;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content__meta .num {
    font-size: 65px;
    line-height: 75px;
  }
}
.interviews .hopup__info .content__meta .info {
  line-height: 21px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content__meta .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    line-height: 27px;
  }
}
.interviews .hopup__info .content__meta .info .name {
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content__meta .info .name {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .interviews .hopup__info .content__meta .info .name span {
    display: block;
  }
}
.interviews .hopup__info .content__meta .info .name span:last-child {
  font-weight: 700;
}
.interviews .hopup__info .content__meta .info .depart {
  font-weight: 700;
}
.interviews .hopup__info .content__meta .info .post {
  font-weight: 700;
}
.interviews .hopup__info .content__desc {
  margin-top: 30px;
}
.interviews .hopup__qa {
  margin-top: 25px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__qa {
    margin-top: 30px;
    padding: 0 30px;
  }
}
.interviews .hopup__qa .q {
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__qa .q {
    padding-left: 15px;
  }
}
.interviews .hopup__qa .q::before {
  content: "Q";
  display: block;
  position: absolute;
  font-size: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #59554C;
  opacity: 0.3;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__qa .q::before {
    font-size: 40px;
  }
}
.interviews .hopup__closebtn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px #59554C solid;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: #ffffff;
}
@media screen and (min-width: 960px) {
  .interviews .hopup__closebtn {
    width: 70px;
    height: 70px;
  }
}
.interviews .hopup__closebtn::before, .interviews .hopup__closebtn::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: #59554C;
  position: absolute;
  top: 50%;
  left: 50%;
}
.interviews .hopup__closebtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.interviews .hopup__closebtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.hopup__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #59554C;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hopup__bg.active {
  visibility: visible;
  opacity: 0.6;
}

html.hopup {
  overflow: hidden;
}

.schedule {
  margin: 0 auto;
  width: 95%;
  padding-top: 104px;
}
@media screen and (min-width: 960px) {
  .schedule {
    padding-top: 124px;
  }
}
@media screen and (min-width: 1300px) {
  .schedule {
    width: 80%;
    margin-right: 0;
  }
}
.schedule__inner {
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .schedule__inner {
    width: 90%;
  }
}
@media screen and (min-width: 1300px) {
  .schedule__inner {
    margin-left: 0;
  }
}
.schedule h2 {
  margin-bottom: 32px;
}
@media screen and (min-width: 960px) {
  .schedule h2 {
    margin-bottom: 64px;
  }
}
.schedule__content .row {
  position: relative;
  padding: 30px 0 0 60px;
}
@media screen and (min-width: 960px) {
  .schedule__content .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 70px;
    padding-top: 60px;
  }
}
.schedule__content .row::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  top: 45px;
  left: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: #F4BF69;
  z-index: 2;
  border-radius: 50%;
}
.schedule__content .row:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #59554C;
  top: 45px;
  left: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  z-index: 1;
}
.schedule__content .row .time {
  font-size: 30px;
  margin-bottom: 6px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .schedule__content .row .time {
    width: 95px;
  }
}
.schedule__content .row .body {
  border-bottom: 1px #59554C solid;
}
@media screen and (min-width: 960px) {
  .schedule__content .row .body {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 10px 60px;
  }
}
.schedule__content .row .body .title {
  margin-bottom: 25px;
}
@media screen and (min-width: 960px) {
  .schedule__content .row .body .title {
    font-size: 18px;
  }
}
.schedule__content .row .body .content {
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .schedule__content .row .body .content {
    margin-bottom: 0;
  }
}

.guidelines {
  margin: 0 auto;
  width: 95%;
  padding-top: 104px;
  padding-bottom: 104px;
}
@media screen and (min-width: 960px) {
  .guidelines {
    padding-top: 124px;
    padding-bottom: 124px;
  }
}
@media screen and (min-width: 1300px) {
  .guidelines {
    width: 80%;
    margin-right: 0;
  }
}
.guidelines__inner {
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .guidelines__inner {
    width: 80%;
  }
}
@media screen and (min-width: 1300px) {
  .guidelines__inner {
    margin-left: 0;
  }
}
.guidelines h2 {
  margin-bottom: 32px;
}
@media screen and (min-width: 960px) {
  .guidelines h2 {
    margin-bottom: 64px;
  }
}
.guidelines__content {
  -webkit-box-shadow: #59554C4A 0px 3px 13px;
          box-shadow: #59554C4A 0px 3px 13px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 10px 40px;
  position: relative;
  background-color: #ffffff;
}
@media screen and (min-width: 960px) {
  .guidelines__content {
    padding: 40px 80px 85px;
  }
}
.guidelines__content::before {
  content: "";
  display: block;
  border-width: 17.5px;
  border-style: solid;
  border-top-color: #3FAAB4;
  border-left-color: #3FAAB4;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .guidelines__content::before {
    border-width: 35px;
  }
}
.guidelines__content .row {
  border-bottom: 1px #59554C solid;
  padding: 20px 0;
}
@media screen and (min-width: 960px) {
  .guidelines__content .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 65px;
    padding: 40px 0;
  }
}
.guidelines__content .row .title {
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .guidelines__content .row .title {
    width: 110px;
  }
}

.footer__contact::before {
  content: "Entry";
}
.footer__contact::after {
  content: "エントリー";
}

.page-kv .kv_content .kv_text::before {
  content: none;
}

.page-kv {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .page-kv {
    margin-bottom: 65px;
  }
}