@charset "UTF-8";
/* ----------------------------------- */
/* Company Info Page Animations        */
/* ----------------------------------- */
@keyframes slideInLeftCompany {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes slideInRightCompany {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/* ----------------------------------- */
/* Company Info Page                   */
/* ----------------------------------- */
.page-title {
  padding: 11.9rem 0 10.9rem;
}
@media screen and (max-width: 768px) {
  .page-title {
    padding: 3.7rem 0 5.1rem;
  }
}

@media screen and (max-width: 768px) {
  .page-title__category {
    margin-bottom: 1rem;
  }
}

.page-intro__background-between {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: -1.3rem;
  font-size: 10rem;
  writing-mode: vertical-rl;
  font-weight: bold;
  color: #f5f5f5;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

.top-business__pattern--bottom {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: hard-light;
  display: block;
  bottom: 13.9rem;
  right: calc(50% - 45vw);
  width: 92.8rem;
  clip-path: inset(0 0 0 100%);
}
@media screen and (max-width: 1281px) {
  .top-business__pattern--bottom {
    right: calc(50% - 39.7vw);
  }
}
@media screen and (max-width: 768px) {
  .top-business__pattern--bottom {
    width: 35.7rem;
    bottom: 21.2rem;
    right: -2rem;
  }
}
.top-business__pattern--bottom.is-animated {
  animation: slideInRightPresident 2s cubic-bezier(0.21, 0.85, 0.35, 1) forwards;
}
@keyframes slideInRightPresident {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.company-info {
  padding: 0 0 7rem;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
}
.company-info .page-intro__title {
  margin: 0 0 2.4rem;
}
.company-info .page-intro__title .page-intro__title-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.04em;
  margin-bottom: 0rem;
  font-family: "Poppins", sans-serif;
}
.company-info .page-intro__title .page-intro__title-text {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin: 0.1rem 0 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .company-info .page-intro__title .page-intro__title-text {
    margin-top: 0;
  }
}
.company-info .company-table__value--text {
  margin: 0;
}
.company-info .company-officer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 4.8rem;
  width: 100%;
}
.company-info .company-officer__item {
  display: flex;
  align-items: center;
  padding: 0 0 1.42rem;
  border-bottom: 0.1rem solid #cecece;
  width: 45.9%;
  max-width: 28.8rem;
  gap: 2.4rem;
}
.company-info .company-officer__item--long {
  width: 100%;
  max-width: 100%;
}
.company-info .company-officer__item:first-child {
  padding-top: 0;
}
.company-info .company-officer__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.company-info .company-officer__role {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: #E50011;
  white-space: nowrap;
  min-width: 12rem;
}
.company-info .company-officer__name {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #000;
  text-align: right;
}
.company-info .company-business {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.company-info .company-business__item {
  position: relative;
  padding-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #000;
}
.company-info .company-business__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 1.6rem;
  height: 2px;
  background-color: #E50011;
}
.company-info .company-table {
  display: flex;
  flex-direction: column;
  margin: 4.8rem 0 0;
  padding: 0;
}
.company-info .company-table .company-table__row {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  padding: 3rem 0 3.2rem;
  position: relative;
}
.company-info .company-table .company-table__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 19.2rem;
  height: 0.3rem;
  background: linear-gradient(to right, #E50011 0%, #F59E0B 100%);
  z-index: 2;
}
.company-info .company-table .company-table__row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: #cecece;
  z-index: 1;
}
.company-info .company-table .company-table__row:first-child {
  padding-top: 0;
}
.company-info .company-table .company-table__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #E50011;
  padding-top: 0.14rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  align-self: flex-start;
  min-width: 19.2rem;
}
.company-info .company-table .company-table__value {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.06rem;
  color: #000;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}
.company-info .company-table .company-table__value--map {
  height: 32.5rem;
  max-width: 57.6rem;
}
.company-info .company-table .company-table__value--map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.company-info .company-table .company-table__tel {
  color: #000000;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .company-info .company-table .company-table__tel:hover {
    color: #E50011;
  }
}
.company-info .company-table .company-table__access-group {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 0.8rem;
}
.company-info .company-table .company-table__access-group:not(:first-child) {
  margin-top: 2rem;
}
.company-info .company-table .company-table__access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.company-info .company-table .company-table__access-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  padding-left: 2.4rem;
  position: relative;
}
.company-info .company-table .company-table__access-item::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #E50011;
  font-size: 1.2rem;
  line-height: 1.6;
}
.company-info .company-table .company-table__station {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #E50011;
  border: 1.5px solid #E50011;
  padding: 0.2rem 1.6rem;
  line-height: 1.6;
  white-space: nowrap;
  border-radius: 0.4rem;
}
.company-info .company-info__pattern {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: hard-light;
  display: block;
}
.company-info .company-info__pattern img {
  display: block;
  width: 100%;
  height: auto;
}
.company-info .company-info__pattern--top {
  top: 1rem;
  left: 0;
  width: 55.8rem;
  clip-path: inset(0 100% 0 0);
}
.company-info .company-info__pattern--top.is-animated {
  animation: slideInLeftCompany 2s cubic-bezier(0.21, 0.85, 0.35, 1) forwards;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__pattern--top {
    width: 32rem;
    top: -2rem;
  }
}
.company-info .company-info__pattern--bottom {
  bottom: 0;
  right: 0;
  width: 62.8rem;
  clip-path: inset(0 0 0 100%);
}
.company-info .company-info__pattern--bottom.is-animated {
  animation: slideInRightCompany 2s cubic-bezier(0.21, 0.85, 0.35, 1) forwards;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__pattern--bottom {
    width: 32rem;
    bottom: -2rem;
  }
}
.company-info .company-info__inner {
  position: relative;
  z-index: 1;
  padding: 0;
}
.company-info .company-info__layout {
  display: flex;
  align-items: flex-start;
  gap: 4.8rem;
  padding: 8.1rem 0 2.1rem 4rem;
  position: relative;
}
.company-info .company-info__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 12rem;
  flex: 0 0 17.6rem;
  transition: background-color 0.3s ease;
}
.company-info .company-info__nav .page-intro__nav-item {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.company-info .company-info__nav .page-intro__nav-item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  flex-shrink: 0;
}
.company-info .company-info__nav .page-intro__nav-item.is-active {
  color: #000000;
}
.company-info .company-info__nav .page-intro__nav-item.is-active::before {
  background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
}
.company-info .company-info__nav.is-on-dark .page-intro__nav-item {
  color: rgba(255, 255, 255, 0.35);
}
.company-info .company-info__nav.is-on-dark .page-intro__nav-item.is-active {
  color: #fff;
}
.company-info .company-info__sections {
  flex: 1;
}
.company-info .company-info__section {
  padding-top: 10rem;
}
.company-info .company-info__section:first-child {
  padding-top: 0;
  padding: 0 8.8rem;
}
.company-info .company-info__section:nth-child(4) {
  padding: 11.9rem 8.8rem 0;
}
.company-info .company-info__section:nth-child(4) .page-intro__title {
  margin: 0 0 5rem;
}
.company-info .company-info__section:nth-child(4) .page-intro__title-text {
  margin-top: 0.2rem;
}
.company-info .company-info__section:nth-child(5) {
  padding: 13.3rem 8.8rem 0;
}
.company-info .company-info__section:nth-child(5) .page-intro__title {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__section:nth-child(5) .page-intro__title {
    margin-bottom: 3.3rem;
  }
}
.company-info .company-info__section:nth-child(5) .page-intro__title-text {
  margin-top: 0.2rem;
}
.company-info .company-info__block-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #E50011;
  margin: 0 0 4rem;
}
.company-info .company-info__block-title--inverse {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.company-info .company-info__table {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.company-info .company-info__row {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 1px solid #EAEAEA;
}
.company-info .company-info__row:first-child {
  border-top: 1px solid #EAEAEA;
}
.company-info .company-info__label {
  flex: 0 0 18rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  padding-top: 0.2rem;
}
.company-info .company-info__value {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}
.company-info .company-info__value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.company-info .company-info__value-list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
}
.company-info .company-info__value-list li::before {
  content: "・";
  flex-shrink: 0;
  color: #E50011;
}
.company-info .company-info__tel {
  color: #E50011;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .company-info .company-info__tel:hover {
    text-decoration: underline;
  }
}
.company-info .company-info__section--history {
  position: relative;
  background: #333333;
  padding: 6.4rem 0 12rem 8.8rem;
  margin-top: 11.9rem;
}
.company-info .company-info__section--history .page-intro__title {
  margin: 0 0 7.3rem;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__section--history .page-intro__title {
    margin-bottom: 3.2rem;
  }
}
.company-info .company-info__section--history .page-intro__title .page-intro__title-text {
  color: #fff;
}
.company-info .company-info__section--history::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -999rem;
  right: -999rem;
  background: #333333;
  z-index: -1;
}
.company-info .company-info__history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}
.company-info .company-info__history-item {
  border-bottom: 0.1rem solid #cecece;
  padding: 1.9rem 0 2.9rem;
}
.company-info .company-info__history-item:first-child {
  padding-top: 0;
}
.company-info .company-info__history-item:nth-child(9) .company-info__history-year {
  margin-bottom: 2.6rem;
}
.company-info .company-info__history-item:nth-child(12) {
  padding-bottom: 3rem;
}
.company-info .company-info__history-item:nth-child(12) .company-info__history-content {
  margin-bottom: 3rem;
}
.company-info .company-info__history-item:nth-child(12) .company-info__history-content:last-child {
  margin-bottom: 0;
}
.company-info .company-info__history-year {
  color: #E50011;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  padding-left: 3.2rem;
  line-height: 4rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2.4rem;
  position: relative;
}
.company-info .company-info__history-year::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background-color: #E50011;
  border-radius: 50%;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
}
.company-info .company-info__history-month {
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}
.company-info .company-info__history-content {
  padding-left: 3.2rem;
  margin-bottom: 2.9rem;
}
.company-info .company-info__history-content:last-child {
  margin-bottom: 0;
}
.company-info .company-info__history-text {
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 0;
  max-width: 80.8rem;
  letter-spacing: 0.04em;
}
.company-info .company-info__section--philosophy {
  position: relative;
  background: none;
  padding: 11.9rem 8.8rem 22rem;
  min-height: 80rem;
  overflow: visible;
}
.company-info .company-info__section--philosophy .page-intro__title {
  margin: 0 0 5.7rem;
}
.company-info .company-info__section--philosophy .page-intro__title .page-intro__title-text {
  color: #FFFFFF;
}
.company-info .company-info__section--philosophy .page-intro__title-text {
  margin-top: 0.2rem;
}
.company-info .company-info__section--philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 60.5vw);
  right: calc(50% - 50vw);
  background: url("../../images/zennoh-tohoku/philosophy_bg_new.png") no-repeat center bottom/cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__section--philosophy::before {
    background: url("../../images/zennoh-tohoku/philosophy_bg_sp.jpg") no-repeat center/cover;
  }
}
.company-info .company-info__philosophy-content {
  position: relative;
  z-index: 1;
}
.company-info .company-info__philosophy-content p {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 4.8rem;
  letter-spacing: 0.24rem;
  font-weight: 600;
}
.company-info .company-info__officers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.86rem;
}
.company-info .company-info__officers-item {
  border-radius: 0.4rem;
  background: #F5F5F5;
  padding: 1.7rem 2.44rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.3rem;
}
.company-info .company-info__officers-num {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.04em;
  color: #E50011;
  font-weight: 500;
  line-height: 1.4;
}
.company-info .company-info__officers-position {
  color: #000000;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.company-info .company-info__organization {
  position: relative;
  max-width: 84rem;
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  padding-bottom: 3rem;
}
.company-info .company-info__organization.is-dragging {
  cursor: grabbing;
}
.company-info .company-info__organization.is-scrolled .company-info__scroll-hint {
  opacity: 0;
}
.company-info .company-info__organization--image {
  min-width: 149.3rem;
}
@media screen and (max-width: 768px) {
  .company-info .company-info__organization--image {
    min-width: 66.3rem;
  }
}
.company-info .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.zennoh-energy-tohoku-company .company-officer, .jaenergy-chiba-profile .company-officer, .zennoh-higashinihon-profile .company-officer, .zennoh-kansai-profile .company-officer, .zennoh-nishinihon-profile .company-officer, .zennoh-kyushu-profile .company-officer {
  flex-direction: column;
}

.zennoh-energy-tohoku-company .page-intro__background-between {
  top: 36%;
}
@media screen and (max-width: 768px) {
  .zennoh-energy-tohoku-company .company-info__organization--image {
    min-width: 100rem;
  }
}
.zennoh-energy-tohoku-company .company-info__organization-wrap {
  position: relative;
}
.zennoh-energy-tohoku-company .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.zennoh-energy-ja-profile .page-intro__background-between {
  top: 29.8%;
}
.zennoh-energy-ja-profile .company-info__organization--image {
  min-width: auto;
}
@media screen and (max-width: 768px) {
  .zennoh-energy-ja-profile .company-info__organization--image {
    min-width: 66.3rem;
  }
}
.zennoh-energy-ja-profile .company-info__section:nth-child(4) {
  padding-bottom: 11.9rem;
}
.zennoh-energy-ja-profile .company-info__section:nth-child(5) .page-intro__title-text {
  margin-top: 0.1rem;
}
.zennoh-energy-ja-profile .company-info__section:nth-child(5) .page-intro__title {
  margin-bottom: 5rem;
}
.zennoh-energy-ja-profile .company-info__organization {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .zennoh-energy-ja-profile .company-info__organization {
    pointer-events: auto;
  }
}

.jaenergy-chiba-profile .page-intro__background-between {
  top: 40%;
}
@media screen and (max-width: 768px) {
  .jaenergy-chiba-profile .company-info__organization--image {
    min-width: 100rem;
  }
}
.jaenergy-chiba-profile .company-info__organization-wrap {
  position: relative;
}
.jaenergy-chiba-profile .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .jaenergy-chiba-profile .company-info__scroll-hint {
    display: none;
  }
}

.zennoh-higashinihon-profile .company-info__organization--image {
  min-width: 91.3rem;
}
@media screen and (max-width: 768px) {
  .zennoh-higashinihon-profile .company-info__organization--image {
    min-width: 66.3rem;
  }
}
.zennoh-higashinihon-profile .company-officer__item:last-child {
  padding: 0 0 1.42rem;
  border-bottom: 0.1rem solid #cecece;
}
.zennoh-higashinihon-profile .company-info__organization-wrap {
  position: relative;
}
.zennoh-higashinihon-profile .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.zennoh-kansai-profile .page-intro__background-between {
  top: 44%;
}
.zennoh-kansai-profile .company-officer__item:last-child {
  padding: 0 0 1.42rem;
  border-bottom: 0.1rem solid #cecece;
}
.zennoh-kansai-profile .company-info__organization--image {
  min-width: 112.4rem;
}
@media screen and (max-width: 768px) {
  .zennoh-kansai-profile .company-info__organization--image {
    min-width: 80rem;
  }
}
.zennoh-kansai-profile .company-info__organization-wrap {
  position: relative;
}
.zennoh-kansai-profile .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.zennoh-nishinihon-profile .page-intro__background-between {
  top: 36%;
}
.zennoh-nishinihon-profile .company-officer__item:last-child {
  padding: 0 0 1.42rem;
  border-bottom: 0.1rem solid #cecece;
}
.zennoh-nishinihon-profile .company-info__organization--image {
  min-width: 118.5rem;
}
@media screen and (max-width: 768px) {
  .zennoh-nishinihon-profile .company-info__organization--image {
    min-width: 85rem;
  }
}

.zennoh-kyushu-profile .company-officer__item:last-child {
  padding: 0 0 1.42rem;
  border-bottom: 0.1rem solid #cecece;
}
.zennoh-kyushu-profile .page-intro__background-between {
  top: 44%;
}
.zennoh-kyushu-profile .company-info__organization--image {
  min-width: 124.7rem;
}
@media screen and (max-width: 768px) {
  .zennoh-kyushu-profile .company-info__organization--image {
    min-width: 90rem;
  }
}
.zennoh-kyushu-profile .company-info__organization-wrap {
  position: relative;
}
.zennoh-kyushu-profile .company-info__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 1rem;
  }
  .company-info__officers-num {
    font-size: 1rem !important;
  }
  .company-info__officers-item {
    padding: 1.7rem 2rem 1.79rem 2.1rem !important;
    gap: 0.2rem !important;
  }
  .company-info__officers-list {
    gap: 0.8rem !important;
  }
  .company-info__officers-position {
    line-height: 2.8rem;
  }
  .company-officer {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .company-officer__item {
    align-items: flex-start;
    width: 100% !important;
    max-width: 100% !important;
  }
  .company-officer__name {
    text-align: left;
  }
  .page-intro__title-text {
    font-size: 2rem !important;
  }
  .company-info {
    padding: 5.2rem 0 6.1rem;
  }
  .company-info .company-info__pattern--top {
    width: 32rem;
    top: -2rem;
  }
  .company-info .company-info__pattern--bottom {
    width: 32rem;
    bottom: -2rem;
  }
  .company-info .company-info__layout {
    flex-direction: column;
    gap: 6.3rem;
    padding: 0 1.8rem;
  }
  .company-info .company-info__nav {
    flex: none;
    display: flex;
    gap: 1.4rem 0.9rem;
    z-index: 5;
    position: static;
    width: 100%;
    justify-content: space-between;
    flex-direction: row !important;
    flex-wrap: wrap;
    max-width: 100% !important;
    padding: 0;
  }
  .company-info .company-info__nav .page-intro__nav-item {
    width: 47%;
    max-width: 16.5rem;
    letter-spacing: 0.04em;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    border-bottom: 1px solid #cecece;
    color: #000000;
    position: relative;
    font-size: 1.2rem;
    padding-left: 1.7rem;
  }
  .company-info .company-info__nav .page-intro__nav-item::before {
    background: linear-gradient(to right, #e50011, #fed867);
  }
  .company-info .company-info__nav .page-intro__nav-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E50011;
    transition: width 0.35s ease;
  }
  .company-info .company-info__nav.is-on-dark {
    background: rgba(31, 34, 38, 0.94);
  }
  .company-info .company-info__nav.is-on-dark .page-intro__nav-item {
    color: rgba(255, 255, 255, 0.35);
  }
  .company-info .company-info__nav.is-on-dark .page-intro__nav-item.is-active {
    color: #fff;
  }
  .company-info .company-info__sections {
    width: 100%;
  }
  .company-info .company-info__section {
    padding-top: 7rem;
  }
  .company-info .company-info__section:first-child {
    padding: 0;
  }
  .company-info .company-info__section:nth-child(4) {
    padding: 6.2rem 0rem 1.8rem !important;
  }
  .company-info .company-info__section:nth-child(4) .page-intro__title-text {
    margin-top: 0.1rem;
  }
  .company-info .company-info__section:nth-child(4) .page-intro__title {
    margin-bottom: 3.3rem;
  }
  .company-info .company-info__section:nth-child(5) {
    padding: 4.5rem 0rem 1.8rem !important;
  }
  .company-info .company-info__section:nth-child(5) .page-intro__title-text {
    margin-top: 0.1rem;
  }
  .company-info .company-info__block-title {
    font-size: 2rem;
  }
  .company-info .company-info__row {
    flex-direction: column;
    gap: 0.8rem;
  }
  .company-info .company-info__label {
    flex: none;
  }
  .company-info .company-info__section--history {
    padding: 4.8rem 0 4.6rem;
    margin-top: 0;
  }
  .company-info .company-info__history-content {
    padding-left: 0;
  }
  .company-info .company-info__history-year {
    font-size: 2.8rem;
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
  }
  .company-info .company-info__history-year::before {
    width: 0.9rem;
    height: 0.9rem;
    top: 46.8%;
  }
  .company-info .company-info__history-list {
    gap: 2.3rem;
  }
  .company-info .company-info__history-item {
    padding: 0 0 2.2rem;
  }
  .company-info .company-info__history-item:nth-child(9) .company-info__history-year {
    margin-bottom: 0.5rem;
  }
  .company-info .company-info__history-item:nth-child(9) .company-info__history-content {
    margin-bottom: 1.3rem;
  }
  .company-info .company-info__history-item:nth-child(9) .company-info__history-content:last-child {
    margin-bottom: 0;
  }
  .company-info .company-info__history-item:nth-child(12) .company-info__history-content {
    margin-bottom: 1.4rem;
  }
  .company-info .company-info__history-item:nth-child(12) .company-info__history-content:last-child {
    margin-bottom: 0;
  }
  .company-info .company-info__history-item:nth-child(13) .company-info__history-content {
    margin-bottom: 1.3rem;
  }
  .company-info .company-info__history-item:nth-child(13) .company-info__history-content:last-child {
    margin-bottom: 0;
  }
  .company-info .company-info__section--philosophy {
    padding: 4.7rem 0rem 12rem;
    min-height: 66.7rem;
  }
  .company-info .company-info__section--philosophy .page-intro__title {
    margin: 0 0 2.5rem !important;
  }
  .company-info .company-info__section--philosophy .page-intro__title-text {
    margin-top: 0.1rem;
  }
  .company-info .company-info__section--philosophy .company-info__philosophy-content p {
    font-size: 1.6rem;
    line-height: 4rem;
    letter-spacing: 0.19rem;
  }
  .company-info .company-info__section--philosophy::before {
    height: 66.6rem;
  }
  .company-info .company-info__officers-item {
    padding: 1.4rem 1.6rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
  .company-info .company-info__org-row {
    flex-wrap: wrap;
  }
  .company-info .company-info__org-box {
    min-width: 9.6rem;
    font-size: 1.2rem;
    height: 4rem;
  }
  .company-info .company-info__map iframe {
    height: 30rem;
  }
  .company-info .is-block-sp {
    display: block !important;
  }
  .company-info .company-table {
    margin-top: 3.2rem;
    padding-bottom: 6.4rem;
    gap: 2.9rem;
  }
  .company-info .company-table .company-table__row {
    flex-direction: column;
    gap: 2.2rem;
    padding: 0;
  }
  .company-info .company-table .company-table__row::before {
    bottom: auto;
    top: 3.4rem;
  }
  .company-info .company-table .company-table__row::after {
    bottom: auto;
    top: 3.3rem;
    width: 10.65rem;
  }
  .company-info .company-table .company-table__value {
    width: 100%;
  }
  .is-block-pc {
    display: none !important;
  }
}
.company-info.jaenergy-chiba-profile .company-info__organization--image {
  min-width: 49rem;
}
@media screen and (min-width: 769px) {
  .company-info.jaenergy-chiba-profile .company-info__organization--image {
    min-width: 0;
    width: 48.85rem;
  }
}

/*# sourceMappingURL=zennoh-energy-profile.css.map */
