.p-plant-content {
  position: relative;
}

.p-plant-content__bg {
  height: calc(100vw / 375 * 1000);
  position: relative;
  overflow: hidden;
  background: #8cb835;
}

.p-plant-content__bg img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-plant-content__heading {
  position: absolute;
  top: calc(100vw / 375 * 20);
  left: calc(100vw / 375 * 20);
}

.p-plant-content__heading__text {
  display: flex;
  flex-direction: column;
}

.p-plant-content__heading__text__text01 {
  font-family: 'Abel', sans-serif;
  font-weight: 400;
  font-size: calc(100vw / 375 * 30);
  line-height: 1.34;
  letter-spacing: 0.053em;
  color: #ffffff;
}

.p-plant-content__heading__text__text02 {
  font-weight: 500;
  font-size: calc(100vw / 375 * 20);
  color: #ffffff;
}

.p-plant-content__content {
  position: absolute;
  top: calc(100vw / 375 * 150);
  right: 0;
  background: #ffffff;
}

.p-plant-content__content__list__item {
  width: calc(100vw / 375 * 180);
  height: calc(100vw / 375 * 52);
  border-bottom: 1px solid #F1F1F1;
}

.p-plant-content__content__list__item__text {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 calc(100vw / 375 * 20);
  color: #0E6DA6;
  font-size: calc(100vw / 375 * 14);
}

.p-plant-content__content__list__item__text02 {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 calc(100vw / 375 * 20);
  position: relative;
  transition: 0.3s;
  font-size: calc(100vw / 375 * 14);
}

.p-plant-content__content__list__item__text02::before,
.p-plant-content__content__list__item__text02::after {
  content: "";
  display: block;
  width: calc(100vw / 375 * 8);
  height: calc(100vw / 375 * 13);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: calc(100vw / 375 * 20);
  transform: translateY(-50%);
}

.p-plant-content__content__list__item__text02::before {
  background-image: url("../img/company/plant/arrowIcon01.svg");
}

.p-plant-content__content__list__item__text02::after {
  background-image: url("../img/company/plant/arrowIcon02.svg");
  opacity: 0;
  transition: 0.3s;
}

.p-plant-content__content__list__item__text02.is-active {
  background: #0E6DA6;
  color: #ffffff;
}

.p-plant-content__content__list__item__text02.is-active::after {
  opacity: 1;
}

.p-plant-content__content__list__item__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 calc(100vw / 375 * 20);
  background: #F3F2F8;
  font-size: calc(100vw / 375 * 14);
}

.p-plant-content__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.p-plant-content__modal__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.p-plant-content__modal__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  width: calc(100vw / 375 * 335);
  padding: calc(100vw / 375 * 20);
  display: none;
}

.p-plant-content__modal__item > figure {
  position: relative;
  width: 100%;
}

.p-plant-content__modal__item > figure .over {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-plant-content__modal__item__heading {
  font-weight: 500;
  font-size: calc(100vw / 375 * 20);
  color: #0E6DA6;
}

.p-plant-content__modal__item__text {
  margin-top: calc(100vw / 375 * 10);
}

.p-plant-content__modal__item.is-active {
  display: flex;
  flex-direction: column;
}

.p-plant-content__modal.is-active {
  visibility: visible;
  opacity: 1;
}

@media print,
(min-width: 768px) {
  .p-plant-content__bg {
    height: 80vh;
  }

  .p-plant-content__bg img {
    height: auto;
    width: 100%;
    position: static;
    transform: none;
  }

  .p-plant-content__heading {
    top: calc(100vw / 1600 * 105);
    left: calc(100vw / 1600 * 220);
  }

  .p-plant-content__heading__text__text01 {
    font-size: calc(100vw / 1600 * 50);
  }

  .p-plant-content__heading__text__text02 {
    font-size: calc(100vw / 1600 * 30);
  }

  .p-plant-content__content {
    top: calc(100vw / 1600 * 0);
  }

  .p-plant-content__content__list__item {
    width: calc(100vw / 1600 * 330);
    height: 8.8888vh;
  }

  .p-plant-content__content__list__item__text {
    padding: 0 calc(100vw / 1600 * 45) 0 calc(100vw / 1600 * 70);
    color: #0E6DA6;
    font-size: calc(100vw / 1600 * 18);
  }

  .p-plant-content__content__list__item__text02 {
    padding: 0 calc(100vw / 1600 * 45) 0 calc(100vw / 1600 * 70);
    cursor: pointer;
    font-size: calc(100vw / 1600 * 18);
  }

  .p-plant-content__content__list__item__text02::before,
  .p-plant-content__content__list__item__text02::after {
    width: calc(100vw / 1600 * 8);
    height: calc(100vw / 1600 * 13);
    right: calc(100vw / 1600 * 45);
  }

  .p-plant-content__content__list__item__text02:hover {
    background: #0E6DA6;
    color: #ffffff;
  }

  .p-plant-content__content__list__item__text02:hover::after {
    opacity: 1;
  }

  .p-plant-content__content__list__item__link {
    padding: 0 calc(100vw / 1600 * 45) 0 calc(100vw / 1600 * 70);
    transition: 0.3s;
    font-size: calc(100vw / 1600 * 18);
  }

  .p-plant-content__content__list__item__link:hover {
    opacity: 0.7;
  }

  .p-plant-content__modal {
    position: absolute;
    height: 100%;
    width: calc(100vw / 1600 * 1210);
  }

  .p-plant-content__modal__mask {
    display: none;
  }

  .p-plant-content__modal__item {
    left: auto;
    right: 0;
    transform: none;
    width: calc(100vw / 1600 * 800);
    padding: calc(100vw / 1600 * 46) calc(100vw / 1600 * 43);
    display: block;
    opacity: 0;
    transition: 0.3s;
  }

  .p-plant-content__modal__item::after {
    content: "";
    display: block;
    width: calc(100vw / 1600 * 25);
    height: calc(100vw / 1600 * 25);
    background: #ffffff;
    position: absolute;
    top: calc(100vw / 1600 * 42);
    right: calc(100vw / 1600 * -8);
    transform: rotate(45deg);
  }

  .p-plant-content__modal__item > figure {
    width: 50%;
  }

  .p-plant-content__modal__item__wrap {
    width: 46%;
  }

  .p-plant-content__modal__item__heading {
    font-size: calc(100vw / 1600 * 24);
  }

  .p-plant-content__modal__item__text {
    margin-top: calc(100vw / 1600 * 28);
  }

  .p-plant-content__modal__item.is-active {
    opacity: 1;
    flex-direction: row;
    justify-content: space-between;
  }

  .p-plant-content__modal__item[data-item="2"] {
    top: 8.88888vh;
  }

  .p-plant-content__modal__item[data-item="3"] {
    top: 17.77776vh;
  }

  .p-plant-content__modal__item[data-item="5"] {
    top: 35.5552vh;
  }

  .p-plant-content__modal__item[data-item="6"] {
    top: 44.44440vh;
  }

  .p-plant-content__modal__item[data-item="8"] {
    top: 62.22216vh;
  }
}
