  /* MV */
@charset "UTF-8";
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition: all 0.5s;
	z-index: 997;
	padding: 24px 0;
}
@media (max-width: 1200px) {
	.header {
		padding: 12px 0;
	}
}
.header.sticked {
	background: #fff;
	padding: 0;
	box-shadow: 0px 10px 30px rgba(0, 71, 55, 0.1);
}
.header .logo img {
	max-height: 80px;
	margin-right: 1rem;
}
@media (max-width: 992px) {
	.header .logo img {
		max-height: 70px;
	}
}
@media (max-width: 576px) {
	.header .logo img {
		max-height: 50px;
	}
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.bgwhite {
	background:#fff;
	border-radius: 100px;
	padding: 0.5rem 2rem;
	max-width: 90%;
}
.lang_btn a {
	border-radius: 100px;
	border: 1px solid var(--bs-blue);
	background: var(--bs-blue);
	transition: .2s;
	color: #fff !important;
	padding: 15px;
	font-weight: normal !important;
}
.lang_btn a:hover {
	background: none;
	color: var(--bs-blue) !important;
}
.bi-suit-heart-fill {
	color: var(--bs-yellow);
	margin: 0 0.25rem;
}
@media (min-width: 992px) {
	.navbar {
		padding: 0;
	}
	.navbar ul.navbar_main {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}
	.navbar ul.navbar_main > li:nth-child(1) {
		margin: 10px 0 10px 0;
	}
	.navbar ul.navbar_main > li {
		position: relative;
		margin: 10px 0 10px 30px;
	}
	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: baseline;
		/*justify-content: space-between;*/
		justify-content: center;
		font-weight: 500;
		color: #000;
		white-space: nowrap;
		/*transition: 0.3s;*/
		text-decoration: none;
	}
	.navbar a i,
	.navbar a:focus i {
		font-size: 16px;
		line-height: 0;
	}
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: var(--bs-blue);
	}
	.navbar a > span {
		display: block;
		text-align: center;
		line-height: 1.6;
	}
	.navbar a > span span {
		font-size: 0.7rem;
		display: block;
	}
	.navbar .dropdown ul {
		display: block;
		position: absolute;
		/*left: 14px;*/
		left: -35px;
		top: 100%;
		margin: 0;
		padding: 30px 0 10px;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 50px 50px 0px rgba(0, 71, 55, 0.1);
		transition: 0.2s;
		border: none;
	}
	.navbar .dropdown ul li {
		min-width: 170px;
	}
	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--color-utokyoyellow);
	}
	.navbar .dropdown ul a i {
		font-size: 12px;
	}
	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
		color: var(--bs-blue);
	}
	.navbar .dropdown:hover>ul {
		opacity: 1;
		/*top: 100%;*/
		visibility: visible;
	}
	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}
	.navbar .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}
	.dropdown-item:hover {
		background: none;
	}
}
@media (min-width: 992px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}
@media (min-width: 992px) {
	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
	.header .bgwhite{
		transition: 0.5s;
		padding: 0.5rem 1.5rem;
	}
	.header.sticked .bgwhite {
		padding: 1rem 0;
	}
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 80%;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}
	.navbar ul.navbar_main {
		position: absolute;
		inset: 0;
		padding: 3rem 2rem;
		margin: 0;
		background: rgba(27, 47, 69, 1);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}
	.navbar ul.navbar_main li {
		list-style: none;
	}
	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: baseline;
		padding: 10px 20px;
		color: #fff;
		white-space: nowrap;
		transition: 0.3s;
		text-decoration: none;
		font-size: 14px;
	}
	.navbar a > span {
		display: block;
		line-height: 1.6;
	}
	.navbar a > span span {
		font-size: 0.7rem;
		display: block;
	}
	.navbar a i,
	.navbar a:focus i {
		font-size: 16px;
		line-height: 0;
	}
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: #fff;
	}
	.lang_btn {
		margin-top: 3rem;
	}
	.lang_btn a {
		justify-content: center;
	}
	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: rgba(20, 35, 51, 0.6);
	}
	.navbar .dropdown>.dropdown-menu.show,
	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}
	.dropdown-item:hover {
		background: none;
	}
	.mobile-nav-show {
		color: var(--bs-blue);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
	}
	.mobile-nav-hide {
		color: rgba(255, 255, 255, 0.9);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 15px;
		top: 15px;
		z-index: 9999;
	}
	.mobile-nav-active {
		overflow: hidden;
	}
	.mobile-nav-active .navbar {
		right: 0;
	}
	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(27, 47, 69, 0.7);
		z-index: 9996;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	background: url("/150ut/assets/images/index/hero-bg.jpg") center;
	background-size: cover;
	position: relative;
/*	padding: 120px 0; */
	z-index: 3;
}
.hero:before {
	position: absolute;
	content: "";
	background: rgb(11,139,238);
	background: linear-gradient(90deg, rgba(11,139,238,0.5) 0%, rgba(255,205,0,0.5) 100%);
	inset: 0;
}
.hero .container {
	z-index: 1;
}
@media (min-width: 992px) {
	.hero {
		background-attachment: fixed;
	}
}
.hero h1 {
	margin: 0;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}
@media (min-width: 768px) {
	.hero h1 { font-size: 4rem; }
}
.hero h1 span {
	border: 2px solid #fff;
	padding: 0.5rem 1rem;
}
.hero p {
	color: #fff;
}
.herofs { font-size: 2.5rem; }
@media (max-width: 992px) {
	.herofs { font-size: 2rem; }
}
@media (max-width: 768px) {
	.herofs { font-size: 1.5rem; }
}
@media (max-width: 576px) {
	.herofs { font-size: 1.2rem; }
}
.scroll_down a {
	display: inline-block;
	position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 15px;
  padding: 10px 10px 110px;
  color: #fff;
  line-height: 0.4;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  margin: auto;
}
.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: transparent;
}
.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background:#ddd;
}
.scroll_down a:hover {
  opacity: .5;
}
#type01 a:after {
  animation: sdl01 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/*--------------------------------------------------------------
# Countdown & What's New Section
--------------------------------------------------------------*/
.whatsnew {
  padding: 100px 0;
	background-size: cover;
  background-image: url(/150ut/assets/images/common/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
.whatsnew h2 {
  font-weight: 600;
	color: var(--bs-blue);
}
.whatsnew .text-img-bg {
	font-size: 60px;
	background-image: url(/150ut/assets/images/index/text-bg.png);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: contain;
	background-position: left;
	display: inline-block;
}

/*--------------------------------------------------------------
# 周年事業とその想い「響存」
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
	background: url(/150ut/assets/images/index/about-bg.jpg) center center;
	background-size: cover;
}
@media (min-width: 992px) {
	.about {
		background-attachment: fixed;
	}
}
/*
.about:before {
	position: absolute;
	content: "";
	background: rgb(11,139,238);
	background: linear-gradient(310deg, rgba(11,139,238,0.3) 0%, rgba(255,205,0,0.3) 100%);
	inset: 0;
}
@media screen and (max-width: 9999px) and (min-width: 1700px) {
  .about::before {
    background-size: cover;
  }
}
.about .dots-shape-left {
  left: -75px;
  height: 110px;
  top: -80px;
  width: 110px;
}
.about .dots-shape-right {
  right: -15px;
  height: 110px;
  width: 110px;
  top: -35px;
}
*/
.about h2, .about .h2 {
	font-weight: 600;
	text-shadow: 0 0 8px rgb(0, 0, 0, 0.5);
}
.about .toplead {
	width: 80%;
}
@media (max-width: 768px) {
	.about .toplead {
		width: 90%;
	}
}
.about p {
	text-shadow: 0 0 8px rgb(0, 0, 0, 1);
}
@media (max-width: 768px) {
	.about p {
		font-size: 0.9rem;
	}
}




/*--------------------------------------------------------------
# 東京大学を応援しています
--------------------------------------------------------------*/
.portfolio {
  padding: 100px 0 150px;
	background-size: cover;
  background-image: url(/150ut/assets/images/common/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
/*
.portfolio::before {
  position: absolute;
  content: "";
  top: -100px;
  left: 0px;
  width: 100%;
  height: 92%;
  background-size: contain;
  background-image: url(/150ut/assets/images/index/portfolio/portfolio-backoverlay.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.portfolio .shape {
  top: -15px;
  right: -100px;
  height: 130px;
}
*/
.portfolio h2, .portfolio .h2 {
  font-weight: 600;
	color: var(--bs-blue);
}
.portfolio h2 span {
	display: block;
	font-size: 1rem;
	line-height: 2;
}
@media (max-width: 768px) {
	.portfolio p {
		font-size: 0.9rem;
	}
}
/* スライダー */
.portfolio-wrap {
  display: flex;
  overflow: hidden;
}
.portfolio-slider {
  animation: scroll-left 80s infinite linear .5s both;
  display: flex;
	align-items: center;
}
.item {
  width: calc(100vw / 3);
	margin-right: 1.6rem;
}
@media (max-width: 768px) {
	.item {
	  width: calc(100vw / 1.5);
	}
}
.item img {
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/*
.portfolio .portfolio-slider .owl-item .item {
  margin: 0 -20px 0 -50px;
	padding: 1.5rem;
	background: #f4ede5;
	border-radius: 15px;
}
.portfolio .portfolio-slider .owl-stage {
  left: 50px;
}
.portfolio .portfolio-slider .owl-stage-outer {
  overflow: inherit;
}
.portfolio .portfolio-slider .item img {
  border-radius: 15px;
}
.portfolio .owl-carousel .item {
	height:350px;
}
@media (max-width: 600px) {
.portfolio .owl-carousel .item {
		height: 250px;
	}
}
.portfolio .owl-carousel .item img {
	height: 100%;
	width: auto !important;
}
/*
@media (max-width: 1024px) {
	.portfolio .owl-carousel .item img {
		height: 300px;
	}
}
@media (max-width: 600px) {
	.portfolio .owl-carousel .item img {
		height: 200px;
	}
}
*/

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  padding: 100px 0;
	background: url(/150ut/assets/images/index/events-bg.jpg) center center;
	background-size: cover;
}
@media (min-width: 992px) {
	.events {
		background-attachment: fixed;
	}
}
.events h2 {
	font-weight: 600;
	text-shadow: 0 0 8px rgb(0, 0, 0, 0.5);
}
.events .toplead {
	width: 80%;
}
@media (max-width: 768px) {
	.events .toplead {
		width: 90%;
	}
}
.events p {
	text-shadow: 0 0 8px rgb(0, 0, 0, 1);
}
@media (max-width: 768px) {
	.events p {
		font-size: 0.9rem;
	}
}
.events h2 {
  font-weight: 600;
	color: var(--bs-blue);
}
.events h2 span {
	display: block;
	font-size: 1rem;
	line-height: 2;
}
#events .active > .page-link,
#events .page-link.active {
	background-color: var(--bs-blue);
	border-color: var(--bs-blue);
}


/*--------------------------------------------------------------
# ロゴで応援
--------------------------------------------------------------*/
.logo-dl {
  padding: 100px 0;
	background-size: cover;
  background-image: url(/150ut/assets/images/common/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
/*
.logo-dl::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url(/150ut/assets/images/common/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
.logo-dl .shape {
  top: -15px;
  right: -30px;
  height: 130px;
}
*/
.logo-dl h2, .logo-dl .h2 {
	font-weight: 600;
	color: var(--bs-blue);
}
.logo-dl h2 span {
	display: block;
	font-size: 1rem;
	line-height: 2;
}
.logo-dl img {
	max-height: 500px;
}
.logo-dl .hashtag span {
	display: inline-block;
	margin: 0 0.8rem 0.8rem 0;
	padding: 0.5rem 1rem;
	border: 1px dashed var(--bs-yellow);
	background-color: #FFF5CC;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 80px 0 30px;
	background-image: url(/150ut/assets/images/common/footer_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: unset;
  /*background-color: #07538F;*/
}
.footer .footer-logo img {
	max-height: 200px;
}
@media (max-width: 600px) {
	.footer .footer-logo img {
		max-height: 150px;
	}
}
.footer ul li a {
  display: inline-block;
  padding-bottom: 15px;
  text-decoration: none;
	color: #fff;
  /*color: #92ACF2;*/
  font-weight: 500;
	transition: .3s;
}
.footer ul li a:hover {
  color: var(--bs-blue);
}
.footer ul.sns li a span::before {
	font-size: 2rem;
}
@media (max-width: 600px) {
	.footer ul.sns li a span::before {
		font-size: 1.5rem;
	}
}
.footer .copyrights {
  font-size: 0.8rem;
}

/*max-width-1024px*/
@media (max-width: 1199.98px) {
  .logo-dl, .portfolio, .whatsnew {
    padding: 100px 0;
  }
  .portfolio .portfolio-wrap {
    position: unset;
  }
}

/*max-width-991.98px*/
@media (max-width: 991.98px) {
  .logo-dl, .portfolio, .whatsnew {
    padding: 80px 0;
  }
  .portfolio .portfolio-slider .owl-stage {
    left: 30px;
  }
  .portfolio .portfolio-slider .owl-stage .owl-item .item {
    margin: 0 -35px 0 -52px;
  }
  .portfolio-slider {
    padding: 0 15px;
  }
}

/*max-width-768px*/
@media (max-width: 768px) {
  .leadtext, .logo-dl, .portfolio, .whatsnew, .about, .events {
    padding: 70px 0;
  }
  .fs-2 {
    font-size: 30px !important;
  }
  .footer {
    padding: 40px 0 20px;
		background-attachment: unset;
  }
  .portfolio .portfolio-slider .owl-stage {
    left: 35px;
  }
}

/*# sourceMappingURL=style.css.map */

/*--------------------------------------------------------------
# フローティングバナー
--------------------------------------------------------------*/
.floating_banner_wrapper {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 4;
}
.floating_banner:not(:last-child) {
	margin-bottom: 2rem;
}
.floating_banner {
	position: relative;
}
.floating_banner a img {
	width: 250px;
}
@media (max-width: 768px) {
	.floating_banner:not(:last-child) {
		margin-bottom: 1rem;
	}
	.floating_banner a img {
		width: 150px;
	}
}
.floating_banner a img {
	display: block;
	transition: 0.3s;
}
.floating_banner a img:hover {
  opacity: 0.7;
}
.close_btn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: -13px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
.close_btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #000;
  transform-origin: center;
}
.close_btn span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close_btn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.close {
	display: none;
}





/*--------------------------------------------------------------
# 下層ページ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# sub-title
--------------------------------------------------------------*/
.sub-title {
	padding: 200px 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('/150ut/assets/images/index/hero-bg.jpg');
}
@media (max-width: 992px) {
	.sub-title {
		padding: 100px 0 30px 0;
	}
}
.sub-title:before {
	content: "";
	background: linear-gradient(90deg, rgba(11,139,238,0.5) 0%, rgba(255,205,0,0.5) 100%);
	position: absolute;
	inset: 0;
}
.sub-title h2 {
	color: #fff;
	text-shadow: 0 0 20px rgb(0, 0, 0, 0.5);
}
.sub-title h2 span {
	display: block;
	font-size: 1rem;
	line-height: 2;
}
@media (max-width: 992px) {
	.sub-title h2 span {
		font-size: 0.8rem;
	}
}
.sub-title ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--bs-blue);
}
.sub-title ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}
.sub-title ol a:hover {
	text-decoration: underline;
}
.sub-title ol li+li {
	padding-left: 10px;
}
.sub-title ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
}

/*--------------------------------------------------------------
# We Love 黑料传送门 - 応援プロジェクト
--------------------------------------------------------------*/
/*
.portfolio-de {
	overflow: hidden;
	padding: 80px 0 80px;
}
*/
.movie-de {
	overflow: hidden;
	padding: 80px 0 150px;
}
.portfolio-de h3,
.movie-de h3 {
	font-weight: 600;
	color: var(--bs-blue);
}
iframe.youtube-16-9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	max-width: 600px;
	display: block;
	margin: auto;
}
.movie-wrap {
	gap: 30px;
}
@media (max-width: 992px) {
	.youtube:not(:last-child) {
		margin-bottom: 20px;
	}
}
.movie-name {
	position: relative;
  display: block;
  padding: 12px 15px;
  outline: 1px solid #333;
  outline-offset: 1px;
  background: #FFF0B3;
  margin: 2rem;
  margin-inline: auto;
  width: fit-content;
}
.movie-name::before {
	content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50px;
  height: 16px;
  width: 15px;
  background-color: #fff;
}
.movie-name::after {
	content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 56px;
  height: 16px;
  width: 15px;
  border-right: 1px solid #333;
  rotate: -40deg;
}
.bg-white {
	background: #fff;
}

/* Isotope部分
.portfolio-de .portfolio-flters {
	padding: 0;
	margin: 0 auto 50px auto;
	list-style: none;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.portfolio-de .portfolio-flters li {
	color: var(--bs-blue);
	cursor: pointer;
	padding: 10px 20px;
	border: 1px solid var(--bs-blue);
	margin: 10px;
	transition: all 0.3s ease-in-out;
	position: relative;
}
.portfolio-de .portfolio-flters li::before {
  background: var(--bs-blue);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}
.portfolio-de .portfolio-flters li:hover,
.portfolio-de .portfolio-flters li.filter-active {
	color: white;
}
.portfolio-de .portfolio-flters li.filter-active::before,
.portfolio-de .portfolio-flters li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 575px) {
	.portfolio-de .portfolio-flters li {
		margin: 5px;
		padding: 5px 20px;
	}
}
.portfolio-de .portfolio-item .portfolio-info {
	opacity: 0;
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	background: rgba(255, 255, 255, 0.7);
	padding: 15px;
}
@media screen and (max-width: 992px) {
	.portfolio-de .portfolio-item .portfolio-info {
		padding: 10px;
	}
}
.portfolio-de .portfolio-item .portfolio-info h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	letter-spacing: normal;
}
@media screen and (max-width: 992px) {
	.portfolio-de .portfolio-item .portfolio-info h4 {
		font-size: 14px;
	}
}
.portfolio-de .portfolio-item .portfolio-info p {
	color: #6c757d;
	margin-bottom: 0;
	font-size: 14px;
}
@media screen and (max-width: 992px) {
	.portfolio-de .portfolio-item .portfolio-info p {
		font-size: 12px;
	}
}
.portfolio-de .portfolio-item .portfolio-info .preview-link:hover,
.portfolio-de .portfolio-item .portfolio-info .details-link:hover {
	color: var(--bs-blue);
}
.portfolio-de .portfolio-item:hover .portfolio-info {
	opacity: 1;
	bottom: 20px;
}
*/
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-de {
	overflow: hidden;
	padding: 80px 0;
	background-color: #F9F9FB;
}
.about-de .content h3 {
	font-weight: 600;
	color: var(--bs-blue);
}
.about-de .content p {
	margin: 30px 0;
	color: #29486a;
}

/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
#events {
	overflow: hidden;
	background-color: #F9F9FB;
	padding: 80px 0;
}
#event-container.fade { /* ページャー押下時のフェードアウト */
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}
#event-container.show {
	opacity: 1;
}
/* カード部分 */
.events-img-hover {
	position:relative;
	border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.events-img-hover > a {
	bottom: 0;
	display: block;
	left: 0;
	position: relative;
	right: 0;
	top: 0;
}
.events-img-hover > a > img.scale {
	transform: scale3d(1, 1, 1);
	transform-style: preserve-3d;
	transition: transform .5s;
}
.events-img-hover > a:after {
	background-color: rgba(0, 0, 0, 0.6);
	content: "";
	cursor: pointer !important;
	display: block;
	z-index: 0;
}
.events-img-hover > a:after,
.events-img-hover > figcaption {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.events-img-hover > figcaption {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
}
.events-img-hover > figcaption > i {
	line-height: 0;
}
.events-img-hover > figcaption > * {
	opacity: 0;
}
.events-img-hover:hover > a > img.hover-scale-up {
	transform: scale3d(1.2, 1.2, 1.2);
}
.events-img-hover:hover > a:after,
.events-img-hover:hover > figcaption {
	opacity: 1;
	transition: opacity .15s linear;
}
@keyframes bsb-fadeInLeft {
	0% { opacity: 0; transform: translate3d(-100%,0,0)}
	to { opacity: 1; transform: translateZ(0)}
}
.events-img-hover:hover > figcaption > .hover-fadeInLeft {
	animation-duration: 500ms;
	animation-fill-mode: both;
	animation-name: bsb-fadeInLeft;
}
@keyframes bsb-fadeInRight {
	0% { opacity: 0; transform: translate3d(100%,0,0)}
	to { opacity: 1; transform: translateZ(0)}
}
.events-img-hover:hover > figcaption > .hover-fadeInRight {
	animation-duration: 500ms;
	animation-fill-mode: both;
	animation-name:bsb-fadeInRight;
}

@media screen and (max-width: 992px) {
	.sidebar {
		margin-top: 100px;
	}
}

/* Events 記事詳細ページ */
@media screen and (max-width: 992px) {
	.post-lists .card-body {
		padding: 1rem !important;
	}
	.post-lists .container {
		padding: 0 !important;
	}
}
.post-lists .table_box {
	border: 1px solid #e4e4e4;
	border-radius: 5px;
	margin-bottom: 2rem;
}
@media screen and (max-width: 992px) {
	.post-lists .table_box {
		padding: 1rem !important;
	}
}
.post-lists h4 {
	color: var(--bs-blue);
}
.post-lists table tr {
	border-bottom: 1px solid #e4e4e4;
}
.post-lists table tr:last-child {
	border-bottom: none;
}
.post-lists table td,
.post-lists table th {
	border-color: #e4e4e4;
	border-bottom: none;
}
.post-lists table th {
	font-weight: 700;
}
.post-lists table.program th {
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.post-lists table td,
	.post-lists table th {
		width: 100%;
		display: inline-block;
	}
	.post-lists table td {
		padding-top: 0;
	}
}

/* post_003.html 個別 */
table.p003 th {
	width: 15%;
}
@media screen and (max-width: 768px) {
	table.p003 th {
		width: 100%;
	}
	table.p003 td {
		padding: .5rem .5rem;
	}
}
table.p003 .fs-11 {
	line-height: 1.5;
}


/*--------------------------------------------------------------
# News_Archive Section
--------------------------------------------------------------*/
#news_archive {
	overflow: hidden;
	padding: 80px 0;
}
.news_archive .list-group .list-group-item {
	padding: 1.5rem;
}
.news_archive .list-group .list-group-item:first-child {
	padding-top: 0;
}


/*--------------------------------------------------------------
# messages Section
--------------------------------------------------------------*/
#messages-top {
	overflow: hidden;
	background: #fff;
	padding: 80px 0;
}
#messages-top .dots-shape-left {
  left: 0;
  top: 20px;
}
@media screen and (max-width: 768px) {
	#messages-top .dots-shape-left {
	  left: -100px;
	}
}
#messages-top .dots-shape-right {
  right: 0;
  bottom: 20px;
}
#messages {
	overflow: hidden;
	background-color: #F9F9FB;
	padding: 80px 0;
}
#messages h3,
.messages-de h3 {
	font-weight: 600;
	color: var(--bs-blue);
}
@media screen and (min-width: 768px) {
	.modal_top {
		margin: 0 auto;
		width: 50%;
	}
}

.header,
.modal-open,
.modal {
	padding-right: 0px !important;
}
.modal_button .btn2 a {
	padding: 0.5rem 3rem;
}
.modal_button .card .row {
	cursor: pointer;
}
.card-title {
	margin-bottom: 1rem;
}
.modal_button .card .card-footer {
	border-top: 0 !important;
	color: #0B8BEE !important;
	background: linear-gradient(
		45deg,
		transparent 0%, #DFDFDF 60%,
		transparent 60%, transparent 62%,
		#0B8BEE 62%, #0B8BEE 63%,
		transparent 63%, transparent 65%,
		#FFCD00 65%, #FFCD00 66%,
		transparent 66%, transparent 100%
		);
}
@media screen and (min-width:768px) and (max-width:992px) {
	.card > div > div.col-4 {
		min-height: 200px;
	}
}
@media screen and (max-width: 992px) {
	.modal_button .card .card-footer {
		background: linear-gradient(
			45deg,
			transparent 0%, #DFDFDF 50%,
			transparent 50%, transparent 52%,
			#0B8BEE 52%, #0B8BEE 53%,
			transparent 53%, transparent 55%,
			#FFCD00 55%, #FFCD00 56%,
			transparent 56%, transparent 100%
			);
	}
}
.modal_button .card .card-footer span {
	position: relative;
	transition: .3s;
	top: 0px;
}
.modal_button .card:hover .card-footer span {
	top: -5px;
}
.modal_button .card img {
	transition: .3s;
}
.modal_button .card:hover img {
	transform:scale(1.1,1.1);
	overflow:hidden;
}
.modal-body {
	padding: 2rem;
	background: linear-gradient(
		45deg,
		transparent 0%, #fafafa 30%,
		transparent 30%, transparent 32%,
		#DCEEFC 32%, #DCEEFC 33%,
		transparent 33%, transparent 35%,
		#FFF7DA 35%, #FFF7DA 36%,
		transparent 36%, transparent 100%
		);
}
.modal-header .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
}
.modal-content .modal-header .col-8 {
	padding: 0 0 0 1rem;
}
@media screen and (max-width: 500px) {
	.modal-content .modal-header .col-8 {
		padding: 0 1rem;
	}
}
.modal-dialog-scrollable .modal-content {
	max-height: 80%;
}
