@charset "utf-8";


/* ----------------------全体---------------------- */
.single-news {
  max-width: 820px;
  width: 100%;
  margin: 80px auto 100px;
  line-height: 32px;
  letter-spacing: 0.64px;
  padding: 20px;
  box-sizing: initial;
}

@media screen and (max-width: 480px) {
  .single-news {
    max-width: initial;
    width: initial;
    margin: 10px auto;
  }
}


h1.news-title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  line-height: 35px;
  margin: 20px 0;
}

@media screen and (max-width: 480px) {
  h1.news-title {
    margin: 0 auto 20px;
    font-size: 20px;
  }
}

main {
  min-height: 100vh;
}

@media screen and (max-width: 480px) {
  main {
    display: block;
    min-height: auto !important;
    height: auto !important;
  }
}



@media screen and (max-width: 520px) {
  .pc {
    display: none;
  }

  .sp {
    display: block !important;
  }
}


/* ----------------------見出し----------------------- */
.section-heading-wrap {
  position: relative;
  margin-bottom: 40px;
  margin-top: 60px;
}

.section-heading {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 22px;
  background: #fff;
  z-index: 2;
  padding-right: 10px;
  letter-spacing: 0.88px;
}

@media screen and (max-width: 480px) {
  .section-heading {
    font-size: 20px;
  }
}

.section-heading.white {
  color: #fff;
  background-color: initial;
}

.section-heading-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right,
      #FF5500 0%,
      #FF5500 6%,
      /* ←ここまで濃いオレンジ */
      #FF9700 6%,
      /* ←ここから薄いオレンジ */
      #FF9700 100%);
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .section-heading-wrap::after {
    background: linear-gradient(to right,
        #FF5500 0%,
        #FF5500 17%,
        /* ←ここまで濃いオレンジ */
        #FF9700 17%,
        /* ←ここから薄いオレンジ */
        #FF9700 100%);
  }
}

/* --------------------下線無し見出し-------------------- */
.section-heading-wrap.no_under {
  margin: 40px 0 17px;
}

.section-heading-wrap.no_under::after {
  background: initial;
}

/* ----------------青枠見出し---------------- */
.blue_box {
  background: linear-gradient(to right,
      #FF5500 9px,
      /* 左端4pxだけ赤 */
      #002299 9px
      /* その右から全面青 */
    );
  padding: 9px 20px;

}

.blue_box::after {
  background: initial;
}

/* ---------------------------ラベル------------------------ */
.news-label {
  width: 120px;
  padding: 0 12px;
}

/* ----------------------サブタイトル--------------------- */
.sub_title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 16px;
  background: #f4f4f4;
}


/* ----------------------本文テキスト--------------------- */
.news_text {
  font-size: 16px;
  margin-top: 30px;
}

/* --------------------------注釈------------------------ */
p small {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 16px;
}

/* ---------------------画像------------------------- */
.news-thumb {
  box-sizing: border-box;
  margin: 30px auto;
  padding: 10px;
  line-height: 18px;
  background: #f1f1f1;
  text-align: center;
}


.news-thumb img {
  width: 100%;
  height: auto;
}

.news_img {
  margin-top: 80px;
}

.news_img img {
  width: 100%;
}

.news_img_2 {
  margin-top: 30px;
}

.news_img_2 img {
  width: 100%;
}

/* -----------------------箇条書き------------------------- */
dl {
  margin-bottom: 16px;
}

dl dt {
  margin-bottom: 4px;
}

/* -----------------------お問い合わせ------------------------ */
.contact_box {
  padding: 20px;
  line-height: 32px;
  border: 1px solid #707070;
  font-size: 16px;
}

/* ---------------------企業プロフィール----------------------- */
.another_site_list {
  margin-top: 30px;
}

.link_text {
  color: #002299;
}

.company_sub_title {
  font-weight: bold;
  font-size: 18px;
}

.company_news_text {
  font-size: 16px;
}

/* -----------------ニュースTOPに戻る------------------- */
.back-news-list {
  text-align: center;
  font-weight: bold;
  color: #002299;
}

.last_section {
  margin-bottom: 100px;
}

main {
  min-height: auto !important;
}