@charset "UTF-8";

/* ======= news ============================================ */
#news .rssList {
  margin: 0 auto;
  padding-bottom: 15px;
}

/* ニュース一覧：画像付き3列タイル（outline・主な施策・ポイントに合わせたスタイル、枠なし） */
#news .newsList {
  margin: 0 auto;
  padding-bottom: 15px;
  padding-top: 25px;
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

#news .newsList li {
  padding: 0;
  border-bottom: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 252, 255, 0.85) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#news .newsList li:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

#news .newsList li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

#news .newsList li a figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1200 / 630; /* OGP推奨サイズ（1200×630） */
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
}

#news .newsList li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#news .newsList li:hover figure img {
  transform: scale(1.05);
}

#news .newsList li a dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  padding: 24px 20px 28px;
  min-height: 0;
}

#news .newsList li a dt {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  color: #1a2a4a;
  text-align: left;
  margin: 0 0 10px;
  line-height: 1.5;
}

#news .newsList a dt {
  color: #1a2a4a;
}

#news .newsList dt span {
  display: block;
}

#news .newsList dt span.day {
  padding-bottom: 5px;
}

#news .newsList dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ceatecblue);
  background: rgba(12, 26, 73, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  text-align: left;
  width: fit-content;
  line-height: 1.5;
  align-self: flex-start;
}

#news .newsList dd span {
  display: inline;
}

/* ニュース一覧：タブレット 2列 */
@media screen and (max-width: 900px) {
  #news .newsList {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
  }
}

/* ニュース一覧：スマホ 1列 */
@media screen and (max-width: 640px) {
  #news .newsList {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 20px;
    max-width: 100%;
  }

  #news .newsList li {
    border-radius: 12px;
  }

  #news .newsList li a figure {
    aspect-ratio: 1200 / 630;
    border-radius: 12px 12px 0 0;
  }

  #news .newsList li a dt {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #news .newsList dd {
    font-size: 11px;
    padding: 3px 12px;
  }

  #news .newsList li a dl {
    padding: 16px 16px 20px;
  }
}

/* ニュース一覧：小型スマホ */
@media screen and (max-width: 375px) {
  #news .newsList {
    gap: 16px;
    padding-top: 12px;
  }

  #news .newsList li a dl {
    padding: 14px 14px 18px;
  }

  #news .newsList li a dt {
    font-size: 13px;
  }

  #news .newsList dd {
    font-size: 10px;
    padding: 2px 10px;
  }
}

/* rssList：従来のリストレイアウト */
#news .rssList li {
  padding: 25px 0 20px;
  border-bottom: 1px solid var(--ceatecblue);
}

#news .rssList li a {
  display: block;
  transition: opacity 200ms ease;
  text-decoration: none;
  font-weight: bold;
  font-weight: 700;
}

#news .rssList li a:hover {
  opacity: 0.5;
}

#news .rssList dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 540px) {
  #news .rssList li a {
    padding: 20px;
  }
  #news .rssList dl {
    display: block;
  }
}

#news .rssList dt {
  width: 80%;
  font-size: 1rem;
}

@media screen and (max-width: 540px) {
  #news .rssList dt {
    width: 100%;
  }
}

#news .rssList a dt {
  color: #000;
}

#news .rssList dt span {
  display: block;
}

#news .rssList dt span.day {
  padding-bottom: 5px;
}

#news .rssList dd {
  width: 18%;
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 540px) {
  #news .rssList dd {
    width: 100%;
  }
}

#news .l_main_article .pager {
  margin: 0 20px;
  display: flex;
  justify-content: center;
}

#news .l_main_article .pager li {
  margin-left: 1%;
}

#news .l_main_article .pager li a {
  display: block;
  padding: 5px 10px;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  background-color: var(--ceatecblue);
  border: 1px solid var(--ceatecblue);
  border-radius: 3px;
}

#news .l_main_article .pager li a.current {
  background-color: #ffffff;
  border: 1px solid #e51585;
  color: #e51585;
}

/* ======= news releases ============================================ */
/* 大枠 */

#news .l_main_article .post_date {
  text-align: right;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

#news .l_main_article .tabletb {
  display: flex;
  flex-wrap: wrap;
}

#news .l_main_article .tabletb dt {
  width: 15%;
}

#news .l_main_article .tabletb dd {
  width: calc(100% - 15%);
}

#news .l_main_article .dList {
  margin: 0 0px 30px;
  text-align: left;
}

#news .l_main_article .dList li,
#news .l_main_article .Related_Links li {
  padding-bottom: 5px;
  padding-left: 1.7em;
  position: relative;
}

#news .l_main_article .dList a::after,
#news .l_main_article .Related_Links li::before,
#news .l_main_article .Related_Links li .Related_Links_btn::after {
  font-family: "Material Icons Round";
  content: "download_for_offline";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 16px;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
}

#news .l_main_article .dList a[href$=".pdf"]::after {
  content: "picture_as_pdf";
}

#news .l_main_article .Related_Links li::before {
  content: "link";
  position: absolute;
  top: 0%;
  transform: translateY(-0%);
  -webkit-transform: translateY(-0%);
  -ms-transform: translateY(-0%);
}

#news .l_main_article .Related_Links li p {
  margin-bottom: 0.5em;
}

#news .l_main_article .Related_Links li .Related_Links_btn {
  display: block;
  width: 100%;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 10px 30px 10px 20px;
  transition: all 400ms ease;
  background-color: #3170a9;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

#news .l_main_article .Related_Links li .Related_Links_btn::after {
  font-family: "Material Icons Round";
  content: "keyboard_double_arrow_right";
  display: inline-flex;
  vertical-align: middle;
  left: auto;
  right: 18px;
  transition: all 400ms ease;
}

#news .l_main_article .Related_Links li .Related_Links_btn:hover {
  opacity: 1;
  background-color: #009bb7;
}

#news .l_main_article .Related_Links li .Related_Links_btn:hover::after {
  right: 15px;
}

#news .l_main_article .piclayoutA,
#news .l_main_article .piclayoutB,
#news .l_main_article .piclayoutC,
#news .l_main_article .piclayoutD {
  width: 100%;
}

#news .l_main_article .piclayoutA .btn,
#news .l_main_article .piclayoutB .btn,
#news .l_main_article .piclayoutC .btn,
#news .l_main_article .piclayoutD .btn {
  display: inline-block;
  margin-bottom: 10px;
}

#news .l_main_article .piclayoutA .imgbox {
  float: right;
  width: 250px;
  padding-right: 20px;
  padding-left: 20px;
}

#news .l_main_article .piclayoutB .imgbox {
  float: left;
  width: 250px;
  padding-right: 20px;
  padding-left: 20px;
}

#news .l_main_article .piclayoutC .imgbox {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

#news .l_main_article .piclayoutD .imgbox {
  width: 100%;
  margin-top: 20px;
}

#news .l_main_article .piclayoutD .imgbox p {
  display: block;
  float: left;
  width: 250px;
  margin-left: 70px;
}

#news .l_main_article .piclayoutA .imgbox img,
#news .l_main_article .piclayoutB .imgbox img,
#news .l_main_article .piclayoutD .imgbox img {
  width: 250px !important;
}

#news .l_main_article .piclayoutE .imgbox {
  width: 100%;
  margin-top: 20px;
}

#news .l_main_article .piclayoutE .imgbox p {
  float: left;
  width: 180px;
  padding-left: 50px;
}

#news .l_main_article .piclayoutE .imgbox img {
  width: 180px !important;
}

#news .l_main_article .piclayoutA .imgbox span,
#news .l_main_article .piclayoutB .imgbox span,
#news .l_main_article .piclayoutC .imgbox span,
#news .l_main_article .piclayoutD .imgbox span,
#news .l_main_article .piclayoutE .imgbox span {
  display: block;
  padding-top: 5px;
  padding-bottom: 10px;
  font-size: 11px;
  font-size: 1.1rem;
}

#news .l_main_article .offnews .piclayoutA .txt,
#news .l_main_article .offnews .piclayoutB .txt,
#news .l_main_article .offnews .piclayoutC .txt,
#news .l_main_article .offnews .piclayoutD .txt,
#news .l_main_article .offnews .piclayoutE .txt {
  margin: 10px 20px 0 !important;
}

#news .l_main_article .offnews .piclayoutA .txt span,
#news .l_main_article .offnews .piclayoutB .txt span,
#news .l_main_article .offnews .piclayoutC .txt span,
#news .l_main_article .offnews .piclayoutD .txt span,
#news .l_main_article .offnews .piclayoutE .txt span {
  display: block;
  text-align: right;
}

#news .l_main_article .offnews .piclayoutA .txt .tbstyle,
#news .l_main_article .offnews .piclayoutB .txt .tbstyle,
#news .l_main_article .offnews .piclayoutC .txt .tbstyle,
#news .l_main_article .offnews .piclayoutD .txt .tbstyle,
#news .l_main_article .offnews .piclayoutE .txt .tbstyle {
  width: 638px;
  margin: 0 0 0 0 !important;
  padding: 0 0 0 0 !important;
}

#news .l_main_article .tbstyle {
  box-shadow: inset 0px 0px 0px 1px #cccccc;
  /*	border:1px solid #cccccc;*/
}

#news .l_main_article .tbstyle th {
  padding: 5px;
  font-weight: bold;
  font-weight: 700;
  border: 1px dotted #cccccc;
}

#news .l_main_article .tbstyle td {
  padding: 5px;
  border: 1px dotted #cccccc;
}

#news .l_main_article .backlist {
  width: 100%;
  max-width: 10em;
  margin: 30px auto 0;
}

/* プロフィールユニット */
#news .profile_unit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 20px 0;
}

#news .profile_unit figure {
  width: auto;
  max-width: 150px;
  margin: 0;
}

#news .profile_unit figure img {
  width: 100%;
  height: auto;
  display: block;
}

#news .profile_unit div {
  flex: 1;
  min-width: 0;
}

@media screen and (max-width: 580px) {
  #news .profile_unit {
    flex-direction: column;
  }

  #news .profile_unit figure {
    max-width: 150px;
    margin: 0 auto;
  }

  #news .profile_unit div {
    width: 100%;
  }
}
