@charset "utf-8";
/***** section_nav *****/
#section_nav {
	display: none;
}

@media screen and (max-width:768px) {
	#section_nav {
		display: block;
		position: sticky;
		top: 65px;
		z-index: 999;
	}
	
	#section_nav > div > div {
		margin-bottom: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	#section_nav > div > div > h2 {
		font-size: 2rem;
		font-weight: 700;
	font-family: var(--ttl-font);
	}
	
	#section_nav > ul {
		display: flex;
	}
	
	#section_nav > ul li {
		width: 50%;
		height: 40px;
		font-family: var(--ttl-font);
		text-align: center;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	#section_nav > ul li:nth-child(1) {
		background-color: #fae5ec;
	}
	
	#section_nav > ul li:nth-child(2) {
		background-color: #dcebf4;
	}
	
	#section_nav > ul li:nth-child(1)::before {
		content: "";
		width: 22px;
		height: 22px;
		margin-right: 7px;
		background: url("../images/common/heart_img.svg") 0 0 no-repeat;
		background-size: 22px 22px;
		display: inline-block;
	}
	
	#section_nav > ul li:nth-child(2)::before {
		content: "";
		width: 22px;
		height: 22px;
		margin-right: 7px;
		background: url("../images/common/lung_img.svg") 0 0 no-repeat;
		background-size: 22px 22px;
		display: inline-block;
	}
	
	#section_nav > ul li:first-child {
		border-right: #ddd 1px solid;
	}
	
	#section_nav > div {
		height: calc(100dvh - 104px);
		margin-top: 104px;
		padding: 30px 20px;
		/*padding: 30px 20px 50px;*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
	}
	
	#section_nav > div.open {visibility: visible;
    opacity: 1;
	}
	
	#section_nav > div li a {
		padding: 15px 0;
	font-family: var(--ttl-font);
		color: #333;
		text-decoration: none;
		display: block;
		position: relative;
	}
	
	#section_nav > div li a.nav_win_icon::after {
	content: "";
	width: 13px;
	height: 11px;
	margin-left: 5px;
	display: inline-block;
	background: url("../images/common/win_icon.svg") 0 0 no-repeat;
}
	
	#section_nav > div > div > p {
		display: block;
		width: 30px;
		height: 23px;
		z-index: 100;
		position: relative;		
	}
	
	#section_nav > div > div > p span {
		display: block;
		height: 1px;
		position: absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	#section_nav > div > div > p span:nth-child(1) {
		transform: translateY(11px) rotate(-315deg);
		top: 0px;
	}
	#section_nav > div > div > p span:nth-child(2) {
		transform: translateY(-11px) rotate(315deg);
		top: 22px;
	}
	
	#cardiac_menu {
		background-color: #fae5ec;		
	}
	
	#thoracic_menu {
		background-color: #dcebf4;
	}
	
	#cardiac_menu > div {
		display: flex;
		justify-content: space-between;
	}
	
	#cardiac_menu > div > h2 {
		color: var(--color-rd);
	}
	
	#thoracic_menu > div > h2 {
		color: var(--color-bl);
	}
	
	#cardiac_menu > div > p > span {
		background-color: var(--color-rd);
	}
	
	#thoracic_menu > div > p > span {
		background-color: var(--color-bl);
	}
	
	#cardiac_menu li a {
		border-bottom: var(--color-rd) 1px dotted;
	}
	
	#cardiac_menu li:first-child a {
		border-top: var(--color-rd) 1px dotted;
	}
	
	#thoracic_menu li a {
		border-bottom: var(--color-bl) 1px dotted;
	}
	
	#thoracic_menu li:first-child a {
		border-top: var(--color-bl) 1px dotted;
	}
	
	#cardiac_menu > p {
		background-color: var(--color-rd);
	}
	
	#thoracic_menu > p {
		background-color: var(--color-bl);
	}
}


/***** ID *****/
#mv {
	width: 100%;
	position: relative;
}

#mv_inner {
	width: 1100px;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 999;
	display: flex;
	/*justify-content: space-between;*/
	justify-content: flex-end;
	align-items: flex-end;
} 

#theme {
	/*margin-bottom: 60px;*/
	font-family: var(--ttl-font);
	color: #fff;
	position: absolute;
	left: 0;
	top: 20px;
}

#theme h2 {
	font-size: 5.5rem;
	font-weight: 500;
	text-shadow: 0 1px 4px #222;
}

#theme p {
	font-size: 2.5rem;
	font-weight: 500;
	text-shadow: 0 1px 4px #111;
}

#reservation {
	width: 400px;
}

#reservation h2 {
	padding: 15px;
	font-size: 2rem;
	font-weight: 500;
	font-family: var(--ttl-font);
	text-align: center;
	color: #fff;
	background-color: var(--color-gr);
	cursor: pointer;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	position: relative;
	z-index: 999;
}

#reservation h2::before {
	content: "";	
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
	position: absolute;
	right: 25px;
	top: 40%;
	transform: rotate(-135deg) translateX(-50%);	
}

#reservation h2.open::before {
	content: "";	
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
	position: absolute;
	right: 20px;
	top: 45%;
	transform: rotate(45deg) translateX(-50%);	
}

#reservation > div {
	padding: 20px;
	text-align: center;
	background-color: rgba(255,255,255,0.8);
	display: none;
}

#reservation > div > dl dt {
	font-size: 1.7rem;
}

#reservation > div > dl dd p:nth-child(1) {
	font-size: 3.8rem;
	font-weight: 700;
	color: var(--color-gr);
	position: relative;
}

#reservation > div > dl dd p:nth-child(1)::before {
	content: "";
	width: 32px;
	height: 32px;
	margin-right: 5px;
	background: url("../images/top/tel_icon.svg") 0 0 no-repeat;
	background-size: 32px;
	display: inline-block;
}

#reservation > div > dl dd p:nth-child(2) {
	font-size: 1.6rem;
}

#reservation > div > p {
	margin-top: 10px;
	font-size: 1.4rem;
}

#reservation > div > ul {
	margin-top: 15px;
}

#reservation > div > ul li {
	margin-bottom: 10px;
}

#reservation > div > ul li:last-child {
	margin-bottom: 0;
}

#reservation > div > ul li a {
	padding: 5px;
	font-size: 1.4rem;
	text-decoration: none;
	color: #fff;
	border: var(--color-gr) 1px solid;
	display: block;
	background-color: var(--color-gr);
	transition: 0.5s;
}

#reservation > div > ul li a:hover {
	color: var(--color-gr);
	background-color: #fff;
}

#reservation_sp {
	display: none;
}
@media screen and (max-width:768px){
	#mv_inner {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(0);
	z-index: 99;
	display: block;
} 
	
#theme {
	height: 100%;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: static;
}

#theme h2 {
	font-size: 6vw;
	margin-bottom: 5px;
	text-align: center;
}

#theme p {
	font-size: 4vw;
	text-align: center;
}
	
#reservation {
	display: none;
}
	
#reservation_sp {
	display: block;
}

#reservation_sp h2 {
	padding: 5px;
	font-size: 1.6rem;
	text-align: center;
	color: #fff;
	background-color: var(--color-gr);
}

#reservation_sp > div {
	padding: 15px;
	text-align: center;
}

#reservation_sp > div > dl dt {
	font-size: 1.5rem;
}

#reservation_sp > div > dl dd p:nth-child(1) {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--color-gr);
	position: relative;
}

#reservation_sp > div > dl dd p:nth-child(1)::before {
	content: "";
	width: 30px;
	height: 30px;
	margin-right: 5px;
	background: url("../images/top/tel_icon.svg") 0 0 no-repeat;
	background-size: 30px;
	display: inline-block;
}

#reservation_sp > div > dl dd p:nth-child(2) {
	font-size: 1.5rem;
}

#reservation_sp > div > p {
	margin-top: 10px;
	font-size: 1.3rem;
}

#reservation_sp > div > ul {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}

#reservation_sp > div > ul li {
	width: 48%;
}

#reservation_sp > div > ul li:last-child {
	margin-bottom: 0;
}

#reservation_sp > div > ul li a {
	padding: 5px;
	font-size: 1.4rem;
	text-decoration: none;
	color: #fff;
	border: var(--color-gr) 1px solid;
	display: block;
	background-color: var(--color-gr);
	transition: 0.5s;
}

#reservation_sp > div > ul li a:hover {
	color: var(--color-gr);
	background-color: #fff;
}
}



/***** swiper *****/
#swiper-slide01 {
	background: url("../images/top/mv_01.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#swiper-slide02 {
	background: url("../images/top/mv_02.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#swiper-slide03 {
	background: url("../images/top/mv_03.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#swiper-slide04 {
	background: url("../images/top/mv_04.jpg") 50% 50% no-repeat;
	background-size: cover;
}

.swiper {
  width: 100%!important;
	height: 550px;
  margin: 0!important;
}

.swiper-wrapper {
}

.swiper .swiper-slide {
  width: 100%;	
  height: 100%;
  text-align: center;
}

.swiper .swiper-slide img {
	width: 100%;
}

:root {
  --swiper-theme-color: #00A7CB!important;
}

.swiper_scroll {
	/*max-width: 1500px;
    max-width: 1100px;*/
	padding-top: 30px!important;
}

.swiper_scroll .swiper-slide {
    width: 280px;
    margin-right: 25px;
}

.swiper_scroll .swiper-slide:nth-last-child(1) {
    margin-right: 0;
}

.swiper-pagination {
	width: 1100px!important;
	margin: 0 auto!important;
	text-align: left!important;
	left: 0!important;
	bottom: 20px!important;
}

.swiper-pagination-bullet {
	width: 70px!important;
	height: 3px!important;
	background: #fff!important;
	opacity: 1!important;
	border-radius: 0!important;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin-right: 10px!important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color,var(--swiper-theme-color))!important;
}

.swiper-container-free-mode > .swiper-wrapper{-webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important; }

.swiper_scroll .swiper-scrollbar{
	background-color: rgba(255,255,255,0.8)!important;
	bottom: 0px!important;
	width: 100%!important;
	right: 0!important;
	left: auto!important;
	border-radius:0;
	width: 87%;
	max-width: 1100px;
}

.swiper_scroll .swiper-scrollbar-drag{
	background-color: var(--color-gr)!important;
}

.swiper-parent{
	position: relative;
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{
	bottom: 0px;
	top: auto!important;
}

.swiper-horizontal > .swiper-scrollbar {
    background-color: #eee!important;
}

/*スライダーのやじるし調整*/
.swiper-button-next, .swiper-button-prev{
	top: 30px!important;
	left: auto!important;
	right: 0!important;
}

/*ボタンのポジションの調整*/
.swiper-button-next{
	right: 0!important;
}

.swiper-button-prev{
	right: 55px!important;
}

/*ボタンの色の調整*/
.swiper-button-next, .swiper-button-prev{
	border:solid rgba(89,194,252,1) 2px;
	padding: 3px 20px;
	transition-duration: 200ms;
	color: rgba(89,194,252,1);
}


/*端っこのコンテンツに到達したときのボタンの挙動*/
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
	opacity: 1!important;
	border: 2px solid #ccc;
	color: #ccc;
}

.swiper-button-next.swiper-button-disabled:after, .swiper-button-prev.swiper-button-disabled:after{
	color: #ccc;
}

.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 2rem!important;
	color: rgba(89,194,252,1);
}

@media screen and (max-width:768px){
.swiper {
  width: 100%!important;
  min-width: 100%!important;
	height: 230px;
}

.swiper-pagination {
	width: 100%!important;
	left: 0%!important;
	transform: translate(0,0)!important;
	text-align: center!important;
	bottom: 10px!important;
}

.swiper-pagination-bullet {
	width: 15%!important;
	height: 5px!important;
}
	
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px!important;
}
}


/***** news *****/
#news {
	min-width: 1100px;
	padding: 60px 0;
	background-color: #E3EFF2;
}

#news > section {
	width: 1100px;
	margin: 0 auto;
	padding: 50px;
	background-color: #fff;
}

#news > section > div {
	margin-bottom: 40px;
	padding-bottom: 15px;
	display: flex;
	justify-content: space-between;
	border-bottom: #ddd 1px solid;
}

#news > section > div > h2 {
	font-size: 3.5rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
}

#news > section > dl dt {
	width: 15em;
	color: #666;
	float: left;
	clear: left;
	display: flex;
}

#news > section > dl dt span {
	width: 10em;
	margin-left: 20px;
	padding: 3px 0;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#news > section > dl dd {
	margin-bottom: 30px;
}

#news > section > dl dd:last-child {
	margin-bottom: 0;
}

.news_icon1 {
	color: #333;
	border: #333 1px solid;
}

.news_icon2 {
	color: var(--color-bl);
	border: var(--color-bl) 1px solid;
}

.news_icon3 {
	color: var(--color-rd);
	border: var(--color-rd) 1px solid;
}

.more_btn {
	width: 220px;
}

.more_btn a {
	padding: 10px;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	color: #333;
	display: block;
	border: #333 1px solid;
	transition: 0.5s;
}

.more_btn a:hover {
	color: #fff;
	background-color: var(--color-gr);
	border: var(--color-gr) 1px solid;
}
@media screen and (max-width:768px){
#news {
	min-width: auto;
	padding: 15px;
}

#news > section {
	width: 100%;
	padding: 20px;
}
	
#news > section > div {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: none;
	align-items: center;
}
	
#news > section > div > h2 {
	font-size: 2.8rem;
}

#news > section > dl dt {
	width: 100%;
	float: none;
}

#news > section > dl dd {
	margin: 10px 0 20px;
}

#news > section > dl dd:last-child {
	margin-bottom: 0;
}
	
.more_btn {
	width: 120px;
}

.more_btn a {
	padding: 5px;
	font-size: 1.3rem;
}
}


/***** topics *****/
#topics {
	padding: 100px 0;
}

#topics > div {
	width: 1100px;
	margin: 0 auto;
}

#topics > section {
	width: 1100px;
	margin: 40px auto 0;
}

#topics > section > div {
	display: flex;
	justify-content: space-between;
}

#topics > div > div {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#topics > div > div > h2 {
	font-size: 3.5rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
}

#topics > div > div > ul {
	display: flex;
}

#topics > div > div > ul li {
	width: 220px;
	margin-left: 10px;
}

#topics > div > div > ul li a {
	padding: 10px;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: 0.5s;
}

#topics > div > div > ul li:nth-child(1) a {
	color: var(--color-rd);
	background-color: #fff;
	border: var(--color-rd) 1px solid;
}

#topics > div > div > ul li:nth-child(2) a {
	color: var(--color-bl);
	background-color: #fff;
	border: var(--color-bl) 1px solid;
}

#topics > div > div > ul li:nth-child(1) a:hover {
	color: #fff;
	background-color: var(--color-rd);
	border: var(--color-rd) 1px solid;
}

#topics > div > div > ul li:nth-child(2) a:hover {
	color: #fff;
	background-color: var(--color-bl);
	border: var(--color-bl) 1px solid;
}

.topics_box {
	width: 23%;
	display: flex;
}

.topics_box figure {
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}

.topics_box figure img {
	width: 100%;
}

.topics_box figure span {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.topics_box a {
	text-decoration: none;
	color: #333;
	display: flex;
	flex-direction: column;
	transition: 0.5s;
}

.topics_box a:hover {
	opacity: 0.7;
}

.topics_box h3 {
	font-weight: 700;
	flex-grow: 1
}

.topics_box ul {
	margin-top: 20px;
	display: flex;
}

.topics_box ul li {
	margin-right: 10px;
	font-size: 1.4rem;
	color: #888;
}

.topics_box ul li:last-child {
	margin-right: 0;
}

.topics_box .date {
	margin-top: 5px;
	font-size: 1.4rem;
	color: #888;
}

.topics_box_cardiac {
	border-top: var(--color-rd) 4px solid;
}

.topics_box_thoracic {
	border-top: var(--color-bl) 4px solid;
}

@media screen and (max-width:768px){
#topics {
	padding: 30px 15px;
}

#topics > div {
	width: 100%;
	margin: 0 auto;
}

#topics > section {
	width: 100%;
	margin: 20px 0 0;
}

#topics > section > div {
	display: block;
}

#topics > div > div {
	margin-bottom: 20px;
	display: block;
}

#topics > div > div > h2 {
	margin-bottom: 10px;
	font-size: 2.8rem;
}

#topics > div > div > ul {
	display: flex;
	justify-content: space-between;
}

#topics > div > div > ul li {
	width: 48%;
	margin-left: 0;
}

#topics > div > div > ul li a {
	padding: 5px;
	font-size: 1.3rem;
}

.topics_box {
	width: 100%;
	margin-bottom: 30px;
	display: block;
}

.topics_box figure {
	margin-bottom: 10px;
}

.topics_box ul {
	margin-top: 15px;
	display: flex;
}

.topics_box ul li {
	font-size: 1.3rem;
}

.topics_box .date {
	font-size: 1.3rem;
}

.topics_box_cardiac {
	border-top: var(--color-rd) 5px solid;
}

.topics_box_thoracic {
	border-top: var(--color-bl) 5px solid;
}
}


/***** section *****/
#section {
	min-width: 1100px;
	display: flex;
}

#section > div {
	width: 50%;
	text-align: center;
	display: flex;
}

#section > div:nth-child(1) {
	background: url("../images/top/section_bk_01.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#section > div:nth-child(2) {
	background: url("../images/top/section_bk_02.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#section > div > div {
	padding: 50px;
	flex: 1;
	position: relative;
}

#section > div:nth-child(1) > div {
	background-color: rgba(200,0,67,0.8);
}

#section > div:nth-child(2) > div {
	background-color: rgba(23,120,183,0.8);
}

/*
#section > div > div > h2 {
	margin: -180px 0 130px;
	font-size: 3.5rem;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
	color: #fff;
	position: relative;
	z-index: 1;
	opacity: 0.5;
}
*/

#section > div > div > h2 {
	margin: 15px 0 50px;
	font-size: 2.5rem;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
	color: #fff;
}

#section > div > div > ul {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
}

#section > div > div > ul li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%;
	display: flex;
}

#section > div > div > ul li:nth-child(even) {
	margin-right: 0;
}

#section > div > div > ul li a {
	padding: 7px;
	font-size: 1.5rem;
	text-decoration: none;
	color: #fff;
	border: #fff 1px solid;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-grow: 1;
}

#section > div > div > ul li a:hover {
	background-color: rgba(255,255,255,0.4);
}

#section > div > div > ul li a span {
	font-size: 1.2rem;
}

#section > div > div > ul li a .new {
	position: relative;
}

#section > div > div > ul li a .new::after {
	content: "NEW";
	margin-left: 10px;
	padding: 1px 2px;
	font-size: 1.1rem;
	color: #fff;
	border: #fff 1px solid;
	display: inline-block;
	vertical-align: middle;
}

#section > div > div > p {
	font-size: 1.5rem;
	color: #fff;
}

#section > div > div > figure {
	width: 250px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

#section > div > div > figure img {
	width: 100%;
	opacity: 0.85;
}

@media screen and (max-width:768px){
#section {
	min-width: 100%;
	display: block;
}

#section > div {
	width: 100%;
}

#section > div > div {
	padding: 20px;
}

/*
#section > div > div > h2 {
	margin: -125px 0 85px;
	font-size: 2.6rem;
}
*/
	
#section > div > div > h2 {
	margin: 10px 0 20px;
	font-size: 2.1rem;
}

#section > div > div > ul li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%;
}

#section > div > div > ul li a {
	padding: 5px;
	font-size: 1.3rem;
}

#section > div > div > figure {
	width: 180px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

#section > div > div > figure img {
	width: 100%;
}

#section > div > div > ul li a .new::after {
	margin-left: 5px;
	padding: 0 1px;
	font-size: 1rem;
	color: #fff;
	border: #fff 1px solid;
	display: inline-block;
	vertical-align: middle;
}
}


/***** residency_programs *****/
#residency_programs {
	padding: 80px;
}

#residency_programs > section {
	width: 1100px;
	margin: 0 auto;
}

#residency_programs > section > h2 {
	margin-bottom: 30px;
	font-size: 3.5rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	text-align: center;
	letter-spacing: 0.1em;	
}

#residency_programs > section > p {
	text-align: center;
}

#residency_programs > section > ul {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

#residency_programs > section > ul > li {
	width: 48%;
}

#residency_programs > section > ul > li a {
	text-decoration: none;
	color: #333;
	transition: 0.5s;
}

#residency_programs > section > ul > li a:hover {
	opacity: 0.8;
}

#residency_programs > section > ul > li figure img {
	width: 100%;
}

#residency_programs > section > ul > li dl {
	margin-top: 20px;
}

#residency_programs > section > ul > li dt {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 700;
}
@media screen and (max-width:768px){
#residency_programs {
	padding: 30px 15px;
}

#residency_programs > section {
	width: 100%;
	margin: 0 auto;
}

#residency_programs > section > h2 {
	margin-bottom: 15px;
	font-size: 2.8rem;
}

#residency_programs > section > p {
	text-align: left;
}

#residency_programs > section > ul {
	margin-top: 30px;
	display: block;
}

#residency_programs > section > ul > li {
	width: 100%;
	margin-bottom: 30px;
}
	
#residency_programs > section > ul > li:last-child {
	margin-bottom: 0;
}

#residency_programs > section > ul > li dl {
	margin-top: 15px;
}

#residency_programs > section > ul > li dt {
	margin-bottom: 5px;
	font-size: 1.8rem;
}
}

/***** donation *****/
#donation {
	min-width: 1100px;
	background: url("../images/top/donation_bk.jpg") 50% 50% no-repeat;
	background-size: cover;
	position: relative;
}

#donation::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,167,203,0.8);
	position: absolute;
	left: 0;
	right: 0;
}

#donation > section {
	width: 1100px;
	height: 400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

#donation > section > h2 {
	margin-bottom: 30px;
	font-size: 3.5rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	text-align: center;
	color: #fff;
	letter-spacing: 0.1em;		
}

#donation > section > p {
	text-align: center;
	color: #fff;
}

#donation > section > p a {
	margin: 50px auto 0;
	padding: 20px 50px;
	text-decoration: none;
	color: #fff;
	border: #fff 1px solid;
	display: block;
	transition: 0.5s;
}

#donation > section > p a:hover {
	background: rgba(255,255,255,0.3);
}

@media screen and (max-width:768px){
#donation {
	min-width: auto;
}

#donation > section {
	width: auto;
	height: auto;
	margin: 0;
	padding: 40px 15px;
}

#donation > section > h2 {
	margin-bottom: 15px;
	font-size: 2.8rem;
}

#donation > section > p {
	width: 100%;
}

#donation > section > p a {
	width: 100%;
	margin: 30px auto 0;
	padding: 15px 0;
}
}