.bg_stage.is_company_top {
  position: absolute;
  top: -224px;
  right: -40px;
  left: auto;
  width: 1160px;
  pointer-events: none;
  z-index: 0;

  @media screen and (min-width: 1921px) {
    right: 9%;
    transform: translateX(0%) !important;
  }

  @media screen and (max-width: 1920px) {
    width: 60.41vw;
    top: -11.66vw;
    right: -2.08vw;
  }

  @media screen and (max-width: 1439px) {
    top: -10vw;
  }

  @media screen and (max-width: 1023px) {
    width: 80vw;
    top: 80vw;
    right: -5vw;
  }

  @media screen and (max-width: 767px) {
    width: 90vw;
    top: 12vw;
    right: -8vw;
  }

}


/* -------------------------------------------
 * お知らせ詳細コンテナ
 * ------------------------------------------- */
.p_single_box {
  background-color: #ffffff;
  border-radius: 10rem;
  padding: 12rem 4rem;
  max-width: 1600px;
  width: calc(100% - 8rem);
  margin: 4rem auto 16rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 10;
}

.p_single_article {
  max-width: 1200px;
  margin: 0 auto;
}

.p_single_header {
  margin-bottom: 4.8rem;
}

.p_single_meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.p_single_meta time {
  color: #1E40AF;
  font-weight: 500;
}

.p_single_cat {
  font-size: 1.4rem;
  color: #1E40AF;
  border: 1px solid #1E40AF;
  border-radius: 20px;
  padding: 0.2rem 1.6rem;
  font-weight: 500;
}


/* -------------------------------------------
 * 記事本文 (.p_entry_content)
 * ------------------------------------------- */
.p_entry_content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2B2D33;
}

.p_entry_content p {
  margin-bottom: 4rem;
  font-weight: 500;
}

/* 小見出し（h2） */
.p_entry_content h2 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1E40AF;
  margin: 8rem 0 4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #C3CEDE;
}

/* さらなる小見出し（h3）などがあれば */
.p_entry_content h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #2B2D33;
  margin: 4.8rem 0 2.4rem;
}

/* 画像 */
.p_entry_content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 4rem 0;
  display: block;
}

/* WPブロックで配置された画像のキャプションなど余白調整 */
.p_entry_content figure {
  margin: 4rem 0;
}

.p_entry_content figure img {
  margin: 0;
  max-height: 70vw;
  border-radius: 8px;
}

/* テキストリンク */
.p_entry_content a {
  color: #1E40AF;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s;
}

.p_entry_content a:hover {
  text-decoration: none;
}

.p_entry_content strong {
  font-weight: 700;
  color: #1E40AF;
}

/* -------------------------------------------
 * 戻るボタンエリア
 * ------------------------------------------- */
.p_single_action {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1203' height='3' viewBox='0 0 1203 3'%3E%3Cline id='border' x2='1200' transform='translate(1.5 1.5)' fill='none' stroke='%23c3cede' stroke-linecap='round' stroke-width='3' stroke-dasharray='1 8'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: top left;
  padding-top: 8rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.c_btn.is_back {
  padding-left: 5.6rem;
  padding-right: 2.4rem;
  justify-content: center;
}

.c_btn.is_back .c_btn_icon {
  right: auto;
  left: 24px;
}

.c_btn.is_back .c_btn_icon_1 {
  transform: translateX(0);
}

.c_btn.is_back .c_btn_icon_2 {
  transform: translateX(80px);
}

.c_btn.is_back:hover .c_btn_icon_1 {
  transform: translateX(-80px) !important;
  transition: all 0.8s ease-in-out !important;
}

.c_btn.is_back:hover .c_btn_icon_2 {
  transform: translateX(0) !important;
  transition: all 0.8s ease-in-out !important;
}

/* -------------------------------------------
 * レスポンシブ
 * ------------------------------------------- */
@media screen and (max-width: 1439px) {
  .p_single_box {
    padding: 8rem 4rem;
  }
}

@media screen and (max-width: 1023px) {
  .p_single_box {
    border-radius: 4.8rem;
    padding: 6.4rem 4rem;
    width: calc(100% - 4rem);
  }
}

@media screen and (max-width: 767px) {
  .p_single_box {
    padding: 4rem 2rem 6rem;
    width: calc(100% - 2rem);
    margin-bottom: 8rem;
  }

  .p_entry_content h2 {
    font-size: 2rem;
    margin: 6.4rem 0 3.2rem;
  }

  .p_single_action {
    margin-top: 6.4rem;
    padding-top: 4.8rem;
  }

  .c_btn.is_back {
    padding-left: 4.8rem;
  }
}