@charset "UTF-8";
/* CSS Document */

/* formatting style
--------------------------------------------------------*/
* {
	margin: 0px;
	padding: 0px;
	
}

body {
	font-size: 97%;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; 
	line-height: 1.5em;
	color: #333333;
	background-image: url(images/bg-img.jpg);
	background-image: url(images/bg-img.jpg);
  background-repeat: no-repeat;      /* リピートしない */
  background-size: cover;            /* 画面いっぱいに拡大表示 */
  background-position: center top;   /* 中央上寄せ配置 */
}

.font-size90{
	font-size: 90%;
}

.font-size110{
	font-size: 110%;
}

.font-size130{
	font-size: 130%;
}

.bold{
	font-weight: bold;
}

.blue{
	color: #7ca0c9;
}

.red{
	color: #FF0004;
}

.underline{
	text-decoration: underline;
}

.red-double-strike {
  text-decoration-line: line-through; /* 打ち消し線を表示 */
  text-decoration-style: double;     /* 線のスタイルを二重線にする */
  text-decoration-color: red;        /* 線の色を赤にする */
}

/* 説明文を1文字（1em）だけ左インデント */
.contents_inside_text .indent-1em{
  display:block;
  margin-left:1.5em;  /* ← 全角1文字ぶん */
}


/* link styles
--------------------------------------------------------*/
a img {
	border-style: none;
}
a:link {
	color: #3484c7;
	text-decoration: underline;
}
a:visited {
	color: #2f2f2f;
}
a:hover {
	color: #6793bd;
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}



/*header styles
--------------------------------------------------------*/
#header{
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	height: 150px;
	width: 980px;
	z-index: 99;
}

.header-box{
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	height: 150px;
	width: 980px;
}

#header h1 {
	display: none;
}

.header-topbg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	height: 483px;
	z-index: -1;
	background-position: center top; 
	background-repeat: no-repeat;
	background-attachment: fixed;
}


/*containter styles
--------------------------------------------------------*/
#containter{
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	width: 980px;
}


/*menu styles
--------------------------------------------------------*/
.menu_box{
	width:235px;
	float:left;
	clear:left;
	margin-right:0;
	margin-left:0;
	font-size:15px;
	margin-bottom: 20px;
	margin-top: 0px;
	z-index: 99;
}

.wrapper{
	width:235px;
	margin-left: auto;
	margin-right: auto;
}

ul, ul ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu {
	width: auto;
	height: auto;
}

.menu > li > a {
	background-color: rgba(0,104,183,0.9);
	border-bottom: 1px dotted #999999;
	width: 100%;
	height: 3.5em;
	line-height: 3.5em;
	text-indent: 1.3em;
	display: block;
	position: relative;
}

.menu > li > a:hover, .menu > li > a.active {
	background-color: #005799;	
}

.menu > li > a.active {
	border-bottom: 1px solid #999999;
}

.menu ul > li > a span {
	font-size: 13px; 
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 50%; 
	background: #fff;
	line-height: 1em;
	height: 1em;
	padding: .4em .7em;
	margin: -.9em 0 0 0; 
	text-indent: 0;
	text-align: center;
}

.menu a:link {
	text-decoration:none;
	color: #fff;
}

.menu a:visited {
	text-decoration:none;
	color: #fff;
}


/* ==== 左メニュー下のスポンサー枠 ==== */
.menu_box .partner-area {
  margin-top: 16px;
  padding: 12px 0px;
  border-top: 1px solid #eee;
}

.menu_box .partner-area__title {
  font-size: 12px;
  letter-spacing: .04em;
  color: #666;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* 縦積みで増やせるリスト構造 */
.menu_box .partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;  /* 必要なら後述のグリッドCSSに差し替え可 */
  gap: 10px;
}

.menu_box .partner-item a {
  display: block;
  text-align: center;
}

.menu_box .partner-item img {
  display: block;
  width: 100%;       /* サイド幅にフィット */
  height: auto;      /* 縦横比を保持 */
  max-width: 235px;  /* サイドバーが広くても拡大しすぎない保険 */
  margin: 0 auto;
  transition: transform .12s ease, filter .12s ease;
}

/* サイド幅が狭いときの余白微調整 */
@media (max-width: 1024px) {
  .menu_box .partner-area {
    padding: 10px 6px;
  }
}


/* ---- partner fix override (Chrome対策) ---- */
.menu_box .partner-area{
  padding: 12px 0;
  background:#fff;
  border-bottom:1px solid #eee;
  content-visibility: visible;
  overflow: visible;
}

.menu_box .partner-list{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.menu_box .partner-item{
  line-height:0;
}

.menu_box .partner-item > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.menu_box .partner-item img{
  display:block;
  width:auto;
  height:40px;       /* 表示サイズは好みで調整可 */
  max-width:100%;
  margin:0 auto;
  transition: transform .12s ease, filter .12s ease;
}


/* ---- partner hover effect ---- */
/* 親ボックスに相対配置＆白背景 */
.menu_box .partner-area{
  position: relative;
  background: #fff;
  /* 既存のpadding/borderはそのままでOK */
  z-index: 0;                     /* 重なり順の基準 */
}

/* 親全面にオーバーレイ（白余白ごと覆う） */
.menu_box .partner-area::after{
  content: "";
  position: absolute;
  inset: 0;                       /* 親の内側を全面カバー */
  background: rgba(0,0,0,0.32);   /* 濃さは 0.28〜0.38 で調整 */
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;           /* クリックを透過させる */
  z-index: 1;                     /* 子要素より前 */
}

/* 子(li/a)にホバー/フォーカスが入ったら、親のオーバーレイを表示 */
@media (hover:hover){
  .menu_box .partner-area:has(.partner-item:hover)::after{ opacity: 1; }
}
.menu_box .partner-area:has(.partner-item:focus-within)::after{ opacity: 1; }

/* 画像側は必要なら軽めのモノクロに（任意） */
.menu_box .partner-item a:hover img,
.menu_box .partner-item:focus-within img{
  filter: grayscale(100%);        /* いらなければ削除 */
}







/*contents styles
--------------------------------------------------------*/
#contents{
	width:730px;
	margin: 0 0 30px 9px;
	float: right;
	clear: right;
}

.main{
	margin-top: 460px;
}

.contents_box {
	width: 730px;
	height: auto;
	margin: 0;
}

.contents_box_main{
	width: 730px;
	height: auto;
	margin-top: 0px;
}

.contents_box_each {
	width: 730px;
	height: auto;
	margin-top: 30px;
}

.contents_box img {
	margin: 0;
	border: 0;
	width: 730px;
	height: 30px;
}

.box_index {
	width: 100%;
	height:250px;
	background-color: rgba(255,255,255,0.9);
	border: 3px solid #e971a3; 
	box-sizing: border-box;
	padding:20px;
	margin-top: 0;
	overflow: auto;
}

.box_index_main {
	width: 100%;
	height: auto;
	min-height: 500px;
	background-color: rgba(255,255,255,0.9);
	box-sizing: border-box;
	padding: 20px;
	margin-top: 0;
	overflow: auto;
}

.general_left{
	float:left;
	clear:left;
	width:150px;
}

.general_right{
	float:left;
	padding-left:30px;
}

.contents_bar{
	height:25px;
	line-height:25px;
	width: 713px;
	font-size:24px;
	background-color: rgba(255,255,255,0.9);
	margin-bottom:15px;
	font-weight:600;
	padding: 0 0 0 10px;
	border: 3px solid #e971a3;
	color: #e971a3;
	position: relative;
}

.contents_bar_text{
	position: absolute;
	background-color: rgba(255,255,255,0.9);
	padding-left: 10px;
	padding-right: 10px;
	bottom: 10px;
	color: #e971a3;
}

.contents_inside {
	width: 700px;
	height: auto;
	padding-left:15px;
	padding-right:15px;
	background-color: #fff;
	line-height:1.4em;
	margin-bottom:15px;
}

.contents_title{
	height:40px;
	width: 660px;
	line-height:40px;
	font-size:18px;
	margin-top:5px;
	padding-left:15px;
	padding-right:15px;
	background-color: rgba(0,0,0,0.1);
	margin-bottom:15px;
	font-weight:600;
}

.contents_inside_text{
	padding-left:15px;
	padding-right:15px;	
}

.contents_bar_main{
	height:35px;
	line-height:35px;
	width: 715px;
	font-size:20px;
	margin-bottom:14px;
	font-weight:600;
	padding: 5px 0 5px 15px;
	background-color: rgba(0,104,183,0.9);
	color: #FFFFFF;
}




/***************************************************************************
*
* BUTTON STYLE
*
***************************************************************************/

.btn-space{
	text-align: center;
}

.myButton {
	background-color:#44c767;
	color: #FFFFFF;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff !important;
	font-size:22px;
	padding:16px 56px;
	text-decoration:none;
}
.myButton:hover {
	background-color:#5cbf2a;
}
.myButton:active {
	position:relative;
	top:1px;
}

/* 共通ボタンスタイル（1行目用） */
.btn,
.btn-gray {
  -webkit-border-radius: 4;
  -moz-border-radius: 4;
  border-radius: 4px;
  color: #ffffff;
  font-size: 21px;          /* 1行目の文字サイズ */
  line-height: 1.3;         /* 行間を少し広めに */
  padding: 14px 60px 10px 60px;
  text-decoration: none;
  display: inline-block;    /* ボタンとして表示 */
  text-align: center;       /* 中央揃え */
}

/* 色だけ別々に */
.btn {
  background: #3498db;
}

.btn-gray {
  background: #B9B9B9;
}

/* 通常リンク色 */
a.btn {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

a.btn-gray {
  color: #EAEAEA !important;
  text-decoration: none !important;
}

/* 括弧内 2 行目を小さく表示する共通クラス */
.btn-sub {
  display: block;           /* 改行して 2 行目に */
  font-size: 70%;           /* 小さく表示 */
  line-height: 1.2;
  margin-top: 2px;          /* 1行目との間隔 */
}


.btn:hover {
  background: #3cb0fd;
  text-decoration: none;
}



/*table styles
--------------------------------------------------------*/
.simple-table {
  border-collapse: collapse;
  margin: 20px 20px;
  width: 40%;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  text-align: left;
}

.simple-table td {
  border: 1px solid #000;
  padding: 8px 12px;
  vertical-align: middle;
}

.simple-table tr:nth-child(even) {
  background-color: #fafafa; /* 背景をうっすら変える場合 */
}




/*footer_top styles
--------------------------------------------------------*/
#footer_top{
	width:auto;
	min-height: 190px;
	clear:both;
	background-color: #0068b7;
	padding: 25px 0 25px 0;
	text-align: left;
}

.footer_box{
	width:980px;
	margin-left: auto;
	margin-right: auto;	
}

.footer_left_text{
	padding-left: 12px;
}

.footer_left{
	float:left;
	clear: left;
	color:#fff;
	font-size:15px;
	width: 445px;
	margin-left: 30px;
}

.footer_right{
	float:right;
	color:#fff;	
	font-size:15px;
	width: 445px;
	margin-right: 30px;
}

.contents_bar_footer{
	height:35px;
	width: 435px;
	line-height:35px;
	font-size:15px;
	margin-bottom:14px;
	font-weight:600;
	padding: 0 0 0 10px;
	border: 1px solid #fff;
}

/* フッター内の住所ブロックに適用 */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner > div {
  flex: 1 1 45%; /* スマホでは縦並び、PCでは横並び */
  min-width: 280px;
  white-space: pre-line;  /* 明示的な改行は有効、勝手な折り返しは防ぐ */
  line-height: 1.6;
  word-break: keep-all;   /* 電話番号などが不自然に切れないように */
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-inner > div {
    width: 100%;
  }
}





/*footer_bottom styles
--------------------------------------------------------*/
#footer_bottom{
	width:auto;
	clear: both;
	height:36px;
	background-color:#FFFFFF;
	margin:0;
	padding:0;
	margin:0;
}

address{
	text-align:center;
	line-height:36px;
	font-size:15px;
	color:#333333;
	font-style:normal;
}