@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-main: #104F89; /* 色1：メインカラー（紺） */
  --color-bg: #FFFFFF; /* 色2：背景カラー（白） */
  --color-text: #1A2433; /* 色3：テキストカラー（青みがかったダークグレー） */
  --color-link: #F9700E; /* 色4：テキストリンクカラー（オレンジ） */
  --color-btn: #84BC1B; /* 色5：ボタンリンクカラー（黄緑） */
  --color-box1: #EFF5FF; /* 色6：ボックス背景カラー1（薄水色） */
  --color-box2: #E5EFFF; /* 色7：ボックス背景カラー2（薄水色少し濃い） */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --fade-duration: 0.8s;
  --container-max-width: 1200px;
}

/* Common Hover Animation */
/* Radius Variables */
/* メインコンテンツ・カード等の大角丸 */
/* ボタン・パーツ等の小角丸 */
/* Gutter / Side Padding Variables */
/* Keyframe Animations */
@keyframes shineSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
/* Typography Variables */
.page-news {
  padding-top: 54px;
  padding-bottom: 100px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.news-hero {
  position: relative;
  width: 100%;
  height: 450px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .news-hero {
    height: 350px;
    margin-bottom: 60px;
  }
}
.news-hero .news-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background-color: #e5e5e5;
}
.news-hero {
  /* Parallax Background */
}
.news-hero .news-hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url("../img/kv3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* transform is handled by js */
}
.news-hero .hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .news-hero .hero-divider {
    height: 40px;
  }
}
.news-hero .news-hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.news-hero .breadcrumb {
  position: absolute;
  top: 30px;
  left: 40px;
  padding: 0;
  font-size: 16px;
  color: #fff;
}
.news-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.news-hero .breadcrumb a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .news-hero .breadcrumb {
    font-size: 14px;
    left: 5vw;
    top: 20px;
  }
}
.news-hero .news-hero-title-box {
  position: absolute;
  top: 35%; /* h1の紺帯 もう少し上に */
  left: 0;
  transform: translateY(-50%);
  z-index: 4;
  background-color: var(--color-main);
  color: var(--color-bg);
  padding: 30px 40px;
  border-radius: 0 20px 20px 0;
  padding-left: max(40px, 50% - var(--container-max-width) / 2 + 40px);
  width: auto;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news-hero .news-hero-title-box {
    padding: 20px 20px 20px 5vw;
    padding-left: 5vw;
    min-width: 200px;
    top: 32.2%;
  }
}
.news-hero .news-hero-title-box .en {
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news-hero .news-hero-title-box .en {
    font-size: 28px;
  }
}
.news-hero .news-hero-title-box .ja {
  font-size: 16px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .news-hero .news-hero-title-box .ja {
    font-size: 14px;
  }
}
.news-hero .news-hero-visual {
  position: absolute;
  right: -10vw;
  bottom: -180px;
  width: 60vw;
  max-width: 700px;
  height: 120%;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .news-hero .news-hero-visual {
    bottom: -100px;
  }
}
.news-hero .news-hero-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media screen and (max-width: 768px) {
  .news-hero .news-hero-visual img {
    -o-object-position: left bottom;
       object-position: left bottom; /* 右端をはみ出させるため */
  }
}

.news-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .news-content {
    padding: 0 5vw;
  }
}
.news-content .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eaeaea;
}
.news-content .news-list li {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 768px) {
  .news-content .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.news-content .news-list li .date {
  position: relative;
  font-family: var(--font-en);
  font-size: 14px;
  color: #888;
  width: 120px;
  flex-shrink: 0;
  padding-top: 1px;
  padding-right: 25px; /* バーのスペース */
}
.news-content .news-list li .date::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 5px;
  width: 4px;
  height: 16px;
  background-color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .news-content .news-list li .date {
    width: auto;
    padding-right: 20px;
  }
  .news-content .news-list li .date::after {
    right: 0;
  }
}
.news-content .news-list li .title {
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .news-content .news-list li .title {
    font-size: 14px;
  }
}
.news-content .news-list li a.title {
  text-decoration: underline; /* 常にアンダーライン */
  transition: opacity 0.3s ease;
}
.news-content .news-list li a.title:hover {
  opacity: 0.7;
}/*# sourceMappingURL=news.css.map */