@charset "utf-8";
#section_nav_contents {
	display: none;
}

#container {
	padding: 50px 0;
}

#cardiac #container {
	border-bottom: var(--color-rd) 3px solid;
	/*background-color: var(--cardiac-cl);*/
}

#thoracic #container {
	border-bottom: var(--color-bl) 3px solid;
	/*background-color: var(--thoracic-cl);*/
}

#container > div {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#contents {
	order: 2;
	flex: 1;
}

#page_ttl {
	margin-bottom: 10px;
	padding: 30px;
	border: var(--color-gr) 1px solid;
	background-color: #fff;
}

#cardiac #page_ttl {
	border-color: var(--color-rd);
}

#thoracic #page_ttl {
	border-color: var(--color-bl);
}

#page_ttl h2 {
	font-size: 2.8rem;
	font-weight: 500;
	font-family: var(--ttl-font);
	color: var(--color-gr);
	letter-spacing: 0.1em;	
}

#cardiac #page_ttl h2 {
	color: var(--color-rd)
}

#thoracic #page_ttl h2 {
	color: var(--color-bl)
}

#breadcrumb {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
}

#breadcrumb li {
	margin-right: 10px;
	font-size: 1.2rem;
	position: relative;
}

#breadcrumb li::after {
	content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
}

#breadcrumb li:last-child::after {
  display: none;
}

@media screen and (max-width:768px) {
#section_nav_contents {
	margin-bottom: 40px;
	display: block;
	position: relative;
}
	
#section_nav_contents dt {
	width: 100%;
	height: 40px;
	padding: 0 15px;
	color: #fff;
	display: flex;
	align-items: center;
	position: fixed;
	top: 65px;
	z-index: 999;
}
	
#cardiac #section_nav_contents dt {
	background-color: var(--color-rd);
}
	
#cardiac #section_nav_contents dt::before {
	content: "";
	width: 23px;
	height: 23px;
	margin-right: 7px;
	background: url("../images/common/heart_img.svg") 50% 50% no-repeat #fff;
	background-size: 19px;
	border-radius: 100px;
	display: inline-block;
}
	
#thoracic #section_nav_contents dt {
	background-color: var(--color-bl);
}
	
#thoracic #section_nav_contents dt::before {
	content: "";
	width: 23px;
	height: 23px;
	margin-right: 7px;
	background: url("../images/common/lung_img.svg") 50% 50% no-repeat #fff;
	background-size: 19px;
	border-radius: 100px;
	display: inline-block;
}
	
#section_nav_contents dt::after {
	content: "";
  width: 8px;
  height: 8px;
	position: absolute;
	right: 15px;
	top: 45%;
	transform: rotate(45deg) translateX(-50%);
	display: block;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
	
#section_nav_contents dt.open::after {
	content: "";
  width: 8px;
  height: 8px;
	position: absolute;
	right: 15px;
	top: 55%;
	transform: rotate(45deg) translateX(-50%);
	display: block;
	border: none;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
	
#section_nav_contents dd {
	width: 100%;
	padding: 0 15px;
	position: fixed;
	top: 105px;
	left: 0;
	display: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 999;
	background-color: #fff;
	box-shadow: 0 5px 5px 1px rgba(100, 100, 100, .1);
}
	
#cardiac #section_nav_contents dd {
	border-bottom: var(--color-rd) 3px solid;
}
	
#thoracic #section_nav_contents dd {
	border-bottom: var(--color-bl) 3px solid;
}
	
#section_nav_contents dd > ul > li {
	border-bottom: 1px solid;
}

#section_nav_contents dd > ul > li:last-child {
	border-bottom: none;
}
	
#cardiac #section_nav_contents dd > ul > li {
	border-bottom-color: var(--color-rd);
}

#thoracic #section_nav_contents dd > ul > li {
	border-bottom-color: var(--color-bl);
}

#section_nav_contents dd > ul > li > a,
#section_nav_contents dd > ul > li > span {
	padding: 10px 0;
	font-size: 1.5rem;
	text-decoration: none;
	color: #333;
	display: block;
}
	
#section_nav_contents dd > ul > 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_contents dd > ul > li > ul > li > a {
	padding: 10px 0 10px 15px;
	font-size: 1.5rem;
	text-decoration: none;
	color: #333;
	display: block;
	border-top: #000 1px dotted;
}

#container {
	padding: 30px 15px 0;
}

#cardiac #container {
	border-bottom: var(--color-rd) 2px solid;
}
	
#thoracic #container {
	border-bottom: var(--color-bl) 2px solid;
}

#container > div {
	width: 100%;
	display: block;
}

#contents {
	margin-left: 0;
}

#page_ttl {
	margin-bottom: 10px;
	padding: 20px;
}

#page_ttl h2 {
	font-size: 2.4rem;
}

#breadcrumb li {
	margin-right: 7px;
	font-size: 1.1rem;
}

#breadcrumb li::after {
	content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
}
}

/***** ボックス *****/
.inner {
	margin-bottom: 40px;
}

.inner_item {
	margin-bottom: 30px;
}

.box {
	margin: 15px 0;
	padding: 30px;
}

.box_bk_gry {
	background: var(--color-gry);
}

.youtube {
	width: 100%;
	margin: 20px 0;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width:768px) {
.box {
	padding: 15px;
}
}

/***** タイトル *****/
.ttl {
	margin-bottom: 20px;
	padding-left: 27px;
	font-size: 2.7rem;
	font-weight: 500;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
	position: relative;
}

.ttl::before {
	content: "";
	width: 17px;
	height: 2px;
	background: var(--color-gr);
	position: absolute;
	left: 0;
	top: 0.8em;
/*	top: 50%;*/
/*	transform: translateY(-50%);*/
}

.ttl:first-letter {
	color: var(--color-gr);
}

#cardiac .ttl::before {
	content: "";
	width: 17px;
	height: 2px;
	background: var(--color-rd);
	position: absolute;
}

#cardiac .ttl:first-letter {
	color: var(--color-rd);
}

#thoracic .ttl::before {
	content: "";
	width: 17px;
	height: 2px;
	background: var(--color-bl);
}

#thoracic .ttl:first-letter {
	color: var(--color-bl);
}

.caption {
	margin: 25px 0 20px;
	padding-bottom: 10px;
	font-size: 2.3rem;
	font-weight: 500;
	font-family: var(--ttl-font);
	border-bottom: var(--color-gr) 2px solid;
}

#cardiac .caption {
	border-bottom: var(--color-rd) 2px solid;
}

#thoracic .caption {
	border-bottom: var(--color-bl) 2px solid;
}

.sub_caption {
	margin: 20px 0 10px;
	font-size: 2.1rem;
	font-family: var(--ttl-font);
	color: var(--color-gr);
}

#cardiac .sub_caption {
	color: var(--color-rd);
}

#thoracic .sub_caption {
	color: var(--color-bl);
}

.box_ttl {
	margin: 20px 0 7px;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color-gr);
}

.box .box_ttl:first-child {
	margin: 0 0 7px;
}

#cardiac .box_ttl {
	color: var(--color-rd);
}

#thoracic .box_ttl {
	color: var(--color-bl);
}

@media screen and (max-width:768px) {
.ttl {
	margin-bottom: 15px;
	font-size: 2.2rem;
	letter-spacing: 0;
}
	
.caption {
	font-size: 1.9rem;
}
}

/***** side_nav *****/
#side_nav {
	width: 230px;
	margin-right: 70px;
	order: 1;
	/*border-top: 1px solid;*/
	border-color: var(--color-gr);
}

#cardiac #side_nav {
	border-color: var(--color-rd);
}

#thoracic #side_nav {
	border-color: var(--color-bl);
}

#side_nav dl {
	/*width: 180px;
	height: 180px;*/
	margin: 0 auto 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*background-color: #fff;
	border-radius: 100px;
	border: 1px solid;*/
}

#side_nav dt {
	text-align: center;
}

#side_nav dt img {
	height: 110px;
}

#side_nav dd {
	margin-top: 10px;
	font-family: var(--ttl-font);
}

#cardiac #side_nav dd {
	color: var(--color-rd)
}

#thoracic #side_nav dd {
	color: var(--color-bl)
}

#side_nav nav {
	position: sticky;
	top: 170px;
}

#side_nav nav > ul {	
	border-top: 1px solid;
	border-color: var(--color-gr);
}

#cardiac #side_nav nav > ul {
	border-color: var(--color-rd);
}

#thoracic #side_nav nav > ul {
	border-color: var(--color-bl);
}

#side_nav nav > ul > li {
	border-bottom: var(--color-gr) 1px solid;
}

#cardiac #side_nav nav > ul > li {
	border-color: var(--color-rd);
}

#thoracic #side_nav nav > ul > li {
	border-color: var(--color-bl);
}

#side_nav nav > ul > li > a,
#side_nav nav > ul > li > span {
	padding: 15px 0 15px 17px;
	font-size: 1.5rem;
	color: #333;
	text-decoration: none;
	display: block;
	transition: 0.5s;
	position: relative;
}

#side_nav nav > ul > li > a::before,
#side_nav nav > ul > li > span::before {
	content: "";
	width: 9px;
	height: 2px;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100px;
}

#cardiac #side_nav nav > ul > li a::before {
	background-color: var(--color-rd);
}

#thoracic #side_nav nav > ul > li a::before,
#thoracic #side_nav nav > ul > li > span::before{
	background-color: var(--color-bl);
}

#side_nav nav > ul > li a:hover {
	padding-left: 15px;
}

#side_nav nav > ul > li a span {
	font-size: 1.3rem;
}

#side_nav nav > ul > .focus > a,
#side_nav nav > ul > .focus > span {
	padding: 15px 15px 15px 27px;
	color: #fff;
	background: var(--color-gr);
}

#side_nav nav > ul > .focus > a::before,
#side_nav nav > ul > .focus > span::before {
	left: 10px;
	background-color: #fff!important;
}

#side_nav nav > ul > .focus > a:hover {
	padding-left: 25px;
}

#cardiac #side_nav nav > ul > .focus > a,
#cardiac #side_nav nav > ul > .focus > span {
	background-color: var(--color-rd);
}

#thoracic #side_nav nav > ul > .focus > a,
#thoracic #side_nav nav > ul > .focus > span {
	background-color: var(--color-bl);
}

#side_nav nav > ul > 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;
}

#side_nav nav > ul > li > ul > li a {
	padding: 7px 0 7px 17px;
	font-size: 1.5rem;
	color: #333;
	text-decoration: none;
	display: block;
	transition: 0.5s;
	position: relative;
	border-top: #000 1px dotted;
}

#side_nav nav > ul > li > ul > .focus a {
	background: var(--thoracic-cl);
}

#side_nav nav > ul > li > ul > li a:hover {
	padding: 7px 0 7px 20px;
}

@media screen and (max-width:768px) {
#side_nav {
	width: 100%;
	margin: 30px 0 0;
}
	
#side_nav dl {
	width: 100%;
	height: auto;
	margin: 0 0 10px;
	display: block;
	border-radius: 0;
	background: none;
	border: none;
}
	
#side_nav dt {
		display: none;
	}

#side_nav dd {
	margin: 0;
	font-size: 1.6rem;
}

#side_nav li:last-child {
	border-bottom: none;
}

#side_nav li a {
	padding: 10px 0 10px 15px;
	font-size: 1.4rem;
}
	
#side_nav li a:hover {
	padding-left: 15px;
}
	
#side_nav li a br {
	display: none;
}

#side_nav .focus a {
	padding: 10px 10px 10px 25px;
	/*color: #fff;*/
}

#side_nav .focus a::before {
	left: 10px;
	background-color: #fff!important;
}

#side_nav .focus a:hover {
	padding-left: 25px;
}
}

/***** リスト *****/
.list {
	margin: 15px 0;
}

.disc li {
	margin-bottom: 5px;
	padding-left: 20px;
	position: relative;
}

.disc li:last-child {
	margin-bottom: 0;
}

.disc li::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-gr) 3px solid;
	border-radius: 100px;
}

#cardiac .disc li::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-rd) 3px solid;
	border-radius: 100px;
}

#thoracic .disc li::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-bl) 3px solid;
	border-radius: 100px;
}

.deci {
	margin-left: 20px;
}

.deci li {
	margin-bottom: 5px;
}

.deci li:last-child {
	margin-bottom: 0;
}

/***** figure *****/
figcaption {
	font-size: 1.4rem;
}

.fig_right {
	width: 250px;
	margin-left: 30px;
	margin-bottom: 20px;
	float: right;
}

.fig_right img {
	width: 100%;
}

.figcap {
	margin-top: -10px;
	font-size: 1.4rem;
	text-align: center;
}

.fig_flex {/*1枚画像flex用ボックス*/
	display: flex;
	justify-content: space-between;
}

.fig_flex > div,
.fig_flex > p {
	flex: 1;
}

.fig_flex > figure {
	width: 300px;
	margin-left: 50px;
	order: 2;
	transition: 0.5s;
}

.fig_flex > figure:hover {
	opacity: 0.7;
}

.fig_flex figure figcaption:first-child {
	margin-bottom: 10px;
}

.fig_flex figure figcaption:last-child {
	margin-top: 10px;
}

.fig_flex figure img {
	width: 100%;
}

.fig {
	margin: 20px 0;
}

.cate_ttl + .fig,
.ttl + .fig,
.caption + .fig,
.sub_caption + .fig,
.cate_ttl + picture .fig,
.ttl + picture .fig,
.caption + picture .fig,
.sub_caption + picture .fig{
	margin-top: 0;
}

.as_fig img {
	max-width: 100%;
}

.as_fig figcaption:first-child {
	margin-bottom: 10px;
}

.as_fig figcaption:last-child {
	margin-top: 10px;
}

.full_fig img {
	width: 100%;
}

.full_fig figcaption:first-child {
	margin-bottom: 10px;
}

.full_fig figcaption:last-child {
	margin-top: 10px;
}

.fig_wid_70 {
	width: 70%;
}

.fig_wid_half {
	width: 50%;
}

.fig_wid_30 {
	width: 35%;
}

.fig_wid_half img,
.fig_wid_70 img,
.fig_wid_30 img {
	width: 100%;
}

.fig_wid_half figcaption:first-child,
.fig_wid_70 figcaption:first-child {
	margin-bottom: 10px;
}

.fig_wid_half figcaption:last-child,
.fig_wid_70 figcaption:last-child {
	margin-top: 10px;
}

.fig_wid_half_center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.fig_half {/*2枚横並び*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.fig_half figure figcaption:first-child {
	margin-bottom: 10px;
}

.fig_half figure figcaption:last-child {
	margin-top: 10px;
}

.fig_half figure img {
	width: 100%;
}

.fig_one_third {/*3枚横並び*/
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.fig_one_third figure figcaption:first-child {
	margin-bottom: 10px;
}

.fig_one_third figure figcaption:last-child {
	margin-top: 10px;
}

.fig_one_third figure img {
	width: 100%;
}

.fig_one_quarter {/*4枚横並び*/
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
}

.fig_one_quarter figure figcaption:first-child {
	margin-bottom: 10px;
}

.fig_one_quarter figure figcaption:last-child {
	margin-top: 10px;
}

.fig_one_quarter figure img {
	width: 100%;
}

.qr_fig {
	width: 120px;
}

.qr_fig img {
	width: 100%;
}

@media screen and (max-width:768px) {
.fig_right {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	float: none;
}	
	
.figcap {
	text-align: left;
}
	
.fig_flex {/*1枚画像flex用ボックス*/
	display: block;
}

.fig_flex figure {
	width: 100%;
	margin-left: 0;
	margin-top: 20px;
}

.fig_flex figure img {
	width: 100%;
}

.fig {
	margin: 20px 0;
}
	
.as_fig figure figcaption:first-child {
	margin-bottom: 5px;
}

.as_fig figure figcaption:last-child {
	margin-top: 5px;
}

.fig_wid_half,
.fig_wid_70,
.fig_wid_30 {
	width: 100%;
}

.fig_half {/*2枚横並び*/
	display: block;
}
	
.fig_half figure {
	margin-bottom: 10px;
}

.fig_half figure figcaption:first-child {
	margin-bottom: 5px;
}

.fig_half figure figcaption:last-child {
	margin-top: 5px;
}

.fig_one_third,
.fig_one_quarter {/*3枚横並び、4枚横並び*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
	
.fig_one_third figcaption,
.fig_one_quarter figcaption {
	font-size: 1.4rem;
}

.fig_one_third figure figcaption:first-child,
.fig_one_quarter figure figcaption:first-child {
	margin-bottom: 5px;
}

.fig_one_third figure figcaption:last-child,
.fig_one_quarter figure figcaption:last-child {
	margin-top: 5px;
}

.fig_one_third figure img,
.fig_one_quarter figure img {
	width: 100%;
}	
	
.fig_one_quarter {/*4枚横並び*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
	
.fig_one_third figcaption {
	font-size: 1.4rem;
}

.fig_one_third figure figcaption:first-child {
	margin-bottom: 5px;
}

.fig_one_third figure figcaption:last-child {
	margin-top: 5px;
}

.fig_one_third figure img {
	width: 100%;
}	
}

/***** page_nav *****/
#page_nav {
	top: 180px;
}

/***** page_link *****/
.page_link {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.page_link li {
	width: 49.5%;
	margin-bottom: 1%;
	display: flex;
}

.page_link li a {
	width: 100%;
	padding: 5px;
	font-weight: 500;
	display: flex;
	text-align: center;
	text-decoration: none;
	justify-content: center;
	align-items: center;
}

#cardiac .page_link li a {
	color: var(--color-rd);
	border: var(--color-rd) 1px solid;
	transition: 0.5s;
}

#cardiac .page_link li a:hover {
	background: var(--cardiac-cl);
}

#thoracic .page_link li a {
	color: var(--color-bl);
	border: var(--color-bl) 1px solid;
	transition: 0.5s;
}

#thoracic .page_link li a:hover {
	background: var(--thoracic-cl);
}

@media screen and (max-width:768px) {
.page_link {
	display: block;
}

.page_link li {
	width: 100%;
	margin-bottom: 1%;
}

.page_link li a {
	width: 100%;
	padding: 5px;
	font-weight: 500;
	display: flex;
	text-align: center;
	text-decoration: none;
	justify-content: center;
	align-items: center;
}
}

/***** point *****/
.point {
	margin-bottom: 30px;
	padding: 30px;
	border: 2px solid;
	border-color: var(--color-gr);
}

#thoracic .point {
	border-color: var(--color-bl);
}

/*.point dt {
	width: 25px;
	height: 25px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	float: left;
	clear: left;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gr);
}

#thoracic .point dt {
	background: var(--color-bl);
}

.point dd {
	margin-bottom: 15px;
	padding-left: 35px;
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--color-gr);
}

.point p {
	margin-bottom: 15px;
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--color-gr);
}*/

.point ul li {
	margin-bottom: 10px;
	padding-left: 22px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-gr);
	position: relative;
}

.point ul li::before {
	content: "";
	width: 7px;
	height: 7px;
	border: 3px solid;
	border-color: var(--color-gr);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#thoracic .point ul li::before {
	border-color: var(--color-bl);
}

#thoracic .point li {
	color: var(--color-bl);
}

.point li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
.point {
	margin-bottom: 20px;
	padding: 15px;
}

.point dt {
	width: 25px;
	height: 25px;
}

#thoracic .point dt {
	background: var(--color-bl);
}

.point dd,
.point p {
	margin-bottom: 10px;
	font-size: 1.6rem;
}
}


/***** 挨拶 *****/
#greeting_ttl {
	margin-bottom: 15px;
	font-size: 3rem;
	font-weight: 500;
	font-family: var(--ttl-font);
	letter-spacing: 0.1em;
}

#greeting_ttl:first-letter {
	font-size: 4rem;
	font-weight: 700;
}

#cardiac #greeting_ttl:first-letter {
	color: var(--color-rd);
}

#thoracic #greeting_ttl:first-letter {
	color: var(--color-bl);
}

#greeting_name {
	margin-bottom: 30px;
}

#greeting_name dt {
	font-size: 1.8rem;
	font-family: var(--ttl-font);
}

#greeting_name dd {
	font-size: 2.2rem;
	font-weight: 700;
	font-family: var(--ttl-font);
}

.greeting_com {
	margin-bottom: 20px;
	line-height: 1.7;
}

.greeting_ph {
	width: 234px;
	margin: 0 0 20px 30px;
	float: right;
}

.greeting_ph img {
	width: 100%;
}

@media screen and (max-width:768px) {
#greeting_ttl {
	font-size: 2.4rem;
	line-height: 1.3;
}

#greeting_ttl:first-letter {
	font-size: 3rem;
}

#greeting_ttl br {
		display: none;
}

#greeting_name {
	margin-bottom: 20px;
}

#greeting_name dt {
	font-size: 1.6rem;
}

#greeting_name dd {
	font-size: 2rem;
}

.greeting_com {
	margin-bottom: 20px;
	line-height: 1.7;
}

.greeting_ph {
	width: 200px;
	margin: 0 auto 20px;
	text-align: center;
	float: none;
}
}

/***** 臨床 *****/
.about_list {
	display: flex;
	flex-wrap: wrap;
}

.about_list li {
	width: 49%;
	margin: 0 2% 2% 0;
	padding: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-bl);
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: var(--thoracic-cl);
}

.about_list li a {
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color-bl);
}

.about_list li:nth-child(2n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
.about_list {
	display: block;
}

.about_list li {
	width: 100%;
	margin: 0 0 3% 0;
}
}

/***** スタッフ紹介 *****/
.staff_box {
	margin-bottom: 50px;
	display: flex;
	flex-direction: row-reverse;
}

.staff_box > div {
	flex: 1;
}

.staff_box > div > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.staff_box > figure {
	width: 160px;
	margin-right: 30px;
}

.staff_box > figure img {
	width: 100%;
}

.staff_box > div > table {
	width: 100%;
	margin-top: 20px;
}

.staff_box > div > table tr {
	margin-bottom: 10px;
	display: flex;
}

.staff_box > div > table th {
	width: 20%;
	padding: 5px 0;
	font-size: 1.4rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cardiac .staff_box > div > table th {
	color: var(--color-rd);
	border: var(--color-rd) 1px solid;
}

#thoracic .staff_box > div > table th {
	color: var(--color-bl);
	border: var(--color-bl) 1px solid;
}

.staff_box > div > table td {
	padding: 5px 0 5px 20px;
	display: block;
	flex: 1;
}

.staff_box > div > dl dt,
.staff_box > div > div > dl dt {
	font-size: 1.8rem;
	font-weight: 700;
}

.staff_box > div > dl dd,
.staff_box > div > div > dl dd{
	font-size: 1.5rem;
}

.staff_box > div > p {
	width: 13em;
	margin-top: 10px;
	padding: 5px;
	font-size: 1.4rem;
	text-align: center;
	background: var(--color-gry);
}

.staff_movie_btn a {
	width: 100px;
	padding: 7px 0 7px 20px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	position: relative;
	transition: 0.5s;
	border-radius: 100px;
}

#thoracic .staff_movie_btn a {
	background: var(--color-bl);
}

#thoracic .staff_movie_btn a:hover {
	color: #fff;
	background: #3d9cd9;
}

.staff_movie_btn a::before {
	content: "";
	width: 20px;
	height: 14px;
	display: block;
	background: url("../images/common/movie_icon.svg") 0 0 no-repeat;
	position: absolute;
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width:768px) {
.staff_box {
	margin-bottom: 30px;
	padding-bottom: 20px;
	flex-direction: column-reverse;
	border-bottom: #eee 2px solid;
}

.staff_box > figure {
	width: 140px;
	margin: 0 auto 15px;
}

.staff_box > figure img {
	width: 100%;
}

.staff_box > div > table {
	width: 100%;
	margin-top: 20px;
}
	
.staff_box > div > table th {
	width: 30%;
}
	
.staff_box > div > dl {
	flex: 1;
}

.staff_box > div > dl dt,
.staff_box > div > div > dl dt {
	font-size: 1.8rem;
	font-weight: 700;
}

.staff_box > div > dl dd,
.staff_box > div > div > dl dd {
	font-size: 1.5rem;
}

.staff_box > div > p {
	margin-top: 10px;
	padding: 5px;
	font-size: 1.4rem;
	text-align: center;
	background: var(--color-gry);
}
	
.staff_movie_btn a {
	margin-left: 15px;
}
}

/***** トピックス *****/
#topics_box {
	display: flex;
	flex-wrap: wrap;
}

#topics_box > div {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 2%;
	display: flex;
}

#topics_box > div:nth-child(2n) {
	margin-right: 0;
}

#topics_box > div > a {
	width: 100%;
	padding: 40px 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

#cardiac #topics_box > div > a {
	background: var(--color-rd);
	border: var(--color-rd) 2px solid;
}

#thoracic #topics_box > div > a {
	background: var(--color-bl);
	border: var(--color-bl) 2px solid;
}

#cardiac #topics_box > div > a:hover {
	color: var(--color-rd);
	background: #fff;
}

#thoracic #topics_box > div > a:hover {
	color: var(--color-bl);
	background: #fff;
}

#topics_box > div > a > h3 {
	font-weight: 700;
}

#topics_box > div > a > p {
	margin-top: 15px;
	font-size: 1.4rem;
}

.topics_date {
	margin-bottom: 10px;
	padding-left: 10px;
	font-weight: 500;
}

#cardiac .topics_date {
	border-left: var(--color-rd) 4px solid;
}

#thoracic .topics_date {
	border-left: var(--color-bl) 4px solid;
}

.topics_com {
	margin-top: 15px;
}

.topics_under {
	margin: 100px 0 0 50px;
}

.q_and_a_box {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: #000 1px dotted;
}

.q_and_a_box dl {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.q_and_a_box dt {
	width: 3em;
	margin-right: 15px;
	padding: 10px 0;
	font-weight: 700;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

#cardiac .q_and_a_box dt {
	background: var(--color-rd);
}

#thoracic .q_and_a_box dt {
	background: var(--color-bl);
}

.q_and_a_box dd {
	padding: 10px 0;
	flex: 1;
}

.question dd {
	font-weight: 700;
}

#cardiac .question dd {
	color: var(--color-rd);
}

#thoracic .question dd {
	color: var(--color-bl);
}

.topics_tb1 {
	width: 100%;
}

.topics_tb1 th {
	padding: 10px;
	text-align: center;
	border: var(--tb-bd);
	background: var(--color-gry);
}

.topics_tb1 td {
	padding: 10px;
	border: var(--tb-bd);
}

@media screen and (max-width:768px) {
#topics_box {
	display: block;
}

#topics_box > div {
	width: 100%;
	margin-right: 0;
	margin-bottom: 2%;
}

#topics_box > div > a {
	padding: 20px 0;
}

#topics_box > div > a > p {
	margin-top: 10px;
}
	
.topics_under {
	margin: 60px 0 100px;
	text-align: center;
}
	
.q_and_a_box dl {
	margin-bottom: 15px;
	display: block;
}

.q_and_a_box dt {
	width: 100%;
	margin: 0 0 5px;
	padding: 5px 0;
	text-align: center;
	display: block;
}
}

/***** 診療実績 *****/
.ad_medicai_ttl {
	margin: 40px 0 15px;
	padding: 5px;
	font-family: var(--ttl-font);
	font-size: 2rem;
}

#cardiac .ad_medicai_ttl {
	background: var(--color-rd-bk);
}

#thoracic .ad_medicai_ttl {
	background: var(--color-bl-bk);
}

.caption + .ad_medicai_ttl {
	margin-top: 0;
}

.ad_medical_number {
	margin-bottom: 15px;
	display: flex;
}

.ad_medical_number li {
	position: relative;
}

.ad_medical_number li::before {	
	content: "";
	margin-right: 10px;
	border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
	display: inline-block;
}

#cardiac .ad_medical_number li::before {	
  border-left: 5px solid var(--color-rd);
}

#thoracic .ad_medical_number li::before {	
  border-left: 5px solid var(--color-bl);
}

.ad_medical_number li:nth-child(1) {
	margin-right: 30px;
}

.ad_medical_tb_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.ad_medical_tb1 {
	width: 100%;
	margin-top: 25px;
}

.ad_medical_tb1 th {
	padding: 10px 0;
	font-weight: 700;
}

#cardiac .ad_medical_tb1 th {
  border-top: var(--color-rd) 1px solid;
  border-bottom: var(--color-rd) 1px dotted;
}

#thoracic .ad_medical_tb1 th {
  border-top: var(--color-bl) 1px solid;
  border-bottom: var(--color-bl) 1px dotted;
}

.ad_medical_tb1 tr th:nth-child(1) {
	width: 70%;
	text-align: left;
}

.ad_medical_tb1 td {
	padding: 10px 0;
	border-bottom: var(--tb-bd);
}

.ad_medical_tb1 tr td:nth-child(1) {
	padding-left: 1em;
}

.ad_medical_tb1 tr td:nth-child(2) {
	text-align: center;
}

.ad_medical_tb2 {
	width: 100%;
}

.ad_medical_tb2 th {
	width: calc(100% / 6);
	padding: 10px;
	text-align: center;
	border: var(--tb-bd);
	background: var(--color-gry);
}

.ad_medical_tb2 td {
	padding: 10px;
	text-align: center;
	border: var(--tb-bd);
}

.ad_medical_tb3 {
	width: 48%;	
	border-top: var(--tb-bd);
	border-right: var(--tb-bd);
}

.ad_medical_tb3 th {
	width: 70%;
	padding: 10px;
	text-align: left;
	border-bottom: var(--tb-bd);
	border-left: var(--tb-bd);
	background: var(--color-gry);
}

.ad_medical_tb3 td {
	padding: 10px;
	text-align: center;
	border-bottom: var(--tb-bd);
	border-left: var(--tb-bd);
}

.ad_medical_tb4 {
	width: 48%;
}

.ad_medical_tb4 td {
	padding: 10px 0;
  border-top: var(--tb-bd);
  border-bottom: var(--tb-bd);
}

.ad_medical_tb4 tr td:nth-child(1) {
	width: 90%;
}

.ad_medical_tb4 tr td:nth-child(2) {
	text-align: center;
}

.ad_medical_dl1 {
	margin-top: 15px;
}

.ad_medical_dl1 dt {
	width: 8em;
	padding-left: 20px;
	position: relative;	
	float: left;
	clear: left;
}

#cardiac .ad_medical_dl1 dt::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-rd) 3px solid;
	border-radius: 100px;	
}

#thoracic .ad_medical_dl1 dt::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-bl) 3px solid;
	border-radius: 100px;	
}

.ad_medical_dl1 dd {
	margin-bottom: 5px;
	padding-left: 8em;
}

.ad_medical_dl1 dd:last-child {
	margin-bottom: 0;
}

.ad_medical_dl2 {
	margin-top: 5px;
}

.ad_medical_dl2 dt {
	width: 4em;
	padding-left: 20px;
	position: relative;	
	float: left;
	clear: left;
}

#cardiac .ad_medical_dl2 dt::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-rd) 3px solid;
	border-radius: 100px;	
}

#thoracic .ad_medical_dl2 dt::before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 0.5em;
	border: var(--color-bl) 3px solid;
	border-radius: 100px;	
}

.ad_medical_dl2 dd {
	margin-bottom: 5px;
	padding-left: 4em;
}

.ad_medical_dl2 dd:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
.ad_medicai_ttl {
	margin: 30px 0 10px;
	padding: 5px;
	font-size: 1.8rem;
}	

.ad_medical_number {
	margin-bottom: 10px;
	display: block;
}
	
.ad_medical_number li {
	margin-right: 0;
}
	
.ad_medical_tb_box {
	display: block;
}
	
.ad_medical_tb2 th {
	padding: 5px;
}

.ad_medical_tb2 td {
	padding: 5px;
}
	
.ad_medical_tb3 {
	width: 100%;	
	border-right: var(--tb-bd);
	border-bottom: var(--tb-bd);
}
	
.ad_medical_tb3:nth-child(2) {
	border-top: none;
}

.ad_medical_tb3 th {
	padding: 5px;
}

.ad_medical_tb3 td {
	padding: 5px;
}
	
.ad_medical_tb4 {
	width: 100%;
}

.ad_medical_tb_box .ad_medical_tb4:last-child tr:first-child td {
  border-top: none;
}

.ad_medical_tb4 tr td:nth-child(1) {
	width: 80%;
}
}


/***** 研究報告 *****/
.report_tb {
	width: 100%;
	margin: 20px 0 15px;
}

.report_tb th {
	width: 25%;
	padding: 10px;
	font-weight: 500;
	text-align: left;
	border: var(--tb-bd);
}

#cardiac .report_tb th {
	background-color: var(--cardiac-cl);
}

#thoracic .report_tb th {
	background-color: var(--thoracic-cl);
}

.report_tb td {
	padding: 10px;
	border: var(--tb-bd);
}

.report_detail_btn a {
	width: 8em;
	padding: 5px 5px 5px 15px;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: block;
	position: relative;
	transition: 0.5s;
}

.report_detail_btn a::before {
	content: "";
	border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff;
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.5s;
}

.report_detail_btn a:hover::before {
	content: "";
	border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
}

#cardiac .report_detail_btn a:hover::before {
  border-left: 5px solid var(--color-rd);
}

#thoracic .report_detail_btn a:hover::before {
  border-left: 5px solid var(--color-bl);
}

#cardiac .report_detail_btn a {
	background: var(--color-rd);
	border: var(--color-rd) 1px solid;
}

#thoracic .report_detail_btn a {
	background: var(--color-bl);
	border: var(--color-bl) 1px solid;
}

#cardiac .report_detail_btn a:hover {
	color: var(--color-rd);
	background: #fff;
}

#thoracic .report_detail_btn a:hover {
	color: var(--color-bl);
	background: #fff;
}

.report_date {
	margin-bottom: 15px;
	padding-left: 10px;
	font-weight: 500;
}

#cardiac .report_date {
	border-left: var(--color-rd) 4px solid;
}

#thoracic .report_date {
	border-left: var(--color-bl) 4px solid;
}

.report_day {
	margin-top: 15px;
}

.report_under {
	margin: 100px 0 0 50px;
}

@media screen and (max-width:768px) {
.report_tb {
	margin: 0 0 10px;
}

.report_tb th {
	width: 100%;
	margin-top: 15px;
	padding: 5px;
	text-align: center;
	display: block;
	border: none;	
}

.report_tb td {
	margin-top: 10px;
	padding: 0;
	border: none;	
	display: block;
}
	
.report_under {
	margin: 60px 0 100px;
	text-align: center;
}
}

/***** *****/
.overview_box {
	margin: 25px 0 10px;
	padding: 20px;
	border: var(--color-gr) 2px solid;
}

#cardiac .overview_box {
	border: var(--color-rd) 2px solid;
}

#thoracic .overview_box {
	border: var(--color-bl) 2px solid;
}

.overview_box > p {
	margin-top: 10px;
}

.overview_ttl {
	display: flex;
	align-items: center;
}

.overview_ttl h3 {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color-gr);
	flex: 1;
}

#cardiac .overview_ttl h3 {
	color: var(--color-rd);
}

#thoracic .overview_ttl h3 {
	color: var(--color-bl);
}

.overview_ttl p {
	margin-right: 15px;
	padding: 5px 10px;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	background: var(--color-gr);
}

#cardiac .overview_ttl p {
	background: var(--color-rd);
}

#thoracic .overview_ttl p {
	background: var(--color-bl);
}

@media screen and (max-width:768px) {
.overview_ttl {
	display: block;
}

.overview_ttl p {
	margin: 0 0 10px;
}
}

/***** 研修希望の方へ *****/
.residency_flex_box {
	display: flex;
	justify-content: space-between;
}

.residency_flex_box > div {
	width: 48%;
}

.residency_tb1 {
	width: 100%;
}

.residency_tb1 th {
	width: 40%;
	padding: 10px;
	text-align: left;
	background: var(--color-gry);
	border: var(--tb-bd);
}

.residency_tb1 td {
	padding: 10px;
	border: var(--tb-bd);
}

.residency_tb2 {
	width: 100%;
	margin: 15px 0;
}

.residency_tb2 th {
	width: 25%;
	padding: 10px;
	text-align: left;
	background: var(--color-gry);
	border: var(--tb-bd);
}

.residency_tb2 td {
	padding: 10px;
	border: var(--tb-bd);
}

.residency_tb3 {
	width: 100%;
}

.residency_tb3 th {
	padding: 10px;
	text-align: center;
	background: var(--color-gry);
	border: var(--tb-bd);
}

.residency_tb3 td {
	padding: 10px;
	border: var(--tb-bd);
}

.residency_tb3 tr td:nth-child(1) {
	width: 22%;
}

.residency_tb3 tr td:nth-child(2) {
	width: 30%;
}

.residency_tb3 tr td:nth-child(3) {
	width: 10%;
	text-align: center;
}

.residency_tb3 tr td:nth-child(4) {
	width: 20%;
	text-align: center;
}

.residency_tb3 tr td:nth-child(5) {
	text-align: center;
}

@media screen and (max-width:768px) {
.residency_flex_box {
	display: block;
}

.residency_flex_box > div {
	width: 100%;
}
	
.residency_tb2 th {
	width: 25%;
	padding: 5px;
}

.residency_tb2 td {
	padding: 5px;
}
	
.residency_tb3 {
	width: 800px;
}
	
.residency_tb3 th {
	padding: 5px;
}

.residency_tb3 td {
	padding: 5px;
}
}

/***** 寄付 *****/
.donation_box {
	margin: 40px 0 0 18px;
	padding: 40px;
	position: relative;
	border: var(--color-bl) 2px solid;
}

.donation_num {
	width: 60px;
	height: 60px;
	font-size: 2rem;
	color: var(--color-bl);
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: -20px;
	top: -20px;
	border: var(--color-bl) 2px solid;
}

.donation_box p:nth-of-type(2) {
	margin-top: 10px;
}

.donation_arrow {
	width: 100px;
  height: 30px;
	margin: 40px auto 0;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	background: var(--color-bl);
}

@media screen and (max-width:768px) {
.donation_box {
	margin: 20px 0 0 0;
	padding: 0;
	border: none;
}

.donation_num {
	width: 100%;
	height: auto;
	padding: 5px 0;
	font-size: 1.8rem;
	color: var(--color-bl);
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: static;
	border: var(--color-bl) 2px solid;
}

.donation_box p:nth-of-type(2) {
	margin-top: 15px;
}

.donation_arrow {
	width: 70px;
  height: 20px;
	margin: 20px auto 0;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	background: var(--color-bl);
}
}

/***** フォーム *****/
#submit_btn {
	margin-top: 30px;
	text-align: center;
}

#submit_btn input[type="submit"],
#submit_btn input[type="button"] {
	width: 30%;
}

#submit_btn2 {
	width: 50%;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
}

#submit_btn2 li {
	width: 46%;
}

#submit_btn2 input[type="submit"],
#submit_btn2 input[type="button"] {
	width: 100%;
}

.form_tb {
	width: 100%;
	margin: 20px 0;
}

.form_tb th {
	width: 35%;
	padding: 20px;
	text-align: left;
	border: var(--tb-bd);
	background: var(--color-gry);
}

.form_tb td {
	padding: 20px;
	border: var(--tb-bd);
}
.form_tb td > ul {
  display: flex;
}
.form_tb td > ul li {
  margin-right: 15px;
}
.required {
  margin-left: 10px;
  padding: 1px 5px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
#cardiac .required {
  background: var(--color-rd);
}
#thoracic .required {
  background: var(--color-bl);
}

#contents input[type="text"],
#contents textarea {
	padding: 5px;
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	border-radius: 5px;
	border: var(--tb-bd);
}

#contents input[type="radio"] {
	position: relative;
	top: -3px;
}

#contents input[type="submit"],
#contents input[type="button"] {
	padding: 20px 0;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	border-radius: 5px;
	border: var(--color-gr) 1px solid;	
	background-color: var(--color-gr);
	cursor: pointer;
	transition: 0.5s;
}

#cardiac #contents input[type="submit"],
#cardiac #contents input[type="button"] {
	border: var(--color-rd) 1px solid;	
	background-color: var(--color-rd);
}

#thoracic #contents input[type="submit"],
#thoracic #contents input[type="button"] {
	border: var(--color-bl) 1px solid;	
	background-color: var(--color-bl);
}

#contents input[type="submit"]:hover,
#contents input[type="button"]:hover {
	color: var(--color-gr);
	background-color: #fff;
}

#cardiac #contents input[type="submit"]:hover,
#cardiac #contents input[type="button"]:hover {
	color: var(--color-rd);
	background-color: #fff;
}

#thoracic #contents input[type="submit"]:hover,
#thoracic #contents input[type="button"]:hover {
	color: var(--color-bl);
	background-color: #fff;
}

.input_s {
	width: 20%;
}

.input_m {
	width: calc(100% - 10px);
}

textarea {
	width: calc(100% - 10px);
	height: 150px;
}

select {
	padding: 5px;
	font-size: 1.6rem;
	border-radius: 5px;
	border: var(--tb-border);	
}

@media screen and (max-width:768px) {
#submit_btn {
	margin-top: 15px;
}
	
#submit_btn input[type="submit"],
#submit_btn input[type="button"]{
	width: 100%;
}
	
#submit_btn2 {
	width: 100%;
	margin: 20px auto 0;
}

#submit_btn2 li {
	width: 48%;
}

.form_tb th {
	width: 100%;
	margin-bottom: 5px;
	padding: 0;
	font-weight: 700;
	border: none;
	background: none;
	display: block;
}

.form_tb td {
	margin-bottom: 15px;
	padding: 0;
	border: none;
	display: block;
}

.input_s {
	width: 50%;
}

textarea {
	width: calc(100% - 10px);
	height: 150px;
}
}

/***** news *****/
#news_dl dt {
	width: 15em;
	color: #666;
	float: left;
	clear: left;
	display: flex;
}

#news_dl dt span {
	width: 10em;
	margin-left: 20px;
	padding: 3px 0;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#news_dl dd {
	margin-bottom: 30px;
}

.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;
}

@media screen and (max-width:768px) {
#news_dl dt {
	width: 100%;
	float: none;
}

#news_dl dd {
	margin: 10px 0 20px;
}
}

/***** English *****/
#eng_btn {
	display: flex;
	justify-content: space-between;
}

#eng_btn li {
	width: 47%;
}

#eng_btn li a {
	width: 100%;
	height: 300px;
	text-decoration: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	position: relative;
}

#eng_btn li:nth-child(1) a {
	background: var(--color-rd);
	border: var(--btn-border-rd) 2px solid;
}

#eng_btn li:nth-child(2) a {
	background: var(--color-bl);
	border: var(--btn-border-bl) 2px solid;
}

#eng_btn li a:hover {
	background: none;
}

#eng_btn li:nth-child(1) a:hover {
	background: var(--cardiac-cl);
}

#eng_btn li:nth-child(2) a:hover {
	background: var(--thoracic-cl);
}

#eng_btn li a p {
	font-size: 2.6rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	text-align: center;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 2;
}

#eng_btn li:nth-child(1) a:hover p {
	color: var(--color-rd);
}

#eng_btn li:nth-child(2) a:hover p {
	color: var(--color-bl);
}

#eng_btn li a figure {
	width: 220px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

#eng_btn li a figure img {
	width: 100%;
	opacity: 0.3;
}

.eng_com {
	margin-top: 15px;
}

.eng_tb1 {
	width: 100%;
	margin: 15px 0;
}

.eng_tb1 th {
	padding: 15px;
	text-align: center;
	border: var(--tb-bd);
}

.eng_tb1 td {
	padding: 15px;
	border: var(--tb-bd);
}

.cardiac_tb1 th {
	background: var(--cardiac-cl);
}

.cardiac_tb1 tr td:nth-child(1) {
	text-align: center;
	background: var(--color-gry);
}

.cardiac_tb1 tr td:nth-child(3) {
	text-align: center;
}

@media screen and (max-width:768px) {
#eng_btn {
	display: block;
}

#eng_btn li {
	width: 100%;
	margin-bottom: 15px;
}

#eng_btn li a {
	width: 100%;
	height: auto;
	padding: 80px 0;
}
	
#eng_btn li a p {
	font-size: 2.2rem;
}
	
#eng_btn li a figure {
	width: 150px;
}
}


/***** 色 *****/
:root {
	--cardiac-cl: #fff8fa;
	--thoracic-cl: #f0f8fd;
}