/* CSS Document */
/*------------------------------
break point
------------------------------*/
/*------------------------------
project
------------------------------*/
#bg {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100lvh;
}

.mv {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.mv_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.mv_wrap h1 {
  font-size: 8rem;
  line-height: 1.1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv_wrap h1 {
    font-size: 4rem;
  }
}
.mv_wrap p {
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv_wrap p {
    font-size: 1.8rem;
  }
}
.mv_image {
  position: relative;
  z-index: 0;
  width: 100%;
}
.mv_image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.mv_inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1180px) {
  .mv_inner {
    background-color: #fff;
  }
}
.mv_title {
  margin-top: -6rem;
  padding-block: 6rem 7rem;
  background-color: #fff;
  padding-inline: 6rem;
  max-width: calc(1100px + 8rem);
  margin-inline: auto;
}
@media screen and (max-width: 1180px) {
  .mv_title {
    padding-inline: 2rem;
    max-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  .mv_title {
    padding-block: 3rem 4rem;
    margin-top: 0;
  }
}
.mv_title p {
  font-size: 4.8rem;
  color: var(--color-sub02);
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-block: var(--leading-trim);
}
@media screen and (max-width: 767px) {
  .mv_title p {
    font-size: 2.4rem;
  }
}

.overview {
  position: relative;
  z-index: 1;
  padding-bottom: 7rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .overview {
    padding-bottom: 6rem;
  }
}
.overview_hd {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--color-sub02);
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .overview_hd {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
.overview_hd::after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  border-bottom: 1px #aaaeb1 dotted;
  margin-left: 1.2rem;
}
.overview p {
  line-height: 2;
  margin-block: var(--leading-trim);
  text-align: justify;
}

.profile {
  position: relative;
  z-index: 1;
  background-color: #f0f3f6;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 6rem;
  }
}
.profile_hd {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-sub02);
  text-align: center;
  position: relative;
  z-index: 1;
  translate: 0 -0.5lh;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .profile_hd {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
.profile_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .profile_wrap {
    padding-bottom: 3rem;
    flex-wrap: wrap;
  }
}
.profile_item {
  padding-inline: 3rem;
}
.profile_item + .profile_item {
  border-left: 1px #aaaeb1 dotted;
}
.profile_item:first-of-type {
  padding-left: 0;
}
.profile_item:last-of-type {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .profile_item {
    padding-inline: 2rem;
    width: 50%;
  }
  .profile_item:nth-of-type(2) {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .profile_item:nth-of-type(3) {
    padding-left: 0;
    border-left: none;
  }
  .profile_item.item03 {
    padding-right: 2rem;
  }
}
.profile_item-image {
  width: 100%;
}
.profile_item-job {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  padding: 0.8rem 1rem 0.7rem;
  background-color: var(--color-main);
  display: inline-block;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .profile_item-job {
    padding: 0.6rem 0.8rem;
  }
}
.profile_item-name {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.05em;
  margin-block: 0.8rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .profile_item-name {
    font-size: 2.4rem;
    margin-block: 0.8rem 1.2rem;
  }
}
.profile_item > p {
  font-size: 1.3rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .profile_item > p {
    font-size: 1.2rem;
    font-feature-settings: "palt";
  }
}
.profile_item > p:first-of-type {
  margin-top: var(--leading-trim);
}
.profile_item > p:last-of-type {
  margin-bottom: var(--leading-trim);
}

.episode {
  position: relative;
  z-index: 1;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .episode {
    margin-bottom: 5rem;
  }
}
.episode_item + .episode_item {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .episode_item + .episode_item {
    margin-top: 6rem;
  }
}
.episode_item-hd {
  display: flex;
  align-items: center;
  color: var(--color-main);
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .episode_item-hd {
    margin-bottom: 1.8rem;
  }
}
.episode_item-hd p {
  font-size: 2.1rem;
  font-weight: 700;
  padding-right: 1rem;
  margin-right: 1rem;
  line-height: 1;
  border-right: 2px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  .episode_item-hd p {
    font-size: 1.8rem;
    border-right: 1px solid var(--color-main);
  }
}
.episode_item-hd h2 {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .episode_item-hd h2 {
    font-size: 1.4rem;
  }
}
.episode_item-title {
  width: 100%;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-main);
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .episode_item-title {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
}
.episode_item-title p {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-main);
  margin-block: var(--leading-trim);
}
@media screen and (max-width: 767px) {
  .episode_item-title p {
    font-size: 2.4rem;
    font-weight: 700;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
}
.episode_item > p {
  line-height: 2;
  margin-block: var(--leading-trim);
  text-align: justify;
}
.episode_item-image {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .episode_item-image {
    margin-top: 3rem;
  }
}
.episode_item li {
  display: flex;
}
.episode_item li + li {
  margin-top: 5rem;
}
.episode_item-icon {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .episode_item-icon {
    width: 10rem;
    height: 10rem;
  }
}
.episode_item-text {
  margin-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .episode_item-text {
    display: flex;
    flex-direction: column-reverse;
    margin-left: 2rem;
  }
}
.episode_item-text p {
  margin-block: var(--leading-trim);
  text-align: justify;
  line-height: 2;
}
.episode_item-text-name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .episode_item-text-name {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.episode_item-text-name .job {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  padding: 0.6rem 0.9rem 0.5rem;
  background-color: var(--color-main);
  display: inline-block;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .episode_item-text-name .job {
    margin-right: 1rem;
  }
}
.episode_item-text-name .name {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-main);
}

.other {
  position: relative;
  z-index: 1;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .other {
    margin-bottom: 4rem;
  }
}
.other_hd-en {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-sub02);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other_hd-en {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.other_hd-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .other_hd-ja {
    margin-bottom: 3rem;
  }
}
.other_hd-ja h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-inline: 1.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .other_hd-ja h2 {
    font-size: 2.1rem;
  }
}
.other_hd-ja::before, .other_hd-ja::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #dfe4eb;
}
.other_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .other_wrap {
    display: block;
  }
}
.other_link {
  text-decoration: none;
  display: block;
  color: #fff;
  position: relative;
  width: calc(50% - 2rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .other_link {
    width: 100%;
  }
  .other_link + .other_link {
    margin-top: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .other_link:hover img {
    scale: 1.05;
  }
  .other_link:hover .other_image::after {
    opacity: 0.1;
  }
}
.other_link.current {
  color: #b3b3b3;
  pointer-events: none;
}
.other_link.current .other_image::after {
  background-color: #000;
  opacity: 0.6;
}
.other_link-wrap {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.3;
}
.other_link p {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .other_link p {
    font-size: 2.8rem;
  }
}
.other_link span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .other_link span {
    font-size: 1.8rem;
  }
}
.other_image {
  width: 100%;
  position: relative;
}
.other_image img {
  transition: all 0.4s ease;
}
.other_image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  mix-blend-mode: multiply;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #dfe4eb;
}
/*# sourceMappingURL=project.css.map */