@charset "utf-8";


* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
		font-family: Arial, sans-serif;
		max-width: 600px;
		margin: auto;
		padding: 0px;
		background-color: #f2f2f2;
		color: #333;
}


.wrapper {
		background-color: #f2f2f2;
		max-width: 960px;
		width: 100%;
		margin: auto;
}

h2 {
		text-align: center;
		color: #444;
		      margin:30px;
}

section,
article {
	display: block;
}

img {
	vertical-align: top;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}

a:hover img {
	filter: brightness(120%);
}

li {
	list-style-type: none;
}

a {
	color: #0099CC;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}
a:hover {
	color: #00CCCC;
	text-decoration: none;
}

table {
	border-collapse: collapse;
}
table td {
	border-collapse: collapse;
}

.clfix:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

/*header-------------------------------------------*/

/* ヘッダーの初期状態 */
#header {
		position: fixed; /* ヘッダーを固定 */
		top: 0;
		left: 0;
		width: 100%;
		height: 80px; /* 初期高さ */
		background-color: #285181;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		transition: height 0.3s, padding 0.3s; /* アニメーションを追加 */
		z-index: 1000; /* 他の要素より前面に表示 */
		margin: 0 auto;
}

/* ロゴの初期状態 */
#logo {
		width: 100%; /* 親要素（<h1>）の幅に合わせる */
		display: block;
		transition: width 0.3s; /* アニメーションを追加 */
}

/* スクロール時のヘッダーの状態 */
#header.shrink {
		height: 60px !important; /* 縮小後の高さ */

}

/* スクロール時のロゴの状態 */
#header.shrink #logo {
		width: 125px !important; /* 縮小後の幅 */
}
/*---------- ハンバーガーメニュー ----------------*/
			/* ハンバーガーメニューのコンテナ */
		.hamburger-menu {
				width: 30px;
				height: 25px;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
				cursor: pointer;
				margin-right: 20px;
						}

		/* 三本線のスタイル */
		.hamburger-menu .line {
				width: 100%;
				height: 3px; /* 線の太さ */
				background-color: #fff; /* 線の色 */
				border-radius: 2px; /* 角を少し丸く */
		}

		/* ナビゲーションメニュー */
		.nav-links {
				list-style: none;
				display: none; /* デフォルトで非表示 */
				flex-direction: column;
				position: absolute;
				top: 60px; /* ヘッダーの高さに合わせる */
				right: 0px;
				background-color: #285181;
				padding: 10px;
				height:100vh;
				width: 180px; /* メニューの幅を固定 */
				margin: 0;

		}

		.nav-links.active {
				display: flex; /* メニュー表示時に表示 */
							padding:20px;
		}

		.nav-links ul {
				margin: 10px 0;

				text-align: right;
		}

		.nav-links li {
				margin: 20px 0;
				text-align: right;
		}

		.nav-links a {
				color: #fff;
				text-decoration: none;
				font-size: 20px;
		}

		.nav-links a:hover {
				color: #f4c10f; /* ホバー時の色 */
		}
/*---------- ハンバーガーメニュー ----------------*/


/*メインコンテンツ-------------------------------------------*/

.content h2 i {
	padding: 10px;
	color: #71F0BD;
}

.content h2 span {
	  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", sans-serif;
	font-size: 24px;
	color: #285181;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.content h2 span.small {
	font-size: 18px;
	font-weight: normal;
	color: #555;
}

.content h3 {
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 30px;
	position: relative;
	margin-top: 30px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 44px;
	font-weight: normal;
	color: #2E94AD;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", sans-serif;

	clear: both;
	letter-spacing: 0.05em;
}

.content h3::after {
	display: block;
	width: 3px;
	height: 20px;
	position: absolute;
	top: 20px;
	left: 20px;


	content: '';
}

.content h3 span {
	font-size: 15px;
	color: #555;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	padding-left: 15px;
}
.content h4 {
	font-size: 20px;
	color: #597E84;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #ADC4C7;
	letter-spacing: 0.1em;
	padding: 10px;
	font-weight: bold;
	clear: both;
	margin-top: 20px;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 30px;
}

.content p {
	font-size: 16px;
	padding: 10px;
	margin-bottom: 30px;
	margin-top: 20px;
	margin-right: 30px;
	margin-left: 30px;
}

.content .ul_news li {
	font-size: 16px;
}
.content .ul_news li a span.date {
	padding-right: 20px;
	color: #888;
}

.content .ul_news li span.i_con {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #F90;
	color: #FFF;
	margin-right: 5px;
}
.content .ul_news li span.i_con.cl2 {
	background-color: #36BEAD;
}

.content .ul_news li a {
	display: block;
	color: #333;
	line-height: 30px;
	padding: 20px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	text-decoration: none;
}

.content .ul_news li a:hover {
	color: #000;
	background-color: #FFF;
}



.content p.check {
	color: #FF3333;
}
.content p.p_st {
	font-size: 20px;
	color: #CA28B1;
}

.content .cont_wrap .txt_box {
	background-color: #E6EDEE;
	padding: 20px;
	margin: 20px;
}
.content .cont_wrap .txt_box h3 {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	padding-right: 0px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #B6CACD;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	color: #333;
}
.content .cont_wrap .txt_box h3::after {
	display: none;
}







/* FQA-------------------------------------------------------------- */
.faq-section {
    margin: 10px 10px 20px 10px;
		padding:20px;

}

.faq-item {
    margin-bottom: 0px; /* faq-item同士の間隔を適切に設定 */
}

.faq-question {
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-top: 1px solid #ddd; /* 上の区切り線 */

}

.faq-question h2 {
    text-align: left;
    margin: 0;
    padding-left: 0px; /* あなたが出したpadding */
		padding:15px 0;
    font-weight: normal;
    line-height: 1.6; /* 行間調整 */
    display: flex;
    align-items: center; /* 垂直方向に中央揃え */
}

.faq-question h2 span {
    font-size: 16px;
    text-align: left;
    margin: 0;
    font-weight: bold;
}

.faq-answer {
    display: none;
    margin-bottom: 10px;
    padding-left: 15px; /* あなたが出したpadding */
    font-size: 14px;
		color:#404040;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
		color:#404040;
}
/* FQA-------------------------------------------------------------- */


/* footer-------------------------------------------------------------- */

footer {
					color: #345;
					clear: both;
					width: 100%;
					max-width: 600px;
					display: block;
					padding-top: 20px;
					border-bottom-width: 10px;
					border-bottom-style: solid;
					border-bottom-color: #285181;
					z-index: 9;
					height: 210px;
					bottom: 0;
					background-color: #f2f2f2;
			}

address {
					clear: both;
					font-size: 15px;
					font-style: normal;
					color: #285181;
					padding-top: 20px;
					text-align: center;
					letter-spacing: 1px;
					height: 60px;
			}
/* footer-------------------------------------------------------------- */






















@media screen and (max-width:960px){

body {
	font-size: 16px;
	background-color: #f2f2f2;
}

body.fixed {
	overflow: hidden;
	background-color: #f2f2f2;
}

img {
	max-width: 100% !important;
	height: auto;
	width /***/:auto;
	margin-left:auto;
	margin-right:auto;
}

.content h4 {
	margin-right: 10px;
	margin-left: 10px;
}
}







/*
フッター
-------------------------------------------*/







/*-- /～960px --*/




.content {
	display: block; /* または flex など */
    opacity: 1; /* 透明度を確認 */
    visibility: visible; /* 可視性を確認 */
	margin-top: 0;
	padding-bottom: 0;
	z-index: 20;
	position: relative;
	height:auto;
	margin-bottom: 220px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	background-color: #fff;
}

.content p {

}

.img_left,
.img_right {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	max-width: 100%;
}



.content .ul_news li span.date {
	padding-right: 0px;
	display: block;
}



.loop_wrap {
  width: 400%;
}

.box_cont {
	padding-right: 10px;
	padding-left: 10px;
}

.box_cont .box_c_in {
	width: 100%;
	padding: 5px;
}

.content .cont_wrap .txt_box {
	margin-left: 0px;
	margin-right: 0px;
}
}



@media screen and (max-width:460px){

input,
textarea {
	max-width: 300px !important;
}

.content table.table_01 th,
.content table.table_01 td {
	width: 100% !important;
	display: block;
}

.content table.table_01 th {
	background-color: #F6F6F6;
}



.content h2 {
	font-size: 24px;
}
