﻿@charset "utf-8";
/* CSS Document */
.wpcf7 {
	margin-top:60px;
}
body {
	margin: 0px;
	padding: 0px;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", serif;
	clip: rect(auto,auto,auto,auto);
	color: #333333;
	min-width: 1024px;
}
h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}


img {
  max-width: 100%;   /* 親要素の幅を超えない */
  height: auto;      /* 縦横比を保持して縮小 */
  display: block;    /* 画像下の余白を消す */
  border: none;      /* 枠線を消す（1行でOK） */
}

.clear_both {
	clear: both;
	margin: 0px;
	padding: 0px;
}
p, ul, ol, li {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
}

/*--------------------------------------
 ヘッダー共通・配置調整
--------------------------------------*/
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  z-index: 999;
  margin-top: 100px;
  height: 76px;
  transition: top 0.65s ease-in;
}

#top-head .inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ロゴ左、ナビ+SNS右 */
  position: relative;
}

#top-head .logo {
  margin: 0;
  padding-top: 14px;
  width: 292px;
  padding-left: 31px;
}

#top-head .logo2 {display:none;}

/*--------------------------------------
 グローバルナビ横並び & プルダウン
--------------------------------------*/
#global-nav {
  display: flex;
  align-items: center;
  margin-right: 35px;
  margin-left: auto;
  margin-top: 35px;
}

#global-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 25px;
}

#global-nav ul li {
  position: relative;
}

#global-nav ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.1em;
  position: relative;
}

/* 下線アニメーション */
#global-nav ul li a::after {
  display: none;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF0066;
  transform: scaleX(0);
  transition: all .3s ease;
}

#global-nav ul li a:hover::after {
  transform: scaleX(1);
}

/* サブメニュー */
#global-nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 200px;
  z-index: 1000;
}

#global-nav ul li .sub-menu li {
  border-bottom: 1px solid #eee;
}

#global-nav ul li .sub-menu li:last-child {
  border-bottom: none;
}

#global-nav ul li .sub-menu li a {
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

#global-nav ul li:hover > .sub-menu {
  display: block;
}

/*--------------------------------------
 SNSアイコン横並び
--------------------------------------*/
.sns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
  flex: 0 0 auto;
  margin-top: 32px;
}

.sns img {
  width: 24px;
  height: 24px;
}
.sns2 {
  display: none;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
  flex: 0 0 auto;
  margin-top: 32px;
}

.sns2 img {
  width: 24px;
  height: 24px;
}




/*--------------------------------------
 固定ヘッダー時
--------------------------------------*/
#top-head.fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 90px;
  background: rgba(255,255,255,0.95);
  transition: top 0.65s ease-in;
}

#top-head.fixed .logo {display:none;}
#top-head.fixed .logo2 {
  display: block;
  margin-left: 31px;
  padding-top: 19px;
  width: 292px;
}



#top-head.fixed #global-nav ul li a {
	color: #000;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
}

#top-head.fixed #global-nav ul li a::after {
  background-color: #B2D235;
}

#top-head.fixed .sns {display:none;}
#top-head.fixed .sns2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
  flex: 0 0 auto;
  margin-top: 25px;
}
.sns2 img {
  width: 24px;
  height: 24px;
}
/*--------------------------------------
 ハンバーガー
--------------------------------------*/


.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 40px;
	height: 28px;
	cursor: pointer;
	position: relative;
	z-index: 1001;
	margin-top: 10px;
}

.hamburger span {
	display: block;
	width: 40px; /* ← 幅を親要素と同じに固定 */
	height: 1px;
	background: #0068B7;
	border-radius: 1px;
	transition: all 0.4s ease;
	transform-origin: center center;
}

/* ×に変化 */
.hamburger.active span:nth-child(1) {
	/* 上のバー */
	transform: rotate(45deg) translate(10px, 8px); /* ← この値を少し変更 */
}

.hamburger.active span:nth-child(2) {
	/* 中央のバー */
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	/* 下のバー */
	transform: rotate(-45deg) translate(11px, -9px); /* ← この値を少し変更 */
}

/*--------------------------------------
 スマホメニュー
--------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 60px 20px 40px; /* 下余白少し減らす */
  box-sizing: border-box;
  z-index: 998;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0; /* SNSとの間隔 */
  width: 100%;
}

.mobile-menu ul li {
  margin: 10px 0;
  position: relative;
}

.mobile-menu ul li a {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: flex-start;
  padding: 10px 0;
}

.mobile-menu ul li a .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  margin-left: 8px;
}

.mobile-menu ul li.open > a .arrow {
  transform: rotate(-135deg);
}

.mobile-menu ul li .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4,0,.2,1);
  padding-left: 20px;
}

.mobile-menu ul li .sub-menu a {
  font-size: 18px;
  padding: 8px 0;
  display: block;
}

/* SNSアイコン */
.mobile-menu .sns {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.mobile-menu .sns a {
  margin: 0 10px;
}

.mobile-menu .sns img {
  width: 32px;
  height: 32px;
}

/* お問い合わせボタン */
.mobile-menu .contact-btn {
  display: inline-block;
  background: #0068B7;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 30px;
  margin-top: 10px;
  transition: background 0.3s;
}

.mobile-menu .contact-btn:hover {
  background: #004a84;
}

/*--------------------------------------
 メディアクエリ（スマホ・タブレット）
--------------------------------------*/
@media (max-width: 1024px) {
  #global-nav ul {display:none;}
  .sns {display:none;}
  .sns2 {display:none;}
  .hamburger {display:flex;}
  #top-head {
    top: 0;
    margin-top: 0;
    background: #fff;
    height: 90px; /* スマホ時の高さ */
    position: fixed;
  }
  #top-head .inner {
    justify-content: space-between;
    padding: 0 15px;
    height: 100%;
  }
  #top-head .logo img {
	width: 290px;
	margin-left: -30px;
	margin-top: -16px;
  }


#top-head.fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 90px;
  background: rgba(255,255,255,0.95);
  transition: top 0.65s ease-in;
}

#top-head.fixed .logo {display:none;}
#top-head.fixed .logo2 {
  display: block;
  margin-left: 0px;
  padding-top: 0px;
  width: 290px;
}

#top-head.fixed #global-nav ul li a {
  color: #000;
  padding: 0 5px 10px 5px;
}

#top-head.fixed #global-nav ul li a::after {
  background-color: #B2D235;
}

}



/*---------------------
 背景動画ここから
---------------------*/

.main-visual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden; /* ← 絶対に必要。はみ出しを隠す */
  line-height: 0;
}

.main-visual video {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02); /* ← 上下左右を約3%拡大して全方向の黒枠を隠す */
}

/* 動画上のコンテンツ */
.main-visual-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 20px;
}

.main-visual-content h2 {
  font-size: 4.6875rem; /* 75px */
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.main-visual-content p {
  font-size: 1.2rem;
}
/* タブレット対応 */
@media (max-width: 1024px) {
  .main-visual {
    height: 40vh; /* 高さを縮小 */
    margin-top: 90px;
  }
  .main-visual-content h2 {
    font-size: 3rem;
  }
  .main-visual-content p {
    font-size: 1rem;
  }
}
/* スマホ対応（768px以下） */
.main-visual video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover; /* ← アスペクト比を保ったまま拡大 */
  object-position: center;
}

/* スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
.main-visual {
  height: 55vh;
  margin-top: 0;
  overflow: hidden; /* ← 忘れずに */
  position: relative;
}

.main-visual video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02); /* ← 中央基準で6%拡大 */
  width: 100%;
  height: auto;
  min-height: 80%;
  object-fit: cover;
  object-position: center;
}

  .main-visual-content {
    top: 55%;
    transform: translate(-50%, -50%);
    padding: 0 0px;
  }

  .main-visual-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  }

  .main-visual-content p {
    font-size: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }
}



/*---------------------
  全体背景
---------------------*/
.main-bg {
	background-image: url(../img/bg-1.webp);
	background-repeat: repeat; /* 繰り返す場合 */
	background-size: cover;    /* 横幅いっぱいに */
	background-position: top;  /* 上端から表示 */
}


/*---------------------
  newsここから
---------------------*/


.news-section {
  padding-top: 100px;
  padding-bottom: 150px;
}

/* 中央寄せ・横幅制限 */
.news-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 60px; /* 左右の隙間（少し縮めた方が小画面で自然） */
  padding: 0 20px; /* スマホで左右余白 */
  box-sizing: border-box;
}

/* 左200px（PCでは固定） */
.news-left {
  flex: 0 0 200px;
}

/* 右は可変 */
.news-right {
  flex: 1;
  max-width: 750px;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 1024px) {
  .news-section {
  padding-top: 80px;
  padding-bottom: 30px;
}
  .news-inner {
    gap: 40px; /* タブレットでは隙間を狭める */
  }
  .news-left {
    flex: 0 0 160px; /* サイド幅を少し縮める */
  }
  .news-right {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .news-section {
  padding-top: 20px;
  padding-bottom: 10px;
}
  .news-inner {
    flex-direction: column; /* 縦並び */
    gap: 30px;
  }
  .news-left {
    flex: none;
    width: 100%;
    text-align: center; /* 中央寄せしたい場合 */
  }
  .news-right {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
/*---------------------
  コンテンツここから
---------------------*/

.main-section {
  width: 100%;
  padding: 60px 0; /* 上下の余白 */
}

/* コンテンツ幅制限＋中央寄せ */
.main-inner {
  max-width: 1300px; /* ←固定ではなく max-width にすると小さい画面で縮む */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 左右ボックス */
.boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.box {
    flex: 1 1 600px;
    max-width: 600px;
    box-sizing: border-box;
    padding-bottom: 20px; /* ← タイトル部分の余白 */
}

.box iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* ← 自動でキレイな比率になる */
    display: block;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 1024px) {
  .box {
    flex: 1 1 48%; /* タブレットでは2カラム */
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .box iframe {
    margin-bottom: 10px; /* ← タイトルが重ならないよう調整 */
  }

  .main-title2,
  .main-title3 {
    margin-top: 0;
    padding-top: 0;
  }
}

.main-section1 {
	width: 100%;
	background-image: url('../img/bg-2.webp'); /* 背景画像 */
	background-size: cover;       /* 横幅いっぱいに */
	background-position: center;  /* 中央寄せ（PC） */
	background-repeat: no-repeat;          /* 上下余白＋左右少し余白 */
	box-sizing: border-box;
	margin-bottom: 114px;
	padding-top: 100px;
	padding-right: 20px;
	padding-bottom: 100px;
	padding-left: 20px;
}

/* コンテンツを中央に制限 */
.main-inner1 {
  max-width: 1120px;           /* コンテンツ幅の上限 */
  margin: 0 auto;              /* 中央寄せ */
  text-align: center;           /* 文字中央寄せ */
  color: #fff;                 /* 背景が濃い場合は文字白など */
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
  .main-section1 {
	background-position: right center; /* 背景を右側にずらす */
	margin-bottom: 40px;
	padding-top: 60px;
	padding-right: 5px;
	padding-bottom: 60px;
	padding-left: 5px;
  }
  
  .main-inner1 {
    max-width: 90%;            /* スマホでは横幅を少し狭める */
  }
}



.main-section2 {
	width: 100%;
	box-sizing: border-box;
	padding: 60px 20px 160px 20px;
}

/* 中央にコンテンツ幅を制限 */
.main-inner2 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;             /* 左右間隔 */
  align-items: flex-start; 
  flex-wrap: wrap;        /* スマホで縦並びにする */
}

/* 左画像 */
.left-box img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

/* 右ボックス */
.right-box {
  max-width: 400px;
  margin-top: 230px;      /* 左側より下にずらす */
}

/* --- レスポンシブ --- */
@media screen and (max-width: 1024px) {
  .main-section2 {
	width: 100%;
	box-sizing: border-box;
	padding: 30px 30px 60px 30px;
}
  
  .right-box {
    max-width: 350px;
    margin-top: 180px;   /* タブレットでは少し下げを減らす */
  }
  .main-inner2 {
    gap: 30px;
  }



  .main-inner2 {
    flex-direction: column; /* スマホでは縦並び */
    gap: 20px;
  }

  .right-box {
    max-width: 100%;
    margin-top: 20px;     /* 縦並びでは下げを少なく */
  }

  .left-box img {
    max-width: 100%;       /* 画像も画面幅に合わせる */
  }
}

.main-section3 {
	width: 100%;
	box-sizing: border-box;
	padding-top: 60px;
	padding-right: 20px;
	padding-bottom: 160px;
	padding-left: 20px;
}

.main-inner3 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 100px;             /* 左右の間隔 */
  align-items: flex-start;
  flex-wrap: wrap;         /* スマホで縦並びにする */
  flex-direction: row-reverse; /* PCで左右反転 */
}

/* 左右ボックス */
.left-box3,
.right-box3 {
  box-sizing: border-box;
}

/* 左側（画像） */
.left-box3 img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}

/* 右側（文章） */
.right-box3 {
  max-width: 400px;
  margin-top: 220px;       /* 下げたい場合 */
}

/* --- レスポンシブ --- */
@media screen and (max-width: 1024px) {
.main-section3 {
	width: 100%;
	box-sizing: border-box;
	padding: 30px 30px 150px 30px;
}
  .main-inner3 {
    flex-direction: column; /* スマホは縦並び */
    gap: 20px;
  }

  .right-box3 {
    max-width: 100%;
    margin-top: 20px;       /* 下げ少なめ */
  }

  .left-box3 img {
    max-width: 100%;         /* 画像も画面幅に合わせる */
  }
}

.main-section4 {
	width: 100%;
	box-sizing: border-box;
	padding-top: 182px;
	padding-right: 20px;
	padding-bottom: 160px;
	padding-left: 20px;
	background-color: #FFF;
}

.main-inner4 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 100px;             /* 左右の間隔 */
  align-items: flex-start;
  flex-wrap: wrap;         /* スマホで縦並びにする */
  flex-direction: row-reverse; /* PCで左右反転 */
}

/* 左右ボックス */
.left-box4,
.right-box4 {
  box-sizing: border-box;
}

/* 左側（画像） */
.left-box4 img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

/* 右側（文章） */
.right-box4 {
  position: relative; /* 子要素を絶対配置する基準 */
  max-width: 600px;
      /* 下げたい場合 */
}
@media (max-width: 1024px) {
 
  .main-section4 {
	width: 100%;
	box-sizing: border-box;
	padding-top: 182px;
	padding-right: 30px;
	padding-bottom: 160px;
	padding-left: 30px;
	background-color: #FFF;
}
  .main-inner4 {
    position: relative; /* 子要素を絶対配置する基準 */
	flex-direction: column;  /* 縦並び */
    align-items: center;     /* 中央寄せ */
    gap: 60px;               /* 上下間隔 */
  }

  .left-box4,
  .right-box4 {
    flex: 1 1 100%;
    max-width: 600px;        /* 中央に収める */
  }

  .main-section4 {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

/*--------------------------------------
 レスポンシブ：スマホ768px以下
--------------------------------------*/
@media (max-width: 768px) {
  .main-inner4 {
    gap: 40px;               /* 上下間隔を少し狭める */
  }

  .main-section4 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .left-box4 img,
  .right-box4 {
    width: 100%;
    max-width: 100%;
  }
}

.main-section5 {
	width: 100%;
	box-sizing: border-box;
	padding: 160px 20px 280px 20px;
}

/* 中央にコンテンツ幅を制限 */
.main-inner5 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 50px;             /* 左右間隔 */
  align-items: flex-start; 
  flex-wrap: wrap;        /* スマホで縦並びにする */
}

/* 左画像 */
.left-box5 img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

/* 右ボックス */
.right-box5 {
	max-width: 500px;
	margin-top: 50px;       /* 下げたい場合 */
}
@media (max-width: 1024px) {
.main-section5 {
	width: 100%;
	box-sizing: border-box;
	padding: 90px 30px 200px 30px;
}
  .main-inner5 {
    flex-direction: column;   /* 縦並び */
    align-items: center;      /* 中央寄せ */
    gap: 40px;                /* 上下間隔 */
  }

  .left-box5 img,
  .right-box5 {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-inner5 {
    gap: 30px;                /* 上下間隔を狭める */
  }

  .left-box5 img,
  .right-box5 {
    width: 100%;
    max-width: 100%;
  }

  .main-section5 {
    padding: 90px 20px 200px 20px;
  }
}

.main-section6 {
	position: relative; /* 子要素を絶対配置する基準 */
	width: 100%; /* 上下の余白 */
	padding-top: 120px;
	padding-right: 0;
	padding-bottom: 170px;
	padding-left: 0;
	background-color: #FFF;
}

/* コンテンツ幅制限＋中央寄せ */
.main-inner6 {
	max-width: 1160px; /* ←固定ではなく max-width にすると小さい画面で縮む */
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
  .main-inner6 {
    padding: 0 30px;  /* 余白を少し狭める */
  }
}

@media (max-width: 768px) {
  .main-inner6 {
    padding: 0 30px;  /* さらに余白を狭める */
  }
  .main-section6 {
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
}
}

.main-section7 {
	width: 100%;
	box-sizing: border-box;
	padding-top: 150px;
	padding-bottom: 100px;
}

/* 中央にコンテンツ幅を制限 */
.main-inner7 {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 60px;             /* 左右間隔 */
  align-items: flex-start; 
  flex-wrap: wrap;        /* スマホで縦並びにする */
}


/* 左画像 */
.left-box7 img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* 右ボックス */
.right-box7 {
	flex: 1;
  max-width: 680px;
	margin-top: 8px;       /* 下げたい場合 */
}
@media (max-width: 1024px) {
  .main-inner7 {
	justify-content: center; /* 画像＋文章を中央寄せ */
	gap: 40px;
	margin-right: 30px;
	margin-left: 30px;
  }
}

@media (max-width: 768px) {
	.main-section7 {
	padding-top: 80px;
	padding-bottom: 60px;
}
  .main-inner7 {
    flex-direction: column;  /* 画像と文章を縦並びに */
    gap: 20px;               /* 間隔をさらに狭める */
  }

  .left-box7 img,
  .right-box7 {
    max-width: 100%;         /* 画面幅いっぱいに */
  }
}


/*---------------------
  フッターここから
---------------------*/
.footer {
	width: 100%; /* 上下と左右余白 */
	box-sizing: border-box;
	background-color: #79A8C5;
	padding-top: 76px;
	padding-bottom: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;         /* 左右の間隔 */
}

.footer-left {
	flex: 0 0 250px;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
}

.footer-right {
	flex: 1;           /* 残りを全部使う */
	max-width: 700px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 6px;
	padding-left: 58px;
	padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;  /* 縦並びに */
    gap: 30px;               /* 上下の間隔 */
  }

  .footer-right {
    border-left: none;       /* 左のボーダーを消す */
    padding-left: 20px;      /* 左余白を調整 */
  }

  .footer-left {
    
	padding-left: 20px;
    padding-right: 20px;
  }
}


@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-inner {
    gap: 20px;
  }

  .footer-left,
  .footer-right {
   flex: 0 0 100px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 30px;      /* PCでの間隔 */
  margin-top: 20px;
}

/* 下の3つのラップ */
.footer-links-sns {
  display: flex;
  gap: 15px;       /* PCでも横並び */
}

/* アイコンサイズ */
.footer-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;      /* 上下に並べる */
    align-items: center;
  }

  .footer-links-sns {
    justify-content: center;     /* 中央揃え */
    margin-top: 15px;
	 gap: 30px;
  }
}


footer address {
  font-style: normal;   /* 斜体解除 */
}



/* フッター全体 */
.footer2 {
  background: #86BFDA;
  padding: 40px 20px;
  font-size: 14px;
}

.footer2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

.footer2-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  padding-bottom: 6px; /* 下線 */
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #FFF;
  color: #FFF;
}

.footer2-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer2-links li {
  margin-bottom: 8px;
}

.footer2-links a {
  color: #FFF;
  text-decoration: none;
}

.footer2-links a:hover {
  text-decoration: underline;
}
.footer3-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  padding-bottom: 6px; /* 下線 */
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #FFF;
  color: #FFF;
}

/* スマホ時にアコーディオン化 */
@media (max-width: 768px) {
  /* 1列表示に変更 */
  .footer2-inner {
    grid-template-columns: 1fr; /* ここで1列にする */
    gap: 20px;
  }

  /* タイトル部分 */
  .footer2-title {
    background-color: #86BFDA; /* 黒っぽい灰色 */
    color: #FFF;
    padding: 12px 16px;
    position: relative;
    cursor: pointer;

  }
   .footer3-title {
    background-color: #86BFDA; /* 黒っぽい灰色 */
    color: #FFF;
    padding: 12px 16px;
    position: relative;
    cursor: pointer;
  }

  /* タイトル右端の + */
  .footer2-title::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #FFF;
  }

  /* 開いた時は - 表示 */
  .footer2-block.active .footer2-title::after {
    content: '-';
  }

  /* リンク部分 */
  .footer2-links {
    display: none;         /* 初期は非表示 */
    margin: 0;
    padding: 10px 16px;
    background-color: #79B4D0; /* ほぼ黒 */
    border-radius: 4px;
  }

  /* 開いたとき */
  .footer2-block.active .footer2-links {
    display: block;
  }

  .footer2-links li {
    margin-bottom: 8px;
  }

  .footer2-links a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 4px 0;
    background: transparent;
  }

  .footer2-links a:hover {
    text-decoration: underline;
  }
}




/*---------------------
  他ここから
---------------------*/
.td1 {
	margin-top: 115px;
}
.td2 {
position: absolute;
  top: -260px;    /* 上に少しはみ出す */
  left: 0%;       /* 左端に配置 */
  max-width: 490px; /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;    /* 他の要素より下に */
}
.td3 {
	margin-bottom: 135px;
}
.td4 {
	margin-right: auto;
	margin-left: auto;
}
.td5 {
  position: absolute;
  top: -80px;       /* 上に少しはみ出す */
  left: 50%;         /* 親要素の中央を基準に */
  transform: translateX(-50%); /* 自分の幅の半分だけ左にずらす */
  max-width: 490px;  /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;        /* 他の要素より下に */
}
.td6 {
	max-width: 238px;  /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;        /* 他の要素より下に */
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 83px;
}
.td7 {
	max-width: 238px;  /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;        /* 他の要素より下に */
	margin-right: auto;
	margin-left: auto;
}
.td8 {
	padding-top: 150px;
}
.td9 {
	padding-top: 20px;
}
.p-td1 {
	clear: both;
	margin-bottom: 60px;
}
.pic-td1 {
	clear: both;
	margin-bottom: 54px;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
}
.pic-td2 {
position: absolute;
  top: -260px;    /* 上に少しはみ出す */
  left: 0%;       /* 左端に配置 */
  max-width: 144px; /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;    /* 他の要素より下に */
}
.pic-td3 {
	position: absolute;
	top: -230px;    /* 上に少しはみ出す */
	left: 0%;       /* 左端に配置 */
	max-width: 611px; /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;    /* 他の要素より下に */
}
.li-td1 {
	clear: both;
	margin-bottom: 100px;
}
.mini1 {
}
.mini1 img {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	height: auto;
}

/*---------------------
  ロールオーバー
---------------------*/
.hover a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hover2 a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=80);
	-moz-opacity: 0.9;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/*---------------------
  フェード効果
---------------------*/

.fade {
}
.fadeInDown {
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-ms-animation-duration: 1s;
	animation-duration: 1s;
}
@-webkit-keyframes fadeInDown {
 0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
 100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
 0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
 100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	visibility: visible !important;
}


.fade-text {
  opacity: 0;
  filter: blur(10px);   /* ぼやけた状態から */
  transform: translateY(20px); /* 少し下から */
  transition: all 1s ease-out;
}

.fade-text.show {
  opacity: 1;
  filter: blur(0);      /* ぼやけ解除 */
  transform: translateY(0);
}

.fade-photo {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease, transform 0.7s ease; /* ← 1s → 0.6s に短縮 */
}

.fade-photo.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-photo2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease, transform 0.7s ease;
}

.fade-photo2.show {
  opacity: 1;
  transform: translateY(0);
}


	
	
.fade-char span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.fade-char span.show {
  opacity: 1;
  transform: translateY(0);
}



/*---------------------
  アニメーションボタン
---------------------*/

.custom-btn1 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 358px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	letter-spacing: 0.15em;
	text-decoration: none;
}
.btn-1 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-1:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFF;
	transition: all 0.1s ease;
	color: #333;
	font-size: 1rem;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-1:hover {
	color: #333;
	text-decoration: none;
	border: 1px solid #69C5E2;
}
.btn-1:hover:after {
	width: 100%;
	top: auto;
	bottom: 0;
	height: 100%;
	left: 0;
	right: auto;
	background-color: #8ED2E9;
}
.btn-1:active {
	top: 0px;
	right: 0px;
}

/**** BTN No. 1 ****/
.custom-btn2 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 230px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	text-decoration: none;
}
.btn-2 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-2:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFF;
	transition: all 0.1s ease;
	color: #333;
	font-size: 1rem;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-2:hover {
	color: #333;
	text-decoration: none;
	border: 1px solid #69C5E2;
}
.btn-2:hover:after {
	width: 100%;
	top: auto;
	bottom: 0;
	height: 100%;
	left: 0;
	right: auto;
	background-color: #8ED2E9;
}
.btn-2:active {
	top: 0px;
	right: 0px;
}

/**** BTN No. 3 ****/
.custom-btn3 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 300px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	letter-spacing: 0.15em
	text-decoration: none;
}
.btn-3 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-3:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFF;
	transition: all 0.1s ease;
	color: #333;
	font-size: 1rem;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-3:hover {
	color: #333;
	text-decoration: none;
	border: 1px solid #69C5E2;
}
.btn-3:hover:after {
	width: 100%;
	top: auto;
	bottom: 0;
	height: 100%;
	left: 0;
	right: auto;
	background-color: #8ED2E9;
}
.btn-3:active {
	top: 0px;
	right: 0px;
}

/**** BTN No. 3 ****/
.custom-btn4 {
	font-weight: 500;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 300px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #FFF;
	clear: both;
	letter-spacing: 0.15em;
	text-decoration: none;
}
.btn-4 {
	border: 1px solid #FFFFFF;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item04.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-4:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFF;
	transition: all 0.1s ease;
	color: #333;
	font-size: 1rem;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-4:hover {
	color: #333;
	text-decoration: none;
	border: 1px solid #FFFFFF;
}
.btn-4:hover:after {
	width: 100%;
	top: auto;
	bottom: 0;
	height: 100%;
	left: 0;
	right: auto;
	background-color: #FFFFFF;
}
.btn-4:active {
	top: 0px;
	right: 0px;
}

/**** BTN No. 1 ****/
.custom-btn5 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 170px;
	height: 40px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	text-decoration: none;
	letter-spacing: 0.1em;
}
.btn-5 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-5:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #FFF;
	transition: all 0.1s ease;
	color: #333;
	font-size: 1rem;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.btn-5:hover {
	color: #333;
	text-decoration: none;
	border: 1px solid #69C5E2;
}
.btn-5:hover:after {
	width: 100%;
	top: auto;
	bottom: 0;
	height: 100%;
	left: 0;
	right: auto;
	background-color: #8ED2E9;
}
.btn-5:active {
	top: 0px;
	right: 0px;
}

/* -----------------------------
   btn-6
----------------------------- */
.btn-6 {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px; /* 背景画像分の右余白を確保 */
	border: 1px solid #999999;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	z-index: 1;
	overflow: hidden;
	background-color: transparent;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right 0px center; /* 右端から20px内側に配置 */
	transition: color 0.3s ease, border 0.3s ease;
	padding-top: 14px;
	padding-right: 60px;
	padding-bottom: 14px;
	padding-left: 60px;
}

.btn-6 img.btn6-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

/* 背景アニメーション */
.btn-6::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  background-image: url(../img/item03.png);
  background-repeat: no-repeat;
  background-position: right 0px center;
  transition: all 0.2s ease;
}

/* hover時 */
.btn-6:hover {
  color: #333;
  border: 1px solid #69C5E2;
  text-decoration: none;
}

.btn-6:hover::after {
  width: 100%;
  background-color: #8ED2E9;
}

/* active時 */
.btn-6:active {
  top: 0px;
  right: 0px;
}




.button1-wrap {
	text-align: center;
	margin-top: 40px;
}

.button1-button {
	display: inline-block;
	background-color: #467EBA;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 33px;
	padding-bottom: 33px;
	padding-right: 78px;
	padding-left: 78px;
	font-weight: 600;
}

.button1-button:hover {
	background-color: #769ECB;
}


.button2-wrap {
	text-align: center;
	padding-bottom: 160px;
}

.button2-button {
	display: inline-block;
	color: #333;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-right: 57px;
	padding-left: 57px;
	font-weight: 500;
	border: 1px solid #9F9FA0;
}

.button2-button:hover {
	background-color: #8ED2E9;
	color: #FFF;
	border: 1px solid #8ED2E9;
}

.button3-wrap {
  text-align: center;
  margin-top: 40px;
}

.button3-button {
	display: inline-flex; /* ←アイコンと文字を横並びに */
	align-items: center;
	justify-content: center;
	background-color: #467EBA;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	font-weight: 600;
	gap: 10px; /* ←アイコンと文字の間の余白 */
	padding-top: 24px;
	padding-right: 110px;
	padding-bottom: 24px;
	padding-left: 110px;
}

.button3-button:hover {
  background-color: #769ECB;
}

/* アイコン設定 */
.button3-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}


.button3-button:hover {
	background-color: #769ECB;
}

.button4-wrap {
	text-align: center;
	margin-top: 30px;
}

.button4-button {
	display: inline-block;
	background-color: #E97F5A;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 29px;
	padding-bottom: 29px;
	padding-right: 90px;
	padding-left: 90px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.button4-button:hover {
	background-color: #EF9F85;
}
@media (max-width: 768px) {
	
.button4-button {
	display: inline-block;
	background-color: #E97F5A;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 29px;
	padding-bottom: 29px;
	padding-right: 24%;
	padding-left: 24%;
	font-weight: 600;
	letter-spacing: 0.05em;
}	
	
}
.button5-wrap {
	text-align: center;
	margin-top: 30px;
}

.button5-button {
	display: inline-block;
	background-color: #E97F5A;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-right: 60px;
	padding-left: 60px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.button5-button:hover {
	background-color: #EF9F85;
}
@media (max-width: 768px) {
	
.button5-button {
	display: inline-block;
	background-color: #E97F5A;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-right: 40px;
	padding-left: 40px;
	font-weight: 600;
	letter-spacing: 0.05em;
}	
	
}
/*---------------------
  まる
---------------------*/
.circle-date {
  width: 90px;
  height: 90px;
  background-color: #93D675;
  border-radius: 50%;
  display: flex;
  justify-content: center;   /* 横方向中央 */
  align-items: center;       /* 縦方向中央 */
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

.circle-date-inner {
  display: flex;
  align-items: flex-end; /* 下端を揃える */
}

/* 数字部分 */
.circle-date .num {
  font-size: 2.75rem; /* 44px */
  line-height: 1;
}

/* 「月」部分 */
.circle-date .unit {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  margin-left: 4px; /* 数字との間隔 */
  position: relative;
  bottom: 0.15em; /* 微調整で下寄せ */
}


/*---------------------
  テーブル
---------------------*/
.table-box {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-box .row {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc; /* 下線だけ */
  padding: 10px 0;
}

.table-box .row:first-child {
  border-top: 1px solid #ccc; /* 最初の行だけ上線を追加 */
}

.table-box .row .th {
	width: 100px;       /* 見出しの幅 */
	font-size: 0.875rem; /* 14px相当 */
	font-weight: bold;
	padding-left: 13px;
	letter-spacing: 0.1em;
	color: #3F95D3;
}

.table-box .row .td {
	font-size: 0.875rem; /* 14px相当 */
	letter-spacing: 0.1em;
	flex: 1;
	color: #333;
	font-weight: 400;
}

/* スマホ表示用 */
@media (max-width: 768px) {
  .table-box .row {
    flex-direction: column;
    padding: 30px 0;
  }
  .table-box .row .th {
	width: 100%;
	margin-bottom: 5px;
	text-align: center;
	padding-left: 0px;
	font-size: 1rem; /* 14px相当 */
  }
  .table-box .row .td {
    font-size: 1rem; /* 14px相当 */
	width: 100%;
  }
}


.table-box2 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-box2 .row {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc; /* 下線だけ */
  padding: 24px 0;
}

.table-box2 .row:first-child {
  border-top: 1px solid #ccc; /* 最初の行だけ上線を追加 */
}

.table-box2 .row .th {
	width: 130px;       /* 見出しの幅 */
	font-size: 1rem; /* 14px相当 */
	font-weight: bold;
	padding-left: 10px;
	letter-spacing: 0em;
	color: #9A9A9A;
}

.table-box2 .row .td {
	font-size: 1rem; /* 14px相当 */
	letter-spacing: 0.05em;
	flex: 1;
	color: #333;
	font-weight: 400;
}

/* スマホ表示用 */
@media (max-width: 768px) {
  .table-box2 .row {
    flex-direction: column;
    padding: 30px 0;
  }
  .table-box2 .row .th {
	width: 100%;
	margin-bottom: 5px;
	text-align: center;
	padding-left: 0px;
	font-size: 1rem; /* 14px相当 */
  }
  .table-box2 .row .td {
    font-size: 1rem; /* 14px相当 */
	width: 100%;
  }
}


.table-box3 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-box3 .row {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc; /* 下線だけ */
  padding: 10px 0;
}

.table-box3 .row:first-child {
  border-top: 1px solid #ccc; /* 最初の行だけ上線を追加 */
}

.table-box3 .row .th {
	width: 180px;       /* 見出しの幅 */
	font-size: 0.875rem; /* 14px相当 */
	font-weight: bold;
	padding-left: 30px;
	letter-spacing: 0.4em;
	color: #3F95D3;
}

.table-box3 .row .td {
	font-size: 0.875rem; /* 14px相当 */
	letter-spacing: 0.1em;
	flex: 1;
	color: #333;
	font-weight: 400;
}

/* スマホ表示用 */
@media (max-width: 768px) {
  .table-box3 .row {
    flex-direction: column;
    padding: 30px 0;
  }
  .table-box3 .row .th {
	width: 100%;
	margin-bottom: 5px;
	text-align: center;
	padding-left: 0px;
	font-size: 1rem; /* 14px相当 */
  }
  .table-box3 .row .td {
    font-size: 1rem; /* 14px相当 */
	width: 100%;
  }
}

.table-box4 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-box4 .row {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc; /* 下線だけ */
  padding: 10px 0;
}

.table-box4 .row:first-child {
  border-top: 1px solid #ccc; /* 最初の行だけ上線を追加 */
}

.table-box4 .row .th {
	width: 60px;       /* 見出しの幅 */
	font-size: 0.875rem; /* 14px相当 */
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #3F95D3;
	text-align: right;
}

.table-box4 .row .td {
	font-size: 0.875rem; /* 14px相当 */
	letter-spacing: 0.1em;
	flex: 1;
	color: #333;
	font-weight: 400;
	padding-left: 30px;
}

/* スマホ表示用 */
@media (max-width: 768px) {

.table-box4 .row .th {
	font-size: 0.8rem; /* 14px相当 */
	width: 40px;       /* 見出しの幅 */
	padding-left: 6px;

}
.table-box4 .row .td {
	padding-left: 20px;
}

}

.table-box5 {
	max-width: 100%;
	border-collapse: collapse;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 80px;
	margin-left: auto;
}

.table-box5 .row {
  display: flex;
  align-items: center; /* ←ここを中央揃えに変更 */
  padding: 20px 0;
}

/* 見出し部分（左列） */
.table-box5 .row .th {
	flex: 0 0 128px; /* 固定幅を確保 */
	font-weight: 900;
	font-size: 1rem;
	text-align: left;
	padding: 0 13px;
	box-sizing: border-box;
	line-height: 1.4; /* 縦位置バランスを微調整 */
}

/* 内容部分（右列） */
.table-box5 .row .td {
  flex: 1;
  font-size: 1rem;
  color: #000;
  padding-left: 10px;
  font-weight: 400;
  line-height: 1.8;
  box-sizing: border-box;
}
.aka {
	color: #E35656;
}
.ao {
	color: #16ACB9;
}
/* --- スマホ表示用 --- */
@media (max-width: 768px) {
  .table-box5 {
    max-width: 94%;
    margin: 0 auto 40px;
  }

  .table-box5 .row {
    flex-direction: column;
    align-items: flex-start; /* 縦並び時は上揃えに戻す */
    padding: 20px 0;
  }

  .table-box5 .row .th {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: 0.4em;
    padding: 0;
  }
.table-box5 .row .th {
	flex: 0 0 40px; /* 固定幅を確保 */
}
  .table-box5 .row .td {
    width: 100%;
    font-size: 1rem;
    padding: 0;
  }
}

.table-box6 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-box6 .row {
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px solid #ccc;
	align-items: center; /* ← これを追加！縦方向を中央揃えに */
	padding-top: 11px;
	padding-right: 0;
	padding-bottom: 11px;
	padding-left: 0;
}

.table-box6 .row:first-child {
  border-top: 1px solid #ccc; /* 最初の行だけ上線を追加 */
}

.table-box6 .row .th {
	width: 196px;       /* 見出しの幅 */
	font-size: 0.875rem; /* 14px相当 */
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #3F95D3;
	text-align: center;
}

.table-box6 .row .td {
	font-size: 0.875rem; /* 14px相当 */
	letter-spacing: 0.1em;
	flex: 1;
	color: #000;
	font-weight: 400;
	padding-left: 30px;
}

/* スマホ表示用 */
@media (max-width: 768px) {

.table-box6 .row .th {
	font-size: 0.8rem; /* 14px相当 */
	width: 60px;       /* 見出しの幅 */
	padding-left: 6px;

}
.table-box6 .row .td {
	padding-left: 16px;
}

}

.table-box7 {
	width: 100%;
	border-collapse: collapse;
	margin-right: 0;
	margin-bottom: 30px;
	margin-left: 0;
}

.table-box7 .row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ccc;
	padding: 0px;
}

.table-box7 .row .th {
	width: 250px;       /* 見出しの幅 */
	font-size: 1rem; /* 14px相当 */
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #000000;
	text-align: center;
}

.table-box7 .row .td {
	font-size: 1rem; /* 14px相当 */
	letter-spacing: 0.1em;
	flex: 1;
	color: #000;
	font-weight: 400;
	padding-left: 170px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	padding-top: 38px;
	padding-bottom: 38px;
	text-align: left;
}

/* スマホ表示用 */
@media (max-width: 768px) {

.table-box7 .row .th {
	font-size: 0.8rem; /* 14px相当 */
	width: 60px;       /* 見出しの幅 */
	padding-left: 6px;

}
.table-box7 .row .td {
	padding-left: 16px;
}

}
/* -----------------------------
   table-box8
----------------------------- */
.table-box8 {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 30px;
	margin-left: 0;
}

.table-box8 .row {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	padding: 0px;
}

.table-box8 .row:first-child {
	border-top: none; /* 最初の行は上枠なし */
}
.table-box8 .row:first-child .th {
	border-right: none;
}

/* th共通 */
.table-box8 .row .th {
	width: 250px;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #000;
	text-align: center;
	border-right-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #CCC;
	padding-top: 17px;
	padding-bottom: 17px;
}

/* td共通 */
.table-box8 .row .td {
	flex: 1;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #000;
	border: none;
}

/* 一番上の行（年齢・人数）はセンター寄せ） */
.table-box8 .row:first-child .td {
	text-align: center;
	padding-left: 0;
}

/* 2行目以降の td は左寄せ + パディング */
.table-box8 .row:not(:first-child) .td {
	text-align: left;
	padding-left: 180px;
}

/* スマホ表示用（横並び維持） */
@media (max-width: 768px) {
	.table-box8 .row {
		padding: 20px 0;
	}

	.table-box8 .row .th {
		width: 100px; /* 幅を縮める */
		font-size: 0.9rem;
	}

	.table-box8 .row .td {
		font-size: 0.9rem;
		padding-left: 40px !important; /* 左余白を少なめに */
		text-align: left !important;
	}
}



.event-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  border-bottom: 1px solid #D8D8D8; /* 最後の行の下線 */
}

.event-table tr {
  border-bottom: 1px solid #D8D8D8; /* 各行の下線 */
}

.event-table th {
  width: 166px;
  text-align: center;
  padding: 20px 0;
  vertical-align: middle; /* 縦中央揃え */
}

.event-table td {
	font-size: 1rem; /* 約19px */
	line-height: 2.8; /* 約25px相当 */
	color: #333;
	padding: 20px 0;
	font-weight: 500;
}
@media (max-width: 768px) {
	
.event-table th {
  width: 100px;
  text-align: center;
  padding: 20px 0;
  vertical-align: middle; /* 縦中央揃え */
}	
.event-table td {
	font-size: 1rem; /* 約19px */
	line-height: 2.8; /* 約25px相当 */
	color: #333;
	font-weight: 500;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 10px;
}	
}	
	
/* ◯デザイン（再利用） */
.circle-date {
  width: 90px;
  height: 90px;
  background-color: #93D675;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  box-sizing: border-box;
}

.circle-date-inner {
  display: flex;
  align-items: flex-end; /* 下端を揃える */
}

.circle-date .num {
  font-size: 2.75rem; /* 44px */
  line-height: 1;
}

.circle-date .unit {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}

/* 「毎月」セル用 */
.event-table th.monthly {
	font-size: 1.5rem;
	font-weight: 600;
	color: #93D675;
	text-align: center;
	vertical-align: middle;
}
@media (max-width: 768px) {
.circle-date {
  width: 80px;
  height: 80px;
}
	.circle-date .num {
  font-size: 2rem; /* 44px */
  line-height: 1;
}

.circle-date .unit {
  font-size: 1rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}
}
/* ◯デザイン（再利用） */
.circle-date2 {
  width: 90px;
  height: 90px;
  background-color: #9AD4E5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  box-sizing: border-box;
}

.circle-date-inner2 {
  display: flex;
  align-items: flex-end; /* 下端を揃える */
}

.circle-date2 .num {
  font-size: 2.75rem; /* 44px */
  line-height: 1;
}

.circle-date2 .unit {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}

/* 「毎月」セル用 */
.event-table th.monthly2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #9AD4E5;
	text-align: center;
	vertical-align: middle;
}
@media (max-width: 768px) {
.circle-date2 {
  width: 80px;
  height: 80px;
}
	.circle-date2 .num {
  font-size: 2rem; /* 44px */
  line-height: 1;
}

.circle-date2 .unit {
  font-size: 1rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}
}

/* ◯デザイン（再利用） */
.circle-date3 {
  width: 90px;
  height: 90px;
  background-color: #F4BB79;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  box-sizing: border-box;
}

.circle-date-inner3 {
  display: flex;
  align-items: flex-end; /* 下端を揃える */
}

.circle-date3 .num {
  font-size: 2.75rem; /* 44px */
  line-height: 1;
}

.circle-date3 .unit {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}

/* 「毎月」セル用 */
.event-table th.monthly3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #F4BB79;
	text-align: center;
	vertical-align: middle;
}
@media (max-width: 768px) {
.circle-date3 {
  width: 80px;
  height: 80px;
}
	.circle-date3 .num {
  font-size: 2rem; /* 44px */
  line-height: 1;
}

.circle-date3 .unit {
  font-size: 1rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}
}



/* ◯デザイン（再利用） */
.circle-date4 {
  width: 90px;
  height: 90px;
  background-color: #F0ABBF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  box-sizing: border-box;
}

.circle-date-inner4 {
  display: flex;
  align-items: flex-end; /* 下端を揃える */
}

.circle-date4 .num {
  font-size: 2.75rem; /* 44px */
  line-height: 1;
}

.circle-date4 .unit {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}

/* 「毎月」セル用 */
.event-table th.monthly4 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #F0ABBF;
	text-align: center;
	vertical-align: middle;
}
@media (max-width: 768px) {
.circle-date4 {
  width: 80px;
  height: 80px;
}
	.circle-date4 .num {
  font-size: 2rem; /* 44px */
  line-height: 1;
}

.circle-date4 .unit {
  font-size: 1rem; /* 20px */
  line-height: 1;
  margin-left: 0px;
  position: relative;
  bottom: 0.15em;
}
}


/*---------------------
  フェード効果
---------------------*/
	
.fadein1 {
	opacity : 0;
	transform : translate(0px, 14px);
	transition : all 1000ms;
}
.fadein1.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}
.fadein2 {
	opacity : 0;
	transform : translate(50px, 0px);
	transition : all 1400ms;
}
.fadein2.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}
.fadein3 {
	opacity : 0;
	transform : translate(-50px, 0px);
	transition : all 1400ms;
}
.fadein3.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}


.side01 {
	position: fixed;
	bottom: 330px;
	right: 0px;
	z-index: 9999;
}
.side02 {
	position: fixed;
	bottom: 198px;
	right: 0px;
	z-index: 9999;
}
.side03 {
	position: fixed;
	bottom: 90px;
	right: 0px;
	z-index: 9999;
}

.sphide {
	display: block;
}
.spdisp {
	display: none;
}
.sphide2 {
	display: block;
}
.spdisp2 {
	display: none;
}



/* タブレット横
------------------------------------------------------------*/
@media screen and (max-width: 1024px) {


body {
	min-width: auto;
}
.sphide2 {
	display: none;
}
.spdisp2 {
	display: block;
}
.td3 {
	margin-bottom: 100px;
}
.td2 {
position: absolute;
  top: -180px;    /* 上に少しはみ出す */
  left: 0%;       /* 左端に配置 */
  max-width: 450px; /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;    /* 他の要素より下に */
}
.td6 {
	max-width: 238px;  /* 必要に応じてサイズ調整 */
	margin-bottom: 60px;
}
.pic-td2 {
position: absolute;
  top: -190px;    /* 上に少しはみ出す */
  left: 15%;       /* 左端に配置 */
  max-width: 144px; /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;    /* 他の要素より下に */
}
.pic-td3 {
	position: absolute;
	top: -230px;    /* 上に少しはみ出す */
	left: 0%;       /* 左端に配置 */
	max-width: 611px; /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;    /* 他の要素より下に */
}
}	
/* iPhone6 Plus
------------------------------------------------------------*/
@media (max-width: 768px) {
.td2 {
position: absolute;
  top: -148px;    /* 上に少しはみ出す */
  left: -2%;       /* 左端に配置 */
  max-width: 320px; /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;    /* 他の要素より下に */
}
.td3 {
	margin-bottom: 40px;
}
.td5 {
  position: absolute;
  top: -64px;       /* 上に少しはみ出す */
  left: 50%;         /* 親要素の中央を基準に */
  transform: translateX(-50%); /* 自分の幅の半分だけ左にずらす */
  max-width: 120px;  /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;        /* 他の要素より下に */
}
.td6 {
	max-width: 230px;  /* 必要に応じてサイズ調整 */
	margin-bottom: 45px;
}
.td7 {
	max-width: 238px;  /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;        /* 他の要素より下に */
	margin-right: auto;
	margin-left: auto;
}
.td7 {
  max-width: 200px;  /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;        /* 他の要素より下に */
  margin: 0;          /* 中央寄せの自動マージンを削除 */
  float: left;        /* 左寄せ */
}
.td8 {
	padding-top: 100px;
}
.td9 {
	padding-bottom: 0px;
}



.pic-td2 {
position: absolute;
  top: -170px;       /* 上に少しはみ出す */
  left: 14%;         /* 親要素の中央を基準に */
  transform: translateX(-50%); /* 自分の幅の半分だけ左にずらす */
  max-width: 120px;  /* 必要に応じてサイズ調整 */
  height: auto;
  z-index: 0;        /* 他の要素より下に */
}
.pic-td3 {
	position: absolute;
	top: -120px;    /* 上に少しはみ出す */
	left: -5%;       /* 左端に配置 */
	max-width: 90%; /* 必要に応じてサイズ調整 */
	height: auto;
	z-index: 0;    /* 他の要素より下に */
}

.custom-btn1 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 320px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	letter-spacing: 0.15em;
	text-decoration: none;
}
.btn-1 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}


.custom-btn3 {
	font-weight: 500;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 300px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #333;
	clear: both;
	letter-spacing: 0.15em
	text-decoration: none;
	margin-right: auto;
	margin-left: auto;
}
.btn-3 {
	border: 1px solid #999999;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item03.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.custom-btn4 {
	font-weight: 500;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;             /* ←変更 */
	justify-content: center;   /* 横中央 */
	align-items: center;       /* 縦中央 */
	width: 300px;
	height: 60px;
	font-size: 1rem;
	text-align: center;
	color: #FFF;
	clear: both;
	letter-spacing: 0.15em;
	text-decoration: none;
	margin-right: auto;
	margin-left: auto;
}
.btn-4 {
	border: 1px solid #FFFFFF;
	z-index: 1;
	background-color: none;
	background-attachment: scroll;
	background-image: url(../img/item04.png);
	background-repeat: no-repeat;
	background-position: right center;
}


.button2-wrap {
	text-align: center;
	padding-bottom: 100px;
}


.sphide {
	display: none;
}
.spdisp {
	display: inline;
}
.sphide2 {
	display: none;
}
.spdisp2 {
	display: block;
}

}

	.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-year {
  margin-bottom: 10px;
}

.archive-year .toggle {
  cursor: pointer;
  position: relative;
  padding-left: 18px;
  display: block;
  color: #333;
}
/* 右向き矢印（閉） */
.archive-year .toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #9bb;
  border-bottom: 1.5px solid #9bb;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.25s ease;
}

/* 下向き矢印（開） */
.archive-year.open .toggle::before {
  transform: translateY(-50%) rotate(45deg);
}
.archive-months {
  display: none;
  margin-left: 20px;
  padding-left: 0;
}

.archive-months li {
  padding: 6px 0;
}
.archive-year.open .archive-months {
  display: block;
}
/* 本文内の画像 共通 */
.news-text img {
  display: block;
  margin: 100px auto;
}

/* スマホ時 */
@media (max-width: 768px) {
  .news-text img {
    margin: 40px auto;
  }
}
	.pagination {
  margin: 60px 0;
  text-align: center;
}

.pagination .nav-links{
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* 全ボタン共通（数字も次へも同じサイズ） */
.pagination .page-numbers{

}

.pagination .page-numbers.current{
  background: #7fb3d5;
  color: #fff;
  border-color: #7fb3d5;
}

.pagination a.page-numbers:hover{
  background: #f0f6fa;
}

.news-date {
  display: flex;
  align-items: center;
}

.news-cats {
  display: inline-flex;
  gap: 8px;
  margin-left: 16px; /* ← 日付との距離 */
}
.sidebar-category .cat-news a {
  font-weight: 600;
}
.button6-button {
	display: inline-block;
	background-color: #467EBA;
	color: #fff;
	font-size: 1.125rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 28px;
	padding-bottom: 28px;
	padding-right: 76px;
	padding-left: 76px;
	font-weight: 600;
	letter-spacing: 0.2em;
}

.button6-button:hover {
	background-color: #769ECB;
}
.button6-wrap {
    text-align: center;
    margin-top: 56px;
}

.overview-inner-cont {
	text-align:initial;
    max-width: 1000px;
    width: 1000px;
    box-sizing: border-box;
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    background-color: #FFF;
    padding-top: 90px;
    padding-right: 8.5%;
    padding-bottom: 90px;
    padding-left: 8.5%;
}
@media (max-width: 768px) {
	    .overview-inner-cont {
        padding-top: 30px;
        padding-right: 7%;
        padding-bottom: 50px;
        padding-left: 7%;
    }
    .overview-inner-cont {
        margin-bottom: 100px;
        width: 100%;
    }

.button6-wrap {
	text-align: center;
	margin-top: 40px;
}
.button6-button {
	display: inline-block;
	background-color: #467EBA;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: 0.3s;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-right: 70px;
	padding-left: 70px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
}
/*---------------------
  フォーム用 同意ボタン
---------------------*/
.recruit-form {
	text-align:initial;
}

/* 外枠 */
.agree-wrap {
  width: 190px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}

/* ラベル全体をボタン化 */
.agree-box {
  width: 100%;
  height: 100%;
  background-color: #D6E4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
	height:50px;
}

/* 元のチェックボックスは非表示 */
.agree-box input {
  display: block;
}
.agree-box input[type=checkbox] {
  width:			24px;
	height:			24px;

}
.agree-box input[type="checkbox"] {
  border: none;
  outline: none;
  box-shadow: none;
}
/* チェックボックス：初期は全部白 */
.custom-checkbox {
  width: 27px;
  height: 27px;
  background-color: #fff;   /* 中も白 */
  border: 2px solid #fff;   /* 枠も白 */
  box-sizing: border-box;
  position: relative;
}
.agree-box input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;

  width: 24px;
  height: 24px;

  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.agree-box input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
	margin-right:12px;

  width: 24px;
  height: 24px;

  background-color: #fff;   /* ← 白背景 */
  border: none;             /* 枠線なし */
  outline: none;
  box-shadow: none;
}

/* チェック時：✔を表示 */
.agree-box input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
}
.agree-box input[type="checkbox"]:checked {
  background-color: #fff;
  position: relative;
}

.agree-box input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 16px;
  color: #333;
}
.agree-wrap {
  margin-bottom: 60px; /* 好みで 16〜32px */
}
/* テキスト */
.agree-text {
  font-size: 16px;
  line-height: 1;
  color: #333;
  font-weight: 500;
}

.recruit-form {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-form .form-row {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: center;
  margin-bottom: 22px;
}

.recruit-form .form-label {
  font-size: 16px;
  white-space: nowrap;
	font-weight:500;
}

.recruit-form .form-field input,
.recruit-form .form-field textarea,
.recruit-form .form-field select {
  width: -webkit-fill-available;
  padding: 8px;
  box-sizing: border-box;
}

.recruit-form .birth {
  display: flex;
  align-items: center;
  gap: 6px;
}

.recruit-form .birth select {
  width: 90px;
}

.recruit-form .unit {
  margin-right: 10px;
}

.recruit-form .must {
  background: #e85b5b;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 6px;
}

.recruit-form .note {
  font-size: 12px;
  color: #e85b5b;
  margin-top: 6px;
}

.recruit-form .textarea-row {
  align-items: flex-start;
}

.recruit-form .form-field.full {
  grid-column: 1 / -1;
  text-align: center;
}

.recruit-form .agree-row {
  margin-top: 10px;
}

.recruit-form .submit-row {
  margin-top: 30px;
}

.recruit-form input[type="submit"] {
  background: #4a7ebb;
  color: #fff;
  padding: 28px 76px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* SP */
@media (max-width: 768px) {
  .recruit-form .form-row {
    grid-template-columns: 1fr;
  }

  .recruit-form .form-field input,
  .recruit-form .form-field textarea,
  .recruit-form .form-field select {
    width: 100%;
  }
}
/* radio / checkbox の無駄な余白を削除 */
.wpcf7-list-item {
  margin: 0 24px 0 0;
}

/* radio を横並び */
.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

/* label内の改行防止 */
.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
	font-weight: 500;
}
.recruit-form .form-row {
	margin-bottom:40px;
}
.wpcf7-spinner {
    display: block !important;
    margin: 20px auto 10px !important;
}
/* 入力系すべてのボーダー色を統一 */
.recruit-form input[type="text"],
.recruit-form input[type="email"],
.recruit-form input[type="tel"],
.recruit-form input[type="number"],
.recruit-form input[type="date"],
.recruit-form textarea,
.recruit-form select {
  border: 1px solid #adadad;
  box-shadow: none;
}
.recruit-form input:focus,
.recruit-form textarea:focus,
.recruit-form select:focus {
  outline: none;
  border-color: #adadad;
  box-shadow: none;
}
.recruit-form .wpcf7-not-valid {
  border-color: #e60000; /* エラー時だけ赤 */
}
/* テキスト・メール・電話など */
.recruit-form input[type="text"],
.recruit-form input[type="email"],
.recruit-form input[type="tel"],
.recruit-form input[type="number"],
.recruit-form select {
  height: 42px;
  line-height: 42px; /* 文字の縦位置を中央に */
  padding: 0 12px;
  box-sizing: border-box;
}

/* 生年月日：年・月・日を横並び */
.recruit-form .form-field.birth p {
  display: flex;
  align-items: center;
  gap: 8px; /* 年月日の間隔 */
  margin: 0;
}
/* ラジオ・チェックボックス：最初の項目だけ左余白を消す */
.recruit-form .wpcf7-list-item:first-child {
  margin-left: 0;
}
.recruit-form .form-row.textarea-row .note {
  color: inherit;
}
/* 送信ボタンのフォントを他と統一 */
.recruit-form input[type="submit"] {
      font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", serif;
}
.section-title {
  margin: 160px 0 32px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #58a1d9; /* 青 */
  letter-spacing: 0.05em;
}
.recruit-form .form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 40px;
}
.recruit-form .form-row.birth .form-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recruit-form .form-row.birth select {
  width: 150px;
}
.recruit-form select[name="child-gender"] {
  max-width: 200px;
}
.recruit-form .note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: #666;
}
/* 生年月日：年・月・日を強制的に横並び */
.recruit-form .form-row.birth .form-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CF7 が自動で入れる br を無効化 */
.recruit-form .form-row.birth br {
  display: none;
}

/* wrap を横並び要素として扱う */
.recruit-form .form-row.birth .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}

/* select のサイズ調整（42px 前提） */
.recruit-form .form-row.birth select {
  height: 42px;
  min-width: 100px;
}
.recruit-form .form-row.birth select[name*="month"],
.recruit-form .form-row.birth select[name*="day"] {
  width: 70px;
  min-width: 70px;
}
/* 生年月日：月・日だけ 70px */
.recruit-form .form-row.birth select[name*="month"],
.recruit-form .form-row.birth select[name*="day"] {
  width: 70px;
  min-width: 70px;
}



/* 性別 select */
.recruit-form select[name="child-gender"] {
  width: 150px;
  max-width: 150px;
}
/* 生年月日：月・日の左余白を40px */
.recruit-form .form-row.birth select[name*="month"],
.recruit-form .form-row.birth select[name*="day"] {
  margin-left: 40px;
}
/* 一番下の注釈（note）だけ整える */
.recruit-form .form-row:last-of-type + .note,
.recruit-form .note:last-child {
  margin-top: 40px;      /* フォームからしっかり離す */
  padding-top: 24px;     /* 上に余白 */
  text-align: center;    /* 中央寄せ */
  font-size: 13px;
  color: #555;           /* 少し薄めの黒 */
  line-height: 1.6;
}
/* -----------------------------------
   レスポンシブ（スマホ向け調整）
----------------------------------- */
@media (max-width: 768px) {

  /* 全フォーム 1カラム */
  .recruit-form .form-row {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  /* ラベルは上に */
  .recruit-form .form-label {
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
  }

  .recruit-form .form-field {
    width: 100% !important;
    max-width: none !important;
  }

  /* 生年月日（年/月/日）を縦積みに */
  .recruit-form .form-row.birth .form-field {
    display: block !important;
    padding-left: 0 !important;
    gap: 0 !important;
  }
  .recruit-form .form-row.birth .form-field select {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 8px;
  }

  /* 性別セレクト */
  .recruit-form select[name="child-gender"] {
    width: 100% !important;
    margin-top: 4px;
  }

  /* テキストエリア */
  .recruit-form textarea {
    width: 100% !important;
  }

  /* 送信ボタンの幅 */
  .recruit-form input[type="submit"] {
    width: 100%;
    max-width: none;
  }

  /* note の余白 */
  .recruit-form .note:last-child {
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    font-size: 12px;
    color: #666;
  }
}
/* -------------------------------
   採用フォーム：スマホレイアウト
---------------------------------- */
@media (max-width: 768px) {

  /* 1カラム化：ラベル上、フィールド下 */
  .recruit-form .form-row {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  /* ラベルは上に出す */
  .recruit-form .form-label {
    width: 100%;
    margin-bottom: 8px;
    text-align: left;
  }

  /* 入力欄は幅 100% */
  .recruit-form .form-field {
    width: 100% !important;
    max-width: none !important;
  }

  /* 生年月日 年/月/日 を縦積み */
  .recruit-form .form-row.birth .form-field {
    display: block !important;
    padding-left: 0 !important;
    gap: 0 !important;
  }
  .recruit-form .form-row.birth .form-field select {
    width: 100% !important;
    margin: 0 0 8px 0;
  }

  /* 希望職種（ラジオ）縦並び */
  .recruit-form .form-field .wpcf7-list-item {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 8px;
  }

  /* 希望雇用形態（ラジオ）縦並び */
  .recruit-form .form-field .wpcf7-list-item {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 8px;
  }

  /* 性別 select は 100% 幅 */
  .recruit-form select[name="employment"],
  .recruit-form select[name="job-type"] {
    width: 100% !important;
    margin-top: 8px;
  }

  /* textarea */
  .recruit-form textarea {
    width: 100% !important;
  }

  /* 送信ボタンを全幅に */
  .recruit-form input[type="submit"] {
    width: 100%;
    max-width: none;
  }

  /* 一番下の注釈 */
  .recruit-form .note:last-child {
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    font-size: 12px;
    color: #666;
  }
}
.recruit-link {
  margin-top: 40px;
  text-align: center;
}

.recruit-link a {
  color: #467eba;       /* 画像の青系 */
  font-size: 18px;
  text-decoration: none;
}

.recruit-link a:hover {
  text-decoration: underline;
}
/* 投稿本文内のリンクを分かりやすく（記事本文だけ） */
.entry-content a,
.wp-block-post-content a,
.post-content a {
  color: #0b5bd3;                /* リンク色（好みで変更OK） */
  text-decoration: underline;    /* 下線 */
  text-underline-offset: 0.18em; /* 下線を少し下に */
  text-decoration-thickness: 2px;
  transition: opacity .15s ease;
}

/* 訪問済みリンク */
.entry-content a:visited,
.wp-block-post-content a:visited,
.post-content a:visited {
  color: #6a3bd2;
}

/* ホバー時 */
.entry-content a:hover,
.wp-block-post-content a:hover,
.post-content a:hover {
  opacity: .75;
}

/* キーボード操作時（Tab移動）でも分かるように */
.entry-content a:focus-visible,
.wp-block-post-content a:focus-visible,
.post-content a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}
/* お知らせ詳細ページ：本文内リンクを分かりやすくする */
.news-text .wp-block-preformatted a {
  color: #0b5bd3 !important;      /* 青 */
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

/* ホバー時 */
.news-text .wp-block-preformatted a:hover {
  opacity: 0.75;
}
.page1200 {
  max-width: 1100px;
  margin: 0 auto;
	font-size:20px;
}
.page-section.shita50 {
	padding-bottom:60px;
}
@media (max-width: 768px) {
  .page1200 {
    padding: 0 16px;
  }
}
.btn-area {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
.error-hero {
  background: #8fc3dc; /* フッターと同系色 */
  padding: 80px 20px;
  text-align: center;
}

.error-hero h1 {
  color: #fff;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 0.1em;
}
.error-section {
  padding: 60px 0 80px;
  text-align: center;
}

.error-lead {
  font-size: 18px;
  margin-bottom: 10px;
}

.error-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}
.error-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #4f9fc2;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  transition: opacity .3s;
}

.error-btn:hover {
  opacity: 0.8;
}
