@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Roboto:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.engineers-list {
  padding: 0 40px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .engineers-list {
    padding: 0;
    gap: 40px;
    flex-direction: column;
    margin: 0 -25px;
  }
}
.engineers-list__item {
  width: calc(50% - 40px);
  border-bottom: 1px dashed #223562;
}
@media (max-width: 767px) {
  .engineers-list__item {
    width: 100%;
  }
}
.engineers-list__link {
  display: block;
  position: relative;
  padding-bottom: 40px;
  height: 100%;
}
@media (max-width: 767px) {
  .engineers-list__link {
    padding: 0 25px 65px;
  }
}
@media (min-width: 1024px) {
  .engineers-list__link:hover .engineers-list__img img {
    transform: scale(1.05);
  }
}
.engineers-list__img {
  overflow: hidden;
  position: relative;
}
.engineers-list__img img {
  transition: transform 0.4s ease;
  transform: scale(1);
}
.engineers-list__img::before {
  content: "";
  width: 5px;
  height: 100%;
  display: block;
  background: #3749c2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.engineers-list__title {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .engineers-list__title {
    margin-top: 25px;
  }
}
.engineers-list__title-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .engineers-list__title-main {
    font-size: 1.9rem;
  }
}
.engineers-list__title-sub {
  margin-top: 12px;
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .engineers-list__title-sub {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.engineers-list__description {
  width: calc(100% - 126px);
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .engineers-list__description {
    width: 100%;
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.engineers-list .oval {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media (max-width: 767px) {
  .engineers-list .oval {
    bottom: 25px;
    right: 25px;
  }
}
.engineers-list .oval-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.engineers-list .oval-icon::before, .engineers-list .oval-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background-image: url(../../images/common/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.engineers-list .oval-icon::before {
  transform: translate(0, 0);
}
.engineers-list .oval-icon::after {
  transform: translate(-12px, 12px);
}
@media (max-width: 767px) {
  .engineers-list .oval-icon {
    width: 7px;
    height: 7px;
  }
  .engineers-list .oval-icon::before, .engineers-list .oval-icon::after {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1024px) {
  .engineers-list__link:hover .oval-icon::before {
    transform: translate(12px, -12px);
  }
  .engineers-list__link:hover .oval-icon::after {
    transform: translate(0, 0);
  }
}

@media (max-width: 767px) {
  .l-wrapper--manufacturing .page-head__title-sub {
    font-size: 6.8rem;
  }
}

@media (max-width: 767px) {
  .manufacturing {
    margin: 0 -25px;
  }
}
.manufacturing__inner {
  display: flex;
  flex-direction: column;
}

.manufacturing-section {
  padding: 0 100px 80px;
  display: flex;
  flex-direction: column;
  background: #ebf1fa url(../../images/common/bg_light-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .manufacturing-section {
    padding: 0 25px 80px;
  }
}
.manufacturing-section + .manufacturing-section {
  margin-top: 80px;
}
.manufacturing-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -17px;
}
.manufacturing-section__label {
  min-width: 120px;
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .manufacturing-section__label {
    font-size: 1.3rem;
  }
}
.manufacturing-section__number {
  font-size: 12rem;
  margin-top: 5px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #3749c2;
}
@media (max-width: 767px) {
  .manufacturing-section__number {
    font-size: 8rem;
  }
}
.manufacturing-section__title {
  margin-top: 17px;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .manufacturing-section__title {
    font-size: 3rem;
  }
}
.manufacturing-section__copy {
  line-height: 1.7;
  font-weight: 500;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .manufacturing-section__copy {
    font-size: 1.6rem;
  }
}
.manufacturing-section__lead {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .manufacturing-section__lead {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .manufacturing-section__lead p {
    font-size: 1.4rem;
  }
}
.manufacturing-section__lead p + p {
  margin-top: 2rem;
}
.manufacturing-section__images {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .manufacturing-section__images {
    margin-top: 30px;
  }
}
.manufacturing-section__image {
  width: 25%;
}
@media (max-width: 767px) {
  .manufacturing-section__image {
    width: 50%;
  }
  .manufacturing-section__image:nth-child(3), .manufacturing-section__image:nth-child(4) {
    margin-top: 10px;
  }
}
.manufacturing-section__image img {
  display: block;
  width: 100%;
  height: auto;
}
.manufacturing-section__image--wide {
  width: 100%;
}
.manufacturing-section__factories {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .manufacturing-section__factories {
    margin-top: 30px;
  }
}
.manufacturing-section__message {
  border-top: 2px solid #3749c2;
  padding-top: 20px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.manufacturing-section__message-label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #3749c2;
}
@media (max-width: 767px) {
  .manufacturing-section__message-label {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.manufacturing-section__message-title {
  margin-top: 40px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .manufacturing-section__message-title {
    margin-top: 30px;
    font-size: 2.2rem;
  }
}
.manufacturing-section__message-copy {
  line-height: 1.7;
  font-weight: 500;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .manufacturing-section__message-copy {
    font-size: 1.6rem;
  }
}
.manufacturing-section__message-text {
  padding: 60px 80px;
  margin-top: 20px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .manufacturing-section__message-text {
    padding: 45px 30px;
    font-size: 1.4rem;
  }
}

.manufacturing-factory {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
@media (max-width: 767px) {
  .manufacturing-factory {
    padding: 30px;
  }
}
.manufacturing-factory + .manufacturing-factory {
  margin-top: 10px;
}
.manufacturing-factory--japan .manufacturing-factory__title {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .manufacturing-factory--japan .manufacturing-factory__title {
    position: inherit;
  }
}
.manufacturing-factory--japan .manufacturing-factory__map {
  width: 540px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .manufacturing-factory--japan .manufacturing-factory__map {
    width: 265px;
    margin-top: 10px;
  }
}
.manufacturing-factory--asia .manufacturing-factory__list {
  flex-direction: row;
}
@media (max-width: 767px) {
  .manufacturing-factory--asia .manufacturing-factory__list {
    flex-direction: column;
  }
}
.manufacturing-factory--asia .manufacturing-factory__col {
  width: auto;
  flex: 1 1 0;
}
.manufacturing-factory--asia .manufacturing-factory__map {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .manufacturing-factory--asia .manufacturing-factory__map {
    margin-top: 10px;
  }
}
.manufacturing-factory--asia .manufacturing-factory-card {
  width: 100%;
}
.manufacturing-factory__head {
  position: relative;
}
.manufacturing-factory__title {
  padding-left: 28px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  background: url(../../images/about/strength/icon_map.png) no-repeat left center;
  background-size: 18px 24px;
}
.manufacturing-factory__map {
  width: 100%;
}
.manufacturing-factory__map picture,
.manufacturing-factory__map img {
  display: block;
  width: 100%;
  height: auto;
}
.manufacturing-factory__list {
  margin-top: 60px;
  display: flex;
  gap: 0 80px;
}
@media (max-width: 767px) {
  .manufacturing-factory__list {
    margin-top: 30px;
    flex-direction: column;
  }
}
.manufacturing-factory__col {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .manufacturing-factory__col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .manufacturing-factory__col + .manufacturing-factory__col {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #3749c2;
  }
}

.manufacturing-factory-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.manufacturing-factory-card + .manufacturing-factory-card {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .manufacturing-factory-card + .manufacturing-factory-card {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.manufacturing-factory-card__content {
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .manufacturing-factory-card__content {
    flex-direction: column;
  }
}
.manufacturing-factory-card__info {
  flex: 1 1 auto;
}
.manufacturing-factory-card__area {
  width: 100%;
  padding-left: 8px;
  border-left: 8px solid #3749c2;
  color: #3749c2;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.manufacturing-factory-card__detail {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
.manufacturing-factory-card__detail-item {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: relative;
}
.manufacturing-factory-card__detail-item + .manufacturing-factory-card__detail-item {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .manufacturing-factory-card__detail-item + .manufacturing-factory-card__detail-item {
    margin-top: 5px;
  }
}
.manufacturing-factory-card__detail-item::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: #223562;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}
.manufacturing-factory-card__name {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .manufacturing-factory-card__name {
    font-size: 1.4rem;
  }
}
.manufacturing-factory-card__address {
  font-size: 1.2rem;
}
.manufacturing-factory-card__media {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .manufacturing-factory-card__media {
    margin-top: 10px;
    width: 100%;
  }
}
.manufacturing-factory-card__image {
  width: 180px;
}
@media (max-width: 767px) {
  .manufacturing-factory-card__image {
    width: 100%;
  }
}
.manufacturing-factory-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
.manufacturing-factory-card__caption {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: right;
}
.manufacturing-factory-card--hokkaido .manufacturing-factory-card__area {
  border-left: 8px solid #1f917f;
  color: #1f917f;
}
.manufacturing-factory-card--tohoku .manufacturing-factory-card__area {
  border-left: 8px solid #238aa6;
  color: #238aa6;
}
.manufacturing-factory-card--kanto .manufacturing-factory-card__area {
  border-left: 8px solid #2e6fc1;
  color: #2e6fc1;
}
.manufacturing-factory-card--hokuriku .manufacturing-factory-card__area {
  border-left: 8px solid #28327b;
  color: #28327b;
}
.manufacturing-factory-card--chubu .manufacturing-factory-card__area {
  border-left: 8px solid #3e2ec4;
  color: #3e2ec4;
}
.manufacturing-factory-card--kinki .manufacturing-factory-card__area {
  border-left: 8px solid #5e2fbc;
  color: #5e2fbc;
}
.manufacturing-factory-card--chugoku .manufacturing-factory-card__area {
  border-left: 8px solid #9329ab;
  color: #9329ab;
}
.manufacturing-factory-card--shikoku .manufacturing-factory-card__area {
  border-left: 8px solid #663a93;
  color: #663a93;
}
.manufacturing-factory-card--kyushu .manufacturing-factory-card__area {
  border-left: 8px solid #bb289a;
  color: #bb289a;
}

.message-kv {
  position: relative;
  z-index: 2;
}
.message-kv__image {
  width: 100%;
}

.message-title {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 90px);
  z-index: 1;
}
@media (max-width: 767px) {
  .message-title {
    width: 100%;
    transform: translate(-50%, 120px);
  }
}
.message-title__sub {
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-size: 16rem;
}
@media (max-width: 767px) {
  .message-title__sub {
    font-size: 8.4rem;
    line-height: 0.8;
  }
}
.message-title__sub span {
  font-size: 12rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .message-title__sub span {
    font-size: 6.4rem;
  }
}
.message-title__main {
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 1.6rem;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .message-title__main {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}
.message-title--discussion {
  transform: translate(-50%, 70px);
}
@media (max-width: 767px) {
  .message-title--discussion {
    transform: translate(-50%, 94px);
  }
}
.message-title--discussion .message-title__sub {
  line-height: 0.7;
}

.message-header {
  margin-top: -20px;
}
.message-header--projectstory .message-header__inner {
  width: 100%;
  background: url(../../images/engineers/projectstory/bg_lead.jpg) repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .message-header--projectstory .message-header__inner {
    background: url(../../images/engineers/projectstory/bg_lead_sp.jpg) repeat center center;
    background-size: cover;
  }
}
.message-header--projectstory .message-header__inner::after {
  display: none;
}
@media (max-width: 767px) {
  .message-header--discussion .message-header__inner {
    padding: 153px 20px 90px;
  }
}
.message-header__inner {
  padding: 144px 40px 280px 80px;
  position: relative;
  width: calc(100% - 40px);
  background: url(../../images/common/bg_dark-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .message-header__inner {
    padding: 180px 20px 90px;
    width: calc(100% - 10px);
    justify-content: flex-start;
  }
}
.message-header__inner::after {
  content: "";
  width: 40px;
  height: 100%;
  display: block;
  position: absolute;
  top: 19.5px;
  right: -40px;
  background: url(../../images/common/bg_dark-blue_shadow.png) repeat center center;
  background-size: 100px;
  transform-origin: top right;
  transform: skewY(26deg);
}
@media (max-width: 767px) {
  .message-header__inner::after {
    width: 10px;
    right: -10px;
    top: 4.5px;
    z-index: 1;
  }
}
.message-header__lead {
  margin-top: 80px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .message-header__lead {
    margin-top: 60px;
  }
}
.message-header__heading {
  font-weight: 500;
  line-height: 1.7;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .message-header__heading {
    font-size: 1.8rem;
  }
}
.message-header__text {
  margin-top: 40px;
  line-height: 2;
}
@media (max-width: 767px) {
  .message-header__text {
    text-align: left;
    font-size: 1.4rem;
  }
}

.message-breadcrumbs {
  display: flex;
  justify-content: flex-end;
}

.message-contents {
  padding: 0 120px 120px;
}
@media (max-width: 767px) {
  .message-contents {
    padding: 0 0 100px;
  }
}
.message-contents__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .message-contents__inner {
    max-width: 100%;
  }
}

.profile {
  margin-top: -140px;
  position: relative;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .profile {
    margin-top: 0;
    padding: 0;
  }
}
.profile__list {
  display: flex;
  background: #ffffff;
  padding: 80px 100px;
}
@media (max-width: 767px) {
  .profile__list {
    padding: 0 25px 60px !important;
    flex-direction: column;
  }
}
.profile__list--3col {
  padding: 80px 62px;
}
.profile__list--3col .profile__item:nth-child(1) {
  padding-right: 50px;
}
.profile__list--3col .profile__item:nth-child(2) {
  padding-right: 50px;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .profile__list--3col .profile__item:nth-child(2) {
    padding-left: 0;
  }
}
.profile__list--3col .profile__item:nth-child(3) {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .profile__list--3col .profile__item:nth-child(3) {
    padding-left: 0;
  }
}
.profile__list--3col .profile__photo {
  width: 250px;
}
.profile__item {
  flex: 1;
  padding-right: 100px;
}
@media (max-width: 767px) {
  .profile__item {
    padding-right: 0 !important;
  }
}
.profile__item + .profile__item {
  border-left: 1px solid rgba(34, 53, 98, 0.3);
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .profile__item + .profile__item {
    border-left: 0;
    border-top: 1px solid rgba(34, 53, 98, 0.3);
    padding-left: 0;
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .profile__item:first-child {
    margin-top: -40px;
  }
}
.profile__photo {
  width: 310px;
  margin: -140px auto 0;
}
@media (max-width: 767px) {
  .profile__photo {
    width: 160px !important;
    margin-top: 0;
  }
}
.profile__photo img {
  width: 100%;
}
.profile__head {
  margin-top: 30px;
  text-align: center;
}
.profile__name-ja {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .profile__name-ja {
    font-size: 1.8rem;
  }
}
.profile__name-en {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(34, 53, 98, 0.6);
}
.profile__name-data {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 30px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .profile__name-data {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
.profile__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .profile__text {
    margin-top: 20px;
    font-size: 13px;
  }
}
.profile__column {
  margin-top: 40px;
  display: flex;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .profile__column {
    margin-top: 30px;
  }
}
.profile__column-image {
  width: 160px;
  flex-shrink: 0;
}
.profile__column-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.talk-section {
  padding: 120px 40px 160px;
}
@media (max-width: 767px) {
  .talk-section {
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 80px 0 60px;
  }
}
.talk-section--last {
  padding-bottom: 60px;
  border-bottom: 1px dashed #223562;
}
.talk-section + .talk-section {
  padding-top: 160px;
  border-top: 1px dashed #223562;
}
@media (max-width: 767px) {
  .talk-section + .talk-section {
    padding-top: 60px;
  }
}
.talk-section__head {
  text-align: center;
}
.talk-section__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .talk-section__label {
    font-size: 1.3rem;
  }
}
.talk-section__title {
  margin-top: 10px;
  padding-bottom: 25px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 767px) {
  .talk-section__title {
    font-size: 2.2rem;
  }
}
.talk-section__title::before, .talk-section__title::after {
  content: "";
  width: 20px;
  height: 3px;
  display: block;
  position: absolute;
  left: 50%;
}
@media (max-width: 767px) {
  .talk-section__title::before, .talk-section__title::after {
    height: 5px;
  }
}
.talk-section__title::before {
  background: #3749c2;
  bottom: 0;
  transform: translateX(-20px);
}
.talk-section__title::after {
  background: #a2adf2;
  bottom: 0;
}
.talk-section__images {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .talk-section__images {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.talk-section__images--2col {
  display: flex;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .talk-section__images--2col {
    gap: 0 10px;
  }
}
.talk-section__images--2col .talk-section__image {
  flex: 1;
}
.talk-section__image img {
  width: 100%;
}
.talk-section__images-sub {
  margin-top: 20px;
  display: flex;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .talk-section__images-sub {
    width: 100vw;
    margin-top: 10px;
    margin-left: calc(50% - 50vw);
    gap: 0 10px;
  }
}
.talk-section__image-sub {
  flex: 1;
}
.talk-section__image-sub img {
  width: 100%;
}

.talk-qa {
  padding: 80px 80px 0;
}
@media (max-width: 767px) {
  .talk-qa {
    padding: 40px 0 0;
  }
}
.talk-qa__question {
  color: #3749c2;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .talk-qa__question {
    font-size: 1.6rem;
  }
}
.talk-qa__answers {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .talk-qa__answers {
    margin-top: 25px;
  }
}
.talk-qa__answer {
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .talk-qa__answer {
    gap: 0 15px;
  }
}
.talk-qa__answer + .talk-qa__answer {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .talk-qa__answer + .talk-qa__answer {
    margin-top: 40px;
  }
}
.talk-qa__person {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .talk-qa__person {
    width: 60px;
  }
}
.talk-qa__person-photo img {
  width: 100%;
}
.talk-qa__person-name {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .talk-qa__person-name {
    font-size: 1.4rem;
  }
}
.talk-qa__text {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-qa__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-qa__notes {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
  padding-left: 17px;
  position: relative;
}
.talk-qa__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.talk-comments {
  padding: 80px 80px 0;
}
@media (max-width: 767px) {
  .talk-comments {
    padding: 65px 0 0;
  }
}
.talk-comments__text-block + .talk-comments__text-block {
  margin-top: 40px;
}
.talk-comments__text-block + .talk-comments__comment {
  margin-top: 40px;
}
.talk-comments__text {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-comments__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-comments__comment {
  padding: 30px 60px;
  display: flex;
  gap: 0 40px;
  position: relative;
}
@media (max-width: 767px) {
  .talk-comments__comment {
    padding: 20px 0;
    gap: 0 15px;
  }
}
.talk-comments__comment + .talk-comments__text-block {
  margin-top: 40px;
}
.talk-comments__comment::before, .talk-comments__comment::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
}
.talk-comments__comment::before {
  top: 0;
  left: 0;
  border-top: 1px solid #3749c2;
  border-left: 1px solid #3749c2;
}
.talk-comments__comment::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #3749c2;
  border-right: 1px solid #3749c2;
}
@media (max-width: 767px) {
  .talk-comments__comment::before, .talk-comments__comment::after {
    width: 20px;
    height: 20px;
  }
}
.talk-comments__person {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .talk-comments__person {
    width: 60px;
  }
}
.talk-comments__person-photo img {
  width: 100%;
}
.talk-comments__person-name {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .talk-comments__person-name {
    font-size: 1.4rem;
  }
}
.talk-comments__comment-text {
  font-size: 1.6rem;
  line-height: 2.2;
  color: #3749c2;
}
@media (max-width: 767px) {
  .talk-comments__comment-text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-comments__notes {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
  padding-left: 17px;
  position: relative;
}
.talk-comments__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.talk-closing__image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}
.talk-closing__image img {
  width: 100%;
}
.talk-closing__body {
  width: calc(100% - 80px);
  padding: 80px 100px;
  margin: -200px auto 0;
  background: #ffffff;
  position: relative;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-closing__body {
    margin-top: 0;
    padding: 40px 25px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-closing__name {
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .talk-closing__name {
    margin-top: 10px;
  }
}

.talk-closing-text {
  padding: 80px 80px 0;
}
@media (max-width: 767px) {
  .talk-closing-text {
    padding: 40px 25px 0;
  }
}
.talk-closing-text__inner + .common-notes {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .talk-closing-text__inner + .common-notes {
    margin-top: 40px;
  }
}
.talk-closing-text__item + .talk-closing-text__item {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .talk-closing-text__item + .talk-closing-text__item {
    margin-top: 40px;
  }
}
.talk-closing-text__title {
  color: #3749c2;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .talk-closing-text__title {
    font-size: 1.6rem;
  }
}
.talk-closing-text__name, .talk-closing-text__text {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-closing-text__name, .talk-closing-text__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-closing-text__text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .talk-closing-text__text {
    margin-top: 25px;
  }
}
.talk-closing-text__name {
  margin-top: 1rem;
}

.plant-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.plant-nav__item {
  width: calc((100% - 45px) / 6);
}
@media (max-width: 767px) {
  .plant-nav__item {
    width: calc((100% - 18px) / 3);
  }
}
.plant-nav__link {
  width: 100%;
  height: 50px;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  background: #ffffff;
  color: #3749c2;
  font-weight: 500;
  border: 1px solid rgba(55, 73, 194, 0.2);
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .plant-nav__link {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .plant-nav__link:hover {
    background: #3749c2;
    color: #ffffff;
    border: 1px solid #3749c2;
  }
}
.plant-nav__link.is-current {
  background: #3749c2;
  color: #ffffff;
  border: 1px solid #3749c2;
}

.plant-header {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .plant-header {
    margin: 40px -25px 0;
  }
}
.plant-header__inner {
  padding-top: 40px;
  text-align: center;
  border-top: 4px solid #3749c2;
}
.plant-header__number {
  font-size: 6rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #3749c2;
}
@media (max-width: 767px) {
  .plant-header__number {
    font-size: 4.2rem;
  }
}
.plant-header__name {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 767px) {
  .plant-header__name {
    margin-top: 10px;
    font-size: 2.2rem;
  }
}
.plant-header__address {
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .plant-header__address {
    font-size: 1.4rem;
  }
}
.plant-header__map {
  margin-top: 10px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .plant-header__map {
    font-size: 1.4rem;
  }
}

.plant-info {
  margin-top: 40px;
  background: #ebf1fa url(../../images/common/bg_light-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .plant-info {
    margin: 40px -25px 0;
  }
}
.plant-info__body {
  padding: 60px 80px;
  display: flex;
  gap: 0 60px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .plant-info__body {
    padding: 40px 25px;
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.plant-info__people {
  width: 280px;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .plant-info__people {
    width: 100%;
    padding-right: 14px;
  }
}
.plant-info__title {
  padding-left: 14px;
  margin-left: -14px;
  color: #3749c2;
  font-weight: 500;
  position: relative;
}
.plant-info__title::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: #3749c2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.plant-info__table {
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}
.plant-info__table-row {
  display: flex;
  gap: 0 1px;
}
.plant-info__table-row + .plant-info__table-row {
  margin-top: 1px;
}
.plant-info__table-head {
  width: 100px;
  padding: 10px;
  flex-shrink: 0;
  background: #223562;
  color: #ffffff;
}
.plant-info__table-data {
  padding: 10px;
  flex: 1;
  background: #ffffff;
}
.plant-info__notes {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding-left: 17px;
  position: relative;
}
.plant-info__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.plant-info__detail {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
@media (max-width: 767px) {
  .plant-info__detail {
    flex-direction: column;
    margin-top: 30px;
    gap: 14px 0;
  }
}
.plant-info__detail-item {
  width: calc(50% - 10px);
  padding-left: 14px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .plant-info__detail-item {
    width: 100%;
  }
}
.plant-info__text {
  margin-top: 5px;
  line-height: 1.5;
}

.plant-contents {
  margin-top: 120px;
  padding: 0 40px;
  display: flex;
  gap: 0 60px;
}
@media (max-width: 767px) {
  .plant-contents {
    margin-top: 80px;
    padding: 0;
    flex-direction: column;
    gap: 40px 0;
  }
}
.plant-contents__head {
  width: 360px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .plant-contents__head {
    width: 100%;
  }
}
.plant-contents__title {
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 0.8;
  letter-spacing: -0.03em;
  font-size: 9.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .plant-contents__title {
    font-size: 6.2rem;
    text-align: center;
  }
}
.plant-contents__staff {
  width: 310px;
  margin-top: -20px;
  text-align: center;
}
@media (max-width: 767px) {
  .plant-contents__staff {
    width: 100%;
    margin-top: -15px;
    display: flex;
    gap: 0 20px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .plant-contents__info {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .plant-contents__staff-image {
    width: 168px;
    flex-shrink: 0;
  }
}
.plant-contents__staff-name-ja {
  margin-top: 30px;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .plant-contents__staff-name-ja {
    margin-top: 40px;
    font-size: 1.8rem;
  }
}
.plant-contents__staff-name-en {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(34, 53, 98, 0.6);
}
.plant-contents__staff-data {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .plant-contents__staff-data {
    margin-top: 15px;
    font-size: 1.2rem;
  }
}
.plant-contents__body {
  flex: 1;
  padding-left: 60px;
  border-left: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .plant-contents__body {
    padding-left: 0;
    padding-top: 40px;
    border-left: none;
    border-top: 1px dashed #3749c2;
  }
}

.plant-contents-card + .plant-contents-card {
  margin-top: 80px;
}
.plant-contents-card__head {
  display: flex;
  gap: 0 60px;
}
@media (max-width: 767px) {
  .plant-contents-card__head {
    flex-direction: column;
    gap: 20px 0;
    text-align: center;
  }
}
.plant-contents-card__title-wrap {
  flex: 1;
}
.plant-contents-card__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .plant-contents-card__label {
    font-size: 1.3rem;
  }
}
.plant-contents-card__title {
  margin-top: 10px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .plant-contents-card__title {
    font-size: 2.2rem;
  }
}
.plant-contents-card__media {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .plant-contents-card__media {
    margin: 0 auto;
  }
}
.plant-contents-card__caption {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .plant-contents-card__caption {
    text-align: left;
  }
}
.plant-contents-card__text {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .plant-contents-card__text {
    font-size: 1.4rem;
  }
}