@charset "utf-8";

#c1 {
	clear: both;
	/* margin: 0;
	padding: 100px 0; */
}
#c1 h2,
#c1 div {
	text-align: center;
}
#c2 {
	clear: both;
	background-image: url(../../img/index-news-img.jpg);
	/* margin: 0;
	padding: 0; */
    height: 400px;
    background-size: cover;
    background-position: center;
}
#c2 h3,
#c2 div {
	text-align: left;
}
#c3 {
	clear: both;
	background-color: #bbe2f1;
	/* margin: 0;
	padding: 100px 0; */
}
#c5 {
	clear: both;
	margin: 0 0 50px 0;
	padding: 0;
}
#c5 h2,
#c5 div {
	text-align: left;
}
#c6 {
	clear: both;
	margin: 0;
	padding: 0;
}
#c6 dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#c6 dl dt {
	width: 20%;
    font-weight: bold;
}
#c6 dl dd {
	width: 80%;
}
#c4 {
	clear: both;
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 641px) and (max-width: 834px) {
#c1 {
}
#c2 {
}
#c3 {
}
#c5 {
}
#c6 {
}
#c4 {
}
}
@media screen and (max-width: 640px) {
#c1 {
    padding: 60px 20px;
}
#c2 {
    height: 200px;
}
#c3 {
    padding: 60px 20px;
}
#c5 {
}
#c6 dl {
    display: block;
}
#c6 dl dt {
    width: 100%;
    margin-bottom: 5px;
}
#c6 dl dd {
    width: 100%;
}
#c4 {
}
}

/* ロゴ：PC用・SP用切り替え */
.header._index .header-ID .logo-sp {
  display: none;
}

/* スクロールでヘッダーを上に固定（PC・スマホ共通） */
#global_header .header._index {
  transition: box-shadow 0.2s ease;
}
#global_header.is-scrolled .header._index {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#global_header.is-scrolled {
  padding-top: 60px;
}
@media screen and (max-width: 834px) {
  #global_header.is-scrolled .header._index {
    background: #0073a8;
  }
  #global_header.is-scrolled {
    padding-top: 48px;
  }
}

/* ========== スマホ: ハンバーガーメニュー ========== */
.header__hamburge {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.header__hamburge span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburge span:nth-child(1) { top: 0; }
.header__hamburge span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__hamburge span:nth-child(3) { bottom: 0; }
.header__hamburge.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburge.is-open span:nth-child(2) { opacity: 0; }
.header__hamburge.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ドロワー：右からスライドイン */
.navDrawer._index {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  min-height: 100vh;
  background: #0073a8;
  z-index: 99999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.navDrawer._index .navDrawer__bg { display: none; }
.navDrawer._index.is-show {
  transform: translateX(0);
}
.navDrawer._index.is-hiding {
  animation: closeMenu 0.35s ease-in forwards;
}
@keyframes closeMenu {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

.navDrawer._index .navDrawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navDrawer._index .navDrawer__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.navDrawer._index .navDrawer__close span:nth-child(1) { transform: rotate(45deg); }
.navDrawer._index .navDrawer__close span:nth-child(2) { transform: rotate(-45deg); }

.navDrawer._index .navDrawer__inner {
  display: block;
}
.navDrawer._index .navDrawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navDrawer._index .navDrawer__list li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.navDrawer._index .navDrawer__list a {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.navDrawer._index .navDrawer__list a span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 2px;
  opacity: 0.95;
}

@media screen and (max-width: 834px) {
  .header._index {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px !important;
    background: #0073a8;
  }
  .header._index .nav {
    display: none !important;
  }
  .header._index .header-ID .logo-pc {
    display: none !important;
  }
  .header._index .header-ID .logo-sp {
    display: block !important;
    height: auto;
    max-height: 22px;
    width: auto;
  }
  .header__hamburge {
    display: flex !important;
    position: relative;
  }
  .header._index .header__hamburge span {
    background: #fff;
  }
}
