@charset "UTF-8";
.page-color01 {
	--page-color: #0118ED;
	--page-color-rgb: 1, 24, 237;
}

.page-color02 {
	--page-color: #BE363C;
	--page-color-rgb: 190, 54, 60;
}

.page-color03 {
	--page-color: #F4B802;
	--page-color-rgb: 244, 184, 2;
}

.page-color04 {
	--page-color: #79C403;
	--page-color-rgb: 121, 196, 3;
}

.page-color05 {
	--page-color: #008234;
	--page-color-rgb: 0, 130, 52;
}

.page-color06 {
	--page-color: #0080D3;
	--page-color-rgb: 0, 128, 211;
}

.page-color07 {
	--page-color: #4B389E;
	--page-color-rgb: 75, 56, 158;
}

.page-color08 {
	--page-color: #FFA84D;
	--page-color-rgb: 255, 168, 77;
}

.page-color09 {
	--page-color: #CF89FB;
	--page-color-rgb: 207, 137, 251;
}

.c-ggmap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.c-ggmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.c-movie,
.c-youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.c-movie iframe,
.c-movie video,
.c-youtube iframe,
.c-youtube video {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.m-link-close {
	pointer-events: none;
}

.m-blk {
	color: #3a3a3a;
}

.m-white {
	color: #ffffff;
}

.m-bold {
	font-weight: bold;
}

.m-en {
	font-family: "Figtree", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.m-itr {
	font-style: italic;
}

.m-relative {
	position: relative;
}

.m-text {
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-weight: 400;
}
@media screen and (max-width: 767px) {
	.m-text {
		font-size: 1.4rem;
		line-height: 2;
	}
}

.m-upper {
	text-transform: uppercase;
}

.m-hoverTxt {
	display: inline-block;
	position: relative;
	--border-color: #ffffff ;
}
.m-hoverTxt::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--border-color);
	-webkit-transition: 0.3s width;
	transition: 0.3s width;
	width: 0;
}
@media (any-hover: hover) {
	.m-hoverTxt:hover {
		opacity: 1;
	}
	.m-hoverTxt:hover::after {
		width: 100%;
	}
}

@media print, screen and (min-width: 768px) {
	a.m-tellink[href^="tel:"] {
		pointer-events: none;
	}
}
.slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slick-slide {
	height: auto;
}

body {
	opacity: 0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
body.is-visible {
	opacity: 1;
}

/*------------ animation ---------------*/
.c-fadeup {
	opacity: 0;
	-webkit-transform: translateY(3rem);
	        transform: translateY(3rem);
}
.c-fadeup.js-animeOn {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.c-faderight {
	opacity: 0;
	-webkit-transform: translateX(-3rem);
	        transform: translateX(-3rem);
}
.c-faderight.js-animeOn {
	opacity: 1;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.c-slide-right {
	opacity: 0;
	-webkit-transform: translateX(5rem);
	        transform: translateX(5rem);
}
.c-slide-right.js-animeOn {
	opacity: 1;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.js-animeOn.-delay1 {
	-webkit-transition-delay: 0.5s;
	        transition-delay: 0.5s;
}
.js-animeOn.-delay2 {
	-webkit-transition-delay: 1s;
	        transition-delay: 1s;
}
.js-animeOn.-delay3 {
	-webkit-transition-delay: 1.5s;
	        transition-delay: 1.5s;
}

.c-imgHover__img {
	position: relative;
	overflow: hidden;
}
.c-imgHover__img::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 133, 235, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
	opacity: 0;
	visibility: hidden;
}
.c-imgHover__img img {
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
}
@media (any-hover: hover) {
	.c-imgHover:focus-visible, .c-imgHover:hover {
		opacity: 1;
	}
	.c-imgHover:focus-visible .c-imgHover__img::after, .c-imgHover:hover .c-imgHover__img::after {
		opacity: 1;
		visibility: visible;
	}
	.c-imgHover:focus-visible .c-imgHover__img img, .c-imgHover:hover .c-imgHover__img img {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
}

/*--------------- under-mv ---------------*/
.c-under-mv {
	position: relative;
	height: 56rem;
}
@media screen and (max-width: 767px) {
	.c-under-mv {
		height: 39.3rem;
	}
}
.c-under-mv__bg {
	width: 100%;
	height: 100%;
}
.c-under-mv__bg img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
}
.c-under-mv__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 9.2rem 0 4rem;
}
@media screen and (max-width: 767px) {
	.c-under-mv__content {
		padding-top: 6.4rem;
		padding-bottom: 1.6rem;
	}
}
.c-under-mv__content .l-content-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}
.c-under-mv__title {
	margin-top: 1.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid #ffffff;
	color: #ffffff;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-under-mv__title {
		margin-top: 0.8rem;
		padding-top: 0.8rem;
	}
}
.c-under-mv__title::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -2px;
	left: 0;
}
.c-under-mv__title .title-en {
	font-size: 2.2015rem;
	font-style: italic;
	font-weight: 700;
	line-height: 160%; /* 3.5224rem */
	letter-spacing: 0.066rem;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
	.c-under-mv__title .title-en {
		font-size: 1.4rem;
		letter-spacing: 0.042rem;
	}
}
.c-under-mv__title .title-jp {
	font-size: 4rem;
	font-weight: 500;
	line-height: 160%; /* 6.4rem */
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
	.c-under-mv__title .title-jp {
		font-size: 2.2rem;
	}
}
.c-under-mv__box {
	margin-top: auto;
	width: 78rem;
	max-width: 100%;
	padding: 4rem;
	border-radius: 1.4rem;
	background: rgba(255, 255, 255, 0.9);
	position: relative;
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
	.c-under-mv__box {
		padding: 2.4rem;
	}
}
.c-under-mv__box .c-title-type03 {
	margin-top: 0;
}
.c-under-mv__box .chara {
	position: absolute;
	bottom: -0.8rem;
	right: -8.2rem;
	width: 12.2rem;
}
@media screen and (max-width: 767px) {
	.c-under-mv__box .chara {
		width: 7.5rem;
		top: -4rem;
		right: 0;
		bottom: auto;
	}
}
.c-under-mv.-course {
	height: 77rem;
}
@media screen and (max-width: 767px) {
	.c-under-mv.-course {
		height: auto;
	}
	.c-under-mv.-course .c-under-mv__bg {
		height: 61.7rem;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	.c-under-mv.-course .c-under-mv__content {
		height: auto;
		position: relative;
	}
	.c-under-mv.-course .c-under-mv__box {
		margin-top: 28.3rem;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
}
.c-under-mv.-en-title .c-scroll-entitle {
	position: absolute;
	bottom: 3.3rem;
	left: 0;
}
@media screen and (max-width: 767px) {
	.c-under-mv.-en-title .c-scroll-entitle__wrap p {
		font-size: 4.8rem;
	}
}

/*--------------- under-page -----------*/
.c-under-page {
	padding: 12rem 0;
}
@media screen and (max-width: 767px) {
	.c-under-page {
		padding: 4rem 0 8rem;
	}
}
.c-under-page + .c-under-page {
	padding-top: 0;
}
.c-under-page .c-under-editor p {
	margin: 2rem 0;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
}
@media screen and (max-width: 767px) {
	.c-under-page .c-under-editor p {
		font-size: 1.4rem;
		letter-spacing: 0.042rem;
		text-align: justify;
	}
}
.c-under-page .c-under-editor p.-white {
	color: #ffffff;
}
.c-under-page .c-text, .p-news .p-news__main .c-under-page p, .c-under-page ol, .c-under-page ul {
	margin: 2rem 0;
}
.c-under-page strong {
	font-weight: bold;
}
.c-under-page .m-tac {
	text-align: center;
}
.c-under-page .m-tar {
	text-align: right;
}
.c-under-page a:not(.c-btn__inn) {
	color: #0118ED;
}
.c-under-page ol, .c-under-page ul {
	margin: 2rem 0;
}
.c-under-page ul li {
	padding-left: 1em;
	text-indent: -1em;
}
.c-under-page ul li::before {
	content: "・";
}
.c-under-page ol {
	counter-reset: listnum;
	list-style: none;
}
.c-under-page ol li {
	padding-left: 1.8em;
	position: relative;
}
.c-under-page ol li::before {
	counter-increment: listnum;
	content: counter(listnum) ".";
	width: 1.5em;
	position: absolute;
	left: 0;
	text-align: right;
}
.c-under-page *:first-child {
	margin-top: 0;
}
.c-under-page *:last-child {
	margin-bottom: 0;
}

.c-under-section {
	margin: 6.4rem 0;
}
@media screen and (max-width: 767px) {
	.c-under-section {
		margin: 8rem 0;
	}
}
.c-under-section:first-of-type {
	margin-top: 0;
}
.c-under-section:last-of-type {
	margin-bottom: 0;
}
.c-under-section > *:first-child {
	margin-top: 0;
}
.c-under-section > *:last-child {
	margin-bottom: 0;
}

.c-full-image {
	margin: 6.4rem auto;
}

/*------- scroll-entitle---------*/
.c-scroll-entitle {
	overflow: hidden;
	width: 100%;
}
.c-scroll-entitle__wrap {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: scrollLoop 200s linear infinite;
	        animation: scrollLoop 200s linear infinite;
	mix-blend-mode: hard-light;
}
@media screen and (max-width: 767px) {
	.c-scroll-entitle__wrap {
		-webkit-animation: scrollLoop 150s linear infinite;
		        animation: scrollLoop 150s linear infinite;
	}
}
.c-scroll-entitle__wrap .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.c-scroll-entitle__wrap p {
	color: #0085EB;
	font-size: 14rem;
	font-style: italic;
	font-weight: 700;
	line-height: 115%; /* 14rem */
}
@media screen and (max-width: 767px) {
	.c-scroll-entitle__wrap p {
		font-size: 6.4rem;
	}
}
@-webkit-keyframes scrollLoop {
	from {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
@keyframes scrollLoop {
	from {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}

/*--------------- pankz -----------------*/
.c-pankz__list {
	color: #ffffff;
}
.c-pankz__list li {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 160%; /* 2.56rem */
	display: inline;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
	.c-pankz__list li {
		font-size: 1.2rem;
	}
}
.c-pankz__list li + li::before {
	content: "";
	width: 1.2em;
	height: 1.2em;
	background-image: url(../images/common/arrow_pankz.svg);
	background-repeat: no-repeat;
	background-size: 1rem 0.8rem;
	background-size: contain;
	background-position: center center;
	display: inline-block;
	position: relative;
	top: 0.3rem;
	margin: 0 0.5em;
}

/*------------------- btn ---------------*/
@media screen and (max-width: 767px) {
	.c-btn {
		width: 100%;
		min-height: 4.2rem;
	}
}
.c-btn__inn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 0.4rem 4rem 0.5rem 4rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #0118ED;
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 160%; /* 2.56rem */
	border-radius: 100vh;
	gap: 1.2rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.c-btn__inn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		min-height: 4.2rem;
		height: 100%;
		font-size: 1.6rem;
		border: none;
	}
}
.c-btn__inn::before, .c-btn__inn::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 100vh;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
}
.c-btn__inn::before {
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	opacity: 1;
}
.c-btn__inn::after {
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.5)), to(rgba(0, 24, 238, 0.5))), #FFF;
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.5) 0%, rgba(0, 24, 238, 0.5) 100%), #FFF;
	border: 1px solid #00A3EB;
	opacity: 0;
}
@media (any-hover: hover) {
	.c-btn__inn:focus-visible, .c-btn__inn:hover {
		opacity: 1;
		background: #00A3EB;
	}
	.c-btn__inn:focus-visible::after, .c-btn__inn:hover::after {
		opacity: 1;
	}
}
.c-btn .text {
	position: relative;
	z-index: 1;
	line-height: 1.2;
}
.c-btn .icon {
	position: relative;
	z-index: 1;
}
.c-btn .arrow {
	position: relative;
	z-index: 1;
	-webkit-transition: 0.3s color;
	transition: 0.3s color;
}
@media screen and (max-width: 767px) {
	.c-btn .arrow {
		display: none;
	}
}
.c-btn .arrow svg {
	display: block;
	position: relative;
	top: 0.1rem;
}
.c-btn.-white .c-btn__inn {
	border: 1px solid #00A3EB;
	background-color: #ffffff;
	background-image: none;
	color: #0118ED;
}
.c-btn.-white .c-btn__inn::before {
	border-color: #00A3EB;
	background: #ffffff;
}
@media (any-hover: hover) {
	.c-btn.-white .c-btn__inn:focus-visible, .c-btn.-white .c-btn__inn:hover {
		color: #ffffff;
		background: #00A3EB;
	}
	.c-btn.-white .c-btn__inn:focus-visible .arrow, .c-btn.-white .c-btn__inn:hover .arrow {
		color: #ffffff;
	}
}
.c-btn.-white .arrow {
	color: #0118ED;
}
@media print, screen and (min-width: 768px) {
	.c-btn.-arrow .c-btn__inn {
		padding-right: 2.4rem;
	}
}
.c-linkBtn {
	height: 8.8rem;
}
.c-linkBtn__inn {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 2.4rem 3.2rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	border-radius: 2rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	.c-linkBtn__inn {
		padding: 2.4rem;
	}
}
.c-linkBtn__inn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.5)), to(rgba(0, 24, 238, 0.5))), #FFF;
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.5) 0%, rgba(0, 24, 238, 0.5) 100%), #FFF;
	opacity: 0;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
}
.c-linkBtn__inn > * {
	position: relative;
}
.c-linkBtn__inn .text {
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 160%; /* 3.52rem */
}
@media screen and (max-width: 767px) {
	.c-linkBtn__inn .text {
		font-size: 1.4rem;
	}
}
.c-linkBtn__inn .arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 4rem;
	height: 4rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-image: url(../images/common/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
	.c-linkBtn__inn .arrow {
		width: 3rem;
		height: 3rem;
	}
}
@media (any-hover: hover) {
	.c-linkBtn__inn:focus-visible, .c-linkBtn__inn:hover {
		opacity: 1;
	}
	.c-linkBtn__inn:focus-visible::before, .c-linkBtn__inn:hover::before {
		opacity: 1;
	}
}

.c-linkImgBtn a.c-linkImgBtn__inn {
	display: block;
	color: #3a3a3a;
	height: 100%;
	position: relative;
}
@media (any-hover: hover) {
	.c-linkImgBtn a.c-linkImgBtn__inn:focus-visible, .c-linkImgBtn a.c-linkImgBtn__inn:hover {
		opacity: 1;
	}
	.c-linkImgBtn a.c-linkImgBtn__inn:focus-visible .img img, .c-linkImgBtn a.c-linkImgBtn__inn:hover .img img {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
	.c-linkImgBtn a.c-linkImgBtn__inn:focus-visible .c-btn__inn::after, .c-linkImgBtn a.c-linkImgBtn__inn:hover .c-btn__inn::after {
		opacity: 1;
	}
}
.c-linkImgBtn .img {
	border-radius: 2rem;
	overflow: hidden;
	height: 35rem;
}
@media screen and (max-width: 767px) {
	.c-linkImgBtn .img {
		height: 24.1rem;
	}
}
.c-linkImgBtn .img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
}
.c-linkImgBtn .title {
	margin: 2rem 0 !important;
}
@media screen and (max-width: 767px) {
	.c-linkImgBtn .title {
		margin: 2.4rem 0 !important;
	}
}
.c-linkImgBtn .title + .c-text, .c-linkImgBtn .p-news .p-news__main .c-under-page .title + p, .p-news .p-news__main .c-under-page .c-linkImgBtn .title + p, .c-linkImgBtn .c-under-page .title + ol, .c-under-page .c-linkImgBtn .title + ol, .c-linkImgBtn .c-under-page .title + ul, .c-under-page .c-linkImgBtn .title + ul {
	margin-top: -0.8rem;
}
.c-linkImgBtn .c-text, .c-linkImgBtn .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .c-linkImgBtn p, .c-linkImgBtn .c-under-page ol, .c-under-page .c-linkImgBtn ol, .c-linkImgBtn .c-under-page ul, .c-under-page .c-linkImgBtn ul {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
.c-linkImgBtn .c-text + .c-btn, .c-linkImgBtn .p-news .p-news__main .c-under-page p + .c-btn, .p-news .p-news__main .c-under-page .c-linkImgBtn p + .c-btn, .c-linkImgBtn .c-under-page ol + .c-btn, .c-under-page .c-linkImgBtn ol + .c-btn, .c-linkImgBtn .c-under-page ul + .c-btn, .c-under-page .c-linkImgBtn ul + .c-btn {
	margin-top: 2rem;
}
.c-linkImgBtn .c-btn {
	margin-top: 2rem;
}

.c-linkCntBtn a.c-linkCntBtn__inn {
	display: block;
	color: #3a3a3a;
}
@media (any-hover: hover) {
	.c-linkCntBtn a.c-linkCntBtn__inn:focus-visible, .c-linkCntBtn a.c-linkCntBtn__inn:hover {
		opacity: 1;
	}
	.c-linkCntBtn a.c-linkCntBtn__inn:focus-visible .c-btn__inn::after, .c-linkCntBtn a.c-linkCntBtn__inn:hover .c-btn__inn::after {
		opacity: 1;
	}
}
.c-linkCntBtn .cnt {
	padding: 4rem 6.4rem;
	border-radius: 2rem;
	overflow: hidden;
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.12)), to(rgba(0, 24, 238, 0.12)));
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.12) 0%, rgba(0, 24, 238, 0.12) 100%);
	min-height: 35rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media screen and (max-width: 767px) {
	.c-linkCntBtn .cnt {
		padding: 2.4rem 1.6rem;
	}
}
.c-linkCntBtn .cnt-text {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 160%; /* 2.88rem */
	letter-spacing: 0.054rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 9;
}
.c-linkCntBtn .title {
	margin: 2rem 0 !important;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
	.c-linkCntBtn .title {
		margin: 2.4rem 0 !important;
	}
}

.c-linkDownload a.c-linkDownload__inn {
	display: block;
	color: #3a3a3a;
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.12)), to(rgba(0, 24, 238, 0.12)));
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.12) 0%, rgba(0, 24, 238, 0.12) 100%);
	border-radius: 2rem;
	overflow: hidden;
	padding: 2.4rem 3.2rem;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media (any-hover: hover) {
	.c-linkDownload a.c-linkDownload__inn:focus-visible, .c-linkDownload a.c-linkDownload__inn:hover {
		opacity: 1;
	}
	.c-linkDownload a.c-linkDownload__inn:focus-visible .c-btn__inn::after, .c-linkDownload a.c-linkDownload__inn:hover .c-btn__inn::after {
		opacity: 1;
	}
}
.c-linkDownload .title {
	margin: 0 0 2.4rem;
	text-align: center;
}

/*--------------- 背景枠付きカラム------------------*/
.c-graduateComment__inn {
	padding: 7.2rem 4rem;
	border-radius: 2rem;
	width: 100%;
	height: 100%;
	background: rgba(var(--page-color-rgb, 1, 24, 237), 0.15);
	border-radius: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1.6rem;
}
@media screen and (max-width: 767px) {
	.c-graduateComment__inn {
		padding: 2.4rem 1.6rem;
	}
}
.c-graduateComment .title,
.c-graduateComment .subttl,
.c-graduateComment .text {
	margin: 0 !important;
}

.c-decoText__inn {
	padding: 7.2rem 3.2rem;
	border-radius: 2rem;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.12)), to(rgba(0, 24, 238, 0.12)));
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.12) 0%, rgba(0, 24, 238, 0.12) 100%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.8rem;
}
@media screen and (max-width: 767px) {
	.c-decoText__inn {
		padding: 2.4rem 1.6rem;
	}
}
.c-decoText .title,
.c-decoText .text {
	text-align: center;
	margin: 0 !important;
}

/*----------------------- 外部サイト埋め込み -------------------------*/
.c-movie,
.c-youtube {
	margin: 6.4rem 0;
}

/*--------------- NEWS -------------------*/
.c-news {
	margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
	.c-news {
		margin-top: 4rem;
	}
}
.c-news .c-news-list + .c-btn {
	text-align: center;
	margin: 6.4rem auto auto;
}
@media screen and (max-width: 767px) {
	.c-news .c-news-list + .c-btn {
		margin-top: 4rem;
	}
}
.c-news .c-news-list + .c-btn .c-btn__inn::before {
	background: var(--page-color, #0118ED);
}
.c-news .c-news-list + .c-btn .c-btn__inn::after {
	border: none;
	background: var(--page-color, #0118ED);
}
@media (any-hover: hover) {
	.c-news .c-news-list + .c-btn .c-btn__inn:hover {
		opacity: 0.7;
	}
}

.c-news-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4rem;
}
@media screen and (max-width: 767px) {
	.c-news-list {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
.c-news-list .item {
	width: 100%;
	color: #ffffff;
	padding-left: 0;
	text-indent: 0;
}
@media print, screen and (min-width: 768px) {
	.c-news-list .item {
		max-width: calc((100% - 8rem) / 3);
	}
}
.c-news-list .item::before {
	content: none;
}
.c-news-list .item a {
	color: #3a3a3a;
}
.c-news-list .item__inn {
	display: block;
	color: #3a3a3a;
}
.c-news-list .item .img {
	width: 100%;
	height: 19.7rem;
	overflow: hidden;
}
.c-news-list .item .img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
}
.c-news-list .item .cnt {
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	.c-news-list .item .cnt {
		margin-top: 0.8rem;
	}
}
.c-news-list .item .cnt .date {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
}
.c-news-list .item .cnt .cate-list {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.5rem;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.c-news-list .item .cnt .cate-list .cate {
	text-indent: 0;
}
.c-news-list .item .cnt .cate-list .cate::before {
	content: none;
}
.c-news-list .item .cnt .cate {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 0.2rem 1.6rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: var(--page-color, #3a3a3a);
	color: #ffffff;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 160%; /* 1.92rem */
	letter-spacing: 0.036rem;
	min-width: 13rem;
	border-radius: 100vh;
}
.c-news-list .item .cnt .title {
	margin-top: 1.4rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 160%; /* 2.88rem */
	letter-spacing: 0.054rem;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	.c-news-list .item .cnt .title {
		margin-top: 1.2rem;
		font-size: 1.6rem;
		letter-spacing: 0.048rem;
	}
}
.c-news-list .item .cnt > .text {
	margin-top: 1.2rem;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
	.c-news-list .item .cnt > .text {
		font-size: 1.4rem;
		letter-spacing: 0.042rem;
	}
}
.c-news-list .item .cnt-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
	.c-news-list.-index {
		display: block;
	}
	.c-news-list.-index .item {
		padding-top: 4rem;
		padding-bottom: 4rem;
		border-top: 1px solid #00A3EB;
		max-width: 100%;
	}
	.c-news-list.-index .item__inn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 3.2rem;
	}
	.c-news-list.-index .item__inn .img {
		width: 32rem;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}
	.c-news-list.-index .item__inn .cnt {
		-webkit-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
		max-width: calc(100% - 32rem - 3.2rem);
		margin-top: 0;
	}
	.c-news-list.-index .item__inn .title {
		margin-top: 1.2rem;
	}
	.c-news-list.-index .item__inn .text {
		margin-top: 1.2rem;
	}
}
@media print and (any-hover: hover), screen and (min-width: 768px) and (any-hover: hover) {
	.c-news-list.-index .item__inn:hover .c-btn__inn::after {
		opacity: 1;
	}
}
@media print, screen and (min-width: 768px) {
	.c-news-list.-index .item:first-of-type {
		padding-top: 0;
		border: none;
	}
	.c-news-list.-index .item:last-of-type {
		padding-bottom: 0;
	}
	.c-news-list.-index .item .c-btn {
		text-align: left;
	}
}
.c-news-list.-index .item .c-btn {
	margin: 1.2rem 0 0;
}
@media screen and (max-width: 767px) {
	.c-news-list.-index .item .c-btn {
		margin-top: 2.4rem;
	}
}
.c-news-list.-index .item .c-btn__inn .text {
	margin-top: 0;
}

.c-pager {
	margin-top: 12rem;
}
@media screen and (max-width: 767px) {
	.c-pager {
		margin-top: 8rem;
	}
}
.c-pager-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 1.6rem;
}
@media screen and (max-width: 767px) {
	.c-pager-list {
		gap: 1.2rem;
	}
}
.c-pager-list .item {
	width: 3.2rem;
	height: 3.2rem;
}
.c-pager-list .item__inn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #9C9DAA;
	color: #ffffff;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 100%; /* 2rem */
}
.c-pager-list .item.-arrow .item__inn {
	background: transparent;
}
.c-pager-list .item.-arrow .item__inn .grad-start {
	stop-color: #0085EB;
}
.c-pager-list .item.-arrow .item__inn .grad-end {
	stop-color: #0018EE;
}
.c-pager-list .item.-arrow.-disabled .item__inn {
	pointer-events: none;
}
.c-pager-list .item.-arrow.-disabled .item__inn .grad-start {
	stop-color: #9C9DAA;
}
.c-pager-list .item.-arrow.-disabled .item__inn .grad-end {
	stop-color: #9C9DAA;
}
.c-pager-list .item.-current .item__inn {
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	pointer-events: none;
}
.c-pager-list .item.-dots {
	width: 2rem;
}
.c-pager-list .item.-dots .item__inn {
	background: transparent;
}

/*---------------------- table --------------------*/
.c-table-type01,
.wp-block-table,
.wp-block-flexible-table-block-table {
	margin: 6.4rem 0;
}
@media screen and (max-width: 767px) {
	.c-table-type01,
	.wp-block-table,
	.wp-block-flexible-table-block-table {
		overflow-x: scroll;
	}
}
.c-table-type01 table,
.wp-block-table table,
.wp-block-flexible-table-block-table table {
	width: 100%;
	table-layout: fixed;
}
@media screen and (max-width: 767px) {
	.c-table-type01 table,
	.wp-block-table table,
	.wp-block-flexible-table-block-table table {
		min-width: 100%;
		width: -webkit-max-content !important;
		width: -moz-max-content !important;
		width: max-content !important;
	}
}
.c-table-type01 table th, .c-table-type01 table td,
.wp-block-table table th,
.wp-block-table table td,
.wp-block-flexible-table-block-table table th,
.wp-block-flexible-table-block-table table td {
	vertical-align: middle;
	font-size: 1.6rem;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
	border: 1px solid #ffffff;
	text-align: center;
	padding: 0.4rem 2.4rem;
	width: auto !important;
}
@media screen and (max-width: 767px) {
	.c-table-type01 table th, .c-table-type01 table td,
	.wp-block-table table th,
	.wp-block-table table td,
	.wp-block-flexible-table-block-table table th,
	.wp-block-flexible-table-block-table table td {
		padding: 0.8rem 1.6rem;
	}
}
.c-table-type01 table th,
.wp-block-table table th,
.wp-block-flexible-table-block-table table th {
	font-weight: 500;
	background: rgba(0, 133, 235, 0.1);
}
.c-table-type01 table td,
.wp-block-table table td,
.wp-block-flexible-table-block-table table td {
	background: #F5F5F5;
}
.c-table-type01 table a,
.wp-block-table table a,
.wp-block-flexible-table-block-table table a {
	text-decoration: underline;
}

.c-table-type01 table th {
	width: 24.5rem !important;
}
.c-table-type01 table td {
	text-align: left;
	width: auto !important;
}

/*-------------------- slider --------------------*/
.c-gallery {
	width: 73rem;
	max-width: 100%;
	margin: 6.4rem auto;
	position: relative;
}
@media screen and (max-width: 767px) {
	.c-gallery {
		width: 100%;
		margin-top: 4rem;
	}
}
.c-gallery__slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3.2rem;
}
@media screen and (max-width: 767px) {
	.c-gallery__slider .slick-track {
		gap: 2rem;
	}
}
.c-gallery__slider .slide {
	width: 73rem;
}
@media screen and (max-width: 767px) {
	.c-gallery__slider .slide {
		width: 36rem;
	}
}
.c-gallery__slider .slide .img {
	border-radius: 2rem;
	overflow: hidden;
	width: 100%;
	height: 44.9rem;
}
@media screen and (max-width: 767px) {
	.c-gallery__slider .slide .img {
		width: 28.5rem;
		height: 19rem;
		margin: auto;
	}
}
.c-gallery__slider .slide .img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
}
.c-gallery__slider .slide .c-text, .c-gallery__slider .slide .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .c-gallery__slider .slide p, .c-gallery__slider .slide .c-under-page ol, .c-under-page .c-gallery__slider .slide ol, .c-gallery__slider .slide .c-under-page ul, .c-under-page .c-gallery__slider .slide ul {
	margin: 2.2rem 0 0;
}
@media screen and (max-width: 767px) {
	.c-gallery__slider .slide .c-text, .c-gallery__slider .slide .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .c-gallery__slider .slide p, .c-gallery__slider .slide .c-under-page ol, .c-under-page .c-gallery__slider .slide ol, .c-gallery__slider .slide .c-under-page ul, .c-under-page .c-gallery__slider .slide ul {
		margin-top: 4rem;
	}
}
.c-gallery .slick-arrow {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	font-size: 0;
	overflow: hidden;
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	position: absolute;
	top: 18.5rem;
}
@media screen and (max-width: 767px) {
	.c-gallery .slick-arrow {
		width: 3rem;
		height: 3rem;
		top: 8rem;
	}
}
.c-gallery .slick-arrow::before, .c-gallery .slick-arrow::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.c-gallery .slick-arrow::before {
	background: #ffffff;
	border: 1px solid #0118ED;
	opacity: 0;
}
.c-gallery .slick-arrow::after {
	width: 1.8rem;
	height: 2.1rem;
	background-color: #ffffff;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	        transform: translateX(-40%) translateY(-50%);
}
@media screen and (max-width: 767px) {
	.c-gallery .slick-arrow::after {
		width: 1.2rem;
		height: 1.2rem;
	}
}
.c-gallery .slick-arrow.slick-prev {
	left: -8.5rem;
}
@media screen and (max-width: 767px) {
	.c-gallery .slick-arrow.slick-prev {
		left: 0;
	}
}
.c-gallery .slick-arrow.slick-prev::after {
	-webkit-transform: translateX(-60%) translateY(-50%) scale(-1, 1);
	        transform: translateX(-60%) translateY(-50%) scale(-1, 1);
}
.c-gallery .slick-arrow.slick-next {
	right: -8.5rem;
}
@media screen and (max-width: 767px) {
	.c-gallery .slick-arrow.slick-next {
		right: 0;
	}
}
.c-gallery__thumb {
	margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
	.c-gallery__thumb {
		margin: 4rem -1.6rem 0;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.c-gallery__thumb::-webkit-scrollbar {
		display: none;
	}
}
.c-gallery__thumb .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 3rem;
}
@media screen and (max-width: 767px) {
	.c-gallery__thumb .inner {
		gap: 2.4rem;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		padding: 0 1.6rem;
	}
}
.c-gallery__thumb .thumb {
	border-radius: 1rem;
	overflow: hidden;
	width: 16rem;
	height: 9.9rem;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.c-gallery__thumb .thumb {
		width: 16rem;
		height: 16rem;
	}
}
.c-gallery__thumb .thumb img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
}
@media (any-hover: hover) {
	.c-gallery__thumb .thumb:hover img {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
}

/*------------------------ title -----------------------*/
.c-title-type01 {
	margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
	.c-title-type01 {
		margin-bottom: 4rem;
	}
}
.c-title-type01 .title-en {
	color: #0118ED;
	text-align: center;
	font-size: 2.4rem;
	font-style: italic;
	font-weight: 700;
	line-height: 160%; /* 3.84rem */
}
@media screen and (max-width: 767px) {
	.c-title-type01 .title-en {
		font-size: 1.4rem;
	}
}
.c-title-type01 .title-jp {
	text-align: center;
	font-size: 5.6rem;
	font-weight: 700;
	line-height: 160%; /* 8.96rem */
	letter-spacing: 0.168rem;
}
@media screen and (max-width: 767px) {
	.c-title-type01 .title-jp {
		font-size: 2.2rem;
		letter-spacing: 0.066rem;
	}
}

.c-title-type02 {
	margin-bottom: 4rem;
	position: relative;
	padding-left: 3.6rem;
	margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
	.c-title-type02 {
		padding-left: 2rem;
		margin-bottom: 4rem;
		margin-top: 6.4rem;
	}
}
.c-title-type02::before {
	content: "";
	width: 1.2rem;
	height: 100%;
	display: block;
	background-color: var(--page-color, #0118ED);
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	.c-title-type02::before {
		width: 0.8rem;
	}
}
.c-title-type02 .title-jp {
	font-size: 4rem;
	font-weight: 700;
	line-height: 100%; /* 4rem */
	letter-spacing: 0.12rem;
}
@media screen and (max-width: 767px) {
	.c-title-type02 .title-jp {
		font-size: 2rem;
		letter-spacing: 0.06rem;
	}
}
.c-title-type02 .title-en {
	margin-top: 1.6rem;
	color: #9C9DAA;
	font-size: 2.4rem;
	font-style: italic;
	font-weight: 700;
	line-height: 100%; /* 2.4rem */
}
@media screen and (max-width: 767px) {
	.c-title-type02 .title-en {
		margin-top: 0.8rem;
		font-size: 1.4rem;
	}
}
.c-title-type02.-white {
	color: #ffffff;
}

.c-title-type03 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 160%; /* 3.2rem */
	border-bottom: 2px solid var(--page-color, #0118ED);
	padding-bottom: 1.6rem;
	margin-bottom: 2rem;
	margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
	.c-title-type03 {
		font-size: 1.8rem;
		letter-spacing: 0.054rem;
		padding-bottom: 0.8rem;
		margin-bottom: 0.8rem;
	}
}
.c-title-type03.-nobdr {
	border-bottom: none;
	padding-bottom: 0;
}

.c-title-type04 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 160%; /* 3.84rem */
	margin-bottom: 2.4rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	.c-title-type04 {
		font-size: 1.8rem;
		letter-spacing: 0.054rem;
		margin-bottom: 1.8rem;
		margin-top: 1.8rem;
	}
}

/*------------------------ text ---------------------*/
.c-text, .p-news .p-news__main .c-under-page p, .c-under-page ol, .c-under-page ul {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
}
@media screen and (max-width: 767px) {
	.c-text, .p-news .p-news__main .c-under-page p, .c-under-page ol, .c-under-page ul {
		font-size: 1.4rem;
		letter-spacing: 0.042rem;
		text-align: justify;
	}
}
.c-text.-white, .p-news .p-news__main .c-under-page p.-white, .c-under-page ol.-white, .c-under-page ul.-white {
	color: #ffffff;
}

/*------------------ img ---------------*/
.c-full-image {
	border-radius: 2rem;
	overflow: hidden;
}
.c-full-image img {
	display: block;
	width: 100%;
}

.wp-block-image img {
	border-radius: 2rem;
	display: block;
	position: relative;
}

/*--------------- column -------------*/
.wp-block-columns.is-layout-flex,
.c-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 4rem;
	margin: 6.4rem 0;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex,
	.c-column {
		gap: 3.2rem;
	}
}
.wp-block-columns.is-layout-flex + .wp-block-columns.is-layout-flex,
.wp-block-columns.is-layout-flex + .c-column,
.c-column + .wp-block-columns.is-layout-flex,
.c-column + .c-column {
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex + .wp-block-columns.is-layout-flex,
	.wp-block-columns.is-layout-flex + .c-column,
	.c-column + .wp-block-columns.is-layout-flex,
	.c-column + .c-column {
		margin-top: 3.2rem;
	}
}
.wp-block-columns.is-layout-flex .wp-block-column, .wp-block-columns.is-layout-flex__item,
.c-column .wp-block-column,
.c-column__item {
	width: 58rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex .wp-block-column, .wp-block-columns.is-layout-flex__item,
	.c-column .wp-block-column,
	.c-column__item {
		width: 100%;
	}
}
.wp-block-columns.is-layout-flex .wp-block-column .c-title-type04, .wp-block-columns.is-layout-flex__item .c-title-type04,
.c-column .wp-block-column .c-title-type04,
.c-column__item .c-title-type04 {
	margin: 0 0;
}
.wp-block-columns.is-layout-flex .wp-block-column .c-text, .wp-block-columns.is-layout-flex .wp-block-column .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex .wp-block-column p, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ol, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ol, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ul, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ul,
.wp-block-columns.is-layout-flex .wp-block-column .c-btn, .wp-block-columns.is-layout-flex__item .c-text, .wp-block-columns.is-layout-flex__item .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex__item p, .wp-block-columns.is-layout-flex__item .c-under-page ol, .c-under-page .wp-block-columns.is-layout-flex__item ol, .wp-block-columns.is-layout-flex__item .c-under-page ul, .c-under-page .wp-block-columns.is-layout-flex__item ul,
.wp-block-columns.is-layout-flex__item .c-btn,
.c-column .wp-block-column .c-text,
.c-column .wp-block-column .p-news .p-news__main .c-under-page p,
.p-news .p-news__main .c-under-page .c-column .wp-block-column p,
.c-column .wp-block-column .c-under-page ol,
.c-under-page .c-column .wp-block-column ol,
.c-column .wp-block-column .c-under-page ul,
.c-under-page .c-column .wp-block-column ul,
.c-column .wp-block-column .c-btn,
.c-column__item .c-text,
.c-column__item .p-news .p-news__main .c-under-page p,
.p-news .p-news__main .c-under-page .c-column__item p,
.c-column__item .c-under-page ol,
.c-under-page .c-column__item ol,
.c-column__item .c-under-page ul,
.c-under-page .c-column__item ul,
.c-column__item .c-btn {
	margin-top: 4rem;
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex .wp-block-column .c-text, .wp-block-columns.is-layout-flex .wp-block-column .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex .wp-block-column p, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ol, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ol, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ul, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ul,
	.wp-block-columns.is-layout-flex .wp-block-column .c-btn, .wp-block-columns.is-layout-flex__item .c-text, .wp-block-columns.is-layout-flex__item .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex__item p, .wp-block-columns.is-layout-flex__item .c-under-page ol, .c-under-page .wp-block-columns.is-layout-flex__item ol, .wp-block-columns.is-layout-flex__item .c-under-page ul, .c-under-page .wp-block-columns.is-layout-flex__item ul,
	.wp-block-columns.is-layout-flex__item .c-btn,
	.c-column .wp-block-column .c-text,
	.c-column .wp-block-column .p-news .p-news__main .c-under-page p,
	.p-news .p-news__main .c-under-page .c-column .wp-block-column p,
	.c-column .wp-block-column .c-under-page ol,
	.c-under-page .c-column .wp-block-column ol,
	.c-column .wp-block-column .c-under-page ul,
	.c-under-page .c-column .wp-block-column ul,
	.c-column .wp-block-column .c-btn,
	.c-column__item .c-text,
	.c-column__item .p-news .p-news__main .c-under-page p,
	.p-news .p-news__main .c-under-page .c-column__item p,
	.c-column__item .c-under-page ol,
	.c-under-page .c-column__item ol,
	.c-column__item .c-under-page ul,
	.c-under-page .c-column__item ul,
	.c-column__item .c-btn {
		margin-top: 2.4rem;
	}
}
.wp-block-columns.is-layout-flex .wp-block-column .c-text:first-child, .wp-block-columns.is-layout-flex .wp-block-column .p-news .p-news__main .c-under-page p:first-child, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex .wp-block-column p:first-child, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ol:first-child, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ol:first-child, .wp-block-columns.is-layout-flex .wp-block-column .c-under-page ul:first-child, .c-under-page .wp-block-columns.is-layout-flex .wp-block-column ul:first-child,
.wp-block-columns.is-layout-flex .wp-block-column .c-btn:first-child, .wp-block-columns.is-layout-flex__item .c-text:first-child, .wp-block-columns.is-layout-flex__item .p-news .p-news__main .c-under-page p:first-child, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex__item p:first-child, .wp-block-columns.is-layout-flex__item .c-under-page ol:first-child, .c-under-page .wp-block-columns.is-layout-flex__item ol:first-child, .wp-block-columns.is-layout-flex__item .c-under-page ul:first-child, .c-under-page .wp-block-columns.is-layout-flex__item ul:first-child,
.wp-block-columns.is-layout-flex__item .c-btn:first-child,
.c-column .wp-block-column .c-text:first-child,
.c-column .wp-block-column .p-news .p-news__main .c-under-page p:first-child,
.p-news .p-news__main .c-under-page .c-column .wp-block-column p:first-child,
.c-column .wp-block-column .c-under-page ol:first-child,
.c-under-page .c-column .wp-block-column ol:first-child,
.c-column .wp-block-column .c-under-page ul:first-child,
.c-under-page .c-column .wp-block-column ul:first-child,
.c-column .wp-block-column .c-btn:first-child,
.c-column__item .c-text:first-child,
.c-column__item .p-news .p-news__main .c-under-page p:first-child,
.p-news .p-news__main .c-under-page .c-column__item p:first-child,
.c-column__item .c-under-page ol:first-child,
.c-under-page .c-column__item ol:first-child,
.c-column__item .c-under-page ul:first-child,
.c-under-page .c-column__item ul:first-child,
.c-column__item .c-btn:first-child {
	margin-top: 0;
}
.wp-block-columns.is-layout-flex .wp-block-column .c-movie,
.wp-block-columns.is-layout-flex .wp-block-column .c-youtube, .wp-block-columns.is-layout-flex__item .c-movie,
.wp-block-columns.is-layout-flex__item .c-youtube,
.c-column .wp-block-column .c-movie,
.c-column .wp-block-column .c-youtube,
.c-column__item .c-movie,
.c-column__item .c-youtube {
	margin: 0;
}
.wp-block-columns.is-layout-flex.-col1,
.c-column.-col1 {
	gap: 4.8rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col1,
	.c-column.-col1 {
		gap: 3.2rem;
	}
}
.wp-block-columns.is-layout-flex.-col1 .c-column__item,
.c-column.-col1 .c-column__item {
	width: 100%;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col1 .c-column__item,
	.c-column.-col1 .c-column__item {
		width: 100%;
	}
}
.wp-block-columns.is-layout-flex.-col1 .c-card .img,
.c-column.-col1 .c-card .img {
	height: 58.4rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col1 .c-card .img,
	.c-column.-col1 .c-card .img {
		height: 24rem;
	}
}
.wp-block-columns.is-layout-flex.-col2,
.c-column.-col2 {
	gap: 4.8rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col2,
	.c-column.-col2 {
		gap: 3.2rem;
	}
}
.wp-block-columns.is-layout-flex.-col2 .c-column__item,
.c-column.-col2 .c-column__item {
	width: 57.6rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col2 .c-column__item,
	.c-column.-col2 .c-column__item {
		width: 100%;
	}
}
.wp-block-columns.is-layout-flex.-col2 .c-card .img,
.c-column.-col2 .c-card .img {
	height: 33rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col2 .c-card .img,
	.c-column.-col2 .c-card .img {
		height: 24rem;
	}
}
.wp-block-columns.is-layout-flex.-col3 .c-column__item,
.c-column.-col3 .c-column__item {
	width: 37.3rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col3 .c-column__item,
	.c-column.-col3 .c-column__item {
		width: 100%;
	}
}
.wp-block-columns.is-layout-flex.-col3 .c-card .img,
.c-column.-col3 .c-card .img {
	height: 24rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-col3 .c-card .img,
	.c-column.-col3 .c-card .img {
		height: 24rem;
	}
}
.wp-block-columns.is-layout-flex.-img-text-col,
.c-column.-img-text-col {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-img-text-col,
	.c-column.-img-text-col {
		gap: 2.4rem;
	}
}
.wp-block-columns.is-layout-flex.-img-text-col.-align-top,
.c-column.-img-text-col.-align-top {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-full-image,
.c-column.-img-text-col .c-column__item .c-full-image {
	margin: 0;
}
.wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-btn,
.c-column.-img-text-col .c-column__item .c-btn {
	margin-top: 4rem;
	text-align: right;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-btn,
	.c-column.-img-text-col .c-column__item .c-btn {
		text-align: center;
		margin-top: 2.4rem;
	}
}
.wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-text, .wp-block-columns.is-layout-flex.-img-text-col .c-column__item .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .wp-block-columns.is-layout-flex.-img-text-col .c-column__item p, .wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-under-page ol, .c-under-page .wp-block-columns.is-layout-flex.-img-text-col .c-column__item ol, .wp-block-columns.is-layout-flex.-img-text-col .c-column__item .c-under-page ul, .c-under-page .wp-block-columns.is-layout-flex.-img-text-col .c-column__item ul,
.c-column.-img-text-col .c-column__item .c-text,
.c-column.-img-text-col .c-column__item .p-news .p-news__main .c-under-page p,
.p-news .p-news__main .c-under-page .c-column.-img-text-col .c-column__item p,
.c-column.-img-text-col .c-column__item .c-under-page ol,
.c-under-page .c-column.-img-text-col .c-column__item ol,
.c-column.-img-text-col .c-column__item .c-under-page ul,
.c-under-page .c-column.-img-text-col .c-column__item ul {
	margin-top: 2.4rem;
}
.wp-block-columns.is-layout-flex.-btn,
.c-column.-btn {
	gap: 4rem 6.4rem;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-btn,
	.c-column.-btn {
		gap: 2.4rem;
	}
}
.wp-block-columns.is-layout-flex.-btn .c-column__item,
.c-column.-btn .c-column__item {
	width: 56.8rem;
	max-width: 100%;
}
@media screen and (max-width: 767px) {
	.wp-block-columns.is-layout-flex.-btn .c-column__item,
	.c-column.-btn .c-column__item {
		width: 100%;
	}
}

/*--------------- Card -------------*/
.c-linkCard {
	height: 37.3rem;
}
@media screen and (max-width: 767px) {
	.c-linkCard {
		height: 25.4rem;
	}
}
.c-linkCard__inn {
	display: block;
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
	width: 100%;
	height: 100%;
	clip-path: inset(0 round 2rem);
}
.c-linkCard__inn .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.c-linkCard__inn .img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
}
.c-linkCard__inn .img-text {
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 160%; /* 1.92rem */
	letter-spacing: 0.036rem;
	position: absolute;
	left: 3.2rem;
	bottom: 7rem;
}
@media screen and (max-width: 767px) {
	.c-linkCard__inn .img-text {
		font-size: 1rem;
		letter-spacing: 0.03rem;
		left: 2.4rem;
		bottom: 5.8rem;
	}
}
.c-linkCard__inn .cnt {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: rgba(58, 58, 58, 0.8);
	backdrop-filter: blur(12px);
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1.2rem 3.2rem;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	clip-path: inset(0 round 0 0 2rem 2rem);
}
@media screen and (max-width: 767px) {
	.c-linkCard__inn .cnt {
		padding: 1rem 2.4rem;
	}
}
.c-linkCard__inn .cnt::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
	opacity: 0;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
}
.c-linkCard__inn .cnt > * {
	position: relative;
}
.c-linkCard__inn .title {
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 160%; /* 3.52rem */
}
@media screen and (max-width: 767px) {
	.c-linkCard__inn .title {
		font-size: 1.4rem;
		font-weight: 400;
	}
}
.c-linkCard__inn .arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 4rem;
	height: 4rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-image: url(../images/common/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
	.c-linkCard__inn .arrow {
		width: 3rem;
		height: 3rem;
	}
}
@media (any-hover: hover) {
	.c-linkCard__inn:focus-visible, .c-linkCard__inn:hover {
		opacity: 1;
	}
	.c-linkCard__inn:focus-visible .img img, .c-linkCard__inn:hover .img img {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
	.c-linkCard__inn:focus-visible .cnt::before, .c-linkCard__inn:hover .cnt::before {
		opacity: 1;
	}
}
.c-linkCard.-white .c-linkCard__inn {
	border: 4px solid #ffffff;
}
@media screen and (max-width: 767px) {
	.c-linkCard.-white .c-linkCard__inn {
		border-width: 2px;
	}
}
.c-linkCard.-white .c-linkCard__inn .cnt {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	clip-path: inset(0 round 0 0 calc(2rem - 4px) calc(2rem - 4px));
}
@media screen and (max-width: 767px) {
	.c-linkCard.-white .c-linkCard__inn .cnt {
		clip-path: inset(0 round 0 0 calc(2rem - 2px) calc(2rem - 2px));
	}
}
.c-linkCard.-white .c-linkCard__inn .title {
	color: #3a3a3a;
	-webkit-transition: 0.3s color;
	transition: 0.3s color;
}
.c-linkCard.-white .c-linkCard__inn .arrow {
	background-image: url(../images/common/arrow-b.svg);
}
.c-linkCard.-white .c-linkCard__inn .arrow::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	background-image: url(../images/common/arrow.svg);
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
	opacity: 0;
}
@media (any-hover: hover) {
	.c-linkCard.-white .c-linkCard__inn:focus-visible .title, .c-linkCard.-white .c-linkCard__inn:hover .title {
		color: #ffffff;
	}
	.c-linkCard.-white .c-linkCard__inn:focus-visible .arrow::after, .c-linkCard.-white .c-linkCard__inn:hover .arrow::after {
		opacity: 1;
	}
}
.c-linkCard.-blue .cnt {
	background: -webkit-gradient(linear, right top, left top, from(#0085EB), to(#0018EE));
	background: linear-gradient(270deg, #0085EB 0%, #0018EE 100%);
	backdrop-filter: blur(2px);
}
.c-linkCard.-blue .cnt::before {
	background: -webkit-gradient(linear, right top, left top, from(rgba(0, 133, 235, 0.5)), to(rgba(0, 24, 238, 0.5))), #FFF;
	background: linear-gradient(270deg, rgba(0, 133, 235, 0.5) 0%, rgba(0, 24, 238, 0.5) 100%), #FFF;
}
.c-card .img {
	border-radius: 2rem;
	overflow: hidden;
}
.c-card .img img {
	display: block;
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
}
.c-card .cnt {
	padding-top: 1.2rem;
}
.c-card .cnt .c-title-type03 {
	margin-top: 0;
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
}
.c-card .cnt .c-text, .c-card .cnt .p-news .p-news__main .c-under-page p, .p-news .p-news__main .c-under-page .c-card .cnt p, .c-card .cnt .c-under-page ol, .c-under-page .c-card .cnt ol, .c-card .cnt .c-under-page ul, .c-under-page .c-card .cnt ul {
	margin-top: 0;
	margin-bottom: 0;
}

/*------------- 囲みテキスト　-------------*/
.c-info-block {
	margin: 6.4rem 0;
}
.c-info-block__title {
	background-color: var(--page-color, #0118ED);
	color: #ffffff;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 160%; /* 5.12rem */
	letter-spacing: 0.096rem;
	padding: 1rem;
	border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 767px) {
	.c-info-block__title {
		font-size: 1.8rem;
		letter-spacing: 0.054rem;
		padding: 0.8rem 2rem;
	}
}
.c-info-block__content {
	border: 4px solid var(--page-color, #0118ED);
	border-top: none;
	border-radius: 0 0 2rem 2rem;
	padding: 4rem 8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 5.5rem;
	background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
	.c-info-block__content {
		border-width: 2px;
		padding: 3.2rem 2.4rem;
		gap: 0;
	}
}
.c-info-block__content.-col1 {
	gap: 2.4rem 0;
}
@media screen and (max-width: 767px) {
	.c-info-block__content.-col1 {
		gap: 0;
	}
}
.c-info-block__content.-col1 .c-info-block__col {
	width: 100%;
}
.c-info-block__content.-col1 .c-info-block__col:not(:first-of-type) .c-info-block__subttl {
	margin-top: 4rem;
}
.c-info-block__content.-col2 .c-info-block__col {
	width: calc((100% - 5.5rem) / 2);
}
@media screen and (max-width: 767px) {
	.c-info-block__content.-col2 .c-info-block__col {
		width: 100%;
	}
}
.c-info-block__content.-col3 .c-info-block__col {
	width: calc((100% - 11rem) / 3);
}
@media screen and (max-width: 767px) {
	.c-info-block__content.-col3 .c-info-block__col {
		width: 100%;
	}
}
.c-info-block__col p,
.c-info-block__col .c-text,
.c-info-block__col .p-news .p-news__main .c-under-page p,
.p-news .p-news__main .c-under-page .c-info-block__col p,
.c-info-block__col ol,
.c-info-block__col ul {
	margin: 0;
}
.c-info-block__subttl {
	font-size: 2rem;
	font-weight: 700;
	line-height: 160%; /* 3.2rem */
	letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
	.c-info-block__subttl {
		font-size: 1.8rem;
		letter-spacing: 0.054rem;
	}
}
.c-info-block__col-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 5.5rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.c-info-block__col-inner {
		display: block;
	}
}
.c-info-block__col-inner.-col3 > * {
	width: calc((100% - 11rem) / 3);
}
@media screen and (max-width: 767px) {
	.c-info-block__col-inner.-col3 > * {
		width: 100%;
	}
}

/*----------------- セクションの余白　----------------*/
.c-margin-top {
	margin: 12rem 0 0;
}
@media screen and (max-width: 767px) {
	.c-margin-top {
		margin-top: 8rem;
	}
}

.p-news {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 0;
}
@media screen and (max-width: 767px) {
	.p-news {
		display: block;
	}
}
.p-news__nav {
	width: calc(44rem + (100vw - 144rem) / 2);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
	.p-news__nav {
		background-color: #ffffff;
		width: 100%;
		padding-top: 4rem;
	}
}
.p-news__nav-inn {
	width: 44rem;
	max-width: 100%;
	margin-right: 0;
	margin-left: auto;
	padding: 12rem;
}
@media screen and (max-width: 767px) {
	.p-news__nav-inn {
		width: 100%;
		padding: 0 1.6rem;
		margin: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 0.8rem;
	}
}
.p-news__nav-title {
	color: #0118ED;
	font-size: 3.2rem;
	font-style: italic;
	font-weight: 700;
	line-height: 160%; /* 5.12rem */
	letter-spacing: 0.096rem;
}
@media screen and (max-width: 767px) {
	.p-news__nav-title {
		border-radius: 2rem 2rem 0 0;
		background: #F5F5F5;
		text-align: center;
		font-size: 1.6rem;
		letter-spacing: 0.048rem;
		height: 3.4rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		border-bottom: 1px solid #9C9DAA;
		gap: 0.8rem;
	}
	.p-news__nav-title::after {
		content: "";
		width: 1.3rem;
		height: 0.8rem;
		background-color: #0118ED;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		display: block;
	}
}
.p-news__nav-box {
	margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
	.p-news__nav-box {
		margin-top: 0;
		width: calc((100% - 0.8rem) / 2);
	}
}
.p-news__nav-box:first-of-type {
	margin-top: 0;
}
.p-news .p-news__nav-list {
	margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__nav-list {
		padding: 1.6rem;
		border-radius: 0 0 2rem 2rem;
		background: rgba(245, 245, 245, 0.9);
		width: 100%;
		margin-top: 0;
	}
}
.p-news .p-news__nav-list li {
	padding-left: 0;
	text-indent: 0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
	margin-top: 1.6rem;
}
.p-news .p-news__nav-list li a {
	--border-color: #3a3a3a;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__nav-list li {
		font-size: 1.4rem;
		letter-spacing: 0.042rem;
		width: 100%;
		margin-top: 1.2rem;
	}
	.p-news .p-news__nav-list li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		width: 100%;
	}
	.p-news .p-news__nav-list li a .text {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.p-news .p-news__nav-list li a .num {
		white-space: nowrap;
	}
}
.p-news .p-news__nav-list li:first-of-type {
	margin-top: 0;
}
.p-news .p-news__nav-list li::before {
	content: none;
}
.p-news .p-news__nav-list li a {
	color: #3a3a3a;
}
.p-news .p-news__nav-list li .num {
	display: inline-block;
	margin-left: 0.8rem;
	color: #00A3EB;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__index {
		padding-bottom: 8rem;
	}
}
.p-news .p-news__heading {
	padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__heading {
		padding-top: 4rem;
		padding-bottom: 2.4rem;
	}
}
.p-news .p-news__heading .category-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__heading .category-list {
		gap: 0.5rem;
	}
}
.p-news .p-news__heading .category {
	min-width: 14.7rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 0.2rem 2.4rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 100vh;
	background: #3a3a3a;
	color: #ffffff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__heading .category {
		min-width: 14.3rem;
		height: 2.3rem;
		padding: 0.2rem 1.6rem;
		font-size: 1.2rem;
		letter-spacing: 0.036rem;
	}
}
.p-news .p-news__heading .date {
	margin-top: 1.2rem;
	font-size: 2rem;
	font-weight: 500;
	line-height: 160%; /* 3.2rem */
	letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__heading .date {
		margin-top: 2.4rem;
		font-size: 1.6rem;
		letter-spacing: 0.048rem;
	}
}
.p-news .p-news__title {
	margin-top: 1.2rem;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 160%; /* 4.48rem */
	letter-spacing: 0.084rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__title {
		margin-top: 2.4rem;
		font-size: 1.6rem;
		letter-spacing: 0.048rem;
	}
}
.p-news .p-news__main {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	background-color: #ffffff;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main {
		width: 100%;
	}
}
.p-news .p-news__main-inn {
	width: 99.9rem;
	max-width: 100%;
	padding: 12rem 12rem 12rem 8rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main-inn {
		width: 100%;
		padding: 0 1.6rem 0;
	}
}
.p-news .p-news__main .c-under-page {
	padding: 0 0 8rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page {
		padding-bottom: 6.4rem;
	}
}
.p-news .p-news__main .c-under-page *:first-child {
	margin-top: 0;
}
.p-news .p-news__main .c-under-page *:last-child {
	margin-bottom: 0;
}
.p-news .p-news__main .c-under-page h2 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 160%; /* 3.2rem */
	letter-spacing: 0.06rem;
	margin: 4rem 0;
	padding-left: 2rem;
	position: relative;
}
.p-news .p-news__main .c-under-page h2::before {
	content: "";
	display: block;
	width: 0.8rem;
	height: 100%;
	background: #0118ED;
	position: absolute;
	left: 0;
	top: 0;
}
.p-news .p-news__main .c-under-page h3 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 160%; /* 2.56rem */
	letter-spacing: 0.048rem;
	margin: 4rem 0;
}
.p-news .p-news__main .c-under-page p {
	margin: 4rem 0;
}
.p-news .p-news__main .c-under-page .c-column {
	gap: 4rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page .c-column {
		gap: 2.4rem;
	}
}
.p-news .p-news__main .c-under-page .c-column .c-column__item .img {
	height: auto;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page .c-column.-col2 {
		gap: 2.4rem;
	}
}
.p-news .p-news__main .c-under-page .c-column.-col2 .c-column__item {
	width: calc((100% - 4rem) / 2);
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page .c-column.-col2 .c-column__item {
		width: 100%;
	}
}
.p-news .p-news__main .c-under-page .c-column.-col3 {
	gap: 2.4rem;
}
.p-news .p-news__main .c-under-page .c-column.-col3 .c-column__item {
	width: calc((100% - 4.8rem) / 3);
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page .c-column.-col3 .c-column__item {
		width: 100%;
	}
}
.p-news .p-news__main .c-under-page .c-column.-col4 {
	gap: 2.4rem;
}
.p-news .p-news__main .c-under-page .c-column.-col4 .c-column__item {
	width: calc((100% - 7.2rem) / 4);
}
@media screen and (max-width: 767px) {
	.p-news .p-news__main .c-under-page .c-column.-col4 .c-column__item {
		width: 100%;
	}
}
.p-news .p-news__detail::after {
	content: "";
	display: block;
	clear: both;
}
.p-news .p-news__footer {
	padding-top: 8rem;
	border-top: 1px solid #00A3EB;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 6.4rem;
}
@media screen and (max-width: 767px) {
	.p-news .p-news__footer {
		padding-top: 6.4rem;
		gap: 1.6rem;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.p-news .p-news__footer .c-btn {
		width: 100%;
		height: 4.2rem;
	}
	.p-news .p-news__footer .c-btn__inn {
		width: 100%;
		height: 100%;
	}
	.p-news .p-news__footer .c-btn__inn .arrow {
		display: none;
	}
}
.p-news .p-news__footer .c-btn.-hidden {
	opacity: 0;
	visibility: hidden;
}
@media print, screen and (min-width: 768px) {
	.p-news .p-news__footer .c-btn.-prev .c-btn__inn {
		padding-left: 2.4rem;
		padding-right: 4rem;
	}
}
.p-news .p-news__footer .c-btn.-prev .c-btn__inn .arrow svg {
	-webkit-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}
.p-news .p-news__footer .c-btn.-prev .c-btn__inn, .p-news .p-news__footer .c-btn.-next .c-btn__inn {
	background: #9C9DAA;
}
.p-news .p-news__footer .c-btn.-prev .c-btn__inn::before, .p-news .p-news__footer .c-btn.-next .c-btn__inn::before {
	background: #9C9DAA;
}
.p-news .p-news__footer .c-btn.-prev .c-btn__inn::after, .p-news .p-news__footer .c-btn.-next .c-btn__inn::after {
	border: none;
}

.p-news-related {
	padding-top: 12rem;
	padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
	.p-news-related {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}
.p-news-related .c-title-type02 {
	margin-top: 0;
}
/*# sourceMappingURL=news.css.map */