.mHeader__logo {
  /* ヘッダーロゴのサイズを大きくする */
  width: 300px;
}
@media only screen and (max-width: 767px) {
  #header2025 .header2025_upper .left {
      width: 240px;
  }
}

div.pNews__wrapper:hover::after {
  opacity: 0;
}

#header2025 .header2025_navi .header2025_globalnavi_wrapper .nav_level_third_wrapper {
  /* 第2階層2段組時の第3階層メニュー表示不具合対応 */
  z-index: 1;
}


@media only screen and (min-width: 768px) {
  .pFeatures__each.pFeatures__each-recruit,
  .pFeatures__each.pFeatures__each-products {
    --_w: 448px;
    --_pagew: min(1200px,100%);
    --_pagepadding: 30px;
    --_outofwindow: calc((100vw - (var(--_pagew) + var(--_pagepadding) * 2)) / 2);
    --_figcpaddingend: calc(var(--_pagew) - var(--_w));
    .pFeatures__each-pic {
      margin-inline: auto 0;
      width: calc(max(var(--_pagew),100%) - var(--_w) + var(--_pagepadding) + var(--_outofwindow));
      width: calc(var(--_figcpaddingend) + var(--_outofwindow));
      img {
        object-fit: contain;
      }
    }
  }
}
@media only screen and (max-width: 767px) {
  .pFeatures__each.pFeatures__each-recruit,
  .pFeatures__each.pFeatures__each-products {
    .pFeatures__each-pic {
      img {
        object-fit: contain;
        object-position: 0 100%;
      }
    }
  }
}

/* ブロックユニットの幅をフリーにし、ブロック単位でセンターに揃える */
.mText__blocksentrize {
  width: fit-content;
  margin-inline: auto;
}

.pFeatures__each-box.no-pFeaturesList__holder::before {
  /* 下位ページのないカテゴリーの背景を表示しない */
  content: none;
}

/* PCのみ表示を非表示にする */
@media (min-width: 768px) {
  .PC_hidden {
      visibility: hidden;
  }
}

@media (min-width: 1000px) {
  .mContentsHab__inner {
    width: 433px;
  }
}

/* 米印リストのスタイル */
.mListnotice {
  list-style: none;
  padding-left: 0;
}
.mListnotice__each {
  list-style: none;
  padding-left: 1.5em;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.75;
}
.mListnotice__marker {
  position: absolute;
  left: 0;
  top: 0;
}

/* 2カラムスタイル */

.mColumn__2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  .lW__70 {
    width: 70%;
  }
  .lW__30 {
    width: 30%;
  }
}
@media only screen and (max-width: 768px) {
  .mColumn__2 {
    flex-direction: column;
    gap: 15px;
    .lW__70 {
      width: 100%;
    }
    .lW__30 {
      width: 100%;
    }
  }
}

/* インタビュー用のKVスタイル */
.c-interview_kv__wrap {
  position: relative;
  .c-interview_kv__figure {
    margin: 0;
  }
  .c-interview_kv__img {
  }
  .c-interview_kv__caption {
    position: absolute;
    bottom: 1.5em;
    right: 1.5em;
    width: auto;
    color: var(--gray_dark);
    text-align: right;
    font-size: 144%;
  }
}

/* 一日のスケジュール */

.c-schedule__list {
  display: grid;
  grid-template-columns: auto 3px 1fr;
  gap: 0 10px;
  margin: 0;
}
.c-schedule__item {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
}
.c-schedule__marker {
  grid-column: 2 / 3;
  grid-row: 1 / -1;
  background: var(--primary);
  position: relative;
}
.c-schedule__marker::after {
  position: absolute;
  top: calc(0.5lh + 1em);
  left: 50%;
  transform: translate(-50%, -100%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  border: 3px solid var(--primary);
  background: #fff;
}
.c-schedule__title {
  grid-column: 1 / 2;
  grid-row: 1 / -1;
  text-align: right;
  padding: 0.5em;
  font-weight: bold;
}
.c-schedule__content {
  grid-column: 3 / 4;
  grid-row: 1 / -1;
  padding: 0.5em;
  margin: 0;
}

/* 矢印の順番コンテンツ */
.flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.flow ul {
  padding: 0;
}

.flow li {
  list-style-type: none;
}

.flow dd {
  margin-left: 0;
}

.flow > li {
  padding: 40px 10px;;
}

.flow > li:not(:last-child) {
  border-bottom: 3px solid #c8c8c8;
  position: relative;
}

.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #c8c8c8;
}

.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow > li dl {
  margin: 0;
}

.flow > li dl dt {
  display: flex;
}

.flow__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flow__left {
  flex: 0 0 50%;
}

.flow__right {
  flex: 0 0 50%;
}

@media screen and (max-width: 767px) {
	.flow__item {
  flex-direction: column;
}
}