@charset "UTF-8";
/* 変数 */
/* 基礎のスタイル */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700;900&display=swap&subset=japanese");

@font-face {
	font-family: 'Noto Serif JP';
	font-style: regular;
	font-weight: 400;
	src: url("../font/NotoSerifJP-Regular.otf") format("opentype"), url("../font/NotoSerifJP-Regular.otf?#iefix") format("embedded-opentype");
}

@font-face {
	font-family: 'Noto Serif JP';
	font-style: bold;
	font-weight: 700;
	src: url("../font/NotoSerifJP-Bold.otf") format("opentype"), url("../font/NotoSerifJP-Bold.otf?#iefix") format("embedded-opentype");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	overflow-x: hidden;
}

.noto-serif-jp {
	font-family: 'Noto Serif JP', serif;
}

a {
	text-decoration: none !important;
}

* a {
	text-decoration: none !important;
	color: unset;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	line-height: 1.0;
}

ul {
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* 共通のスタイル */
header {
	padding: 20px 0 18px;
	background-color: #4d4d4d;
}

header .site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: auto;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 768px) {
	header .site-header {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	header .site-header {
		padding: 0 20px;
	}
}

header .site-header .logo {
	transition: 0.3s ease all;
}

header .site-header .logo:hover {
	opacity: 0.7;
}

header .site-header .site-header-r {
	display: flex;
	align-items: center;
	white-space: normal;
}

header .site-header .site-header-r .hamburger {
	display: none;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r .hamburger {
		display: block;
		position: fixed;
		z-index: 1003;
		right: 16px;
		top: 12px;
		width: 27px;
		height: 27px;
		cursor: pointer;
		text-align: center;
	}

	header .site-header .site-header-r .hamburger span {
		display: block;
		position: absolute;
		width: 27px;
		height: 2px;
		left: 6px;
		background: #ffffff;
		transition: 0.3s ease-in-out;
	}

	header .site-header .site-header-r .hamburger span:nth-child(1) {
		top: 10px;
	}

	header .site-header .site-header-r .hamburger span:nth-child(2) {
		top: 20px;
	}

	header .site-header .site-header-r .hamburger span:nth-child(3) {
		top: 30px;
	}

	header .site-header .site-header-r .hamburger.active span {
		background-color: #ffffff;
	}

	header .site-header .site-header-r .hamburger.active span:nth-child(1) {
		top: 16px;
		left: 6px;
		transform: rotate(-45deg);
	}

	header .site-header .site-header-r .hamburger.active span:nth-child(2),
	header .site-header .site-header-r .hamburger.active span:nth-child(3) {
		top: 16px;
		transform: rotate(45deg);
	}
}

header .site-header .site-header-r #global-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 0 0 40px;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r #global-nav {
		position: fixed;
		z-index: 1002;
		top: 0;
		display: block;
		width: 300px;
		left: 100%;
		height: 100%;
		padding: 0;
		background-color: #4d4d4d;
		transition: all 0.3s;
	}
}

header .site-header .site-header-r #global-nav .menu-list {
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r #global-nav .menu-list {
		display: block;
		margin: 0;
		padding: 85px 30px;
	}
}

header .site-header .site-header-r #global-nav .menu-list .menu-item {
	margin: 0 10px;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r #global-nav .menu-list .menu-item {
		margin: 0 0 20px;
	}
}

header .site-header .site-header-r #global-nav .menu-list .menu-item a span {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	transition: 0.3s ease all;
}

header .site-header .site-header-r #global-nav .menu-list .menu-item a span:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r #global-nav .menu-list .menu-item a span {
		font-size: 18px;
	}
}

header .site-header .site-header-r #global-nav.active {
	left: calc(100% - 300px);
}

header .site-header .site-header-r .sns-list {
	display: flex;
	align-items: center;
	margin: 0 0 0 16px;
}

@media only screen and (max-width: 768px) {
	header .site-header .site-header-r .sns-list {
		margin: 0 56px 0 0;
	}
}

@media only screen and (max-width: 480px) {
	header .site-header .site-header-r .sns-list {
		margin: 0 30px 0 0;
	}
}

header .site-header .site-header-r .sns-list .sns-item {
	margin: 0 0 0 14px;
}

header .site-header .site-header-r .sns-list .sns-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	transition: 0.3s ease all;
}

header .site-header .site-header-r .sns-list .sns-item a:hover {
	opacity: 0.7;
}

footer {
	padding: 36px 0 0;
	background-color: #d7d7d7;
}

footer .site-footer {
	position: relative;
	width: auto;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 768px) {
	footer .site-footer {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	footer .site-footer {
		padding: 0 20px;
	}
}

footer .site-footer .footer-info {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.72;
	color: #000000;
}

@media only screen and (max-width: 480px) {
	footer .site-footer .footer-info {
		font-size: 13px;
	}
}

footer .site-footer .footer-link-list {
	display: flex;
	align-items: center;
	padding: 0 0 20px;
}

footer .site-footer .footer-link-list a {
	position: relative;
	display: block;
	padding: 0 0 0 0px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.72;
	text-decoration: underline !important;
	transition: 0.3s ease all;
}

footer .site-footer .footer-link-list a:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 480px) {
	footer .site-footer .footer-link-list a {
		font-size: 14px;
	}
}

footer .site-footer .footer-link-list a:first-child {
	margin-right: 18px;
}

footer .site-footer .footer-sns-list {
	position: absolute;
	top: -20px;
	right: 20px;
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

@media only screen and (max-width: 768px) {
	footer .site-footer .footer-sns-list {
		right: 40px;
	}
}

@media only screen and (max-width: 480px) {
	footer .site-footer .footer-sns-list {
		position: relative;
		top: unset;
		right: unset;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 0 20px;
	}
}

footer .site-footer .footer-sns-list .footer-sns-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
	transition: 0.3s ease all;
}

footer .site-footer .footer-sns-list .footer-sns-item:hover {
	opacity: 0.7;
}

footer .site-footer .footer-sns-list .footer-sns-item:last-child {
	padding: 2px;
}

footer .site-footer #scroll-to-top {
	position: absolute;
	top: -90px;
	right: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
	color: #333333;
	transition: 0.3s ease all;
}

footer .site-footer #scroll-to-top:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	footer .site-footer #scroll-to-top {
		right: 40px;
	}
}

footer .copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 45px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #ffffff;
	background-color: #acacac;
}

@media only screen and (max-width: 480px) {
	footer .copyright {
		height: auto;
		padding: 10px 20px;
	}
}

main #headline {
	padding: 24px 0 48px;
}

@media only screen and (max-width: 768px) {
	main #headline {
		padding: 36px 0 28px;
	}
}

main #headline .headline-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: auto;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row {
		display: block;
		width: 100%;
		padding: 0 84px;
	}
}

@media only screen and (max-width: 480px) {
	main #headline .headline-row {
		padding: 0 20px;
	}
}

main #headline .headline-row .g-mac {
	padding: 0 20px 0 10px;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .g-mac {
		width: fit-content;
		margin: 0 auto 56px;
		padding: 0;
	}
}

main #headline .headline-row .g-mac a {
	transition: 0.3s ease all;
}

main #headline .headline-row .g-mac a:hover {
	opacity: 0.7;
}

main #headline .headline-row .headline-content {
	width: auto;
}

main #headline .headline-row .headline-content .headline-content-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 20px;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .headline-content .headline-content-top {
		display: block;
		margin: 0 0 30px;
	}
}

main #headline .headline-row .headline-content .headline-content-top .headline-search {
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .headline-content .headline-content-top .headline-search {
		margin: 0 0 30px;
	}
}

main #headline .headline-row .headline-content .headline-content-top .headline-search input[type=text] {
	width: 380px;
	height: 40px;
	padding: 0 24px;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	border: 1px solid #808080;
	outline: none;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .headline-content .headline-content-top .headline-search input[type=text] {
		width: calc(100% - 96px);
	}
}

main #headline .headline-row .headline-content .headline-content-top .headline-search button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 40px;
	margin: 0 0 0 10px;
	background-color: #b2b2b2;
	border: 1px solid #808080;
	outline: none;
	cursor: pointer;
	transition: 0.3s ease all;
}

main #headline .headline-row .headline-content .headline-content-top .headline-search button:hover {
	opacity: 0.7;
}

main #headline .headline-row .headline-content .headline-content-top .headline-search button span {
	display: block;
	width: 22px;
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse {
	padding: 0 !important;
	background-color: transparent !important;
	border: none !important;
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse td.gsib_a {
	padding: 0 !important;
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse .gsc-input-box {
	width: 390px !important;
	height: 40px !important;
	padding: 2px 24px !important;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	border: 1px solid #808080 !important;
	border-radius: 0;
	outline: none;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse .gsc-input-box {
		width: 100% !important;
	}
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse .gsc-input-box input[type=text] {
	height: 36px !important;
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse .gsc-search-button .gsc-search-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px !important;
	height: 40px;
	margin: 0 0 0 5px;
	background-color: #b2b2b2;
	border: 1px solid #808080;
	border-radius: 0;
	outline: none;
	cursor: pointer;
}

main #headline .headline-row .headline-content .headline-content-top .gsc-control-cse .gsc-search-button .gsc-search-button-v2 {
	padding: 6px !important;
}

@media only screen and (max-width: 768px) {
	main #headline .headline-row .headline-content .headline-content-top .headline-lang {
		text-align: center;
	}
}

main #headline .headline-row .headline-content .headline-content-top .headline-lang a,
main #headline .headline-row .headline-content .headline-content-top .headline-lang {
	font-size: 16px;
	font-weight: 400;
	color: #000000;
	transition: 0.3s ease all;
}

main #headline .headline-row .headline-content .headline-content-top .headline-lang a:hover {
	opacity: 0.7;
}

.wrap {
	width: 900px;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	.wrap {
		width: 100%;
		padding: 0 50px;
	}
}

@media only screen and (max-width: 480px) {
	.wrap {
		padding: 0 20px;
	}
}

.wrap.wrap-888 {
	width: 888px;
}

@media only screen and (max-width: 768px) {
	.wrap.wrap-888 {
		width: 100%;
	}
}

.sec-ttl {
	position: relative;
	margin: 0 0 40px;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.75;
	color: #15126f;
}

.sub-ttl {
	margin: 0 0 20px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.72;
	color: #333333;
}

.txt {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #000000;
}

.txt.txt-16 {
	font-size: 16px;
	line-height: 1.75;
}

.cta-link-list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.cta-link-list {
		display: block;
		margin: 0;
	}
}

.cta-link-list .cta-link-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 270px;
	height: 50px;
	padding: 0 20px 0 0;
	background-color: #15126f;
	transition: 0.3s ease all;
}

.cta-link-list .cta-link-item:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	.cta-link-list .cta-link-item {
		margin: 0 auto 24px;
	}
}

@media only screen and (max-width: 480px) {
	.cta-link-list .cta-link-item {
		width: 100%;
	}
}
@media only screen and (min-width: 769px) {
	.cta-link-list .cta-link-item:first-child {
		margin-right: 20px;
	}
}
.cta-link-list .cta-link-item:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 9px;
	width: 10px;
	height: 17px;
	background: url("../img/common/link-more.png") no-repeat;
	background-size: contain;
}

.cta-link-list .cta-link-item .text {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}

.cta-link-list .cta-link-item .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	top: calc(50% + 4px);
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 26px;
}

/* ナビーメニュー */
/* トップページのスタイル */
body.home #main-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: hidden;
	/* background: url('../img/home/mv.jpg') no-repeat;
  background-position: center;
  background-size: cover; */
}

@media only screen and (max-width: 768px) {
	body.home #main-visual {
		height: 240px;
	}
}

body.home #main-visual .mv-ttl {
	position: absolute;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 130px;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.66;
	color: #ffffff;
	background-color: rgba(21, 18, 111, 0.5);
	white-space: nowrap;
	z-index: 11;
}
body.home.lang-en #main-visual .mv-ttl {
	line-height: 1.2;
	font-size: 34px;
}

@media only screen and (max-width: 768px) {
	body.home #main-visual .mv-ttl,
	body.home.lang-en #main-visual .mv-ttl {
		width: 100%;
		height: 14vw;
		padding: 0 40px;
		font-size: 3.77vw;
	}
}

body.home #main-visual .hero {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

body.home #about {
	padding: 40px 0;
}

body.home #service {
	padding: 40px 0;
}

body.home #events .event-figure {
	position: relative;
	width: 550px;
	height: 200px;
	margin: 0 auto 24px;
	padding: 24px;
	background: url("../img/home/events.jpg") no-repeat;
	background-size: 100%;
	background-position: center;
	text-align: center;
	overflow: hidden;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	cursor: pointer;
}

body.home #events .event-figure img {
	position: relative;
	display: inline;
	z-index: 1;
}

body.home #events .event-figure:before {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(5, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	transform: scale3d(5, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

body.home #events .event-figure:hover {
	background-size: 105%;
}

body.home #events .event-figure:hover:before {
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
}

body.home #events .event-figure:hover:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 640px) {
	body.home #events .event-figure {
		width: 100%;
	}
}

body.home #events .event-figure .event-lead {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
}

body.home #events .event-figure .event-lead .event-lead-wrapper {
	width: 100%;
	padding: 0 18px;
}

body.home #events .event-figure .event-lead .event-lead-wrapper .head {
	margin: 0 0 20px;
	padding: 0 0 24px;
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}

body.home #events .event-figure .event-lead .event-lead-wrapper .body {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.5;
	color: #ffffff;
}

body.home #events .event-recent-ttl {
	margin: 0 0 20px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.66;
	color: #333333;
}

p.event-recent-ttl a {
	text-decoration: underline !important;
}

body.home #events .event-info .event-meta {
	display: flex;
	align-items: flex-start;
	min-width: 284px;
	margin: 0 0 10px;
	margin-right: 20px;
}

body.home #events .event-info .event-meta .mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.72;
	color: #ffffff;
	background-color: #8a88b7;
}

body.home #events .event-info .event-meta .text {
	width: calc(100% - 80px);
	padding: 0 0 0 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.72;
	color: #000000;
}

body.home #events .event-info p.event-meta.pdf-link {
	min-width: auto;
}

body.home #events .event-info p.event-meta.pdf-link .mark{
	background-color: #15126f;
	position: relative;
}

body.home #events .event-info p.event-meta.pdf-link .mark:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	width: 8px;
	height: 13px;
	background: url(../img/common/link-more.png) no-repeat;
	background-size: contain;
}

body.home #events .event-list {
	margin: 0 0 40px;
}

body.home #events .event-list .event-list-ttl {
	margin: 0 0 20px;
	padding: 0 0 16px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.8;
	color: #333333;
	border-bottom: 1px solid #808080;
}

body.home #events .event-list .event-item {
	margin: 0 0 20px;
	padding: 0 6px;
}

body.home #events .event-list .event-item .event-item-ttl {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.66;
	color: #333333;
	text-decoration: underline !important;
	transition: 0.3s ease all;
}

body.home #events .event-list .event-item .event-item-ttl:hover {
	opacity: 0.7;
}

body.home #events .event-list .event-item .event-item-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 10px 0 0;
}

body.home #events #events-recent {
	padding: 0 0 40px;
}

@media only screen and (max-width: 768px) {
	body.home #events #events-recent {
		padding: 0 50px 40px;
	}
}

@media only screen and (max-width: 480px) {
	body.home #events #events-recent {
		padding: 0 20px 40px;
	}
}

body.home #events #events-recent .event-info {
	width: 570px;
	margin: 0 auto 24px;
}

@media only screen and (max-width: 768px) {
	body.home #events #events-recent .event-info {
		width: 100%;
	}
}

body.home #events #events-recent .event-recent-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 33px;
	margin: 0 auto;
	padding-right: 16px;
	background-color: #15126f;
	transition: 0.3s ease all;
}

body.home #events #events-recent .event-recent-link:hover {
	opacity: 0.7;
}

body.home #events #events-recent .event-recent-link:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	width: 8px;
	height: 13px;
	background: url("../img/common/link-more.png") no-repeat;
	background-size: contain;
}

body.home #events #events-recent .event-recent-link span {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
}

body.home #events #events-past {
	position: relative;
}

body.home #events #events-past .event-past-link {
	position: absolute;
	top: 14px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 142px;
	height: 33px;
	padding-right: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	background-color: #999999;
	transition: 0.3s ease all;
}

body.home #events #events-past .event-past-link:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	body.home #events #events-past .event-past-link {
		position: relative;
		top: unset;
		right: unset;
		margin: 0 auto;
	}
}

body.home #events #events-past .event-past-link:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	width: 8px;
	height: 13px;
	background: url("../img/common/link-more.png") no-repeat;
	background-size: contain;
}

body.home #news .news-block {
	position: relative;
	padding: 40px 0 0;
}

body.home #news div#seed-01 div.news-block {
	padding-top: 0;
}

@media only screen and (max-width: 768px) {
	body.home #news .news-block .news-list {
		padding: 0 0 20px;
	}
}

body.home #news .news-block .news-list .news-list-ttl {
	margin: 0 0 20px;
	padding: 20px 0;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.72px;
	color: #333333;
}

body.home #news .news-block .news-list .news-list-ttl.ttl-2 {
	margin-top: 40px;
}

body.home #news .news-block .news-list .news-item {
	display: flex;
	align-items: flex-start;
	margin: 0 0 20px;
}

body.home #news .news-block .news-list .news-item .date {
	width: 84px;
	padding: 2px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #000000;
}

@media only screen and (max-width: 768px) {
	body.home #news .news-block .news-list .news-item .date {
		line-height: 1.7;
	}
}

body.home #news .news-block .news-list .news-item .link {
	width: calc(100% - 84px);
	padding: 2px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
/*	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;*/
	text-decoration: underline !important;
	transition: 0.3s ease all;
}

body.home #news .news-block .news-list .news-item .nolink {
	width: calc(100% - 84px);
	padding: 2px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none !important;
	transition: 0.3s ease all;
}
body.home #news .news-block .news-list .news-item .addfree {
/*	width: calc(100% - 84px);*/
	width: 100%;
	padding: 2px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: unset;
	transition: 0.3s ease all;
}
body.home #news .news-block .news-list .news-item .addfree a {
	text-decoration: underline !important;
}

body.home #news .news-block .news-list .news-item .link:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	body.home #news .news-block .news-list .news-item .link,
	body.home #news .news-block .news-list .news-item .nolink  {
		white-space: unset;
		line-height: 1.7;
	}
}

body.home #news .news-block .news-block-link {
	position: absolute;
	top: 54px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 142px;
	height: 33px;
	padding-right: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	background-color: #999999;
	transition: 0.3s ease all;
}

body.home #news .news-block .news-block-link:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	body.home #news .news-block .news-block-link {
		position: relative;
		top: unset;
		right: unset;
		margin: 0 auto;
	}
}

body.home #news .news-block .news-block-link:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	width: 8px;
	height: 13px;
	background: url("../img/common/link-more.png") no-repeat;
	background-size: contain;
}

body.home #register {
	padding: 40px 0 110px;
}

body.home #register .register-txt {
	margin: 0 0 40px;
}

body.home #register .register-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0 0 20px;
}

@media only screen and (max-width: 768px) {
	body.home #register .register-list {
		justify-content: center;
		margin: 0 0 40px;
	}
}

body.home #register .register-list .register-item {
	transition: 0.3s ease all;
}

body.home #register .register-list .register-item:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	body.home #register .register-list .register-item {
		width: 33.3333%;
		margin: 0 0 20px;
	}
}

body.home #register .register-list .register-item .register-item-fig {
	text-align: center;
}

body.home #register .register-list .register-item .register-item-fig img {
	width: fit-content;
	margin: 0 auto;
}

body.home #register .register-list .register-item .register-item-txt {
	text-align: center;
}

body.home #register textarea {
	width: 100%;
	height: 150px;
	resize: none;
	margin: 60px 0 0;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #808080;
}

body.home #register .facebook {
	width: 100%;
	margin: 40px 0 0;
	text-align: center;
}

body.home #sponsors {
	padding: 40px 0;
}

body.home #sponsors .sponsors-slide {
	margin: 0 0 20px;
	padding: 0 40px;
}

body.home #sponsors .sponsors-slide-item {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.home #sponsors .sponsors-slide-item img {
	width: 120px;
	height: 40px;
	object-fit: contain;
	transition: 0.3s ease all;
}

body.home #sponsors .sponsors-slide-item img:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	body.home #sponsors .sponsors-slide-item {
		padding: 0 20px;
	}
}

body.home #sponsors .slick-track {
	/* 追加 */
	display: flex;
	align-items: center;
}

body.home #sponsors .slick-prev {
	left: 10px;
	width: 17px;
	height: 40px;
	background: url("../img/common/slide-prev.png") no-repeat;
	z-index: 1;
}

body.home #sponsors .slick-prev::before {
	content: none;
}

body.home #sponsors .slick-next {
	right: 10px;
	width: 17px;
	height: 40px;
	background: url("../img/common/slide-next.png") no-repeat;
	z-index: 1;
}

body.home #sponsors .slick-next::before {
	content: none;
}

/*----- wpml_language_selector -----*/
body.home .wpml-ls-legacy-list-horizontal {
	padding: 0; 
	display: inline-block;
	border: 0;
}
body.home .wpml-ls-legacy-list-horizontal a {
	padding: 0;
}
body.home .wpml-ls-legacy-list-horizontal a span {
	vertical-align: unset;
}

/*----- wp-pagenavi -----*/
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 14px;
}

/*----- body.top -----*/
.new_event_item {
	margin-bottom: 40px;
}
body.home #events .event-list .event-item .event-item-ttl.nolink {
	text-decoration: none !important;
}

/*----- body.sub -----*/
body.sub section.news {
	margin-bottom: 100px;
}
body.sub .pager {
	text-align: center;
}
body.sub .pager .wp-pagenavi {
	margin-top: 80px;
}

/*----- body.sub -----*/
.event-nav ul {
	display: flex;
	font-weight: bold;
	flex-wrap: wrap;
	margin-bottom: 60px;
	font-size: 18px;
	color: #cccccc;
}
.event-nav ul li {
	margin: 0 16px 20px 16px
}
.event-nav ul li.current {
	color: #15126f;
}

/*----- member_login .popup -----*/
.member_login .popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
}
.member_login .popup.show {
	display: flex;
}
.member_login .popup .outer_box {
	position: relative;
}
.member_login .popup button.close {
	position: absolute;
	right: 0;
	bottom: 100%;
	padding: 0;
	width: 97px;
	height: 41px;
	line-height: 41px;
	background-color: #959595;
	color: #fff;
	font-size: 16px;
}
.member_login .popup .in_box {
	padding: 60px 40px;
	width: 610px;
	max-width: calc(100vw - 40px);
	max-height: 90vh;
	overflow-y: auto;
	background-color: #fff;
}
.member_login .popup .in_box > *:first-child { margin-top: 0; }
.member_login .popup .in_box > *:last-child { margin-bottom: 0; }
.member_login .popup h2 {
	text-align: center;
	margin-bottom: 34px;
}
.member_login .popup .fields {
	padding: 0 20px;
}
.member_login .popup .field {}
.member_login .popup .field + .field {
	margin-top: 27px;
}
.member_login .popup .field + .field.btn {
	margin-top: 39px;
	text-align: center;
}
.member_login .popup .field input[type="text"] {
	height: 56px;
	padding: 0 19px;
	font-size: 18px;
	width: 80%;
}
.member_login .popup .field button[type="submit"] {
	position: relative;
	/*display: flex;*/
	align-items: center;
	justify-content: center;
	width: 270px;
	height: 50px;
	padding: 0 20px 0 0;
	background-color: #999999;
	transition: 0.3s ease all;

	max-width: 100%;
	padding: 10px;
	height: 50px;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	border: none;
	margin-bottom: 20px;
	cursor: pointer;
/*	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 5px;
	background-image: url(../img/ico_arrow_link_w.png);*/
}
.member_login .popup .field button[type="submit"] span:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 9px;
	width: 10px;
	height: 17px;
	background: url(../img/common/link-more.png) no-repeat;
	background-size: contain;
}
.member_login .popup .field button[type="submit"]:hover {
	opacity: 0.7;
}
.member_login .popup .field span.label {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	width: 15%;
}
.member_login .popup .field .msg {
	display: block;
	margin-top: 20px;
	color: #e44;
	background-color: rgba(238, 68, 68, 0.14);
	padding: 0.5em;
}
.member_login .popup .field .msg.empty {
	display: none;
}
.member_login .popup .field.btn .desc {
	text-align: left;
}
.member_login .popup .cta-link-list .cta-link-item {
	margin: 0 auto;
	width: 270px;
}
.member_login .popup .limit-link .cta-link-list .cta-link-item {
	background-color: #999999;
	cursor: pointer;
}
.member_login .popup p.contact-link {
	margin: 30px 50px 0;
}
.member_login .popup p.contact-link a {
	text-decoration: underline !important;
}
@media screen and (max-width : 768px) {
	.member_login .popup .in_box {
		padding: 30px 20px;
	}
	.member_login .popup .fields {
		padding: 0 12px;
	}
	.member_login .popup .field span.label {
		font-size: 16px;
	}
	.member_login .popup p.contact-link {
		margin: 30px 14px 0;
	}
}
/*----- pageTop -----*/
#pageTop {
	position: fixed;
	bottom: 220px;
	right: 20px;
}

#pageTop i {padding-top: 6px}

#pageTop a {
	display: block;
	z-index: 999;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	padding:5px;
	line-height:1.2em;
	font-size:12.6px;
	background-color: #666;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}