@charset "utf-8";
@import url('https://use.fontawesome.com/releases/v5.15.4/css/all.css');
/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	margin: 0;
	padding: 0;
	/*height: 100vh;*/
	scroll-padding-top: 100px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	line-height: 2;
	color: #080808;
	background-image: url("../images/bg.svg");
	background-color: rgba(255, 255, 255, 0.5);
	background-blend-mode: lighten;
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	position: relative;
}
section {
	overflow: hidden;
}
section h2 {
	font-size: clamp(1.5rem, 1.143rem + 1.14vw, 2rem);
	text-align: center;
	line-height: 2.5rem;
}
section h2 span {
	font-family: "Delius", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1rem, 0.643rem + 1.14vw, 1.5rem);
	color: #767676;
	display: block;
}
section h3 {
	font-size: clamp(1rem, 0.643rem + 1.14vw, 1.5rem);
	margin: 0;
}
table {
	border-collapse: collapse;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
iframe {
	width: 100%;
}
ul {
	list-style: none;
}
figure {
	margin: 0;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
/*スマホのみで反映*/
.spOnly {
	display: none;
}
@media screen and (max-width:1280px) {
	.spOnly {
		display: block;
	}
}
/*パソコンのみ反映*/
.pcOnly {
	display: none;
}
@media screen and (min-width:1280px) {
	.pcOnly {
		display: block;
	}
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
main a {
	color: #246A84;
	font-weight: bold;
	transition: 0.3s;
	text-decoration: none;
}
main a:hover {
	text-decoration: underline;
}
.indent1 {
	padding-left: 1em;
	text-indent: -1em;
}
.indent4 {
	padding-left: 4em;
	text-indent: -4em;
}

main ol{
	padding-left: 2em;
}
main ol li{
	margin-bottom: 0.5em;
}
/*ヘッダー
---------------------------------------------------------------------------*/
header h1 {
	margin: 0 20px;
	padding: 0;
}
.header_logo {
	z-index: 1;
}
.header_logo_cN {
	z-index: 0;
	position: absolute;
	top: 10px;
	left: 20px;
	opacity: 0;
}
#gloval-nav ul {
	margin: 0 30px;
	padding: 0;
}
#gloval-nav ul li a {
	display: block;
	font-size: 1.25rem;
	line-height: 1.5rem;
	text-decoration: none;
	position: relative;
}
#gloval-nav ul li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #246A84;
	bottom: -10px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}
#gloval-nav ul li a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}
#gloval-nav ul li a span {
	font-family: "Noto Sans JP", sans-serif;
	display: block;
	font-size: 0.75rem;
	text-align: center;
}
@media only screen and (min-width: 1281px) {
	header {
		width: 100%;
		height: 85px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		backdrop-filter: blur(10px);
		background-color: rgba(255, 255, 255, 0.5);
	}
	#nav-toggle {
		display: none;
	}
	#gloval-nav li {
		display: inline-block;
		padding: 0 20px;
		text-align: center;
		min-width: 80px;
	}
	#gloval-nav ul li a {
		color: #333;
	}
	/* スクロールで対応のsectionが現れた時 */
	header.is-active {
		color: #FFF;
	}
}
@media only screen and (max-width: 1500px) {
	#gloval-nav ul {
		margin: 0;
		padding: 0;
	}
	#gloval-nav li{
		padding: 0 10px;
	}
	#gloval-nav ul li a{
		font-size: 1rem;
	}
}
@media only screen and (max-width: 1280px) {
	header {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		background-color: #FFF;
	}
	header h1 img{
		/*width:90%;*/
	}
	#nav-toggle {
		position: fixed;
		top: 20px;
		right: 20px;
		height: 40px;
		width: 40px;
		cursor: pointer;
	}
	#nav-toggle > div {
		position: relative;
		width: 40px;
	}
	#nav-toggle span {
		width: 100%;
		height: 2px;
		left: 0;
		display: block;
		background: #274a78;
		position: absolute;
		transition: transform .6s ease-in-out, top .5s ease;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 14px;
	}
	#nav-toggle span:nth-child(3) {
		top: 28px;
	}
	.open #nav-toggle span {
		background: #fff;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		top: 14px;
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}
	#gloval-nav {
		background-color: rgba(0, 0, 0, 0.8);
		position: fixed;
		top: -100px;
		/*top: 0;*/
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.5rem;
		transform: translateX(-100%);
		transition: opacity .6s ease, visibility .6s ease;
	}
	#gloval-nav a {
		display: block;
		color: #fff;
		padding: 20px 0;
		transition: color .6s ease;
	}
	#gloval-nav ul {
		padding: 0;
	}
	#gloval-nav ul li {
		opacity: 0;
		transform: translateX(-200px);
		transition: transform .6s ease, opacity .2s ease;
	}
	#gloval-nav ul li:nth-child(2) {
		transition-delay: 0.1s;
	}
	#gloval-nav ul li:nth-child(3) {
		transition-delay: 0.2s;
	}
	#gloval-nav ul li:nth-child(4) {
		transition-delay: 0.3s;
	}
	#gloval-nav ul li:nth-child(5) {
		transition-delay: 0.4s;
	}
	.open {
		overflow: hidden;
	}
	.open #gloval-nav {
		visibility: visible;
		transform: translateX(0);
		transition: transform 1.0s;
	}
	.open #gloval-nav li {
		opacity: 1;
		transform: translateX(0);
		transition: transform 1s ease, opacity .9s ease;
	}
	#nav-toggle {
		z-index: 4;
	}
	#gloval-nav {
		z-index: 3;
	}
}
/*================================================
 *  スライドショー
 ================================================*/
.slider {
	margin-bottom: 0;
	background-color: #FFF;
}
.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}
.slider .l-mv-block {
	position: relative;
	z-index: 0;
	overflow: hidden;
}
ul.l-mv-block-slider {
	margin: 0;
	padding: 0;
	list-style: none;
}
.slider .slick-slide a {
	outline: none;
}
.slider .slick-slide img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.slider .l-mv-block-slider .slick-slide a {
	display: block;
}
.slider .l-mv-block-slider .u-slide-dots {
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .l-mv-block-slider .u-slide-dots li {
	width: 20px;
	height: 10px;
	background-color: #F1ECEB;
	cursor: pointer;
}
.slider .l-mv-block-slider .u-slide-dots li.slick-active {
	background-color: #246A84;
}
.slider .l-mv-block-slider .u-slide-dots li:not(:first-child) {
	margin-left: 15px;
}
.slick_item img {
	height: auto;
	width: 100%;
	opacity: 0.5;
	transition: opacity 0.5s;
}
.slick_item.slick-center img {
	opacity: 1;
}
.slick_text {
	position: absolute;
	z-index: 1;
	bottom: 120px;
	right: 20px;
	background: #fff;
	padding: 5px 10px;
	color: #333;
	font-size: clamp(15px, 3.0vw, 30px);
}
.news_container {
	background-color: #F1ECEB;
}
.news_contents {
	display: flex;
	padding: 15px 15px;
	background-color: var(--color-white);
}
@media screen and (max-width: 820px) {
	.news_contents {
		display: block;
	}
}
@media screen and (min-width: 820px) {
	.news_contents {
		padding: 30px 100px;
		max-width: 1200px;
		margin: auto;
	}
}
.news_titleBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 50px;
	flex-shrink: 0;
}
@media screen and (max-width: 820px) {
	.news_titleBox {
		flex-direction: inherit;
		justify-content: space-between;
	}
}
.news_block {
	padding-left: 12px;
}
@media screen and (min-width: 820px) {
	.news_block {
		padding-left: 23px;
	}
}
@media screen and (min-width: 820px) {
	.news_block {
		padding-left: 50px;
		border-left: 2px solid #d6d0c2;
		width:100%;
	}
}
.slider .news-block {
	background-color: #fafafa;
	padding: 10px 0;
}
.slider .news-block a {
	text-decoration: none;
}
.news-inner-block {
	position: relative;
	max-width: 1140px;
	padding: 0 30px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
.slider .news-block > .news-inner-block::after {
	content: "";
	clear: both;
	display: block;
}
.slider .news-block-tag {
	width: 150px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	background-color: #246A84;
}
.slider .news-block-content {
	max-width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .news-block-content .time {
	font-size: 16px;
	font-weight: bold;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.slider .news-block-content .news-content {
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	/*text-overflow: ellipsis;*/
	/*max-height: 24px;*/
}
.slider .news-block-gallery-btn {
	margin-left: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .news-block .news-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.slider .news-block .news-list .news-btn {
	width: 30px;
	height: 30px;
	background-color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: solid 1px #0E8F8A;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 1;
}
.slider .news-block .news-list .news-btn > span {
	display: block;
	position: relative;
}
.slider .news-block .news-list .news-btn > span::before {
	content: "";
	display: block;
	width: 6px;
	height: 11px;
}
.slider .news-block .news-list .news-btn:hover {
	background-color: #0E8F8A;
}
.slider .news-block .news-list .news-btn:hover.prev > span::before {
	background-image: url("../images/arrow-left-white.svg");
}
.slider .news-block .news-list .news-btn:hover.next > span::before {
	background-image: url("../images/arrow-right-white.svg");
}
.slider .news-block .news-list .news-btn.prev {
	right: 35px;
}
.slider .news-block .news-list .news-btn.prev > span::before {
	background-color: transparent;
	background-image: url("../images/arrow-left.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.slider .news-block .news-list .news-btn.next > span::before {
	background-color: transparent;
	background-image: url("../images/arrow-right.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media only screen and (min-width: 820px) {
	.news-inner-block {
		margin: 0 auto;
	}
	.slider .slick-slide img {
		/*height: 400px;*/
		max-width: 1000px;
		/*width: 41.6666666667vw;*/
	}
	.slider .l-mv-block-slider .slick-slide a {
		opacity: 0.8;
	}
	.slider .news-block-tag {
		float: left;
	}
	.slider .news-block-content {
		margin-left: 20px;
	}
	.slider .news-block-content .news-content {
		margin-left: 20px;
	}
	.slider .news-block .news-list .slick-slide {
		line-height: 40px;
	}
}
@media only screen and (max-width: 820px) {
	.news-inner-block {
		padding: 0 15px;
		width: auto;
	}
	.slider .slick-slide img {
		margin-top: 65px;
		height: 300px;
	}
	.slider .news-block {
		padding: 15px 0;
	}
	.slider .news-block-tag {
		margin-bottom: 10px;
	}
	.slider .news-block-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.slider .news-block-content .time {
		display: block;
		font-size: 12px;
	}
	.slider .news-block-content .news-content {
		font-size: 14px;
		margin-top: 6px;
	}
	.slick_item img {
		opacity: 1;
	}
	.slick_text {
		bottom: 20px;
	}
}
/*================================================
 *  パンくずリスト
 ================================================*/
.breadcrumb {
	margin: 0;
	padding: 0;
}
.breadcrumb li {
	display: inline-block; /*横に並ぶように*/
	list-style: none;
}
.breadcrumb li:after { /* ＞を表示*/
	content: '>';
	padding: 0 3px;
	color: #333;
}
.breadcrumb li:last-child:after {
	content: '';
	padding: 0;
}
.breadcrumb li a {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 15px;
	/*text-decoration: none;*/
	color: #333;
	/*background: #CCC;*/
	font-size: 0.9em;
}
.breadcrumb li a:hover {
	background: #FFF;
}
/*================================================
 *  カラム
 ================================================*/
.column {
	display: flex;
	margin: -20px 0 -20px -20px;
}
.column img {
	max-width: 100%;
}
.col_20 {
	flex-basis: 20%;
	margin: 20px 0 20px 20px;
}
.col_25 { /*4分割*/
	flex-basis: 25%;
	margin: 20px 0 20px 20px;
}
.col_75 {
	flex-basis: 75%;
	margin: 20px 0 20px 20px;
}
.col_80 {
	flex-basis: 80%;
	margin: 20px 0 20px 20px;
}
.col_50 { /*2分割*/
	flex-basis: 50%;
	margin: 20px 0 20px 20px;
}
@media screen and (max-width:1280px) {
	.column, .col_20, .col_25, .col_75, .col_80, .col_50 {
		/*width: 95%;*/
		display: block;
	}
}
/*================================================
 *  リンクボックス
 ================================================*/
ul.link_box {
	margin: 1em auto;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-around;
}
ul.link_box li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 20%;
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
ul.link_box li a {
	display: block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	border: 1px dotted #CCC;
	background-color: #FAEBE9;
	text-decoration: none;
	color: #333;
}
ul.link_box li a img {
	width: auto;
	max-width: 100%;
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
}
ul.link_box li a:hover img {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
ul.link_box li a span {
	display: block;
	padding-top: 10px;
	font-weight: bold;
}
ul.link_box li a:hover {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px 0px;
	border: 1px solid #080808;
	color: #080808;
}
@media screen and (max-width:820px) {
	ul.link_box li {
		width: 100%;
		display: block;
	}
}
ul.nav-menu li a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 1em;
	border-bottom: solid 1px #CCC;
	font-size: clamp(15px, 2.0vw, 20px);
}
ul.nav-menu li a:hover {
	color: #0E8F8A;
}
ul.nav-menu li a::after {
	position: absolute;
	font-family: "FontAwesome";
	content: "\f061";
	right: 10px;
	color: #246A84;
	transform: rotate3d(1, 0, 0, 360deg);
	transition: 2s;
}
/*================================================
 *  テーブル
 ================================================*/
table.table_yoko {
	border-collapse: separate;
	border: 0px;
}
table.table_yoko th {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px dashed #ccc;
	background: none;
	font-weight: bold;
	text-align: left;
}
table.table_yoko td {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px dashed #ccc;
}
.th_name {
	width: 7em;
}
/* 横スクロールあり */
.tableArea td {
	white-space: nowrap;
}
/*------------------------------------------
// 囲み
----------------------------------------- */
.kakomi {
	position: relative;
	margin: 2em auto;
	padding: 1.2em;
	display: inline-block;
	background-color: #FFF;
	border: 2px solid #E8E8ED;
	box-shadow: 2px 2px 1px #ccc;
}
.kakomi .kakomi-title {
	position: absolute;
	padding: 0 0.5em;
	left: 20px;
	top: -15px;
	font-weight: bold;
	background-color: #fff;
}
/*------------------------------------------
// リンクボタン
----------------------------------------- */
.btn {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	/*max-width: 240px;*/
	padding: 15px 50px 15px 30px;
	color: #FFF;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #246A84;
	filter: drop-shadow(0px 2px 4px #ccc);
	border-radius: 50px;
}
.btn::after {
	content: '' !important;
	width: 5px;
	height: 5px;
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-right: 10px;
	border-radius: 1px;
	transition: 0.3s ease-in-out;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 5px;
	text-decoration: none;
}
/*------------------------------------------
// 写真整列
----------------------------------------- */
.photo_inner {
	display: flex;
	flex-wrap: wrap;
}
.photo_card {
	margin: 0 20px 20px 0;
}
.photo_card:last-child {
	margin-right: 0px;
}
.photo_item {
	height: 213px;
	object-fit: contain;
}
@media screen and (max-width:820px) {
	.photo_inner {
		display: block;
	}
	.photo_card {
		width: 100%;
	}
}
/*------------------------------------------
// リンクアイコン自動付与
----------------------------------------- */
/* pdf要素*/
a[href*=".pdf"]:not([src*=".png"])::after {
	content: url(../images/icon_pdf.png);
}
/* Word要素*/
a[href*=".doc"]::after {
	content: url(../images/icon_word.png);
}
/* Excel要素*/
a[href*=".xls"]::after {
	content: url(../images/icon_excel.png);
}
/* zip要素*/
a[href*=".zip"]::after {
	content: url(../images/icon_zip.png);
}
/*別サイトリンク*/
a[href^="http"]:not(.no_icon)::after {
	content: url(../images/icon_external.png);
}
/* 画像拡大*/
a[href*=".jpg"], a[href*=".png"] {
	cursor: zoom-in;
}
/*メール*/
a[href^="mailto"]::after {
	content: url(../images/icon_mail.png);
}
/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	width: 100%;
	background: #246A84;
	color: #FFF;
	margin: 0 auto;
}
footer p {
	margin: 0;
	line-height: 1.5rem;
}
.footer_sitetitle {
	font-size: clamp(1rem, 0.643rem + 1.14vw, 1.5rem);
	line-height:1.7rem;
	margin-bottom: 0.5em;
}
.footer_area {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em;
	display: flex;
	justify-content:space-between;
}
.footer_area a {
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	top: 0;
	left: 0;
	transition-duration: 0.2s;
}
.footer_area a:hover {
	left: 0;
	top: -5px;
	box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
}
.footer_areaL{
	
}
.footer_areaR{
	display: flex;
}
.footer_areaR div{
	margin: 0.5em 1em;
}
.footer_link {
	font-size: clamp(1rem, 0.643rem + 1.14vw, 1.5rem);
	text-align: center;
}
.footer_mail {
	color: #FFF !important;
}
a.link_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #fff;
	width: 100%;
	height: 100px;
	padding: 1em 0.5em;
}
/*a.footer_med-niigata-u{
	font-size: clamp(13px, 1vw, 25px);
}*/
.copyright {
	clear: both;
	padding: 10px 0;
	font-size: 0.7rem;
	text-align: center;
}

@media screen and (max-width:820px) {
	.footer_area,
	.footer_areaR{
		display: block;
	}
}
/* アニメーション
------------------------------------------------------------*/
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* ページ先頭へ
----------------------------------------- */
#page_top {
	position: fixed;
	right: 0;
	bottom: 0;
	background-color: #FFF;
}
#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
	color: #274a78;
}
#page_top a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f102";
	font-size: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
/*================================================
 *  各ページのタイトルブロック
 ================================================*/
#main_bg {
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto 30px auto;
}
.title_block {
	font-size: 3rem;
	padding: 3em 0 1em 0;
}
.title_block::first-letter {
	font-weight: bold;
	font-size: 4rem;
	color: #246A84;
}
@media only screen and (max-width:820px) {
	.title_block {
		text-align: center;
		padding: 2em 0 0 0;
	}
}
/*================================================
 *  過去のお知らせ
 ================================================*/
dl.information {
	margin: 1em;
}
dl.information dt {
	float: left;
	margin: 0;
	padding: 15px 0;
	vertical-align: top;
	border-bottom: none;
	color: #534741;
	width: 9em;
}
dl.information dd {
	margin: 0;
	padding: 15px 0;
	vertical-align: top;
	border-bottom: 1px dashed #246A84;
}
span.new {
	color: #ffffff;
	font-size: 10px;
	background: #f35b69;
	position: relative;
	top: -2px;
	display: inline-block;
	margin-left: 8px;
	padding: 2px 5px;
}
@media only screen and (max-width:820px) {
	dl.information dt{
		padding: 0;
	}
	dl.information dd {
		display: block;
		clear: both;
	}
}
/* NEWアイコン */
span.new {
	color: #ffffff;
	font-size: 10px;
	background: #f35b69;
	position: relative;
	top: -2px;
	display: inline-block;
	margin-left: 5px;
	padding: 2px 5px;
}

.face {
	padding: 20px;
	position: relative;
}
.face::after {
	width: 180px;
	height: 240px;
	top: 0;
	right: 0;
	background-color: #246A84;
	position: absolute;
	z-index: -1;
	content: '';
}
/*================================================
 *  ごあいさつ
 ================================================*/
.greeting figure{
	float: right;
}
.greeting figure figcaption {
	font-size: 1.5rem;
}
.greeting figure figcaption span {
	padding: 1em 0 0 0;
	font-size: 1rem;
	line-height: 1;
	display: block;
}
@media only screen and (max-width:820px) {
	.greeting {
		margin: 1em;
	}
	.greeting figure{
		width:200px;
		margin: auto;
		float:none;
	}
	.greeting figure img{
		width: 180px;
	}
}
/*================================================
 *  メンバー
 ================================================*/
.member {
	width: 700px;
	float: right;
}
.member:nth-child(even) {
	float: left;
}
.member figure{
	float: right;
}
.member dl{
	display:flex;
	flex-wrap: wrap;
}
.member dl dt {
  width: 15%;
	margin: 0;
}
.member dl dd {
  width: 85%;
	margin: 0;
}
.member ul{
	margin: 0;
}
.member ul li{
	list-style: circle;
	margin: 0;
}
@media only screen and (max-width:820px) {
	.member {
		display: block;
		width: 90%;
		margin: 1em;
	}
	.member figure{
		width:200px;
		margin: auto;
		float:none;
	}
	.member figure img{
		width: 180px;
	}
}
/*================================================
 *  研究紹介
 ================================================*/
.research figure {
	margin: 3em 0;
	/*padding: 1em;*/
	/*outline: solid 1px #CCC;*/
}
.research figure figcaption {
	/*font-size: clamp(15px, 1vw, 25px);*/
	font-feature-settings: "palt";/*カギカッコや句読点のスペースをなくす*/
}
.research figure figcaption span{
	margin-right: 1em;
	padding: 0 0.5em;
	color: #FFF;
	background-color: #080808;
}
.modaal-gallery-label{
	text-align: left !important;
	text-indent: -4em !important;
	padding-left: 4em !important;
}
@media only screen and (max-width:820px) {
	.research {
		margin: 1em;
	}
}
/*================================================
 *  業績
 ================================================*/
@media only screen and (max-width:820px) {
	.publication {
		margin: 1em;
	}
}