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

a {
	color: #0C35DB;
}
a:hover {
	color: #4ABEEE;
	text-decoration: underline;
	transition: .4s;
}

.subtitle1 {
	font-weight: bold;
	font-size: 20px;
	color: #C5571B;
	margin-top: 35px;
	margin-bottom: 12px;
}
.subtitle2 {
	font-weight: bold;
	font-size: 20px;
	color: #C5571B;
	margin-bottom: 12px;
}


/* コンテンツタイトル */
.contitle_box {
	width: 100%;
	padding-top: 220px;
	padding-bottom: 50px;
	background-image: url("../img/41105.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
.contitle_box h2 {
	margin: 0;
	padding: 0;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 5px;
	color: #fff;
}


/* コンテンツ枠 */
.contents_box {
	width: 100%;
	margin: 70px 0;
}
.contents_inner {
	width: 900px;
	margin: 0 auto;
}

/* 見出し */
.midashi01 {
	position: relative;
	color: #003189;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 30px;
}
.midashi01:before {
	content: "";
	position: absolute;
	background: #ffbe2c;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
  /* border: dashed 1px white; */
	left: -15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
}

/* テキスト */
.contents_txt {
	line-height: 1.8em;
}
.contents_txt2 {
	line-height: 1.8em;
	margin-top: 30px;
}
.contents_txt3 {
	line-height: 1.8em;
	margin-bottom: 30px;
}

/* テキスト内画像 */
.img-right {
	float: right;
	clear: both;
	width: 300px;
	margin: 8px 0 8px 20px;
}


/* 中国帰国者研究センター */
.sub_menu {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	background: #6484cc;
}
.sub_menu ul {
	display: flex;
    justify-content: center;
}
.sub_menu li {
	margin: 0 20px;
}
.sub_menu img {
	height: 45px;
}

/* 中国帰国者研究を志す人へ */
.about_book_txt {
	background-color: #FAEFE2;
	border-radius: 25px;
	padding: 25px;
	margin-bottom: 30px;
}
.about_book_txt p {
	line-height: 1.7em;
}

/* Q&A */
.qa_question {
	background: url("../img/qa_q.png") no-repeat top left;
	height: 85px;
	padding-left: 75px;
	padding-top: 20px;
	font-size: 20px;
	font-weight: bold;
	margin-top: 50px;
}
.qa_answer {
	background-color: #bedafc;
	border-radius: 25px;
	padding: 25px;
}
.qa_answer_txt {
	background: url("../img/qa_a.png") no-repeat top left;
	line-height: 1.7em;
	padding-left: 70px;
}


/* アーカイブ */
.contents-list {
	margin-top: 30px;
}
.contents-list li:nth-child(1) {
	border-top: solid 1px #d1dfed;
}
.contents-list-con {
	padding: 20px 0;
	border-bottom: solid 1px #d1dfed;
}
.contents-list-01 {
	display: flex;
}
.contents-list-data {
	color: #003893;
	font-weight: bold;
	line-height: 1.3em;
	padding-top: 3px;
}
.contents-list-category1 {
	position: relative;
  display: inline-block;
	margin-left: 25px;
	padding: 3px 20px;
	background: #005bc9;
	color: #fff;
	font-size: 14px;
	height: 28px;
}
.contents-list-category2 {
	position: relative;
  display: inline-block;
	margin-left: 25px;
	padding: 3px 20px;
	background: #e59900;
	color: #fff;
	font-size: 14px;
	height: 28px;
}
.contents-list-title {
	margin-top: 10px;
	margin-left: 10px;
	line-height: 1.5em;
	font-weight: bold;
	font-size: 18px;
}
.contents-list-txt {
	margin-top: 5px;
	margin-left: 10px;
	line-height: 1.5em;
	color: #002e72;
	width: 100%;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* リンク */
.link-table {
	width: 100%;
	border: 1px solid #AAC6E1;
	border-collapse: collapse;
}
.link-table th,td {
	border: 1px solid #AAC6E1;
	padding: 12px;
}

.link-table a {
	color: #0C35DB;
}
.link-table a:hover {
	color: #4ABEEE;
	text-decoration: underline;
	transition: .4s;
}

.link-img {
	width: 400px;
	margin: 50px auto 0 auto;
}


/* お問い合わせ */
.contact-img {
	width: 480px;
	margin: 50px auto 0 auto;
}


/* フォーム全体のスタイル */
form {
    background-color: white;
    width: 90%;
    max-width: 600px;
    margin: auto;
    text-align: left;
}
/* ラベルのスタイル */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}
/* 入力欄のスタイル */
input, textarea {
    width: 100%; /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
/* テキストエリアの高さを調整 */
textarea {
    resize: vertical;
    height: 120px;
}
/* 送信ボタンのスタイル */
.contact_btn {
    background-color: #0C3192;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
	border-radius: 5px;
    cursor: pointer;
}


/* 記事ページ・カテゴリー付き */
.article-date {
	color: #00227F;
	font-weight: bold;
	margin-bottom: 20px;
}
.article-title {
	color: #272727;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
}
.article-box {
	background: #F4EFE8;
	padding: 25px;
	border-radius: 25px;
	margin-bottom: 20px;
}
.article-txt {
	line-height: 1.8em;
}
.article-category {
	background: #BFD2EF;
	border-radius: 25px;
	padding: 10px 25px;
	width: fit-content;
	color: #222222;
	margin-bottom: 50px;
}



/*ページネーション*/

.page_nation {
	margin-top: 25px;
	text-align: center;
}

/*横並びにする*/
.nav-links .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*ページタブの共通スタイル*/
.nav-links a.page-numbers ,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    margin-right: 25px;
    text-align: center;
    color: #303030;
    font-weight: bold;
    font-size: 16px;
}

/*マウスが乗った時の、ボタンの背景の色と文字の色*/
.nav-links a.page-numbers:hover {
    color: #103EAF;
}

/*現在のページのタブ*/
.nav-links .current {
    color: #264FA8;
	font-size: 20px;
    padding: 0;
}

/*前への「＜」、次への「＞」*/
.nav-links a.prev,
.nav-links a.next {
    color: #103EAF;
    position: relative;
    font-size: 16px;
}

/*縦線の共通CSS*/
.nav-links .next::before,
.nav-links .prev::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/*「次へ」の前の縦線位置*/
.nav-links .next::before {
    left: -15px;
}

/*「前へ」の後の縦線位置*/
.nav-links .prev::after {
    right: -15px;
}

/*数字省略の「・・・」*/
.nav-links .dots {
    background: transparent;
    border: none;
}




/*固定ページのページネーション*/

/* ページ中央に設置 */
.pnavi {
    text-align: center;
	margin-top: 25px;
}

/* 現在開いている以外のページのボタン */
.pnavi .page-numbers {
    margin-right: 25px;
    text-align: center;
    color: #303030;
    font-weight: bold;
    font-size: 16px;
}

/* マウスが乗った時の、ボタンの背景の色と文字の色 */
.pnavi a.page-numbers:hover {
    color: #103EAF;
}


/* 現在のページのボタン */
.pnavi .current {
    padding: 0;
    color: #264FA8;
	font-size: 20px;
}

/* 前へ、次へ */
.pnavi .prev,
.pnavi .next {
    color: #103EAF;
    position: relative;
    font-size: 16px;
}

.pnavi a.next.page-numbers {
    margin-right: 0;
}

/*  縦線の共通CSS　*/
.pnavi .next::before,
.pnavi .prev::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/*  「次へ」の前の線　*/
.pnavi .next::before {
    left: -15px;
}

/*  「前へ」の後の線　*/
.pnavi .prev::after {
    right: -15px;
}

/* 数字の間のドット */
.pnavi .dots {
    background: transparent;
    border: none;
}










