@charset "UTF-8";
/*=========================================================
	ani-GradientText
=========================================================*/
.ani-GradientText{
	background:linear-gradient(to right, rgb(0,0,0) 50%, rgba(217,217,217) 50%);
	background-size:200% 100%;
	background-position-x:100%;
	color:transparent;
	background-clip:text;
	-webkit-background-clip:text;
	display:inline;
}

.Blue.ani-GradientText{
	background:linear-gradient(to right, rgb(0,174,239) 50%, rgba(217,217,217) 50%);
	background-size:200% 100%;
	background-position-x:100%;
	color:transparent;
	background-clip:text;
	-webkit-background-clip:text;
	display:inline;
}

.White.ani-GradientText{
	background:linear-gradient(to right, rgb(255,255,255) 50%, rgba(107,215,255) 50%);
	background-size:200% 100%;
	background-position-x:100%;
	color:transparent;
	background-clip:text;
	-webkit-background-clip:text;
	display:inline;
}

.Gray.ani-GradientText{
	background:linear-gradient(to right, rgb(98,104,112) 50%, rgba(217,217,217) 50%);
	background-size:200% 100%;
	background-position-x:100%;
	color:transparent;
	background-clip:text;
	-webkit-background-clip:text;
	display:inline;
}


/*=========================================================
	PgHeader
=========================================================*/
.PgHeader{
	margin-bottom:5rem;
	overflow:hidden;
}

.PgHeaderTitle{
	padding:5rem 0 1.5rem;
	border-bottom:solid 1px #DDD;
}

.PgHeaderTitle-text{
	font-size:3rem;
	line-height:1.4;
	color:#063171;
	font-weight:800;
}

.SiteSubTab{
	border-bottom:solid 1px #DDD;
}

.SiteSubTab-inner{
	margin:0 -0.75rem;
	display:flex;
}

.SiteSubTab-item{
	padding:0 0.375rem;
}

.SiteSubTab-link{
	display:block;
	font-size:1.125rem;
	line-height:1.6;
	padding:1rem 0.75rem;
	color:#999;
	position:relative;
}

.SiteSubTab-link:after{
	content:"";
	width:100%;
	height:0.188rem;
	background-color:#063171;
	position:absolute;
	bottom:0;
	left:0;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: var(--ease-out-lerp);
	transform:scaleX(0);
}

.is-Current .SiteSubTab-link{
	color:#063171;
	font-weight:700;
}

.is-Current .SiteSubTab-link:after{
	transform:scaleX(1);
}

@media screen and (min-width:1025px){
	.is-desktop .SiteSubTab-link:hover{
		color:#063171;
		font-weight:600;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.PgHeader{
		margin-bottom:4.5rem;
	}
	
	.PgHeaderTitle{
		padding: 4.5rem 0 1.375rem;
	}
	
	.PgHeaderTitle-text{
		font-size:2.5em;
	}
	
	.SiteSubTab-link{
		font-size:1.063rem;
		padding: 0.938rem 0.75rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.PgHeader{
		margin-bottom:4rem;
	}
	
	.PgHeaderTitle{
		padding: 3rem 0 1.25rem;
	}
	
	.PgHeaderTitle-text{
		font-size:2rem;
	}
	
	.SiteSubTab-link{
		font-size:1rem;
		padding: 0.875rem 0.75rem;
	}
}

/*=========================================================
	PageTitle
=========================================================*/
.PageTitle{
	margin-bottom:2.5rem;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.PageTitle-text{
	font-size:1.75rem;
	line-height:1.4;
	color:#000;
	font-weight:700;
}

.ListTab-inner{
	display:flex;
	margin:0 -0.25rem;
}

.ListTab-item{
	padding:0 0.25rem;
}

.ListTab-link{
	display:block;
	font-size:1.125rem;
	line-height:1.6;
	color:#999;
	padding:0.25rem 1.25rem;
	border-radius:100px 100px;
	background-color:#F2F6F7;
}

.is-Current .ListTab-link{
	background-color:#063171;
	color:#fff;
	font-weight:500;
}

@media screen and (min-width:1025px){
	.is-desktop .ListTab-item:not(.is-Current) .ListTab-link:hover{
		color:#fff;
		background-color:#00AEEF;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.PageTitle{
		margin-bottom:1.875rem;
	}
	
	.PageTitle-text{
		font-size:1.7rem;
	}
	
	.ListTab-link{
		font-size:1rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.PageTitle{
		margin-bottom:1.563rem;
	}
	
	.PageTitle-text{
		font-size:1.6rem;
	}
	
	.ListTab-link{
		font-size:1rem;
	}
}

/*=========================================================
	HistoryTab 
=========================================================*/
.HistoryTab {
	background-color:#fff;
	margin-bottom: 5rem;
}

.HistoryTabAtc{
	border-bottom: solid 1px #DDD;
	position:relative;
}

.HistoryTabAtc:before{
	content:"";
	width:100%;
	height:1px;
	background-color:#ddd;
	position:absolute;
	top:50%;
	left:0;
}

.HistoryTab-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}

.HistoryTab-item{
	width:12.5%;
}

.HistoryTab-link{
	display:block;
	font-size:1.125rem;
	line-height:1.6;
	color:#999;
	padding:1rem 0.313rem;
	position:relative;
	text-align:center;
}

.HistoryTab-link:after{
	content:"";
	position:absolute;
	bottom:-1px;
	left:0;
	right:0;
	height:3px;
	background-color:#063171;
	opacity:0;
}

.is-Current .HistoryTab-link{
	color:#063171;
	font-weight:700;
}

.is-Current .HistoryTab-link:after{
	opacity:1;
}

@media screen and (min-width:1025px){
	.page-template-page-history .PgHeader{
		margin-bottom:0;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.HistoryTab{
		display:none;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.HistoryTab{
		display:none;
	}
}

/*=========================================================
	History
=========================================================*/
.HistoryLy{
	display:flex;
	position:relative;
}

.HistoryYer{
	width:18.75rem;
	position:relative;
	text-align:right;
	display:flex;
	justify-content:start;
}

.HistoryYerTitle{
	position: sticky;
	top:calc(6.25rem + 7.625rem);
	align-self:flex-start;
}

.admin-bar .HistoryYerTitle{
	top:calc(6.25rem + 7.625rem + 32px);
}

.HistoryYerTitle{
	font-size:5rem;
	line-height:1;
	color:#626870;
	font-weight:700;
}

.HistoryYerTitle-year,
.HistoryYerTitle-after{
	display:block;
}

.HistoryYerTitle-after{
	margin-top:0.5rem;
}

.HistoryCnt{
	flex:1;
}

.HistoryPost{
	position:relative;
}

.HistoryPostPs{
	position:absolute;
	height:13.75rem;
	top:-13.75rem;
	left:0;
	right:0;
	pointer-events:none;
}

.HistoryPost + .HistoryPost{
	margin-top:12.5rem;
}

.HistoryPostHd{
	display:flex;
}

.HistoryPostThumb{
	flex:1;
	position:relative;
	border-radius:2.5rem;
	overflow:hidden;
}

.HistoryPostThumb:after{
	content:"";
	display:block;
	padding-bottom:56.25%;
}

.HistoryPostThumb-img{
	position:absolute;
	top:-20%;
	left:0;
	width:100%;
	height:120%;
	object-fit:cover;
}

.HistoryPostTitle{
	width:30.6%;
	padding-left:1.25rem;
	text-align:right;
}

.HistoryPostTitle-text{
	display:inline-block;
	border-bottom:solid 2px #000;
	padding-bottom:0.5rem;
	max-width:100%;
	font-size:1.5rem;
	line-height:1.4;
	font-weight:600;
}

.HistoryPost-text{
	margin-top:1.5rem;
	font-size:1.125rem;
	line-height:1.8;
	color:#000;
}

.HistoryPostYear-mo{
	display:none;
	font-size:3.6rem;
	line-height:1;
	font-weight:800;
	color:#063171;
	maRgin-bottom:1.25rem;
	transition-property: transform;
	transition-duration: 0.6s;
	transition-timing-function: var(--ease-out-lerp);
	transform:translateX(calc(-100% - 1.25rem));
	letter-spacing:-0.188rem;
	white-space:nowrap;
}

.is-Ani.HistoryPostYear-mo{
	transform:translateX(-0.65rem);
}

@media screen and (max-width:1024px) and (min-width:768px){
	.HistoryPost + .HistoryPost{
		margin-top: 7.5rem;
	}
	
	.HistoryYerTitle{
		font-size:4rem;
	}
	
	.HistoryYer{
		width: 14.75rem;
	}
	
	.HistoryPostHd{
		display:block;
	}
	
	.HistoryPostTitle{
		width:100%;
		padding-left:0;
		text-align:left;
		margin-top:2.5rem;
	}
	
	.HistoryPostTitle-text{
		font-size:1.375rem;
	}
	
	.HistoryPostTitle-text br{
		display:none;
	}
	
	.HistoryPost-text{
		font-size:1rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	body:not(.page-template-default) .siteCont:not(.Sticky){
		overflow:hidden;
	}
	
	.HistoryPost + .HistoryPost{
		margin-top:5rem;
	}
	
	.HistoryLy{
		display:block;
	}
	
	.HistoryYer{
		display:none;
	}
	
	.HistoryPostYear-mo{
		display:block;
	}
	
	.HistoryPostHd{
		display:block;
	}
	
	.HistoryPostThumb{
		border-radius:0;
		margin-left:-1.25rem;
		margin-right:-1.25rem;
	}
	
	.HistoryPostTitle{
		width:100%;
		padding-left:0;
		text-align:left;
		margin-top:2rem;
	}
	
	.HistoryPostTitle-text br{
		display:none;
	}
	
	.HistoryPostTitle-text{
		font-size:1.125rem;
		padding-bottom: 0.35rem;
	}
	
	.HistoryPost-text{
		font-size:1rem;
	}
}

/*=========================================================
	StickyTab
=========================================================*/
.StickyTab{
	overflow:hidden;
	position:sticky;
	top: calc(var(--adminbar-height, 0px) + var(--header-height, 0px));
	transition-property: top;
    transition-duration: 0.3s;
	z-index:100;
}

.nav-Up .StickyTab {
	top: var(--adminbar-height, 0px);
}

/*=========================================================
	Hero
=========================================================*/
.home .site-content{
	padding-top:0;
}

.Hero{
	height:140vh;
	height:140svh;
	position:relative;
	margin-bottom:9.125rem;
}

.HeroBtn{
	width: 2.8855rem;
	height: 2.8855rem;
	background-image:url(../../images/icon/ico_scroll.webp);
	background-size:100% 100%;
	position:absolute;
	bottom:1.5rem;
	left:50%;
	transform:translate(-50%, 0);
	animation: HeroBtn 1.5s linear infinite;
	z-index:5;
}

.admin-bar .HeroBtn{
	bottom:calc(1.5rem + 32px);
}

@keyframes HeroBtn {
  0% {
    transform:translate(-50%, 0);
  }
  
  50% {
    transform:translate(-50%, -10%);
  }
  
  100% {
    transform:translate(-50%, 0);
  }
}

.HeroSticky{
	position:sticky;
	top:0;
	height:100vh;
	height:100svh;
	overflow:hidden;
}

.HeroSticky:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	height:80%;
	background-color:#063171;
}

.HeroBg{
	position:absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	width:100%;
	height:100%;
	background-color:#000;
	transform-origin: center center;
	animation: HeroBg 1s cubic-bezier(0.16, 1, 0.3, 1) forwards paused;
    animation-delay: calc(var(--press) * -1s);
	border-radius: 0;
	overflow:hidden;
	will-change: width, height, border-radius;
	contain: layout paint;
}

@keyframes HeroBg {
  0% {
	width:100%;
	height:100%;
	border-radius: 0;
  }
  50%, 100% {
	width: calc(100% - var(--hero-margin-x));
	height: calc(100% - var(--hero-margin-y));
	border-radius: var(--hero-border-radius);
  }
}

.HeroBg-video{
	position:absolute;
	top:0;
	left:0;
	width:100% !important;
	height:100% !important;
	object-fit:cover;
	transform: translateZ(0);
	will-change: transform;
}

@media screen and (max-width:1024px) and (min-width:768px){
	.Hero{
		margin-bottom:4rem;
	}
	
	:root {
		--hero-margin-x: 4rem; 
		--hero-margin-y: 8.92rem;
		--hero-border-radius:2rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.Hero{
		margin-bottom:2.8rem;
	}
	
	:root {
		--hero-margin-x: 2.5rem; 
		--hero-margin-y: 7.778rem;
		--hero-border-radius:1.25rem;
	}
}

/*=========================================================
	Slogan
=========================================================*/
.Slogan{
	margin-bottom:14.125rem;
	text-align:center;
	position:relative;
}

.SloganPs{
	position:absolute;
	height:13.75rem;
	top:-13.75rem;
	left:0;
	right:0;
	pointer-events:none;
}

.SloganLogo{
	width:18.875rem;
	height:9.875rem;
	background-image:url(../../images/logo/slogan_logo.svg);
	background-size:100% 100%;
	margin:0 auto 3.75rem;
}

.SloganText-item{
	display:block;
	font-size:2.5rem;
	line-height:1.8;
	font-weight:800;
}

.SloganText-item + .SloganText-item{
	margin-top:0.75rem;
}

.SloganTextRadius{
	display:inline-block;
	padding:0 1.75rem 0.375rem;
	border-radius:100px 100px;
	background-color:#00AEEF;
}

@media screen and (max-width:1080px) and (min-width:1025px){
	.SloganText-item{
		font-size:2.25rem;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.Slogan{
		margin-bottom:9rem;
	}
	
	.SloganPs{
		height: 8rem;
		top: -8rem;
	}
	
	.SloganText-item{
		font-size:1.8rem;
	}
	
	.SloganTextRadius{
		padding: 0 1.75rem 0.275rem;
	}
	
	.SloganLogo{
		width: 15.875rem;
		height:8.31rem;
		margin: 0 auto 3rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.Slogan{
		margin-bottom:6rem;
	}
	
	.SloganPs{
		height: 6rem;
		top: -6rem;
	}
	
	.SloganText-item{
		font-size:1.35rem;
	}
	
	.SloganTextRadius{
		padding: 0 0.75rem 0.25rem;
	}
	
	.SloganLogo{
		width: 13.875rem;
		height: 7.27rem;
		margin: 0 auto 2.125rem;
	}
}

/*=========================================================
	MainSec
=========================================================*/
.MainSec{
	margin-bottom:12.5rem;
	padding-top:0.5rem;
}

.MainSec.Hidden{
	overflow:hidden;
}

.SecHeader{
	position:relative;
	margin-bottom:2.5rem;
}

.SecTitle{
	font-size:2.5rem;
	line-height:1.4;
	color:#000;
	font-weight:700;
	position:relative;
}

.SecTitle:before{
	content:"";
	width:0.75rem;
	height:0.75rem;
	border-radius:100% 100%;
	background-color:#00AEEF;
	position:absolute;
	left:-0.625rem;
	top:-0.375rem;
}

.SecText{
	font-size:1.125rem;
	line-height:1.6;
	color:#444;
	margin-top:1rem;
}

.SecBtn{
	display:inline-block;
	background-color: #063171;
	border-radius:100px 100px;
	padding:1rem 1.875rem;
}

.SecBtn-text{
	display:block;
	font-size:1.25rem;
	line-height:1.4;
	color:#fff;
	font-weight:600;
	position:relative;
	padding-right:2.5rem;
}

.SecBtn-text:after{
	content:"";
	width:1.25rem;
	height:1.25rem;
	background-image:url(../../images/icon/ico_btn_arrow.svg);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
}

.SecHeader .SecBtn{
	position:absolute;
	bottom:0;
	right:3.75rem;
}

.MainSecFlex .SecBtn{
	position:static;
	margin-top:1.65rem;
}

.MainSecFlex{
	display:flex;
}

.MainSecFlex .SecHeader{
	width:37.8%;
	display:flex;
	flex-direction: column;
	justify-content:space-between;
	padding-right:3.75rem;
	margin-bottom:0;
}

.SecCont{
	flex:1;
	min-width:0;
}

.SecCont.Max{
	margin-right: calc(-50vw + 50%);
}

@media screen and (min-width:1025px){
	.is-desktop .SecBtn:hover{
		background-color:#00AEEF;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.MainSec{
		margin-bottom:9rem;
	}
	
	.SecTitle{
		font-size:2rem;
	}
	
	.SecBtn-text{
		font-size:1.125rem;
	}
	
	.MainSecFlex .SecHeader{
		width: 36.8%;
	}
	
	.SecHeader .SecBtn{
		right:2rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.MainSec{
		margin-bottom:6rem;
	}
	
	.SecTitle{
		font-size:1.6rem;
	}
	
	.SecTitle:before{
		width:0.5rem;
		height:0.5rem;
		left: -0.425rem;
		top: -0.175rem;
	}
	
	.SecHeader{
		margin-bottom:2rem;
	}
	
	.SecHeader .SecBtn{
		position:static;
		margin-top:1.25rem;
		padding: 0.75rem 1.25rem;
	}
	
	.SecBtn-text{
		font-size:0.875rem;
		padding-right:1.75rem;
	}
	
	.SecBtn-text:after{
		width:1rem;
		height:1rem;
	}
	
	.SecText{
		font-size:0.938rem;
	}
	
	.PcBr{
		display:none;
	}
	
	.MainSecFlex{
		display:block;
	}
	
	.MainSecFlex .SecHeader{
		width:100%;
		padding-right:0;
		margin-bottom:2rem;
	}
	
	.SecCont.Max{
		margin-right:0;
	}
}

/*=========================================================
	SlideBar
=========================================================*/
.SlideBar {
	width: 100%;
	overflow: hidden;
	background-color:#00AEEF;
	padding:2.5rem 0;
	font-size:0;
	line-height:0;
	overflow:hidden;
}

.SlideBarRolling {
	display: flex;
	width: max-content; 
	white-space: nowrap;
	font-size:0;
	line-height:0;
}

.SlideBarBg {
	display: inline-block;
	flex: 0 0 auto; 
}

.SlideBarBg-img {
	display: block;
	height: 5.625rem;
	width: auto; 
}

@media screen and (max-width:1024px) and (min-width:768px){
	.SlideBar {
		padding:1.65rem 0;
	}
	
	.SlideBarBg-img{
		height:3rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.SlideBar {
		padding:1.375rem 0;
	}
	
	.SlideBarBg-img{
		height:2.25rem;
	}
}

/*=========================================================
	HistorySlide
=========================================================*/
.CpSlide{
	overflow:hidden;
}

.TransUp{
	transition-property: transform;
	transition-duration: 1s;
	transition-timing-function: var(--ease-out-lerp);
	transform:translateY(30%);
}

.is-Ani.TransUp{
	transform:translateY(0);
}

.HistorySlide-container{
	overflow:visible;
	margin:0 -0.625rem;
	width:auto;
}

.HistorySlide-item{
	width:50%;
	padding:0 0.625rem;
}

.HistorySlidePost{
	width:100%;
	position:relative;
	display:block;
}

.HistorySlidePost:after{
	content:"";
	display:block;
	padding-bottom:71.9%;
}

.HistorySlidePostBg{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	overflow:hidden;
	border-radius:2.5rem;
}

.HistorySlidePostBg-img{
	position:absolute;
	top:-20%;
	left:0;
	width:100%;
	height:120%;
	object-fit:cover;
}

.HistorySlidePostText{
	position:absolute;
	bottom:1.5rem;
	left:1.5rem;
	border-radius:2.5rem;
	border:solid 1px rgba(255, 255, 255, 0.4);
	background: rgba(68, 62, 62, 0.20);
	box-shadow: 0 0.25rem 1.25rem 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	font-size:1.5rem;
	line-height:1.6;
	color:#fff;
	font-weight:700;
	padding:1.25rem 2.25rem;
	transition-property: transform;
    transition-duration: 0.6s;
	transition-timing-function: var(--ease-out-lerp);
	will-change:transform;
	z-index:5;
}

.HistorySlidePostHover{
	position:absolute;
	bottom:1.5rem;
	left:1.5rem;
	right:1.5rem;
	border-radius:2rem;
	padding:1.25rem 2.25rem;
	background-color:#fff;
	box-shadow: 0 0.25rem 1.25rem 0 rgba(0, 0, 0, 0.25);
	transition-property: transform;
    transition-duration: 0.6s;
	transition-timing-function: var(--ease-out-lerp);
	transform:translateY(calc(100% + 2rem));
	will-change:transform;
	z-index:10;
}

.HistorySlidePostHover-title{
	font-size:1.5rem;
	line-height:1.6;
	color:#00AEEF;
	font-weight:700;
	margin-bottom:1rem;
}

.HistorySlidePostHover-text{
	font-size:1.125rem;
	line-height:1.6;
	color:#000;
	display: -webkit-box;   
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.HistorySlidePostHover-text br{
	display:none;
}

@media screen and (min-width:1025px){
	.is-desktop .HistorySlidePost:hover .HistorySlidePostText{
		transform:translateY(calc(100% + 2rem));
	}
	
	.is-desktop .HistorySlidePost:hover .HistorySlidePostHover{
		transform:translateY(0);
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.HistorySlide-item{
		width:32rem;
	}
	
	.HistorySlidePostBg{
		position:relative;
		overflow:hidden;
		border-radius:2rem;
		margin-bottom:1.5rem;
	}
	
	.HistorySlidePostBg:after{
		content:"";
		display:block;
		padding-bottom:71.9%;
	}

	.HistorySlidePost:after{
		display:none;
	}
	
	.HistorySlidePostText{
		display:none;
	}
	
	.HistorySlidePostHover{
		position:static;
		transform: translateY(0);
		box-shadow:none;
		border-radius:0;
		padding:0 1.125rem;
	}
	
	.HistorySlidePostHover-title{
		font-size:1.4rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.HistorySlide-container{
		margin: 0 -0.438rem;
	}
	
	.HistorySlide-item{
		width:20rem;
		padding: 0 0.438rem;
	}
	
	.HistorySlidePostBg{
		position:relative;
		overflow:hidden;
		border-radius:1.25rem;
		margin-bottom:1.125rem;
	}
	
	.HistorySlidePostBg:after{
		content:"";
		display:block;
		padding-bottom:71.9%;
	}

	.HistorySlidePost:after{
		display:none;
	}
	
	.HistorySlidePostText{
		display:none;
	}
	
	.HistorySlidePostHover{
		position:static;
		transform: translateY(0);
		box-shadow:none;
		border-radius:0;
		padding:0 0.75rem;
	}
	
	.HistorySlidePostHover-title{
		font-size:1.125rem;
		margin-bottom:0.475rem;
	}
	
	.HistorySlidePostHover-text{
		font-size:0.938rem;
	}
}

/*=========================================================
	SchedSlide 
=========================================================*/
.SchedSlide-container{
	overflow:visible;
	margin: 0 -0.625rem;
    width: auto;
}

.SchedSlide-item{
	width:25%;
	padding: 0 0.625rem;
	height:auto;
}

.SchedSlidePost{
	background: #F2F6F7;
	border-radius:2rem;
	width:100%;
	padding:2.5rem 2.5rem;
	height:100%;
	display:flex;
	flex-direction: column;
	justify-content:space-between;
	min-height:16.25rem;
}

.SchedSlidePostMeta{
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.SchedSlidePostMeta-day{
	display:block;
	font-size:1rem;
	line-height:1.4;
	font-weight:600;
	color:#fff;
	padding:0.75rem 1.594rem;
	border-radius:1rem;
	background-color:#063171;
}

.SchedSlidePostMeta-date{
	display:block;
	font-size:1rem;
	line-height:1.4;
	color:#000;
	font-weight:500;
}

.SchedSlidePostText{
	margin-top:1.25rem;
}

.SchedSlidePostText-location{
	display:block;
	font-size:1.125rem;
	line-height:1.4;
	color:#00AEEF;
	font-weight:500;
	margin-bottom:0.75rem;
}

.SchedSlidePostText-title{
	display:block;
	font-size:1.125rem;
	line-height:1.4;
	color:#000;
	font-weight:500;
}

@media screen and (min-width:1025px){
	.SchedSlide-item{
		min-width:25rem;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.SchedSlide-item{
		width: 23rem;
	}
	
	.SchedSlidePost{
		border-radius:1.5rem;
		padding:2rem 2rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.SchedSlide-container{
		margin: 0 -0.438rem;
	}
	
	.SchedSlide-item{
		width: 20rem;
		padding: 0 0.438rem;
	}
	
	.SchedSlidePost{
		border-radius:1rem;
		padding:1.25rem 1.25rem;
		min-height: 13.25rem;
	}
	
	.SchedSlidePostMeta-day{
		font-size:0.875rem;
		padding: 0.6rem 1.25rem;
		border-radius:0.875rem;
	}
	
	.SchedSlidePostMeta-date{
		font-size:0.875rem;
	}
	
	.SchedSlidePostText-location{
		font-size:1rem;
		margin-bottom:0.5rem;
	}
	
	.SchedSlidePostText-title{
		font-size:1.063rem;
	}
}

/*=========================================================
	HvThumbList 
=========================================================*/
.HvThumbPost{
	position:relative;
}

.HvThumbPostBg{
	position:absolute;
	top:0;
	right:calc(4.375rem + 8%);
	width:22.5rem;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	will-change: transform;
	z-index:5;
}

.is-Touch .HvThumbPostBg{
	display:none;
}

.HvThumbPostBg:after{
	content:"";
	display:block;
	padding-bottom:66.7%;
}

.HvThumbPostBg-img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
}

.HvThumbList-item{
	position:relative;
	border-bottom: 1px solid #000;
}

.HvThumbPost-link{
	padding:2.5rem 1.25rem;
	padding-right:calc(10rem + 37%);
	display:block;
	position:relative;
	transition-property: padding-left;
    transition-duration: 0.5s;
	transition-timing-function: var(--ease-out-lerp);
	contain: layout paint;
	z-index: 5;
}

.HvThumbPost-link:after{
	content:"";
	width:1.875rem;
	height:1.875rem;
	background-image: var(--ico-list-arrow-normal);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	right:1.25rem;
	transform:translateY(-50%);
	transition-property: transform;
    transition-duration: 0.5s;
	transition-timing-function: var(--ease-out-lerp);
}

.HvThumbPost-title{
	font-size:1.125rem;
	line-height:1.4;
	color:#000;
	font-weight:500;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.HvThumbPost-date{
	font-size:0.813rem;
	line-height:1.4;
	color:#999;
	margin-top:0.75rem;
}

@media screen and (min-width:1025px){
	.is-desktop .HvThumbPost-link:hover{
		background-color:#063171;
		padding-left:2.5rem;
	}
	
	.is-desktop .HvThumbPost-link:hover .HvThumbPost-title{
		color:#fff;
	}
	
	.is-desktop .HvThumbPost-link:hover .HvThumbPost-date{
		color: rgba(255, 255, 255, 0.50);
	}
	
	.is-desktop .HvThumbPost-link:hover:after{
		background-image: var(--ico-list-arrow-hover);
		transform:translate(-1.25rem,-50%);
	}
	
	.is-desktop .HvThumbPost-link:hover + .HvThumbPostBg{
		opacity:1;
		visibility:visible;
	}
}

@media screen and (max-width:1300px) and (min-width:1025px){
	.HvThumbPostBg{
		display:none;
	}
	
	.HvThumbPost-link{
		padding-right:10rem;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.HvThumbPostBg{
		display:none;
	}
	
	.HvThumbPost-link{
		padding: 1.5rem 1.25rem;
		padding-right:5rem;
	}
	
	.HvThumbPost-link:after{
		width:1.5rem;
		height:1.5rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.HvThumbPostBg{
		display:none;
	}
	
	.HvThumbPost-link{
		padding: 1.375rem 0.875rem;
		padding-right:4rem;
	}
	
	.HvThumbPost-link:after{
		width:1.25rem;
		height:1.25rem;
		right:0.875rem;
	}
	
	.HvThumbPost-title{
		font-size:1.063rem;
	}
	
	.HvThumbPost-date{
		font-size:0.875rem;
		margin-top: 0.65rem;
	}
}

/*=========================================================
	DonateSlide 
=========================================================*/
.DonateSlide{
	padding-right:3.75rem;
}

.DonateSlide-container{
	overflow:visible;
	margin: 0 -0.625rem;
    width: auto;
}

.DonateSlide-item{
	width:41.438rem;
	padding: 0 0.625rem;
}

.DonateSlidePost{
	width:100%;
}

.DonateSlidePost-link{
	display:block;
}

.DonateSlidePostThumb{
	position:relative;
	overflow:hidden;
	border-radius:2.5rem;
	margin-bottom:1.5rem;
}

.DonateSlidePostThumb:after{
	content:"";
	display:block;
	padding-bottom:60.3%;
}

.DonateSlidePostThumb-inner{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	transition-property: transform;
    transition-duration: 0.5s;
	transition-timing-function: var(--ease-out-lerp);
}

.DonateSlidePostThumb-img{
	position:absolute;
	top:-20%;
	left:0;
	width:100%;
	height:120%;
	object-fit:cover;
}

.DonateSlidePost-title{
	font-size:1.125rem;
	line-height:1.4;
	color:#000;
	font-weight:600;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.DonateSlidePost-text{
	font-size:1rem;
	line-height:1.6;
	color:#444;
	margin-top:0.75rem;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.DonateSlidePost-date{
	margin-top:1.5rem;
	font-size: 0.813rem;
    line-height: 1.4;
    color: #999;
}

@media screen and (min-width:1025px){
	.is-desktop .DonateSlidePost-link:hover .DonateSlidePostThumb-inner{
		transform:scale(1.1);
	}
	
	.is-desktop .DonateSlidePost-link:hover .DonateSlidePost-title{
		text-decoration:underline;
	}
}

@media screen and (max-width:1300px) and (min-width:1025px){
	.DonateSlide-item{
		width:35rem;
	}
}


@media screen and (max-width:1024px) and (min-width:768px){
	.DonateSlide-item{
		width:26rem;
	}
	
	.DonateSlidePostThumb{
		border-radius:2rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.DonateSlide{
		margin-left:-1.25rem;
		margin-right:-1.25rem;
		padding:0 1.25rem;
	}
	
	.DonateSlide-container{
		margin: 0 -0.438rem;
	}
	
	.DonateSlide-item{
		width:20rem;
		padding: 0 0.438rem;
	}
	
	.DonateSlidePostThumb{
		border-radius:1.25rem;
	}
	
	.DonateSlidePost-title{
		font-size:1.063rem;
	}
	
	.DonateSlidePost-text{
		font-size:0.938rem;
	}
	
	.DonateSlidePost-date{
		font-size:0.75rem;
		margin-top:1rem;
	}
}

/*=========================================================
	Masonry
=========================================================*/
.MasonryLy-inner{
	margin:-1.25rem -1.25rem;
}

.MasonryList {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 0;
}

.MasonryList-item {
    position: absolute;
	padding:1.25rem 1.25rem;
}

.ProjectPostThumb{
	line-height:0;
	position:relative;
	overflow:hidden;
	border-radius:2.5rem;
	margin-bottom:1.25rem;
}

.ProjectPostThumb:after{
	content:"";
	display:block;
}

.ProjectPostThumb-inner{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	transition-property: transform;
    transition-duration: 0.5s;
	transition-timing-function: var(--ease-out-lerp);
}

.Type1 .ProjectPostThumb:after{
	padding-bottom:130%;
}

.Type2 .ProjectPostThumb:after{
	padding-bottom:100%;
}

.Type3 .ProjectPostThumb:after{
	padding-bottom:65%;
}

.ProjectPostThumb-img{
	position:absolute;
	top:-20%;
	left:0;
	width:100%;
	height:120%;
	object-fit:cover;
}

.ProjectPost-title{
	font-size:1.125rem;
	line-height:1.4;
	color:#000;
	font-weight:600;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.ProjectPost-link{
	display:block;
}

@media screen and (min-width:1025px){
	.is-desktop .ProjectPost-link:hover .ProjectPostThumb-inner{
		transform:scale(1.1);
	}
	
	.is-desktop .ProjectPost-link:hover .ProjectPost-title{
		text-decoration:underline;
	}
}

@media screen and (max-width:1024px) and (min-width:501px){
	.ProjectPostThumb{
		border-radius:2rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.ProjectPost-title{
		font-size:1.063rem;
	}
	
	.ProjectPostThumb{
		border-radius:1.25rem;
	}
}

@media screen and (max-width:767px) and (min-width:501px){
	.MasonryLy-inner{
		margin: -1rem -0.75rem;
	}
	
	.MasonryList-item{
		padding: 1rem 0.75rem;
	}
}

@media screen and (max-width:500px) and (min-width:1px){
	.MasonryLy-inner{
		margin: -1.65rem -1.25rem;
	}
	
	.MasonryList-item{
		padding: 1.65rem 1.25rem;
	}
}

/*=========================================================
	Single
=========================================================*/
.siteSingle {
	padding-top: 5rem;
}

.SingleHeader{
	margin-bottom:2.5rem;
}

.SingleHeaderMeta{
	margin-bottom:1.5rem;
	font-size:0;
	line-height:0;
}

.SingleHeaderMeta-date{
	display:inline-block;
	vertical-align:middle;
	padding-right:calc(0.75rem + 1px);
	margin-right:0.75rem;
	position:relative;
	font-size:0.875rem;
	line-height:1.3;
	color:#999;
}

.SingleHeaderMeta-date:after{
	content:"";
	width:1px;
	height:0.688rem;
	background-color:#DDD;
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
}

.SingleHeaderMeta-write{
	display:inline-block;
	vertical-align:middle;
	font-size:0.875rem;
	line-height:1.3;
	color:#999;
}

.SingleHeader-title{
	font-size:2.063rem;
	line-height:1.4;
	color:#000;
	font-weight:700;
}

.SgPaging{
	margin-top:6.25rem;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	overflow:hidden;
}

.SgPaging-inner{
	display:flex;
	margin:0 -2.5rem;
}

.SgPaging-item{
	width:50%;
	padding:2.438rem 2.5rem;
}

.SgPaging-item:first-child{
	border-right:solid 1px #ddd;
}

.SgPagingPost{
	display:flex;
	font-size:0;
	line-height:0;
}

.SgPagingPostTitle{
	margin-right:3.75rem;
}

.SgPagingPostTitle-text{
	display:block;
	font-size:1rem;
	line-height:1.4;
	color:#000;
	font-weight:700;
	position:relative;
	padding-left:1.688rem;
}

.SgPagingPostTitle-text:before{
	content:"";
	width:1.063rem;
	height:0.938rem;
	background-size:100% 100%;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}

.Prev .SgPagingPostTitle-text:before{
	background-image:url(../../images/icon/ico_sgpaging_prev.svg);
}

.Next .SgPagingPostTitle-text:before{
	background-image:url(../../images/icon/ico_sgpaging_next.svg);
}

.SgPagingPostText{
	flex:1;
	min-width:0;
}

.SgPagingPostText-link{
	font-size:1rem;
	line-height:1.4;
	color:#444;
	display:inline-block;
	max-width:100%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

span.SgPagingPostText-link{
	color:#999;
}

.SgListBtn{
	margin-top:3.75rem;
	text-align:center;
}

.SgListBtn-link{
	display:inline-block;
	background-color: #063171;
	border-radius:100px 100px;
	padding:1rem 1.875rem;
	font-size: 1.25rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
    position: relative;
}

@media screen and (min-width:1025px){
	.is-desktop a.SgPagingPostText-link:hover{
		text-decoration:underline;
	}
	
	.is-desktop .SgListBtn-link:hover{
		background-color:#00AEEF;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.siteSingle {
		padding-top:4.5rem;
	}
	
	.SingleHeader-title{
		font-size:1.85rem;
	}
	
	.SgListBtn{
		margin-top:3rem;
	}
	
	.SgPaging{
		margin-top:5rem;
	}
	
	.SgPagingPostTitle{
		margin-right:1.5rem;
	}
	
	.SgPaging-item{
		padding: 2rem 2.5rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.siteSingle {
		padding-top:3rem;
	}
	
	.SingleHeader-title{
		font-size:1.45rem;
	}
	
	.SingleHeaderMeta{
		margin-bottom: 1.25rem;
	}
	
	.SingleHeaderMeta-date{
		font-size:0.875rem;
	}
	
	.SingleHeaderMeta-write{
		font-size:0.875rem;
	}
	
	.SgListBtn-link{
		padding: 0.75rem 1.875rem;
		font-size:0.938rem;
	}
	
	.SgListBtn{
		margin-top:2rem;
	}
	
	.SgPaging{
		margin-top:3.5rem;
	}
	
	.SgPaging-inner{
		display:block;
	}
	
	.SgPaging-item{
		width:100%;
		padding: 1.25rem 2.5rem;
	}
	
	.SgPaging-item:first-child{
		border-bottom:solid 1px #ddd;
		border-right:none;
	}
	
	.SgPagingPostTitle-text{
		font-size:0.938rem;
		padding-left:1.25rem;
	}
	
	.SgPagingPostText-link{
		font-size:0.938rem;
	}
	
	.SgPagingPostTitle{
		margin-right:1.25rem;
	}
	
	.SgPagingPostTitle-text:before{
		width:0.875rem;
		height:0.875rem;
	}
}

/*=========================================================
	싱글 컨텐츠
=========================================================*/
.SingleBody{
	color:#444;
	line-height:1.8;
}

/* 이미지 및 정렬 관련 */
.SingleBody .size-full {
	height: auto !important;
}

.SingleBody .size-full + .size-full{
	margin-top: 1.25rem;
}

.SingleBody .alignleft {
	float: left;
}

.SingleBody .alignright {
	float: right;
}

.SingleBody .aligncenter {
	display: block;
	margin: 0 auto;
}

.SingleBody figure.wp-caption {
	max-width: 100%;
}

.SingleBody figure {
	margin-bottom: 1.25rem;
}

.SingleBody figcaption.wp-caption-text {
	color: #555555;
	font-weight: normal;
	text-align: center;
	font-size: .75rem;
	margin-top:0.875rem;
}

.SingleBody img:not(.emoji) {
	height: auto !important;
	vertical-align: middle;
}

/* ⚡ 워드프레스 기본 에모지 */
.SingleBody img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	width: 1em !important;    
	max-width: 1em !important;
	height: 1em !important;   
	max-height: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
	aspect-ratio: auto !important;
}

/* 미디어 래퍼 (아이프레임, 유튜브 등) */
.SingleBody iframe{
	width: 100% !important;
	max-width: 100% !important;
	vertical-align: middle;
	aspect-ratio: 16 / 9;
	height:auto !important;
}

.SingleBody .wp-video{
	width: 100% !important;
	max-width: 100% !important;
	margin-bottom:1.25rem;
}

.SingleBody .wp-video .wp-video-shortcode{
	width: 100% !important;
	max-width: 100% !important;
	vertical-align: middle;
	aspect-ratio: 16 / 9;
	height:auto !important;
}

/* 일반 텍스트 및 링크 */
.SingleBody p {
	margin-bottom: 1.25rem;
}

.SingleBody a {
	color: #3f8af9;
}

.SingleBody a:hover {
	text-decoration: underline;
	color: #3f8af9;
}

/* 제목 */
.SingleBody h1 {
	font-size: 1.5em;
}

.SingleBody h2 {
	font-size: 1.4em;
}

.SingleBody h3 {
	font-size: 1.3em;
}

.SingleBody h4 {
	font-size: 1.2em;
}

.SingleBody h5 {
	font-size: 1.1em;
}

.SingleBody h6 {
	font-size: 1em;
}

.SingleBody h1, 
.SingleBody h2, 
.SingleBody h3, 
.SingleBody h4, 
.SingleBody h5, 
.SingleBody h6 {
	margin-top:2.5rem;
	margin-bottom: 0.938rem;
	color: #000000;
}

.SingleBody h1:first-child,
.SingleBody h2:first-child,
.SingleBody h3:first-child,
.SingleBody h4:first-child,
.SingleBody h5:first-child,
.SingleBody h6:first-child{
	margin-top:0;
}

/* 인용구 스타일 */
.SingleBody blockquote {
	color: #1c1c1c;
	padding-left: 1rem;
	position: relative;
	margin-bottom: 1.25rem;
}

.SingleBody blockquote h1,
.SingleBody blockquote h2,
.SingleBody blockquote h3,
.SingleBody blockquote h4,
.SingleBody blockquote h5,
.SingleBody blockquote h6,
.SingleBody blockquote p{
	margin-bottom:0;
}

.SingleBody blockquote:before {
	content: "";
	width: 3px;
	height: 100%;
	position: absolute;
	background: #125fac;
	top: 0;
	left: 0;
}

/* 리스트 공통 및 불릿 리스트(ul) */
.SingleBody ul, 
.SingleBody ol {
	margin-bottom: 1.25rem;
}

.SingleBody li {
	margin-top: 0.313rem;
}

.SingleBody li:first-child {
	margin-top: 0;
}

.SingleBody ul li {
	padding-left: 1.1em;
	position: relative;
}

.SingleBody ul li:before {
	content: "∙";
	position: absolute;
	top: 0;
	left: 0;
	color: #125fac;
}

/* 순번 리스트(ol) 자동화 보정 */
.SingleBody ol {
	counter-reset: history-counter;
}

.SingleBody ol li {
	padding-left: 1.1em;
	position: relative;
}

.SingleBody ol li:before {
	counter-increment: history-counter;
	content: counter(history-counter) ".";
	position: absolute;
	top: 0;
	left: 0;
}

/* 데이터 테이블 표준 스타일 */
.SingleBody table {
	width: 100%;
	margin-bottom: 1.25rem;
	border-top: solid 2px #2e3235;
}

.SingleBody table * {
	margin: 0;
}

.SingleBody table caption {
	display: none;
}

.SingleBody table thead th {
	color: #2e3235;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	line-height: 1.4em;
}

.SingleBody table tbody th {
	text-align: center;
}

.SingleBody table th, 
.SingleBody table td {
	vertical-align: middle;
	border-bottom: solid 1px #ccd0d7;
	padding: 0.75rem 0.313rem;
	text-align: center;
}

/* 구분선 스타일 */
.SingleBody span[id*="more-"] {
	border-bottom: dashed 2px #ccd0d7;
	display: block;
}

@media screen and (max-width:1400px) and (min-width:1025px){
	.SingleBody{
		font-size:16px;
	}
	
	.SingleBody figcaption.wp-caption-text{
		font-size:12px;
	}
	
	.SingleBody h1 {
		font-size: 24px; 
	}

	.SingleBody h2 {
		font-size: 22px; 
	}

	.SingleBody h3 {
		font-size: 21px; 
	}

	.SingleBody h4 {
		font-size: 19px; 
	}

	.SingleBody h5 {
		font-size: 18px; 
	}

	.SingleBody h6 {
		font-size: 16px; 
	}

	.SingleBody table thead th {
		font-size: 18px; 
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.SingleBody{
		font-size:1rem;
	}
}

/*=========================================================
	BsList
=========================================================*/
.BsList-inner{
	margin:-1.875rem -0.625rem;
	display:flex;
	flex-wrap:wrap;
}

.BsList-item{
	padding:1.875rem 0.625rem;
	width:33.333%;
}

.BsPost-link{
	display:block;
}

.BsPostThumb{
	line-height:0;
	position:relative;
	overflow:hidden;
	border-radius:2rem;
	margin-bottom:1.25rem;
}

.BsPostThumb:after{
	content:"";
	display:block;
	padding-bottom:63%;
}

.BsPostThumb-inner{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	transition-property: transform;
    transition-duration: 0.5s;
	transition-timing-function: var(--ease-out-lerp);
}

.BsPostThumb-img{
	position:absolute;
	top:-20%;
	left:0;
	width:100%;
	height:120%;
	object-fit:cover;
}

.BsPostCnt-title{
	font-size:1.125rem;
	line-height:1.4;
	color:#000;
	font-weight:600;
	min-height:2.8em;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.BsPostCnt-text{
	font-size:1rem;
	line-height:1.6;
	color:#444;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
	margin-top:0.75rem;
}

.BsPostCnt-date{
	font-size:0.813rem;
	line-height:1.4;
	color:#999;
	margin-top:1.5rem;
}

@media screen and (min-width:1025px){
	.is-desktop .BsPost-link:hover .BsPostCnt-title{
		text-decoration:underline;
	}
	
	.is-desktop .BsPost-link:hover .BsPostThumb-inner{
		transform:scale(1.1);
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.BsPostThumb{
		border-radius:1.5rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.BsPostCnt-title{
		font-size:1.063rem;
	}
	
	.BsPostCnt-text{
		font-size:0.938rem;
	}
	
	.BsPostCnt-date{
		font-size:0.875rem;
		margin-top: 1rem;
	}
}

@media screen and (max-width:767px) and (min-width:501px){
	.BsList-inner{
		margin: -1.125rem -0.75rem;
	}
	
	.BsList-item{
		width:50%;
		padding: 1.125rem 0.75rem;
	}
	
	.BsPostThumb{
		border-radius:1.5rem;
	}
}

@media screen and (max-width:500px) and (min-width:1px){
	.BsList-inner{
		margin: -1.5rem -0.75rem;
	}
	
	.BsList-item{
		width:100%;
		padding: 1.5rem 0.75rem;
	}
	
	.BsPostThumb{
		border-radius:1.25rem;
	}
	
	.BsPostCnt-title{
		min-height:0;
	}
}

/*=========================================================
	BsPaging
=========================================================*/
.BsPaging{
	margin-top:3.75rem;
	text-align:center;
}

.BsPaging-inner{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	margin:-0.25rem -0.25rem;
}

.BsPaging-item{
	padding:0.25rem 0.25rem;
}

.BsPaging-link{
	display:block;
	width:1.5rem;
	height:1.5rem;
	border-radius:100% 100%;
	position:relative;
}

.BsPaging-text{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	font-size:1rem;
	line-height:1.6;
	color:#444;
}

.BsPaging-item.Prev{
	padding-right:0.875rem;
}

.BsPaging-item.Next{
	padding-left:0.875rem;
}

.Btn .BsPaging-link{
	background-color:#F2F6F7;
	border:solid 1px #F2F6F7;
}

.is-Current .BsPaging-text{
	color:#063171;
	font-weight:700;
}

.Prev .BsPaging-link:after{
	content:"";
	width:0.25rem;
	height:0.5rem;
	background-image:url(../../images/icon/ico_bspaging_prev.webp);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

.Next .BsPaging-link:after{
	content:"";
	width:0.25rem;
	height:0.5rem;
	background-image:url(../../images/icon/ico_bspaging_next.webp);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

.Hidden .BsPaging-link{
	opacity:0.3;
	pointer-events:none;
}

@media screen and (min-width:1025px){
	.is-desktop a.BsPaging-link:hover .BsPaging-text{
		text-decoration:underline;
	}
	
	.is-desktop .Btn a.BsPaging-link:hover{
		background-color:transparent;
		border-color:#000;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.BsPaging-text{
		font-size:0.875rem;
	}
}

/*=========================================================
	Videos
=========================================================*/
.Video .BsPostCnt-title{
	min-height:0;
}

.Video .BsPostCnt-date{
	margin-top:0.75rem;
}

.Video .BsPostThumb:before{
	content:"";
	width:4rem;
	height:4rem;
	background-image:url(../../images/icon/ico_videos.webp);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: var(--ease-out-lerp);
	z-index:10;
}

@media screen and (min-width:1025px){
	.is-desktop .Video .BsPost-link:hover .BsPostThumb:before{
		transform:translate(-50%, -50%) scale(0.9);
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.Video .BsPostThumb:before{
		width:3.6rem;
		height:3.6rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.Video .BsPostThumb:before{
		width:3.6rem;
		height:3.6rem;
	}
}

/*=========================================================
	Campaign
=========================================================*/
.Campaign .BsPostCnt-title{
	min-height:0;
}

.Campaign .BsPostCnt-date{
	margin-top:0.75rem;
}

.Campaign .BsPostThumb:after{
	padding-bottom:116.4%;
}

/*=========================================================
	DonationGuide
=========================================================*/
.DonationGuideBg{
	line-height:0;
	border-radius:2.5rem;
	overflow:hidden;
	margin-bottom:3.75rem;
}

.DonationGuideBtn{
	text-align:center;
}

@media screen and (max-width:1024px) and (min-width:768px){
	.DonationGuideBg{
		border-radius:2rem;
		margin-bottom: 3.25rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.DonationGuideBg{
		border-radius:1.25rem;
		margin-bottom: 2.5rem;
	}
}

/*=========================================================
	ScheduleTab 
=========================================================*/
.ScheduleLy{
	position:relative;
}

.ScheduleTab{
	background-color:#fff;
	margin-bottom:5rem;
}

.ScheduleTabFlex{
	display:flex;
	border-top: 1px solid #C5C5C5;
	border-bottom: 1px solid #C5C5C5;
}

.ScheduleTabMonth{
	flex:1;
}

.ScheduleTabMonth-inner{
	min-width:0;
	display:flex;
	align-items:center;
	height:100%;
}

.ScheduleTabMonth-item{
	flex:1;
	height:100%;
}

.ScheduleTabYear{
	font-size:1.25rem;
	line-height:1.6;
	color:#063171;
	font-weight:700;
	padding:0.938rem 3.063rem;
}

.ScheduleTabMonth-link{
	text-align:center;
	position:relative;
	top:-1px;
	height:calc(100% + 2px);
	display:flex;
	flex-direction: column;
	justify-content:center;
	position:relative;
	z-index:1;
}

.ScheduleTabMonth-center{
	display:flex;
	align-items:center;
	justify-content:center;
}

.ScheduleTabMonth-num{
	display:block;
	font-size:1rem;
	line-height:1.6;
	color:#999;
}

.ScheduleTabMonth-text{
	display:block;
	font-size:1rem;
	line-height:1.6;
	color:#999;
}

.is-Current .ScheduleTabMonth-link{
	background-color:#063171;
}

.is-Current .ScheduleTabMonth-num{
	font-size:1.5rem;
	font-weight:700;
	color:#fff;
	margin-right:0.125rem;
}

.is-Current .ScheduleTabMonth-text{
	color:#fff;
}

@media screen and (max-width:1024px) and (min-width:768px){
	.ScheduleTabYear{
		padding: 0.938rem 1.25rem;
	}
	
	.is-Current .ScheduleTabMonth-num{
		font-size:1.25rem;
	}
	
	.ScheduleTabMonth-num{
		font-size:0.938rem;
	}
	
	.ScheduleTabMonth-text{
		font-size:0.938rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.ScheduleTab{
		margin-left:-1.25rem;
		margin-right:-1.25rem;
	}
	
	.ScheduleTabYear{
		font-size:1rem;
		padding: 0.875rem 1.25rem;
	}
	
	.ScheduleTabMonth{
		overflow:hidden;
		overflow-x:auto;
		-ms-overflow-style: none;
	}
	
	.ScheduleTabMonth::-webkit-scrollbar{
		display:none;
	}
	
	.ScheduleTabMonth-inner{
		display:block;
		white-space:nowrap;
	}
	
	.ScheduleTabMonth-item{
		display:inline-block;
	}
	
	.ScheduleTabMonth-link{
		padding:0 1.25rem;
	}
	
	.ScheduleTabMonth-num{
		font-size:0.875rem;
	}
	
	.ScheduleTabMonth-text{
		font-size:0.875rem;
	}
	
	.is-Current .ScheduleTabMonth-num{
		font-size:1.125rem;
	}
}

/*=========================================================
	SchedulePost 
=========================================================*/
.SchedulePost{
	position:relative;
}

.SchedulePostPs{
	position:absolute;
	height:7rem;
	top:-7rem;
	left:0;
	right:0;
	pointer-events:none;
}

.SchedulePost + .SchedulePost{
	margin-top:7rem;
}

.SchedulePostFlex{
	display:flex;
	align-items:start;
}

.SchedulePostMonth{
	width:11.25rem;
	padding-right:1.25rem;
	display:flex;
	align-items:center;
}

.SchedulePostMonth-num{
	font-size:3.75rem;
	line-height:1;
	color:#000;
	font-weight:700;
	display:block;
}

.SchedulePostMonth-text{
	font-size:3.125rem;
	line-height:1.1;
	color:#000;
	font-weight:700;
	display:block;
}

.SchedulePostInfo{
	flex:1;
	min-width:0;
	position:relative;
}

.SchedulePostInfo:before{
	content:"";
	width:1px;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	border-left:dotted 2px #C5C5C5;
}

.SchedulePostInfo-item + .SchedulePostInfo-item{
	margin-top:2.125rem;
}

.SchedulePostItem{
	position:relative;
	padding-left:1.5rem;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.SchedulePostItem:after{
	content:"";
	width:0.5rem;
	height:0.5rem;
	border-radius:100% 100%;
	background-color:#00AEEF;
	position:absolute;
	top:50%;
	left:calc(-0.25rem + 1px);
	transform:translateY(-50%);
	z-index:5;
}

.SchedulePostInfo-item:first-child .SchedulePostItem:before{
	content:"";
	width:4px;
	height:50%;
	background-color:#fff;
	position:absolute;
	top:-1px;
	left:-2px;
}

.SchedulePostInfo-item:last-child .SchedulePostItem:before{
	content:"";
	width:4px;
	height:50%;
	background-color:#fff;
	position:absolute;
	bottom:-1px;
	left:-2px;
}

.SchedulePostItemTitle{
	flex:1;
	min-width:0;
	padding-right:1.25rem;
}

.SchedulePostItemTitle-text{
	display:block;
	font-size:1.25rem;
	line-height:1.4;
	color:#000;
	font-weight:500;
}

.SchedulePostItemTitle-date{
	display:block;
	margin-top:0.25rem;
	font-size:0.875rem;
	line-height:1.4;
	color:#999;
}

.SchedulePostItem-location{
	font-size:1.125rem;
	line-height:1.4;
	color:#00AEEF;
	font-weight:500;
}

@media screen and (max-width:1024px) and (min-width:768px){
	.SchedulePostMonth{
		width: 10.5rem;
	}
	
	.SchedulePostMonth-num{
		font-size:3.35rem;
	}
	
	.SchedulePostMonth-text{
		font-size:2.8rem;
	}
	
	.SchedulePostItemTitle-text{
		font-size:1.125rem;
	}
	
	.SchedulePostItem-location{
		font-size:1rem;
	}
	
	.SchedulePostPs{
		height:6rem;
		top:-6rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.SchedulePostFlex{
		display:block;
	}
	
	.SchedulePostItem{
		display:block;
	}
	
	.SchedulePostMonth{
		width:100%;
		padding-right:0;
		margin-bottom:1.25rem;
		align-items: baseline;
	}
	
	.SchedulePostMonth-num{
		font-size:3.6rem;
	}
	
	.SchedulePostMonth-text{
		font-size:2.25rem;
		position:relative;
		transform:translateY(-0.25rem);
	}
	
	.SchedulePostItemTitle-text{
		font-size:1.063rem;
	}
	
	.SchedulePostItemTitle-date{
		font-size:0.938rem;
	}
	
	.SchedulePostItem-location{
		font-size:0.938rem;
		margin-top:0.875rem;
	}
	
	.SchedulePost + .SchedulePost{
		margin-top:6rem;
	}
	
	.SchedulePostPs{
		height:4.5rem;
		top:-4.5rem;
	}
}

/*=========================================================
	Message 
=========================================================*/
.MessageBg{
	line-height:0;
	margin-bottom:3.75rem;
}

.MessageTitle{
	text-align:center;
	font-size:2.75rem;
	line-height:1.4;
	font-weight:700;
	margin-bottom:2.5rem;
}

.MessageCnt{
	display:flex;
	margin:0 -1.875rem;
}

.Message-item{
	width:50%;
	padding:0 1.875rem;
}

.Message-text{
	text-align: justify;
	font-size:1.125rem;
	line-height:1.7;
	color:#444;
}

.Message-text + .Message-text{
	margin-top:0.75rem;
}

.MessageMeta{
	margin-top:2.5rem;
	text-align:right;
	transition-property: transform, opacity;
    transition-duration: 1s;
	transition-timing-function: var(--ease-out-lerp);
	transform:translateY(30%);
	opacity:0;
}

.is-Ani.MessageMeta{
	transform:translateY(0);
	opacity:1;
}

.MessageMeta-position{
	font-size:1.125rem;
	line-height:1.4;
	color:#999;
	margin-bottom:1.25rem;
}

.MessageMetaSignature-img{
	height:5.375rem;
}

@media screen and (max-width:1024px) and (min-width:768px){
	.MessageCnt{
		margin:0 -0.938rem;
	}

	.Message-item{
		padding:0 0.938rem;
	}
	
	.MessageTitle{
		font-size:2.375rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.MessageCnt{
		margin:0;
		display:block;
	}

	.Message-item{
		padding:0;
		width:100%;
	}
	
	.MessageBg{
		margin-bottom:2.5rem;
	}
	
	.MessageTitle{
		font-size:1.5rem;
		margin-bottom:1.85rem;
	}
	
	.Message-text{
		font-size:1rem;
	}
	
	.MessageMeta-position{
		font-size:0.938rem;
	}
	
	.MessageMetaSignature-img{
		height: 3.375rem;
	}
}

/*=========================================================
	Emblem
=========================================================*/
.EmblemMain{
	display:flex;
	align-items:center;
}

.EmblemMainThumb{
	line-height:0;
	width:22rem;
	margin-right:2.5rem;
}

.Emblem-text{
	font-size:1.125rem;
	line-height:1.7;
	color:#444;
	flex:1;
}

.EmblemLy{
	margin-top:6.25rem;
}

.EmblemHeader{
	margin-bottom:1rem;
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex:1;
}

.EmblemHeaderTitle{
	font-size:1.5rem;
	line-height:1.4;
	color:#000;
	font-weight:700;
}

.EmblemHeaderMeta{
	margin-top:1.563rem;
	display:flex;
	justify-content:end;
}

.EmblemHeaderMeta-inner{
	display:flex;
	margin:0 -0.125rem;
}

.EmblemHeaderMeta-item{
	padding:0 0.125rem;
}

.CpDownBtn{
	display:inline-block;
	padding:0.75rem 1.906rem;
	border-radius:100px 100px;
	background-color:#063171;
}

.CpDownBtn-text{
	display:block;
	font-size:1rem;
	line-height:1.4;
	color:#fff;
	font-weight:600;
	position:relative;
	padding-right:2rem;
}

.CpDownBtn-text:after{
	content:"";
	width:1.25rem;
	height:1.25rem;
	background-image:url(../../images/icon/ico_btn_down.svg);
	background-size:100% 100%;
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
}

.EmblemList-inner{
	display:flex;
	flex-wrap:wrap;
	margin:-0.625rem -0.625rem;
}

.EmblemList-item{
	padding:0.625rem 0.625rem;
	width:50%;
}

.EmblemList-item.Wide,
.EmblemList-item.Horizontal{
	width:100%;
}

.EmblemPost{
	background-color:#F2F6F7;
	border-radius:2.5rem;
	position:relative;
	overflow:hidden;
}

.EmblemPost:after{
	content:"";
	display:block;
	padding-bottom:60.3%;
}

.Wide .EmblemPost:after{
	padding-bottom:25%;
}

.Horizontal .EmblemPost:after{
	padding-bottom:18.75%;
}

.EmblemPost-title{
	position:absolute;
	top:2.25rem;
	left:2.5rem;
	right:2.5rem;
	font-size:1.125rem;
	line-height:1.4;
	color:#999;
	z-index:5;
}

.EmblemPost-img{
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, 10rem);
	transition-property: transform;
    transition-duration: 1s;
	transition-timing-function: var(--ease-out-lerp);
}

.is-Ani .EmblemPost-img{
	transform:translate(-50%, -50%);
}

.SignatureA{
	max-width:33.4%;
}

.SignatureB{
	max-width:33.4%;
}

.SignatureC{
	max-width:63.3%;
}

.SloganA{
	max-width:47.3%;
}

.SloganB{
	max-width:21.75%;
}

@media screen and (min-width:1025px){
	.is-desktop .CpDownBtn:hover{
		background-color:#00AEEF;
	}
}

@media screen and (max-width:1024px) and (min-width:768px){
	.EmblemLy{
		margin-top:6rem;
	}
	
	.EmblemPost{
		border-radius:2rem;
	}
	
	.EmblemPost-title{
		top:1.25rem;
		left:1.25rem;
		right:1.25rem;
	}
	
	.EmblemMainThumb{
		width:24rem;
	}
}

@media screen and (max-width:767px) and (min-width:1px){
	.EmblemList-inner{
		margin:-0.313rem -0.313rem;
	}

	.EmblemList-item{
		padding:0.313rem 0.313rem;
	}
	
	.EmblemPost{
		border-radius:1.25rem;
	}
	
	.EmblemMain{
		display:block;
	}
	
	.EmblemMainThumb{
		width:100%;
		margin:0 auto 1.125rem;
		max-width:19rem;
	}
	
	.EmblemLy{
		margin-top:5rem;
	}
	
	.Emblem-text{
		font-size:1rem;
	}
	
	.EmblemHeader{
		display:block;
	}
	
	.EmblemHeaderMeta{
		justify-content:center;
		margin-top:2.25rem;
	}
	
	.CpDownBtn-text{
		font-size:0.875rem;
		padding-right: 1.75rem;
	}
	
	.CpDownBtn{
		padding: 0.75rem 1.25rem;
	}
	
	.CpDownBtn-text:after{
		width:1.125rem;
		height:1.125rem;
	}
	
	.EmblemList-item{
		width:100%;
	}
	
	.EmblemPost-title{
		font-size:0.875rem;
		top:1.125rem;
		left:1.125rem;
		right:1.125rem;
	}
	
	.Wide .EmblemPost:after{
		padding-bottom: 49%;
	}
	
	.Horizontal .EmblemPost:after{
		padding-bottom: 35.75%;
	}
	
	.SignatureA{
		max-width: 40.4%;
	}
	
	.SignatureB{
		max-width: 40.4%;
	}
	
	.SignatureC{
		max-width: 76.3%;
	}
	
	.SloganA{
		max-width: 75%;
	}
	
	.SloganB{
		max-width: 37.75%;
	}
	
	.BsTwo .EmblemPost:after{
		padding-bottom: 72.3%;
	}
	
	.Horizontal .EmblemPost:after{
		padding-bottom: 41.75%;
	}
}