@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;600&display=swap');


/* メニューのメディアクエリ値のオリジナルは以下の通り */
/* @media screen and (min-width : 961px) */
/* @media screen and (max-width : 960px) */
/* ニュースのメディアクエリ値は別途指定 */

/* 2024.3.29 メニューのメディアクエリをそれぞれ 1011px, 1010px に修正 */

/* CSS Document */

*, *:before, *:after {
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-padding-top: 100px;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: YakuHanJP, "Noto Sans Japanese", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75em;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
img {
	display: block;
	width: 100%;
}

/*====================================

	loader

====================================*/ 

.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 999999999;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loader img {
	width: 200px;
}

/*====================================

	wp_rotate

====================================*/

.wp_rotate {
	background: #fff;
	z-index: 100000;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	position: fixed;
}
.wp_rotate span {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp_rotate img {
	width: 200px;
}

/*====================================

	wrap_outframe

====================================*/

.wrap_outframe {
	width: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

/*====================================

	#header

====================================*/

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	background: #111926;
}
.header .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
}
.header .inner h1 {
	width: 140px;
}
.header .inner .nav {
	position: absolute;
	top: 30px;
	right: 110px;
}
.header .inner .nav ul {
	height: 100%;
}
.header .inner .nav ul li {
	float: left;
	height: 100%;
}
.header .inner .nav ul li a {
	display: block;
	color: #000;
	font-size: 100%;
	text-decoration: none;
	position: relative;
	padding: 0 8px;
	z-index: 1;
	transition: all .3s ease;
	font-family: 'Zen Old Mincho', serif;
	line-height: 1em;
	color: #fff;
}
.header .inner .nav ul li a::after{
	content: '';
	background: linear-gradient(to bottom right, #7b1082, #336ed6);
	width: 100%;
	height: 20%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	z-index: -1;
}
.header .inner .nav ul li a:hover {
	color: #fff;
}
.header .inner .nav ul li a:hover::after{
	transform-origin: left top;
	transform: scale(1, 1);  
}
.header .inner .nab_bar {
	display: none;
}
.header .inner .sns {
	position: fixed;
	top: 24px;
	right: 120px;
}
.header .inner .sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 70px;
}
.header .inner .sns ul li {
	width: 45%;
}
.header .inner .sns ul li a {
	display: block;
}
@media screen and (max-width : 1010px) {
	.header {
		display: none;
	}
}

/*====================================

	#header

====================================*/

.language {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 10;
}
.language a {
	font-size: 140%;
	font-family: 'Zen Old Mincho', serif;
	color: #fff;
}

/*====================================

	#language_pc

====================================*/

.language_pc {
	font-size: 100%;
	position: fixed;
	right: 20px;
	top: 24px;
	z-index: 10;
}
.language_pc a {
	text-decoration: none;
	font-size: 100%;
	font-family: 'Zen Old Mincho', serif;
	color: #fff;
}
.language_pc a:hover {
	text-decoration: underline;
}
@media screen and (max-width : 1010px) {
	.language_pc {
		display: none;
	}
}

/*====================================

	.sp_header

====================================*/

@media screen and (min-width : 1011px) {
	.sp_header {
		display: none;
	}
}
@media screen and (max-width : 1010px) {
	.sp_header {
		background: #111926;
		height: 60px;
		position: fixed;
		z-index: 10;
		width: 100%;
	}
	.sp_header .logo {
		position: fixed;
		top: 16px;
		left: 16px;
		width: 100px;
	}
	.sp_header nav,
	.sp_header .navbar-toggle {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.sp_header nav {
		position: fixed;
		z-index: 10;
		background-color: rgba(17,25,38, 0.95);
		width: 100%;
		height: 100%;
		/*display: table;*/
		color: white;
		padding-top: 60px;
	}
	.sp_header .nav-hide {
		display: none;
	}
	.sp_header nav ul {
		/*display: table-cell;
		vertical-align: middle;*/
		padding-left: 0 !important;
	}
	.sp_header nav ul li {
		text-align: left;
	}
	.sp_header nav ul li a {
		font-family: 'Zen Old Mincho', serif;
		line-height: 1em;
		color: #fff;
		font-size: 160%;
		text-decoration: none;
		padding: 10px 0 10px 1em;
		display: block;
	}
	.sp_header .navbar-toggle {
		position: fixed;
		top: 16px;
		right: 16px;
		width: 45px;
		height: 45px;
		z-index: 20;
		cursor: pointer;
	}
	.sp_header .bar1,
	.sp_header .bar2,
	.sp_header .bar3 {
		width: 100%;
		height: 3px;
		margin-bottom: 10px;
		background-color: #fff;
		transition: all 0.3s ease-in-out;
	}
	.sp_header .navbar-on .bar1,
	.sp_header .navbar-on .bar2,
	.sp_header .navbar-on .bar3 {
		background-color: white;
	}
	.sp_header .navbar-on .bar1 {
		transform-origin: 10% 40%;
		transform: rotate(45deg);
	}
	.sp_header .navbar-on .bar3 {
		transform-origin: 10% 40%;
		transform: rotate(-45deg);
	}
	.sp_header .navbar-on .bar2 {
		background-color: transparent;
	}
	.sp_header .sns {
		position: fixed;
		left: 30px;
		bottom: 30px;
	}
	.sp_header .sns ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 120px;
	}
	.sp_header .sns ul li {
		width: 40%;
		padding: 0 !important;
		margin: 0 !important;
	}
	.sp_header .sns ul li a {
		display: block;
		padding: 0 !important;
		margin: 0 !important;
	}
}

/*====================================

	bread

====================================*/

.bread {
	padding: 0 60px;
	margin-bottom: 40px;
}
.bread ul {
}
.bread ul li {
	float: left;
	margin-right: 10px;
}
.bread ul li:after {
	content: '▶';
	font-size: 50%;
	display: inline;
}
.bread ul li:last-child:after {
	content: none;
}
.bread ul li a {
	font-family: 'Zen Old Mincho', serif;
	text-decoration: underline;
	color: #000;
	font-size: 90%;
}
.bread ul li a:hover {
	text-decoration: none;
}
.bread ul li p {
	font-family: 'Zen Old Mincho', serif;
	color: #000;
	display: inline-block;
}

/*====================================

	page_ttl

====================================*/

.page_ttl {
	background-size: cover;
	margin-bottom: 40px;
	padding-top: 400px;
}
.page_ttl_ph_none {
	margin-bottom: 40px;
	padding-top: 82px;
}
.page_ttl h2,
.page_ttl_ph_none h2 {
	width: 100%;
	color: #fff;
	text-align: center;
	font-family: 'Zen Old Mincho', serif;
	line-height: 1em;
	font-size: 5vw;
	background: rgba(6, 48, 116, .7);
	display: flex;
    align-items: center;
    padding: 10px 0;
}
.page_ttl h2:before,
.page_ttl_ph_none h2:before,
.page_ttl h2:after,
.page_ttl_ph_none h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}
.page_ttl h2:before,
.page_ttl_ph_none h2:before {
    margin-right: 1em;
}
.page_ttl h2:after,
.page_ttl_ph_none h2:after {
    margin-left: 1em;
}
.page_ttl .h2_ex {
	background: rgba(255, 255, 255, .7);
	width: 100%;
	display: table;
	padding: 40px 60px;
}
.page_ttl .h2_ex .tl {
	display: table-cell;
	vertical-align: middle;
	width: 300px;
	font-family: 'Zen Old Mincho', serif;
	font-size: 150%;
}
.page_ttl .h2_ex .inn {
	display: table-cell;
	vertical-align: middle;
	font-family: 'Zen Old Mincho', serif;
	font-size: 120%;
}

/*====================================

	page_ttl_ph_none

====================================*/

.page_ttl_ph_none {
}

/*====================================

	about_sub_nav

====================================*/

.about_sub_nav {
	padding: 0 60px;
}
.about_sub_nav ul {
}
.about_sub_nav ul li {
	float: left;
	margin-bottom: 10px;
}
.about_sub_nav ul li:nth-child(3),
.about_sub_nav ul li:nth-child(5),
.about_sub_nav ul li:nth-child(6) {
	margin-right: 20px;
}
.about_sub_nav ul li a {
	font-family: 'Zen Old Mincho', serif;
	color: #000;	
	background: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	border: 1px solid #000;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	border-radius: 20px;
	display: inline-block;
	line-height: 1em;
	padding: .4em 1em;
	font-size: 110%;
}
/* .about_sub_nav ul li a:hover {
	border: 1px solid #fff;
	background: linear-gradient(to bottom right, #7b1082, #336ed6);
	color: #fff;
} */
.about_sub_nav ul li:nth-child(1) a,
.about_sub_nav ul li:nth-child(2) a,
.about_sub_nav ul li:nth-child(3) a {
	background: #eddfff;
}
.about_sub_nav ul li:nth-child(4) a,
.about_sub_nav ul li:nth-child(5) a {
	background: #e6eeff;
}
.about_sub_nav ul li:nth-child(6) a {
	background: #e2fff5;
}
.about_sub_nav ul li:nth-child(7) a {
	background: #ffffe2;
}
.about_sub_nav ul li:nth-child(1) a:hover,
.about_sub_nav ul li:nth-child(2) a:hover,
.about_sub_nav ul li:nth-child(3) a:hover,
.about_sub_nav ul li:nth-child(4) a:hover,
.about_sub_nav ul li:nth-child(5) a:hover,
.about_sub_nav ul li:nth-child(6) a:hover,
.about_sub_nav ul li:nth-child(7) a:hover {
	border: 1px solid #fff;
	color: #111;
}

/*====================================

	section

====================================*/

section {
	padding: 80px 60px;
}
section h3 {
	font-family: 'Zen Old Mincho', serif;
	font-size: 300%;
	line-height: 1em;
	margin-bottom: 60px;
	position: relative;
}
section h3:after {
	content: '';
	width: 100px;
	height: 2px;
	background: #000;
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -20px;
}

/*====================================

	news_list

====================================*/

.news_list {
	padding: 60px 40px;
}
.news_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.news_list ul::after {
	content: "";
	display: block;
	width: 32%;
}
.news_list ul li {
	width: 32%;
	margin-bottom: 40px;
}
.news_list ul li a {
	display: block;
	height: 100%;
	height: 240px;
	color: #000;
	text-decoration: none;
	position: relative;
}
@media screen and (max-width : 1000px) {
	.news_list ul li {
		width: 48%;
		margin-bottom: 40px;
	}
	.news_list ul li a {
		display: block;
		height: 100%;
		height: 300px;
		color: #000;
		text-decoration: none;
		position: relative;
	}
}
.news_list ul li a .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.9);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	padding: 20px;
}
.news_list ul li a .text .cate {
	font-family: 'Zen Old Mincho', serif;
	border: 1px solid #ccc;
	display: inline-block;
	border-radius: 20px;
	line-height: 1em;
	padding: .4em 1em;
	font-size: 80%;
	margin-bottom: 10px;
	position: absolute;
	top: 10px;
	right: 20px;
}
.news_list ul li a .text .date {
	font-family: 'Zen Old Mincho', serif;
	line-height: 1em;
	font-size: 90%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 4px;
	margin-bottom: 4px;
}
.news_list ul li a:hover {
}
.news_list ul li a .text .ttl {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 90%;
	line-height: 1.25em;
	font-family: 'Zen Old Mincho', serif;
}
.news_list ul li a:hover .text {
	background: rgba(255, 255, 255, 0.9);
}

/*====================================

	pager

====================================*/

.pager>.pagination {
	text-align: center;
	margin: 0;
	padding: 0;
}
.pager>.pagination p {
	display: inline;
	margin: 0 2px;
	padding: 0;
	display: inline-block;
	background:#3762CC;
	width: 50px;
	height: 50px;
	text-align: center;
	position: relative;
}
.pager>.pagination p a{
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display:table;
	color: #fff;
	text-decoration: none;
}
.pager>.pagination p a span{
	display:table-cell;
	vertical-align:middle;
}
.pager>.pagination p a:hover,
.pager>.pagination p a.active{
	color: #000;
	background: #fff;
}

/*====================================

	btn

====================================*/

.btn {
	width: 100%;
	text-align: center;
}
.neon-btn,
.neon-btn_sml {
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	font-family: 'Zen Old Mincho', serif;
}
.neon-btn {
	padding: 1em 6em;
	border-radius: 30px;
}
.neon-btn_sml {
	padding: .8em 4em;
	border-radius: 30px;
}
.neon-btn,
.neon-btn_sml {
	color: #111926;
	background: #fff;
}
.neon-btn:hover,
.neon-btn_sml:hover {
	background: linear-gradient(to bottom right, #7b1082, #336ed6);
	color: #fff;
}

/*====================================

	footer

====================================*/

.footer {
	padding: 0 60px;
}
.footer .inner {
    position: relative;
}
.footer .inner .content {
	padding: 30px 0;
}
.footer .inner .content .ft_logo {
	width: 200px;
	float: left;
}
.footer .inner .content .footer_icon {
	float: right;
}
.footer .inner .footer_icon ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 400px;
}
.footer .inner .footer_icon ul li {
	width: 47%;
	border: 1px solid #ccc;
	padding: 10px;
	background: #fff;
	display: flex;
  align-items: center;   /* 縦の中央揃え */
}
.footer .inner .link {
	margin-bottom: 20px;
}
.footer .inner .link ul {
	display: flex;          /* ← flex化 */
  align-items: center;    /* 垂直方向で中央揃え */
  list-style: none;       /* 点を消す */
  margin: 0;
  padding: 0;
}
.footer .inner .link ul li {
	margin-right: 10px; /* 個々のliに余白をつける */
}
.footer .inner .link ul li a {
	display: inline-block;
	text-decoration: underline;
	color: #000;
	font-family: 'Zen Old Mincho', serif;
}
.footer .inner .link ul li a:hover {
	text-decoration: none;
}
.footer .inner .link ul li a img {
  display: block;
}
.footer .inner .link ul li a img.icon-x {
  width: 26px;  /* 少し小さめ */
}
.footer .inner .link ul li a img.icon-fb {
  width: 30px;  /* 基準 */
}
.footer .inner .link ul li a img.icon-yt {
  width: 34px;  /* 少し大きめ */
}
.footer .inner .address_s {
	margin-bottom: 20px;
}
.footer .inner .address_s p {
	font-family: 'Zen Old Mincho', serif;
}
.footer .inner .address_s p a {
	/* display: block; */
	display: inline;
	color: #000;
}
.footer .inner .address_s p a:hover {
	text-decoration: none;
}
.footer .copywright {
	border-top: 1px solid #000;
	width: 100%;
	padding: 20px 0;
}
.footer .copywright p {
	width: 100%;
	text-align: center;
	font-size: 80%;
	color: #000;
	font-family: 'Zen Old Mincho', serif;
}





















