@charset "utf-8";

@font-face {
	font-family: "Murecho";
	src: url("fonts/Murecho/Murecho-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Murecho";
	src: url("fonts/Murecho/Murecho-Medium.ttf") format("truetype");
	font-weight: bold;
}

/*==================共通設定====================*/

html {
/*	scroll-behavior: smooth;*/
	overflow-x: hidden;
}

html::-webkit-scrollbar {
	width: 14px;
}

html::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg,#FFD00B 0%, #F5BF1D 82%, #EFB10B 100%);
	border-radius: 14px;
}

::-webkit-scrollbar-track {
	background: #f4f4f4;
}

body {
	width: 100%;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	font-family: "Murecho",sans-serif,"Arial","Hiragino Kaku Gothic ProN","メイリオ","ヒラギノ角ゴ ProN W3","ＭＳ ゴシック";
	position: relative;
}

main {
	min-height: 400px;
}

strong {
	font-weight: bold;
}

a {
	color: #19547c;
	text-decoration: none;
	transition: all 0.5s;
}

a img {
	transition: all 0.5s;
}

a:hover {
	color: #ffd00b;
	text-decoration: none;
}

a:hover img {
	opacity: 0.8;
}

figure a:hover img {
	opacity: 0.7;
}

p {
	text-align: justify;
	line-break: strict;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

table {
	width: 100%;
	margin: 0 0 40px 0;
}

table, td, th {
border: solid 1px #e5e5e5;
}

th {
	padding: 5px 0;
	background: #40ACC7;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

td {
	padding: 5px 10px;
	text-align: left
}

figure {
	line-height: 1.2;
}

sup {
	font-size: 75%;
	vertical-align: top;
	position: relative;
	top: -0.3em;
}

sub {
	font-size: 75%;
	vertical-align: bottom;
	position: relative;
	bottom: -0.3em;
}

sup + sub {
	left: -1em;
}

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

h2 {
	padding: 10px 20px;
	background: linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 4px;
}

h3 {
	margin: 0 0 20px 0;
	padding: 8px 20px;
	color: #19547c;
	position: relative;
	font-size: 1.2rem;
	font-weight: bold;
}

h3:before,
h3:after {
	content: '';
	width: 100%;
	height: 2px;
	display: inline-block;
	background: linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
	position: absolute;
	left: 0;
}

h3:before {
	top: 0;
}

h3:after {
	bottom: 0;
}

p + h3,
ul + h3,
ol + h3 {
	margin: 40px 0 20px 0;
}

h4 {
	margin: 0 0 5px 0;
	padding: 0 20px;
	color: #19547c;
	position: relative;
	font-size: 1.1rem;
	font-weight: bold;
}

h4:before {
	content: '';
	width: 0.8rem;
	height: 0.8rem;
	display: inline-block;
	background: linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

p + h4,
ul + h4,
ol + h4 {
	margin: 15px 0 5px 0;
}

/*==================ヘッダー====================*/

header {
	width: 100%;
}

header h1 {
	margin: 0 auto;
	padding: 15px 0;
	text-align: center;
}

header h1 img {
	max-width: 380px;
}

header nav {
	width: 100%;
	background: linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
}

header nav ul {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 28% 44% 28%;
}

header nav ul li a {
	padding: 10px 20px;
	display: flex;
	justify-content: center;
	color: #fff;
	border-right: solid 1px #fff;
	letter-spacing: 2px;
	font-size: 1.1rem;
	font-weight: bold;
}

header nav ul li:first-child a {
	border-left: solid 1px #fff;
}

header nav ul li a:hover,
header nav ul li.current a {
	color: #19547c;
	background: #ffd00b;
}

/*==================スライダー====================*/

.swiper {
	margin: 0 0 60px 0;
	position: relative;
}

.swiper .swiper-slide img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
	color: rgba(255,255,255,0.8);
}

.swiper-pagination-bullet-active {
	background: rgba(255,255,255,0.8);
}

/*　最新情報　*/

.news {
	border: solid 1px #19547c;
}

.news ul {
	padding: 10px 20px 10px 20px;
	max-height: 600px;
	overflow: auto;
}

.news ul::-webkit-scrollbar {
	width: 14px;
}

.news ul::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg,#FFD00B 0%, #F5BF1D 82%, #EFB10B 100%);
	border-radius: 14px;
}

.news ul::-webkit-scrollbar-track {
	background: none;
}

.news ul li,
.news ul li a {
	padding: 20px 40px 20px 10px;
	display: grid;
	grid-template-columns: 0.8fr 6fr;
	gap: 20px;
	border-bottom: solid 1px #19547c;
	position: relative;
}

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

.news ul li:has(a) {
	display: block;
	padding: 0;
	border: none;
}

.news ul li a:hover {
	border-bottom: solid 1px #ffd00b;
}

.news ul li a:after {
	content: '\f054';
	font-family: 'Font Awesome 5 Free';
	font-size: 1.4rem;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.news ul li a[href^="http"]:after {
	content: '\f35d';
	font-family: 'Font Awesome 5 Free';
	font-size: 1rem;
}

.news ul li a[href$=".doc"]:after,
.news ul li a[href$=".docx"]:after {
	content: '\f1c2';
	font-family: 'Font Awesome 5 Free';
}

.news ul li a[href$=".xls"]:after,
.news ul li a[href$=".xlsx"]:after {
	content: '\f1c3';
	font-family: 'Font Awesome 5 Free';
}

.news ul li a[href$=".pdf"]:after {
	content: '\f1c1';
	font-family: 'Font Awesome 5 Free';
}

.news ul li a[href$=".ppt"]:after,
.news ul li a[href$=".pptx"]:after {
	content: '\f1c4';
	font-family: 'Font Awesome 5 Free';
}

/*==================トップページ====================*/

.wrapper {
	max-width: 1200px;
	margin: 0 auto 80px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 4fr 1fr;
	gap: 50px;
}

.top .news ul {
	max-height: 600px;
}

/*==================コンテンツページ====================*/

.contents .wrapper {
	padding: 60px 20px;
}

.contents .scroll {
	width: 100%;
	overflow-x: auto;
	white-space: nowrap;
}
.contents .scroll table {
	min-width: 800px;
	/*display: flex;*/
}

.contents .subNav {
	margin: 0 0 40px 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contents .subNav,
.contents .subNav li {
	list-style: none;
}

.contents .subNav a {
	display: inline-block;
	padding: 10px 36px 10px 20px;
	border: solid 2px #19547c;
	position: relative;
}

.contents .subNav a:after,
.contents .subNav a[href^="#"]:after {
	font-size: 0.9rem;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.contents .subNav a:after {
	content:'\f054';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

.contents .subNav a[href^="#"]:after {
	content:'\f13d';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

.contents .subNav a:hover {
	border: solid 2px #ffd00b;
}

.contents h2 {
	margin: 0 0 20px 0;
}

.contents article section {
	margin: 0 0 70px 0;
}

.contents article section p,
.contents article section ol,
.contents article section ul {
	margin:  0 0 20px 0;
}

.contents article section ol,
.contents article section ul {
	padding: 0 0 0 20px;
}

.contents article section li {
	margin: 0 0 5px 0;
}

.contents article section ul li {
	list-style: disc;
}

.contents article section ol li {
	list-style: decimal;
}

.contents.member article section.news h2 {
	margin: 0;
}

.contents.member article section.news ul {
	max-height: 300px;
	margin: 0;
	padding: 10px 20px 10px 20px;
}

.contents.member article section.news ul li {
	margin: 0;
}

.contents article section .ikaiNewsList {
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.contents article section .ikaiNewsList li {
	list-style: none;
	margin: 0;
	display: flex;
}

.contents article section .ikaiNewsList li a {
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ddf2f5;
	border: solid 1px #226592;
	font-weight: bold;
}

.contents article section .ikaiNewsList li a:hover {
	background: #fffbeb;
	border: solid 1px #EFB10B;
	color: #EFB10B;
}

.contents article section .menuList {
	padding: 0;
}

.contents article section .menuList li {
	list-style: none;
}

.contents article section .menuList li a {
	padding: 10px 20px;
	display: block;
	background: #40ACC7 linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 4px;
	position: relative;
}

.contents article section .menuList li a:after {
	content: '\f054';
	font-family: 'Font Awesome 5 Free';
	font-size: 1.4rem;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.contents article section .menuList li a:hover {
	background: #ffd00b;
	color: #19547c;
}

.contents article section a[href^="http"]:after,
.contents article section .menuList li a[href^="http"]:after {
	content: '\f35d';
	font-family: 'Font Awesome 5 Free';
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0 0 0 5px;
}

.contents article section a[href$=".doc"]:after,
.contents article section a[href$=".docx"]:after {
	content: '\f1c2';
	font-family: 'Font Awesome 5 Free';
	margin: 0 0 0 5px;
}

.contents article section a[href$=".xls"]:after,
.contents article section a[href$=".xlsx"]:after {
	content: '\f1c3';
	font-family: 'Font Awesome 5 Free';
	margin: 0 0 0 5px;
}

.contents article section a[href$=".pdf"]:after {
	content: '\f1c1';
	font-family: 'Font Awesome 5 Free';
	margin: 0 0 0 5px;
}

.contents article section a[href$=".ppt"]:after,
.contents article section a[href$=".pptx"]:after {
	content: '\f1c4';
	font-family: 'Font Awesome 5 Free';
	margin: 0 0 0 5px;
}

.contents article.hpList section table {
	margin: 0 0 15px 0;
}

.contents article.hpList section p.backtoPage {
	margin: 0 0 70px 0;
	text-align: end;
}

.contents article.hpList section p.backtoPage a {
	position: relative;
	padding: 0 0 0 20px;
}

.contents article.hpList section p.backtoPage a:before {
	content:'\f053';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: calc(50% + 2px);
	transform: translateY(-50%);
}

/*==================サイドバー====================*/

aside ul {
	margin: 0 0 30px 0;
	display: grid;
	grid-template-rows: 1fr;
	gap: 10px;
}

aside ul.banner a img {
	border: solid 1px #cacaca;
	box-sizing: border-box;
}

aside div.nyutaikai a {
	max-width: 300px;
	min-height: 50px;
	margin: 0 auto;
	padding: 5px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(0deg, #3191c1 0%, #40ACC7 30%, #84ddd1 100%);
	position: relative;
	border-radius: 7px;
	border-bottom: solid 5px #227392;
	transition: all 0.3s;
}

aside div.nyutaikai a:hover {
	background: linear-gradient(0deg, #56cee3 0%, #68e7e9 30%, #a7e7d2 100%);
	border-bottom: solid 2px #1d97c5;
	text-shadow: 0px 0px 4px #005d81;
	transform: translateY(3px);
	transition: all 0.3s;
}

aside ul.sideNav li {
	display: grid;
	grid-template-rows: subgrid;
}

aside ul.sideNav li a {
	padding: 8px 10px;
	display: flex;
	align-items: center;
	background: #40ACC7;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
}

aside ul.sideNav li.current a,
aside ul.sideNav li a:hover {
	background: #ffd00b;
	color: #19547c;
}

/*==================フッター====================*/

footer {
	width: 100%;
	padding: 20px 0;
}

footer nav {
	margin: 0 0 10px 0;
	border-bottom: solid 1px #19547c;
}

footer nav ul{
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 28% 44% 28%;
}

footer nav ul li a {
	padding: 10px 20px;
	display: flex;
	justify-content: center;
	letter-spacing: 2px;
	font-weight: bold;
	font-size: 1.1rem;
}

footer nav ul li.current a {
	color: #ffd00b;
}

footer p.copyRight {
	font-size: 0.8rem;
	text-align: center;
}

/*==================トップへ戻るボタン====================*/

.pageTop {
	position: fixed;
	right: 20px;
}

.pageTop a {
	width: 64px;
	height: 64px;
	border-radius: 64px;
	display: flex;
	background: #40ACC7 linear-gradient(45deg, #226592 0%, #40ACC7 87%, #53BDD0 100%);
	transition: all 0.3s;
	box-shadow: 1px 2px 1px #dfdfdf;
}

.pageTop a:hover {
	background: linear-gradient(135deg,#FFD00B 0%, #F5BF1D 82%, #EFB10B 100%);
}

.pageTop a span:before {
	content: '';
	width: 36px;
	height: 8px;
	display: inline-block;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: skew(-45deg);
}

.pageTop a span {
	width: 100%;
	margin: 0 15px;
	transform: translateY(3px) rotate(90deg);
	font-size: 0.6rem;
	color: #fff;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	line-height: 0.5;
	letter-spacing: 1px;
	transition: all 0.3s;
}

.pageTop a:hover span {
	color: #19547c;
	transform: translateY(0) rotate(90deg);
}

.pageTop a:hover span:before {
	border-bottom: 1px solid #19547c;
	border-left: 1px solid #19547c;
}


@media screen and (max-width: 950px) {
	
	.contents article section .ikaiNewsList {
		grid-template-columns: repeat(2, 1fr);
	}
	
}
	
@media screen and (max-width: 768px) {
	
	header h1 {
		padding: 10px 0; 
	}
	
	header h1 img {
		max-width: 300px;
	}
	

	header nav {
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		transform: translateX(100%);
		transition: all 0.3s;
	}
	
	header.open nav.active {
		transform: translateX(0);
	}
	
	header .navBtn {
		width: 42px;
		height: 32px;
		padding: 24px 15px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		background: rgba(255,255,255,0.7);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 110;
		cursor: pointer;
	}
	
	header.open .navBtn {
		height: 42px;
		padding: 10px 15px;
		background: none;
	}
	
	header .navBtn span {
		display: inline-block;
		width: 100%;
		max-width: 42px;
		height: 4px;
		border-radius: 3px;
		background: #19547c;
	}
	
	header.open .navBtn span {
		background: #fff;
		position: absolute;
		top: 50%;
	}
	
	header.open .navBtn span:nth-child(1) {
		transform: rotate(45deg);
	}
	
	header.open .navBtn span:nth-child(2) {
		left: 100%;
	}
	
	header.open .navBtn span:nth-child(3) {
		transform: rotate(-45deg);
	}
	
	header nav ul {
		margin: 80px 0 0 0;
		display: block;
	}
	
	header nav ul li a {
		padding: 20px;
		border-right: none;
		border-bottom: solid 1px #fff;
	}
	
	header nav ul li:first-child a {
		border-left: none;
		border-top: solid 1px #fff;
	}
	
	.swiper .swiper-slide img {
		max-height: 300px;
	}
	
	.swiper-button-prev:after,
	.swiper-button-next:after {
		font-size: calc(var(--swiper-navigation-size) * 0.8);
	}
	
	.wrapper {
		display: block;
	}
	
	main {
		margin: 0 0 50px 0;
	}
	
	.news ul {
		max-height: 400px;
	}
	
	.news ul li,
	.news ul li a {
		padding: 10px 30px 10px 10px;
	}
	
	.news ul li a:after {
		font-size: 1.2rem;
	}
	
	aside ul {
		grid-template-columns: 1fr 1fr;
	}
	
	footer nav ul {
		margin: 0 0 10px 0;
		grid-template-columns: 1fr;
	}
	
}


@media screen and (max-width: 500px) {
	
	body {
		font-size: 14px;
	}
	
	header h1 img {
		max-width: 230px;
		transform: translateX(-20px);
	}
	
	header .navBtn {
		width: 38px;
		height: 28px;
		padding: 18px 15px;
	}
	
	h2 {
		padding: 5px 10px;
		font-size: 1.3rem;
		letter-spacing: 2px;
	}
	
	h3 {
		padding: 5px 10px;
		font-size: 1.1rem;
	}
	
	h4 {
		font-size: 1rem;
	}
	
	h4:before {
		width: 0.7rem;
		height: 0.7rem;
	}
	
	.swiper {
		margin: 0 0 40px 0;
	}
	
	.swiper .swiper-slide img {
		max-height: 240px;
	}
	
	.swiper-button-prev:after,
	.swiper-button-next:after {
		font-size: calc(var(--swiper-navigation-size) * 0.6);
	}
	
	.wrapper {
		margin: 0 auto 50px;
		padding: 0 10px;
	}
	
	main {
		margin: 0 0 30px 0;
	}
	
	.top .news ul {
		padding: 5px 10px;
	}
	
	.top .news ul::-webkit-scrollbar {
		width: 8px;
	}
	
	.top .news ul li,
	.top .news ul li a {
		display: flex;
		flex-direction: column;
		gap: 3px;
	}
	
	.contents .wrapper {
		padding: 40px 10px;
	}
	
	.contents article section ol,
	.contents article section ul {
		padding: 0 0 0 20px;
	}
	
	.contents h2 {
		margin: 0 0 15px 0;
	}
	
	.contents article section {
		margin: 0 0 15px 0;
	}
	
	.contents.member article section.news ul {
		margin: 0;
		padding: 10px;
	}
	
	.contents article section .menuList li a {
		padding: 5px 10px;
		font-size: 1.3rem;
		letter-spacing: 2px;
	}
	
	footer nav ul li a {
		padding: 5px 10px;
		font-size: 1rem;
	}
	
	footer p.copyRight {
		font-size: 0.7rem;
	}
	
	.pageTop a {
		width: 56px;
		height: 56px;
	}
	
	.pageTop a span {
		margin: 0 10px;
	}
	
	.pageTop a span:before {
		width: 34px;
	}
	
}


/* 汎用設定 */
.small {
	font-size: 85.71% !important;
}
.big {
	font-size: 114.29% !important;
}

.biggest {
	font-size: 142.9% !important;
}

.al_c {
	text-align: center !important;
}

.al_l {
	text-align: left !important;
}

.al_r {
	text-align: right !important;
}

.talC {
	text-align: center !important;
}

.valM {
	vertical-align: middle !important;
}

.valT {
	vertical-align: top !important;
}



.txtRed {
	color: #C6002F !important;
}

.txtBlue {
	color: #186ba3 !important;
}

.txtBlue2 {
	color: #009299 !important;
}

.txtNavy {
	color: #15295C !important;
}

.txtSky {
	color: #4291c9 !important;
}

.txtGray {
	color: #888 !important;
}

.txtPink {
	color: #C8446F !important;
}

.txtGreen {
	color: #006600 !important;
}

.txtBrown {
	color: #59310D!important;
}

.txtYellow {
	color: #EFD03A!important;
}


.fl_l {
	float: left !important;
}
img.fl_l {
	margin: 0 15px 10px 0
}

.fl_r {
	float: right !important;
}
img.fl_r {
	margin: 0 0 15px 10px;
}

#contents .txtUline {
	text-decoration:underline !important;
}

#contents .txtStrike {
	text-decoration: line-through !important;
}

#contents .txtItalic {
	font-style: italic !important;
}

.font10px {
	font-size: 10px !important;
}
.font11px {
	font-size: 11px !important;
}
.font12px {
	font-size: 12px !important;
}
.font16px {
	font-size: 16px !important;
}
.font18px {
	font-size: 18px !important;
}
.font20px {
	font-size: 20px !important;
}
.font22px {
	font-size: 22px !important;
}
.font28px {
	font-size: 28px !important;
}


/*余白関係*/
.mrgn10 {
	margin: 10px !important;
}
.mrgn20 {
	margin: 20px !important;
}

.mb-0,
.mrgnB0 {
	margin-bottom:0 !important;
}
.mrgnB1 {
	margin-bottom:1px !important;
}

.mrgnB5 {
	margin-bottom:5px !important;
}

.mrgnB10 {
	margin-bottom:10px !important;
}

.mrgnB20 {
	margin-bottom:20px !important;
}

.mrgnB30 {
	margin-bottom:30px !important;
}

.mrgnB40 {
	margin-bottom:40px !important;
}

.mrgnB50 {
	margin-bottom:50px !important;
}

.mrgnB100 {
	margin-bottom:100px !important;
}

.mrgnT0 {
	margin-top:0 !important;
}

.mrgnT10 {
	margin-top:10px !important;
}

.mrgnT20 {
	margin-top:20px !important;
}

.mrgnT30 {
	margin-top:30px !important;
}

.mrgnT40 {
	margin-top:40px !important;
}

.mrgnT50 {
	margin-top:50px !important;
}

.mrgnR0 {
	margin-right: 0 !important;
}

.mrgnR10 {
	margin-right: 10px !important;
}

.mrgnR20 {
	margin-right: 20px !important;
}

.mrgnR30 {
	margin-right: 30px !important;
}

.mrgnR40 {
	margin-right: 40px !important;
}

.mrgnR50 {
	margin-right: 50px !important;
}
.mrgnL0 {
	margin-left: 0 !important;
}

.mrgnL10 {
	margin-left: 10px !important;
}

.mrgnL15 {
	margin-left: 15px !important;
}

.mrgnL20 {
	margin-left: 20px !important;
}

.mrgnL30 {
	margin-left: 30px !important;
}

.mrgnL40 {
	margin-left: 40px !important;
}

.mrgnL50 {
	margin-left: 50px !important;
}

.pdngT40 {
	padding-top:40px !important;
}

.pdngL0 {
	padding-left:0 !important;
}

.borderB0 {
	border-bottom: none !important;
}
/*高さ指定*/
.h60 {
	height: 60px !important;
}

.h350 {
	height: 350px !important;
}

.h370 {
	height: 370px;
}

.h390 {
	height: 390px;
}

.h400 {
	height: 400px !important;
}

