@charset "utf-8";



section>.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}


/* KV */
section.kv {
	position: relative;
	background: linear-gradient(to bottom, #ffffff 50%, #E8EFF7 50%);
	padding: 10px 0 30px;
}

section.kv .carousel {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 30px;
}

section.kv .carousel .slick-list {
	overflow: visible;
}

section.kv .carousel .carousel_inner {
	border-radius: 4px;
}

section.kv .carousel .carousel_inner div {
	padding: 0 5px;
}

/* Slickカルーセル */
section.kv .carousel .carousel_inner .slick-slide {
	outline: none;
}

section.kv .carousel .carousel_inner .slick-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* prev/next ボタン */
section.kv .carousel .carousel_inner {
	position: relative;
}


section.kv .carousel .carousel_inner .slick-prev,
section.kv .carousel .carousel_inner .slick-next {
	z-index: 2;
	width: 44px;
	height: 90px;
	padding: 0;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: background-color 0.2s, background-image 0.2s;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
}

section.kv .carousel .carousel_inner .slick-prev {
	left: -50;
	background-color: #002F6C;
	background-image: url("../images/arrow_white.svg");
	transform: translate(0, -50%) scaleX(-1);
}

section.kv .carousel .carousel_inner .slick-next {
	right: -50;
	background-color: #002F6C;
	background-image: url("../images/arrow_white.svg");
	transform: translate(0, -50%);
}

/* Slickの:before矢印は使わない */
section.kv .carousel .carousel_inner .slick-prev::before,
section.kv .carousel .carousel_inner .slick-next::before {
	content: none;
	display: none;
}


/* ドット */
section.kv .carousel .carousel_inner .slick-dots {
	position: relative;
	bottom: 0;
	list-style: none;
	text-align: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 16px;
}

section.kv .carousel .carousel_inner .slick-dots li {
	display: block;
	width: 50px;
	height: 6px;
	margin: 0;
}

section.kv .carousel .carousel_inner .slick-dots li button {
	width: 50px;
	height: 6px;
	padding: 0;
	border: none;
	background: #ffffff;
}

section.kv .carousel .carousel_inner .slick-dots li.slick-active button {
	background: #285FBB;
}

section.kv .carousel .carousel_inner .slick-dots li button::before {
	display: none;
}

section.kv .hotnews {
	padding: 0 30px;
}

section.kv .hotnews .inner {
	width: 100%;
	padding: 20px 30px;
	background: #FFFFFF;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	display: flex;
	gap: 20px;
	align-items: center;
	box-sizing: border-box;
}

section.kv .hotnews .title {
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	color: #D4143A;
	white-space: nowrap;
}

section.kv .hotnews .title::before {
	content: '';
	display: inline-block;
	width: 33px;
	height: 34px;
	background: url("../images/icon_important.svg") no-repeat center/contain;
	margin-right: 15px;
	vertical-align: -45%;
}


section.kv .hotnews .content a {
	color: #ffffff;
	text-decoration: none;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #222222;
	display: block;
}
section.kv .hotnews .content a + a{
	margin-top: 5px;
}

section.kv .hotnews .content a span{
	display: block;
}



/* NEWS */
section.news {
	padding: 80px 40px;
	background: url("../images/news_bg.svg") no-repeat left top;
}

section.news .inner {
	display: flex;
	justify-content: space-between;
}

section.news .main {
	width: 67.8571%;
}

.english section.news .main{
	width: 100%;
}


section.news .sub {
	width: 27.6785%;
}

section.news .header {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 24px;
}

section.news .header .title .jp {
	font-weight: 700;
	font-size: 34px;
	line-height: 100%;
	color: #222222;
	margin-bottom: 14px;
}

section.news .header .title .en {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	color: #285FBB;
}

section.news .news_area {
	height: 400px;
	overflow-y: auto;
}

section.news table {
	border-top: 1px solid #E6E6E6;
	width: 100%;
	border-collapse: collapse;
}

section.news tr {
	height: 72px;
	transition: background-color .2s cubic-bezier(0.45, 0, 0.55, 1);
}

section.news tr:hover {
	background-color: #E8EFF7;
}


section.news td {
	border-bottom: 1px solid #E6E6E6;
	font-size: 16px;
	line-height: 150%;
}

section.news td a {
	display: block;
	padding: 10px;
	color: #000000;
	text-decoration: none;
	width: 100%;
	height: 100%;
	transition: color .2s cubic-bezier(0.45, 0, 0.55, 1);
}

section.news tr:hover td a {
	color: #285FBB;
}

section.news td img {
	display: inline-block;
	vertical-align: middle;
}


section.news tr::after {
	content: '';
	display: table-cell;
	width: 15px;
	background: url("../images/arrow_blue.svg") no-repeat center/8px;
	border-bottom: 1px solid #E6E6E6;
	padding: 10px;
}


section.news .column {
	width: 100%;
	background: #FFFFFF;
	border-radius: 4px;
	filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.15));
	overflow: hidden;
}

section.news .column>.title {
	background: #285FBB;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	color: #FFFFFF;
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

section.news .column>.content {
	padding: 24px;
	text-align: center;
}

section.news .column>.content>.image {
	display: flex;
	justify-content: center;
	margin: 0 auto 24px;
	max-width: 180px;}

section.news .column>.content>.title {
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	color: #222222;
	margin-bottom: 24px;
}

section.news .column>.content>.toindex {
	font-size: 16px;
	line-height: 100%;
	color: #285FBB;
	margin-bottom: 16px;
}

section.news .column>.content>.text {
	font-size: 16px;
	line-height: 150%;
	color: #222222;
	text-align: center;
}




/* EVENT */
section.event {
	padding: 100px 40px;
	background: url("../images/event_bg.svg") no-repeat right top, #EBF7FF;
}

section.event .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

section.event .links {
	display: flex;
	gap: 36px;
}

section.event .items {
	padding: 48px 60px;
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 57, 166, 0.08);
	border-radius: 4px;
	width: 100%;
}

section.event .items>div {
	border-top: 1px solid #E6E6E6;
	width: 100%;
}

section.event .items>div>a {
	display: block;
	width: 100%;
	border-bottom: 1px solid #E6E6E6;
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	background: url("../images/arrow_blue.svg") no-repeat right 10px center/8px;
	padding: 20px 0;
	text-decoration: none;
	color: #000000;
	transition: background-color .2s cubic-bezier(0.45, 0, 0.55, 1), color .2s cubic-bezier(0.45, 0, 0.55, 1);
}

section.event .items>div>a:hover {
	background-color: #E8EFF7;
	color: #285FBB;
}


section.event .items>div>a .upper {
	display: flex;
	margin-bottom: 12px;
}


section.event .status {
	display: flex;
	gap: 10px;
	margin-left: 16px;
}

section.event .status>div {
	padding: 2px 8px 3px;
	background: #285FBB;
	border-radius: 2px;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	color: #FFFFFF;
}

section.event .status>div.blue {
	background: #285FBB;
}

section.event .status>div.red {
	background: #D4143A;
}

section.event .status>div.black {
	background: #4D4D4D;
}

section.event .status>div.yellow {
	background: #C90;
}



/* ABOUT */
section.about {
	padding: 100px 0 100px 40px;
	background: url("../images/about_bg.svg") no-repeat left top;
}

section.about .inner {
	display: flex;
}

section.about .section_title {
	margin-bottom: 40px;
}

section.about .content {
	padding-right: 20px;
	width: 48.2759%;
}

section.about .text {
	font-size: 16px;
	line-height: 200%;
	color: #222222;
	margin-bottom: 36px;
}

section.about .image {
	width: 51.7241%;
}

section.about .buttons {
	margin-bottom: 28px;
}

section.about .buttons a {
	width: 65%;
}

section.about .links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

section.about .links a {
	width: auto;
}




/* YOUTUBE */

section.youtube {
	padding: 100px 40px;
	background: linear-gradient(0deg, rgba(35, 96, 187, 0.85), rgba(35, 96, 187, 0.85)), url("../images/youtube_bg.jpg");
}

section.youtube .thumbs {
	display: flex;
	gap: 40px;
}


section.youtube .thumbs .movieBox{
	width: 100%;
	aspect-ratio: 16 / 9;
}
section.youtube .thumbs .movieBox iframe {
  width: 100% !important;
  height: 100% !important;
}


/* LOWER */

section.lower {
	padding: 60px 40px;
	background: url("../images/event_bg.svg") no-repeat right top, #EBF7FF;
}



section.lower .sns {
	margin-bottom: 80px;
}


section.lower .sns .title {
	font-weight: 700;
	font-size: 30px;
	line-height: 100%;
	text-align: center;
	color: #222222;
	margin-bottom: 20px;
}

section.lower .sns .text {
	font-weight: 500;
	font-size: 16px;
	line-height: 180%;
	text-align: center;
	color: #222222;
	margin-bottom: 32px;
}


section.lower .torikumi {
	padding: 60px 40px 30px;
	background: #FFFFFF;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	margin-bottom: 80px;
}

section.lower .torikumi>.title {
	font-weight: 700;
	font-size: 36px;
	line-height: 130%;
	text-align: center;
	color: #285FBB;
	margin-bottom: 14px;
}

section.lower .torikumi>.text {
	font-weight: 500;
	font-size: 16px;
	line-height: 180%;
	text-align: center;
	color: #222222;
	margin-bottom: 20px;
}

section.lower .torikumi .buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	width: 100%;
	justify-content: start;
}

section.lower .torikumi .buttons a {
	width: 23.5%;
	min-width: 0;
	margin-bottom: 30px;
	text-decoration: none;
	transition: opacity .3s ease;
}

section.lower .torikumi .buttons a:hover {
	opacity: 0.5;
}

section.lower .torikumi .buttons a .image {
	border-radius: 6px;
	margin-bottom: 16px;
}
section.lower .torikumi .buttons a .image img {
	width: 100%;
}

section.lower .torikumi .buttons a .title {
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #285FBB;
	margin-bottom: 12px;
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

section.lower .torikumi .buttons a .title::after {
	display: inline-block;
	content: '';
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
	background: url("../images/arrow_white.svg") no-repeat center/6px, #285FBB;
	margin-left: 10px;
	border: 1px solid #285FBB;
	box-sizing: border-box;
	z-index: 1;
}

section.lower .torikumi .buttons a .title::before {
	background: #285FBB;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: '';
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transform: scale(0, 0);
	transform-origin: center center;
	transition: transform .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: 2;
	border: 1px solid #285FBB;
	background: url("../images/arrow_blue.svg") no-repeat center/6px, #ffffff;
}

section.lower .torikumi .buttons a:hover .title::before {
	transform: scale(1, 1);
}


section.lower .torikumi .buttons a .text {
	font-size: 16px;
	line-height: 150%;
	color: #222222;
}



section.lower>.inner>.banners {
	padding: 0 40px;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

section.lower>.inner>.banners>.banners_inner {
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

section.lower>.inner>.banners a {
	margin: 0 10px 10px;
	width: 18%;
	display: flex;
	align-items: center;
	transition: opacity .2s cubic-bezier(0.45, 0, 0.55, 1);
}

section.lower>.inner>.banners a:hover {
	opacity: 0.6;
}

section.lower>.inner>.banners>.banners_inner>img{
	width: 18%;
}

section.lower>.inner>.sns .buttons {
	display: flex;
	gap: 30px;
	/* width: 90%; */
	margin: 0 auto;
	justify-content: center;
}

section.lower>.inner>.sns .buttons a {
	width: 100%;
}
section.lower>.inner>.sns .buttons a {
	max-width: 340px;
}



section.lower>.inner>.buttons {
	display: flex;
	justify-content: center;
	gap: 30px;
}

@media screen and (min-width: 900px) {
	section.lower>.inner>.buttons a {
		width: 341px;
	}
}











/* SP */
@media screen and (max-width: 900px) {



	/* KV */
	section.kv .carousel {
		margin-bottom: 15px;
	}

	section.kv .carousel .carousel_inner {
		border-radius: 0;
	}

	section.kv .carousel .carousel_inner div {
		padding: 0;
	}
	section.kv .carousel .slick-list {
		overflow: hidden;
	}

	/* prev/next ボタン */
	section.kv .carousel .carousel_inner .slick-prev,
	section.kv .carousel .carousel_inner .slick-next {
		width: 32px;
		height: 60px;
		background-size: 16px 16px;
	}
	section.kv .carousel .carousel_inner .slick-prev {
		left: 0;
	}
	section.kv .carousel .carousel_inner .slick-next {
		right: 0;
	}

	/* ドット */
	section.kv .carousel .carousel_inner .slick-dots {
		gap: 8px;
		justify-content: end;
		margin-top: -13px;
		padding-right: 10px;
	}

	section.kv .carousel .carousel_inner .slick-dots li {
		width: 20px;
		height: 3px;
	}

	section.kv .carousel .carousel_inner .slick-dots li button {
		width: 20px;
		height: 3px;
	}

	section.kv .hotnews {
		padding: 0 30px;
	}

	section.kv .hotnews .inner {
		padding: 16px 20px;
		flex-direction: column;
		gap: 11px;
		align-items: start;
	}

	section.kv .hotnews .title {
		font-size: 16px;
	}

	section.kv .hotnews .title::before {
		width: 24px;
		height: 24px;
		margin-right: 8px;
		vertical-align: -40%;
	}

	section.kv .hotnews .content a {
		font-size: 14px;
	}






	/* NEWS */
	section.news {
		padding: 60px 15px;
	}

	section.news .inner {
		display: block;
		padding: 0 0;
	}

	section.news .main {
		width: 100%;
	}

	section.news .sub {
		width: 100%;
	}

	section.news .header {
		display: block;
		margin-bottom: 24px;
	}

	section.news .header .title .jp {
		font-size: 24px;
	}
	.english .news .header .title .jp{
		font-size: 22px;
	}

	section.news .header .title .en {
		font-size: 16px;
	}

	section.news .news_area {
		height: 327px;
		margin-bottom: 24px;
	}
	.english .news .news_area{
		margin-bottom: 0;
	}

	section.news .header .more {
		display: none;
	}


	/* section.news table {
		margin-bottom: 30px;
	} */

	section.news td{
		font-size: 14px;
	}

	section.news table td:first-child {
		display: block;
		border-bottom: none;
		padding-bottom: 0;
	}

	section.news table td:first-child a {
		padding-bottom: 0;
		font-size: 14px;
	}

	section.news table td:last-child {
		display: block;
	}

	section.news table td:last-child a {
		padding-top: 3px;
	}


	section.news .list {
		display: block;
		margin: 0 auto 50px;
		width: 80%;
		min-width: 273px;
	}





	/* EVENT */
	section.event {
		padding: 60px 20px;
	}

	section.event .header {
		display: block;
		margin-bottom: 40px;
	}

	section.event .header .section_title {
		margin-bottom: 40px;
	}

	section.event .links {
		gap: 29px;
		padding: 0 20px;
	}

	section.event .items {
		padding: 30px 15px;
		box-sizing: border-box;
	}

	section.event .items>div>a .upper {
		align-items: center;
		gap: 15px;
		margin-bottom: 10px;
	}

	section.event .items>div>a {
		padding: 20px 20px 20px 0;
		font-size: 14px;
		background-position: right 0 center;
	}

	section.event .items>div>a:hover {
		background-color: #E8EFF7;
		color: #285FBB;
	}

	section.event .status {
		margin-left: 0;
		margin-top: 0;
	}
	section.event .status>div{
		font-size: 12px;
	}




	/* ABOUT */
	section.about {
		padding: 60px 20px;
		background: url("../images/about_bg.svg") no-repeat left top;
	}

	section.about .inner {
		display: block;
	}

	section.about .section_title {
		margin-bottom: 40px;
	}

	section.about .content {
		padding-right: 20px;
		width: 100%;
	}

	section.about .text {
		font-size: 16px;
		line-height: 170%;
		color: #222222;
		margin-bottom: 36px;
	}

	section.about .image {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	section.about .buttons {
		margin-bottom: 28px;
		justify-content: center;
	}

	section.about .buttons a {
		width: 65%;
		min-width: 291px;
	}

	section.about .links {
		gap: 22px;
		margin-bottom: 30px;
	}




	/* YOUTUBE & X */

	section.youtube {
		padding: 60px 20px;
	}

	section.youtube .thumbs {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
	}

	section.youtube .content {
		padding: 40px 30px;
	}

	section.youtube .content .title {
		font-size: 22px;
	}

	section.youtube .content .buttons {
		flex-direction: column;
		gap: 16px;
		width: 100%;
		max-width: 275px;
	}

	section.youtube .content .buttons a {
		width: 100%;
	}


	/* ACCESS */
	section.access {
		padding: 40px 20px 200px;
	}

	section.access .inner {
		display: block;
	}

	section.access .content {
		width: 100%;
		margin-bottom: 30px;
	}

	section.access .map {
		width: 100%;
		height: 300px;
	}

	section.access .map iframe {
		width: 100%;
		height: 100%;
	}

	section.access .header_title {
		margin-bottom: 24px;
	}

	section.access .header_title>.jp {
		font-size: 24px;
	}

	section.access .header_title>.en {
		font-size: 16px;
	}



	/* LOWER */

	section.lower {
		padding: 40px 15px;
	}

	section.lower .sns {
		margin-bottom: 55px;
	}

	section.lower .sns .title {
		font-size: 24px;
		line-height: 150%;
		margin-bottom: 16px;
	}

	section.lower .sns .text {
		font-size: 14px;
		margin-bottom: 30px;
	}


	section.lower .torikumi {
		padding: 36px 15px 15px;
		margin-bottom: 55px;
	}

	section.lower .torikumi>.title {
		font-size: 26px;
		margin-bottom: 12px;
	}
	.english .lower .torikumi>.title{
		font-size: 20px;
	}

	section.lower .torikumi>.text {
		font-size: 14px;
		margin-bottom: 24px;
	}

	section.lower .torikumi .buttons {
		gap: 4%;
		flex-wrap: wrap;
	}

	section.lower .torikumi .buttons a {
		width: 48%;
		min-width: 0;
		margin-bottom: 20px;
		display: block;
	}


	section.lower .torikumi .buttons a .image {
		margin-bottom: 10px;
	}

	section.lower .torikumi .buttons a .title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	section.lower .torikumi .buttons a .title::after {
		width: 28px;
		height: 28px;
		min-width: 28px;
		min-height: 28px;
	}

	section.lower .torikumi .buttons a .text {
		font-size: 14px;
	}



	section.lower>.inner>.banners {
		width: 100%;
		padding: 0 5px;
		align-items: start;
	}

	section.lower>.inner>.banners>.banners_inner {
		width: 100%;
		gap: 4%;
	}

	section.lower>.inner>.banners a {
		margin: 0;
		width: 48%;
		display: block;
		margin-bottom: 12px;
	}
	section.lower>.inner>.banners a img {
		display: block;
	}

	section.lower>.inner>.banners>.banners_inner>img{
		width: 48%;
	}

	section.lower>.inner>.sns .buttons {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		width: 100%;
	}



	section.lower>.inner>.buttons {
		/* flex-direction: column; */
		gap: 5px;
	}

	section.lower>.inner>.buttons a {
		width: 100%;
		font-size: 14px;
		padding: 15px;
	}


}