html {
    font-size: 100%;
  }
  body {
    margin: 0;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  img {
    max-width: 100%;
  }
  
  iframe {
  	width: 100%;
	 display: block;
  }

p {
	margin: 0;
}


/* ===============================
   ヘッダー
=============================== */
header {
  position: absolute;
  z-index: 999;
  height: auto;
  width: 100%;
}

.logo {
  max-width: 22%;
}

.logo img {
  max-width: 265px;
}

.line_img img {
	max-width: 240px;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 30px 50px;
}

nav > div {
  box-sizing: border-box;
}

.gnavi {
  max-width: 800px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
  margin-top: 60px;
  margin-left: 16%;
}

.gnavi li {
  margin-right: 25px;
  font-size: 18px;
  color: #032D68;
}


.gnavi li a {
  display: block;
  color: inherit;
}

.menu {
  text-wrap: nowrap;
}

.call {
  width: 300px;
}


.pc_none {
  display: none;
}

/* ===============================
   PC / SP 切り替え
=============================== */
@media screen and (min-width: 769px) {
  .globalMenuSp {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .gnavi li {
    font-size: 16px;
  }
}

/* ===============================
   スマホヘッダー
=============================== */
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
	max-width: 200px;
	height: auto;
  }

  nav {
    padding: 0;
  }

  /* ハンバーガーボタン */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 15px;
    top: 16px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background: #002d67;
    border-radius: 7px;
  }

  .hamburger.active {
    background: none;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    left: 6px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) { top: 10px; }
  .hamburger span:nth-child(2) { top: 20px; }
  .hamburger span:nth-child(3) { top: 30px; }

  /* ハンバーガー active */
  .hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(45deg);
  }

  /* SP ナビ */
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  nav.globalMenuSp ul li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  nav.globalMenuSp ul li:last-child {
    border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
}


/* ===============================
   ヘッダー本体
=============================== */

header.sp_none {
  position: absolute; /* FVに重ねる */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* ===============================
   白グラデーション影
=============================== */

header.sp_none::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px; /* 影の高さ調整 */

  /* 上(強) → 下(弱) グラデーション */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0.35) 70%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none; /* クリック阻害防止 */
}


header.sp_none nav {
  position: relative;
  z-index: 2;
}

.line_img {
	margin-top: 30px;
}

/* =========================================
   Page Title
========================================= */

.page_ttl_wrap{
  position: relative;
  width: 100%;
  height: 520px; /* 画像高さに合わせて調整可 */
  /* 背景画像 */
  background: url("../img/news/news_mv.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
margin:0;
}

/* =========================================
   Page Title（画像どおり装飾）
========================================= */

.page_ttl{
  position: relative;
  background: url("../img/about/about_mv.jpg") no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------
   白ボックス本体
------------------------------- */

.page_ttl{
      position: relative;
    font-size: 46px;
    color: #1f3b64;
    letter-spacing: .18em;
    font-weight: 500;
    padding: 5px 50px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}

/* -------------------------------
   外側の白線（2本目）
------------------------------- */

.page_ttl::before{
  content:"";
  position:absolute;

  /* 外側に広げる */
  top:-14px;
  bottom:-14px;
  left:-18px;
  right:-18px;

  border:2px solid #ffffff;
  pointer-events:none;
}

/* =========================================
   Responsive
========================================= */

@media screen and (max-width:768px){

  .page_ttl{
    font-size:26px;
    padding:10px 20px;
    letter-spacing:.14em;
  }

  .page_ttl::before{
    top:-8px;
    bottom:-8px;
    left:-10px;
    right:-10px;
  }
	
	.page_ttl_wrap {
	height: 200px;
	}

}



/* =========================================
   NEWS アーカイブ レイアウト
========================================= */

.news{
  padding:120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.inner_wrap1{
  max-width:1200px;
  margin:0 auto;
}

/* ===============================
   見出し
=============================== */

.archive_ttl{
  font-size:28px;
  color:#1f3b64;
  letter-spacing:.1em;
  margin-bottom:60px;
}

.archive_ttl small{
  font-size:14px;
  margin-left:10px;
  color:#666;
}

/* ===============================
   記事リスト
=============================== */

.news_list{
  display:flex;
  flex-direction:column;
  gap:80px;
  position:relative;
}

/* 下線（セクション区切り） */
.news_list::after{
  content:"";
  display:block;
  width:100%;
  height:2px;
  background:#1f3b64;
  margin-top:80px;
}

/* ===============================
   記事1件
=============================== */

.kiji_flex{
  display:flex;
  gap:60px;
  align-items:flex-start;
}

/* サムネ */
.thum{
  width:35%;
}

.thum img{
  width:100%;
  height:auto;
  display:block;
  background:#eee;
}

/* 右側 */
.kiji_waku{
  width:55%;
}

.kiji_waku a{
  text-decoration:none;
  color:#333;
  display:block;
}

/* ===============================
   カテゴリ＋日付
=============================== */

.mini_f{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:13px;
  border-bottom: 2px solid #1f3b64;
}

.days{
  font-size:14px;
  color:#666;
	    display: none;
}

/* ===============================
   タイトル
=============================== */

.article_ttl{
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

/* ===============================
   本文抜粋
=============================== */

.honbun{
  font-size:18px;
  line-height:1.8;
  color:#333;
  margin-bottom:25px;
}

/* ===============================
   続きを読む
=============================== */

.kiji_btn{
  text-align:right;
}

.kiji_btn p{
  font-size:16px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.kiji_btn p::after{
  content:"→";
  font-size:16px;
}

/* ===============================
   Hover
=============================== */

.kiji_waku a:hover{
  opacity:.75;
}

/* =========================================
   Responsive
========================================= */

@media screen and (max-width:768px){

  .news{
    padding:80px 15px;
  }

  .archive_ttl{
    font-size:20px;
    margin-bottom:40px;
  }

  .kiji_flex{
    flex-direction:column;
    gap:30px;
  }

  .thum,
  .kiji_waku{
    width:100%;
  }

  .article_ttl{
    font-size:18px;
	  padding-bottom: 3px;
  }

  .news_list::after{
    margin-top:50px;
  }

	
	.mini_f {
	margin-bottom: 10px;
	}
}




.page_guide {
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    margin-top: 18%;
    margin-bottom: 150px;
}


.page_guide li {
    list-style-type: none;
}

.single1 {
	    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

.single_f .left .voice_ttl {
	        font-size: 22px;
    font-weight: 600;
    color: #1f3b64;
    padding-bottom: 10px;
	border-bottom: 2px solid #1f3b64;
}

@media screen and (max-width:768px){
	.single1 {
	padding: 80px 15px;
    margin-top: 0px;
    padding-top: 50px;
}
	
	.page_guide {
    margin-bottom: 50px;
}
	
	.honbun {
    font-size: 16px;
    margin-bottom: 20px;
}
}