@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
	--easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #f5695f;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
 }
body {
	display: none;
}
/*
*ローディングアニメーション 
*/
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.logo {
	opacity: 0;
	transition: opacity 1s ease;
	position: relative;
	margin: 10px 0;
}

.logo1 {
	width: 250px;
}

.logo2 {
	padding-left:20px;
	width: 400px;
}
.mv01 .swiper {
  opacity: 0;
  transition: opacity 1s ease;
}

.mv01 .swiper.visible {
  opacity: 1;
}

/* 表示アニメーション */
.logo1.fade-in {
  opacity: 1;
}

.logo1.slide-up {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

.logo2.fade-in {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

/* メインコンテンツは非表示にしておく */
.container {
  opacity: 0;
  transition: opacity 1s ease;
}
.home {
	width: 100%;
}
.home .visual {
	/*width: 100%;
    height: 913px;
    overflow: hidden;
    background: #eee;
    position: relative;*/
}

/*
* 立ち上がりフェードインの記載
*/
/*フェードアニメーション*/
.open-fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUP 1s ease forwards;
}
.open-fade-right {
	opacity: 0;
	transform: translateX(30px);
	animation: fadeInRight 1s ease forwards;
}
.open-fade-left {
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeInLeft 1s ease forwards;
}
.open-fade-in {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}
.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.8s;
}
.delay-3 {
	animation-delay: 1.3s;
}
.delay-4 {
	animation-delay: 1.8s;
}
.delay-5 {
	animation-delay: 2.3s;
}

@keyframes fadeInUP {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*
 * メインビジュアル-スライダー
*/

.slide-media,.thumb-media {
	 position: relative;
	 overflow: hidden;
}
.slide-media img,.thumb-media img {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.swiper-button-prev,.swiper-button-next {
	display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
	width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
	margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.swiper-button-next::after {
	margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.swiper-button-disabled {
    pointer-events: none;
	opacity: 0;
}
.visual {
	margin-bottom: 0;
}
.visual .l-inner {
    padding-bottom: 0;
}
.visual .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.visual .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.visual .swiper-pagination {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 3.2rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
}
.visual .swiper-pagination-bullet {
    display: block;
    width: 3px;
    height: 4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.4);
  }
  .visual .swiper-pagination-bullet:not(:first-child) {
    margin-top: 0.8rem;
  }
  .visual .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
  }
  .visual .slide-media {
    height: 800px;
  }
  .visual .slide-media img {
    -webkit-transition: 5s 1s ease-out;
    transition: 5s 1s ease-out;
  }
  .visual .slide-title {
	  background: rgba(94, 188, 123, 0.65);
	  background: linear-gradient(90deg,rgba(94, 188, 123, 0.8) 0%, rgba(143, 221, 140, 0.8) 100%);
	  border-radius: 50px 0px 0 0;
	  max-width: 80%;
	  padding: 1.5rem 1rem 1.5rem 2rem;
	  font-size: 1.6rem;
	  font-weight: normal;
	  line-height: 1.6;
	  position: absolute;
	  right: 0;
	  bottom: 0;
	  margin-left: 12rem;
	  text-align: left;
	  color: #fff;
	  /*text-shadow:0 0 6px rgb(94,188,123,1);*/
	  text-shadow:0 0 6px rgb(255,255,255,0.8);
}
.visual .swiper-slide[class*=-active] .slide-media img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}
.visual .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
@-webkit-keyframes mv01-fadeIn {
	0% {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
		-webkit-filter: blur(300px);
		        filter: blur(300px);
	}
	100% {
      -webkit-transform: scale(1);
	          transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
	}
}
@keyframes mv01-fadeIn {
	0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
	}
}

@media only screen and (max-width: 1024px) {
	html {
		-webkit-text-size-adjust: 100%;
	}
	.l-inner {
		padding: 0 4rem;
	}
	.pc {
		display: none !important;
	}
	.mv01 {
		margin-bottom: 8rem;
	}
	.mv01 .slide-media {
		height: max(70vh, 70vw);
	}
}
@media only screen and (max-width: 599px) {
	html {
		/*font-size: 50%;*/
		font-size: 100%;
	}
	.pc-tab {
		display: none !important;
	}
	.visual .slide-title {
		font-size: 2rem;
		right: 0;
		margin-left: 0rem;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding: 1rem 1.5rem;
		text-align:center;
	}
}
@media only screen and (min-width: 1025px) {
	.tab-sp {
		display: none !important;
	}
	.swiper-button-prev::before, .swiper-button-next::before {
		-webkit-transition: var(--transition);
		        transition: var(--transition);
	}
	.swiper-button-prev:hover::before, .swiper-button-next:hover::before {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
}
@media only screen and (min-width: 600px) {
	.sp {
		display: none !important;
	}
}

/*
 * コンテンツタイトル
*/

section .content_wrap h3 {
	font-family:"BIZ+UDGothic";
	font-size: 32px;
	color:#179243;
}
section .content_wrap h3 span {
	font-family: "Zen Antique Soft", serif;
	font-weight:300;
	display: block;
	color: #000;
	font-size: 18px;
	padding-top:15px;
}

/*
 * ホバーアニメーションボタン
*/
.submit_more {
	font-family:"BIZ+UDGothic";
	display: inline-block;
	width: 208px;
	text-align: left;
	text-decoration: none;
	line-height: 49px;
	outline: none;
	color: #000;
	background-color: #fff;
	position: relative;
	border: 1px solid #ACACAC;
	border-radius: 25px;
	transition: color 0.5s ease;
	overflow: hidden;
}

.submit_more:hover {
	color: #fff;
}

.submit_more::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #179243;
	border-radius: 25px;
	transform: scaleX(0);
	transform-origin: left; /* 統一 */
	transition: transform 0.5s ease;
	z-index: 0;
}

.submit_more:hover::before {
	transform: scaleX(1);
}

.submit_more .text {
	position: relative;
	padding-left: 20px;
	z-index: 1;
}

.submit_more .text::after {
	position: absolute;
	top: 50%;
	transform:translatey(-50%);
	left: 180px;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #179243;
	border-right: 2px solid #179243;
	transform: rotate(45deg);
}

.submit_more:hover .text::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/*
 * トピックス
*/
.top_background {
	background: #FFFFFF;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(249, 253, 244, 1) 50%, rgba(206, 236, 215, 0.84) 100%);
}
section.topics .content_wrap {
	padding: 50px 20px;
}
section.topics .content_wrap .content {
	max-width:1200px;
	margin: 0 auto;
	padding: 3.5rem 5rem;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 0 6px rgb(0,0,0,0.16);
	display: flex;
}
section.topics .content_wrap .content .left_con {
	width: 25%;
}
section.topics .btn_more {
	margin-top:30px;
}
section.topics .content_wrap .content .right_con {
	width: 75%;
}
section.topics .content_wrap .content .right_con li {
	font-family:"BIZ+UDGothic";
	margin-bottom:30px;
}
section.topics .content_wrap .content .right_con li a {
	color:#000;
	transition: 0.5s;
}
section.topics .content_wrap .content .right_con li a:hover {
	opacity:0.6;
}
section.topics .post_wrap {
	display: flex;
}
section.topics .post_wrap .thumbnail {
	width: 200px;
	margin-right: 30px;
}
section.topics .post_wrap .thumbnail img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
}
section.topics .post_wrap .post_text {
	width: calc(100% - 230px);
}
section.topics .post_wrap .post_text .post_title {
	font-weight: 600;
	margin-bottom:15px;
}
section.topics .post_wrap .post_text .post_content {
	font-size: 14px;
	line-height: 2;
}

/*
 * 教授挨拶
*/

section.greeting {
	background-image:url("../images/index/bg_content001.png");
	background-repeat: no-repeat;
	background-size:cover;
	/*box-shadow: 0px 0px 7px rgb(50,50,50,0.3);*/
}
section.greeting .content_wrap {
	margin: 0 auto;
	padding: 50px 0 0px;
	max-width: 1200px;
}
section.greeting .content_wrap .content {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items:center;
}
section.greeting .content_wrap .content div.left_con {
	width: calc( 50% - 30px );
}
section.greeting .content_wrap .content .greeting_text{
	padding: 30px 0;
	font-family:"BIZ+UDGothic";
}
section.greeting .content_wrap .content .greeting_text > p {
	font-size: 14px;
	line-height: 2;
	padding-bottom: 30px;
}
section.greeting .content_wrap .content .greeting_text .professor {
	font-weight: 600;
}
section.greeting .content_wrap .content .greeting_text .professor .division {
	font-size: 14px;
	line-height: 2;
}
section.greeting .content_wrap .content .greeting_text .professor .professor_name span {
	font-size: 14px;
	padding-right: 20px;
}
section.greeting .btn_more {
	text-align:right;
}
section.greeting .content_wrap .content div.right_con {
	width: 50%;
}
section.greeting .content_wrap .content div.right_con .image_wrap {
	display:flex;
	justify-content:flex-end;
}
section.greeting .content_wrap .content div.right_con .image_wrap .image {
	width: 90%;
}

/*
 * 内科学講座について
*/
section.about {
	padding: 50px 0;
}
section.about .content_wrap {
	margin: 0px auto;
	padding: 0px 0px 0px;
	max-width: 1200px;
	background-image:url("../images/index/bg_about001.png");
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left 70% top 50%;
}
section.about .content_wrap .content {
	min-height: 531px;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items:center;
}
section.about .content_wrap .content div.left_con {
	width: calc( 50% - 60px );
	font-family:"BIZ+UDGothic";
}
section.about .content_wrap .content div.right_con {
	width: 50%;
	min-height:500px;
}
section.about .content_wrap .content .about_text{
	padding: 30px 0;
	font-family:"BIZ+UDGothic";
}
section.about .content_wrap .content .about_text > p {
	font-size: 14px;
	line-height: 2;
	padding-bottom: 30px;
}
section.about .btn_more {
	text-align:right;
}
section.about .circle_wrap {
	position:relative;
	min-height:500px;
}
section.about .circle_text {
	font-size: 14px;
	font-weight:700;
	letter-spacing: 0.3em;
	position: absolute;
	top:230px;
	left:20px;
}
section.about .circle {
	position:absolute;
}
section.about .circle01 {
	top:25px;
	left:70px;
}
section.about .circle02 {
	top: 105px;
	left: 200px;
}
section.about .circle03 {
	bottom: 105px;
	left: 200px;
}
section.about .circle04 {
	bottom: 25px;
	left: 70px;
}
section.about .circle05 {
	display:none;
}

/*
 * 講座案内
*/
section.depatment {
	padding: 50px 0;
}
section.depatment .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 50px;
	background: #FAFAFA;
	border-radius: 20px;
	box-shadow: 0px 0px 7px rgb(50,50,50,0.3);
}
section.depatment .content_wrap .content_title {
	text-align: center;
}
section.depatment .content_wrap .content {
	display:flex;
	justify-content:center;
	padding: 80px 0 0;
}
section.depatment .content_wrap .content > div {
	width: 50%;
	height:280px;
}
section.depatment .content_wrap .content .left_con {
	background-image:url("../images/index/bg_department01.png");
	background-repeat:no-repeat;
	border-radius: 20px 0 0 20px;
}
section.depatment .content_wrap .content .right_con {
	background-image:url("../images/index/bg_department02.png");
	background-repeat:no-repeat;
	border-radius: 0px 20px 20px 0px;
}
section.depatment .content_wrap .bg_department {
	height:280px;
	position:relative;
	overflow: hidden;
}
section.depatment .content_wrap .left_con .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 100%;
	height: 280px;
	border-radius: 20px 0 0 20px;
	background: #D1D622;
	background: linear-gradient(90deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section.depatment .content_wrap .right_con .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 100%;
	height: 280px;
	border-radius: 0px 20px 20px 0px;
	background: linear-gradient(270deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section.depatment .content_wrap .left_con .bg_department:hover::before {
	opacity:1;
}
section.depatment .content_wrap .right_con .bg_department:hover::before {
	opacity:1;
}
section.depatment .content_wrap .bg_department a {
	font-family:"BIZ+UDGothic";
	position:relative;
	display:block;
	color: #fff;
	height:280px;
	z-index:1;
}
section.depatment .content_wrap .bg_department a h4 {
	font-size:20px;
	padding-top:3rem;
	padding-left:2rem
}
section.depatment .content_wrap .bg_department a .flex {
	justify-content:flex-end;
}
section.depatment .content_wrap .bg_department a p {
	display:inline-block;
	position:relative;
	margin-top: 130px;
	text-align:right;
	margin-right:80px;
}

section.depatment .content_wrap .bg_department a p::before {
	position:absolute;
	top: 0px;
	left: 112px;
	content:"";
	width: 25px;
    height: 25px;
	border: 1px solid #fff;
	border-radius:50%;
	background: transparent;
	transition:0.5s;
}

section.depatment .content_wrap .bg_department:hover a p::before {
	background: #fff;
}
section.depatment .content_wrap .bg_department a p::after {
	position:absolute;
	top: 10px;
	left: 120px;
	content:"";
	width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	transition:0.5s;
}
section.depatment .content_wrap .bg_department:hover a p::after {
	border-top: 2px solid  #179243;
    border-right: 2px solid  #179243;
}



/*
*スタッフ
*/
section.staff {
	padding: 50px 0;
}
section.staff .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
}
section.staff .content_wrap .content {
	display:flex;
	justify-content:space-between;
	padding: 80px 20px 80px;
}
section.staff .content_wrap .content .left_con {
	width: calc( 50% - 30px );
}
section.staff .content_wrap .content .left_con .staff_text{
	padding: 30px 0;
	font-family:"BIZ+UDGothic";
}
section.staff .content_wrap .content .left_con .staff_text p {
	font-size: 14px;
	line-height: 2;
	padding-bottom: 0px;
}
section.staff .btn_more {
	text-align:right;
}

section.staff .content_wrap .content .right_con {
	
}
section.staff .image_wrap img {
	border-radius:16px;
}
/*
*入局希望の方へ
*/
section.resident {
	padding: 50px 0;
	background:#F7FCF3;
}
section.resident .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0px;
}
section.resident .content_wrap .content_title {
	text-align: center;
}
section.resident .content_wrap .content {
	padding: 80px 0 0px;
}
section.resident .contnt_area {
	padding: 0 1rem;
}
/* タブ */
.tab-list {
	display: flex;
	justify-content: center;
}
.tab-item {
	font-family:"BIZ+UDGothic";
	font-weight:600;
	width: 45%;
	margin: 0 8px;
	padding: 10px 0;
	border-radius: 8px 8px 0 0;
	background-color: #e28194;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: .4s ease-in-out;
}
.tab-item:first-child {
	background: #76AB86;
}
.tab-item:nth-child(2) {
	background: #76AB86;
}

/* タブをクリックした時 ホバーした時 */
.tab-item:hover, .tab-item.is-active {
	color: #fff;
}
.tab-item:first-child:hover, .tab-item:first-child.is-active {
	background: #96D6A9;
	background: linear-gradient(180deg,rgba(150, 214, 169, 1) 0%, rgba(107, 190, 132, 0.84) 100%);
}
.tab-item:nth-child(2):hover, .tab-item:nth-child(2).is-active {
	background: #96D6A9;
	background: linear-gradient(180deg,rgba(150, 214, 169, 1) 0%, rgba(107, 190, 132, 0.84) 100%);
}
.tab-item:last-child:hover, .tab-item:last-child.is-active {
	background: #96D6A9;
	background: linear-gradient(180deg,rgba(150, 214, 169, 1) 0%, rgba(107, 190, 132, 0.84) 100%);
}

/* パネル */
.panel-list {
	background-color: #fff;
	border-radius: 8px;
}
.panel-item {
	display: none;
	width: 100%;
	padding: 40px 30px;
	background: #96D6A9;
	background: linear-gradient(0deg,rgba(150, 214, 169, 1) 0%, rgba(107, 190, 132, 0.84) 100%);
	border-radius: 8px;
	box-shadow: 1px 3px 3px rgb(0,0,0,0.16);
}
.panel-item.is-active {
	display: block;
	animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.panel-item .item_warp {
	display: flex;
	justify-content:space-between;
	/*flex-wrap:wrap;*/
	padding: 30px;
	align-items:center;
}
.panel-item .item_warp .item {
	margin: 0 10px 50px;
}
.panel-item .item_warp::after {
	/*display:block;
	content:"";
	width: 295px;
	height: 245px;*/
}
.panel-item .item_warp .item:nth-child(4) {
	margin:10px;
}
.panel-item .item_warp .item .item_image {
	cursor: pointer;
	max-width: 295px;
	overflow: hidden;
	width: 100%;
	border-radius: 8px;
}
.panel-item .item_warp .item .item_image img {
	height: auto;
	transition: transform .6s ease;
}
.panel-item .item_warp .item .item_image:hover img{
	transform: scale(1.1);
}
.panel-item .item_warp .item h4 {
	margin: 10px 0;
	position: relative;
}
.panel-item .item_warp .item h4::after {
	position: absolute;
    top: 10px;
    left: 170px;
    content: "";
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	transition:0.5s;
}
.panel-item .item_warp .item:hover h4::after {
    left: 190px;
}
.panel-item .item_warp .item h4 a {
	font-family:"BIZ+UDGothic";
	color: #fff;
}

/*
*病気と治療
*/
section.disease {
	padding: 50px 0;
}
section.disease .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 70px;
}
section.disease .content_wrap .content_title {
	text-align: left;
}
section.disease .content_wrap .content {
	padding: 80px 0 0;
}
section.disease .content_wrap .content .disease_wrap {
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
}
section.disease .content_wrap .content .disease_wrap > div {
	width:396px;
	height:240px;
	border-radius: 8px;
	background-repeat:no-repeat;
}
section.disease .content_wrap .content .disease_wrap .list01 {
	background-image:url("../images/index/img_disease001.png");
	margin-right: 30px;
	margin-bottom: 30px;
}
section.disease .content_wrap .content .disease_wrap .list02 {
	background-image:url("../images/index/img_disease002.png");
}
section.disease .content_wrap .content .disease_wrap .list03 {
	background-image:url("../images/index/img_disease003.png");
	margin-right: 30px;
}
section.disease .content_wrap .content .disease_wrap .list04 {
	background-image:url("../images/index/img_disease008.png");
}
section.disease .content_wrap .disease_wrap .bg_department {
	height:240px;
	position:relative;
	overflow: hidden;
}
section.disease .content_wrap .disease_wrap .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 396px;
	height: 240px;
	border-radius: 8px;
	background: #D1D622;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section.disease .content_wrap .disease_wrap .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 396px;
	height: 240px;
	border-radius: 8px;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}

section.disease .content_wrap .disease_wrap .bg_department a {
	font-family:"BIZ+UDGothic";
	position:relative;
	display:block;
	color: #fff;
	height:240px;
	z-index:1;
}
section.disease .content_wrap .bg_department a h4 {
	font-size:20px;
	padding-top:2rem;
	padding-left:2rem
}
section.disease .content_wrap .disease_wrap .bg_department a p {
	position:relative;
	margin-top: 100px;
	margin-left:230px;
}
section.disease .content_wrap .bg_department a p::before {
	position:absolute;
	top: 0px;
	left: 112px;
	content:"";
	width: 25px;
    height: 25px;
	border: 1px solid #fff;
	border-radius:50%;
	background: transparent;
	transition:0.5s;
}
section.disease .content_wrap .bg_department a p::after {
	position:absolute;
	top: 10px;
	left: 120px;
	content:"";
	width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	transition:0.5s;
}
section.disease .content_wrap .bg_department:hover a p::after {
	border-top: 2px solid  #179243;
    border-right: 2px solid  #179243;
	
}
section.disease .content_wrap .bg_department:hover a p::before {
	background: #fff;
}

section.disease .content_wrap .content .department_wrap {
	margin-top:30px;
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
}
section.disease .content_wrap .content .department_wrap > div {
	width:396px;
	height:121px;
	border-radius: 8px;
	background-repeat:no-repeat;
}
section.disease .content_wrap .content .department_wrap .list01 {
	background-image:url("../images/index/img_disease004.png");
	margin-right: 30px;
	margin-bottom: 30px;
}
section.disease .content_wrap .content .department_wrap .list02 {
	background-image:url("../images/index/img_disease005.png");
	margin-bottom: 30px;
}
section.disease .content_wrap .content .department_wrap .list03 {
	background-image:url("../images/index/img_disease006.png");
	margin-right:30px;
}
section.disease .content_wrap .content .department_wrap .list04 {
	background-image:url("../images/index/img_disease007.png");
}
section.disease .content_wrap .department_wrap .bg_department {
	height:121px;
	position:relative;
	overflow: hidden;
}
section.disease .content_wrap .department_wrap .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 396px;
	height: 121px;
	border-radius: 8px;
	background: #D1D622;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section.disease .content_wrap .department_wrap .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 396px;
	height: 121px;
	border-radius: 8px;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section.disease .content_wrap .department_wrap .bg_department a {
	font-family:"BIZ+UDGothic";
	position:relative;
	display:block;
	color: #fff;
	height:121px;
	z-index:1;
}
section.disease .content_wrap .bg_department:hover::before {
	opacity:1;
}
section.disease .content_wrap .department_wrap .bg_department a p {
	position:relative;
	margin-top: 20px;
	margin-left:230px;
}

/*
*研究と実績
*/
section.research {
	padding: 50px 0;
	background: #FFFFFF;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(206, 236, 215, 0.84) 100%);
}
section.research .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 100px;
}
section.research .content_wrap .content_title {
	text-align: left;
	display: flex;
	justify-content:flex-end;
}
section.research .content_wrap .content {
	padding: 80px 0 0;
}
section.research .content_wrap .content .research_wrap {
	display:flex;
	flex-flow:column;
	align-items: flex-end;
	justify-content:center;
}
section.research .content_wrap .content .research_wrap > div {
	font-family:"BIZ+UDGothic";
	position:relative;
}
section.research .content_wrap .content .research_wrap div h4 {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size:32px;
	color: #000;
	transition: 0.5s;
}
section.research .content_wrap .content .research_wrap div p.more {
	position: absolute;
	bottom: 20px;
	right:80px;
	color: #fff;
}

section.research .content_wrap .content .research_wrap div p.more::after {
	position:absolute;
	top: 10px;
	left: 120px;
	content:"";
	width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	transition:0.5s;
}
section.research .content_wrap .content .research_wrap div:hover p.more::after {
	border-top: 2px solid  #179243;
    border-right: 2px solid  #179243;
	
}
section.research .content_wrap .content .research_wrap div p.more::before {
	position:absolute;
	top: 0px;
	left: 112px;
	content:"";
	width: 25px;
    height: 25px;
	border: 1px solid #fff;
	border-radius:50%;
	background: transparent;
	transition:0.5s;
}
section.research .content_wrap .content .research_wrap div:hover p.more::before {
	background: #fff;
}

section.research .content_wrap .content .research_wrap div h4 span {
	display:block;
	font-size:14px;
	color:#179243;
}
section.research .content_wrap .content .research_wrap div:hover h4 {
	color:#179243;
}
section.research .content_wrap .content .research_wrap .item_image {
	cursor: pointer;
	max-width: 643px;
	overflow: hidden;
	width: 100%;
	border-radius: 8px;
	position:relative;
}
section.research .content_wrap .content .research_wrap > div .item_image::after {
	position:absolute;
	bottom: 0;
	left: 0;
	content:"";
	width:643px;
	height:60px;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition:0.5s;
}
section.research .content_wrap .content .research_wrap > div:hover .item_image::after {
	opacity:1;
}
section.research .content_wrap .content .research_wrap .list01 {
	margin-bottom: 30px;
}
section.research .content_wrap .content .research_wrap .item_image img {
	height: auto;
	transition: transform .6s ease;
}
section.research .content_wrap .content .research_wrap .item_image:hover img {
	transform: scale(1.1);
}

/*
*CKDシール
*/
section.ckd {
	padding: 50px 0;
	background: #FFFFFF;
}
section.ckd .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
}
section.ckd .content_wrap .content {
	text-align:center;
}
section.ckd .content_wrap .content img {
	margin: 0 auto;
}

/*
*患者さまへ
*/
section.patients {
	padding: 50px 0;
	background: #F7FCF3;
	background: linear-gradient(180deg,rgba(247, 252, 243, 1) 0%, rgba(249, 253, 244, 1) 15%, rgba(211, 234, 215, 1) 30%, rgba(189, 232, 202, 1) 50%, rgba(220, 238, 222, 1) 78%, rgba(249, 253, 244, 1) 94%, rgba(255, 255, 255, 1) 100%);
}
section.patients .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0px;
}
section.patients .content_wrap .content_title {
	text-align: center;
}
section.patients .content_wrap .content {
	padding: 80px 0 0;
}
section.patients .content_wrap .patients_wrap {
	display:flex;
	justify-content: center;
}
section.patients .content_wrap .content .patients_wrap > div {
	font-family:"BIZ+UDGothic";
	position:relative;
	margin:0 20px;
}
section.patients .content_wrap .content .patients_wrap div h4 {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size:32px;
	color: #000;
	transition: 0.5s;
}
section.patients .content_wrap .content .patients_wrap div p.more {
	position: absolute;
	bottom: 20px;
	right:80px;
	color: #fff;
}

section.patients .content_wrap .content .patients_wrap div p.more::after {
	position:absolute;
	top: 10px;
	left: 120px;
	content:"";
	width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
	transition:0.5s;
}
section.patients .content_wrap .content .patients_wrap div:hover p.more::after {
	border-top: 2px solid  #179243;
    border-right: 2px solid  #179243;
	
}
section.patients .content_wrap .content .patients_wrap div p.more::before {
	position:absolute;
	top: 0px;
	left: 112px;
	content:"";
	width: 25px;
    height: 25px;
	border: 1px solid #fff;
	border-radius:50%;
	background: transparent;
	transition:0.5s;
}
section.patients .content_wrap .content .patients_wrap div:hover p.more::before {
	background: #fff;
}

section.patients .content_wrap .content .patients_wrap div h4 span {
	display:block;
	font-size:14px;
	color:#179243;
}
section.patients .content_wrap .content .patients_wrap div:hover h4 {
	color:#179243;
}
section.patients .content_wrap .content .patients_wrap .item_image {
	cursor: pointer;
	max-width: 412px;
	overflow: hidden;
	width: 100%;
	border-radius: 8px;
	position:relative;
}
section.patients .content_wrap .content .patients_wrap > div .item_image::after {
	position:absolute;
	bottom: 0;
	left: 0;
	content:"";
	width:412px;
	height:60px;
	background: linear-gradient(180deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition:0.5s;
}
section.patients .content_wrap .content .patients_wrap > div:hover .item_image::after {
	opacity:1;
}
section.patients .content_wrap .content .patients_wrap .item_image img {
	height: auto;
	transition: transform .6s ease;
}
section.patients .content_wrap .content .patients_wrap .item_image:hover img {
	transform: scale(1.1);
}
@media screen and (max-width: 1200px) {
	
	section.topics .content_wrap .content {
		padding: 2rem 2rem;
	}
	section.depatment {
		padding:50px 1rem;
	}
	.panel-item {
		padding: 0;
	}
	.panel-item .item_warp {
		padding: 1.2rem 0;
	}
	
}
@media screen and (max-width: 1024px) {
	.panel-item .item_warp {
		justify-content:flex-start;
		flex-wrap: wrap;
	}
	.panel-item .item_warp .item:nth-child(4) {
		margin: 0px 10px 50px;
	}
	section.disease .content_wrap {
		padding: 80px 20px;
	}
	section.research .content_wrap {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 960px) {
	.submit_more {
		line-height:30px;
	}
	section.topics .content_wrap .content .left_con {
		width: 100%;
	}
	section.topics .content_wrap .content {
		flex-flow:column;
	}
	section.topics .content_wrap .content .left_con .content_title{
		display:flex;
		justify-content:space-between;
		margin-bottom: 1rem;
	}
	section.topics .content_wrap .content .right_con {
		width:100%;
	}
	section.depatment .content_wrap {
		padding: 50px 20px;
	}
	section.depatment .content_wrap .content > div {
		width: 50%;
	}
	section.depatment .content_wrap .left_con .bg_department::before {
		width: 100%;
	}
	section.depatment .content_wrap .right_con .bg_department::before {
		width: 100%;
	}
	section.greeting .content_wrap .content div.right_con .image_wrap {
		align-items:flex-end;
	}
	section.greeting .content_wrap .content div.left_con {
		width: calc(55% - 30px);
	}
	section.greeting .content_wrap .content .greeting_text {
		padding: 20px 0;
	}
	section.greeting .content_wrap .content .greeting_text > p {
		padding-bottom: 10px;
	}
	section.staff .content_wrap .content {
		flex-flow:column;
	}
	section.staff .content_wrap .content .left_con {
		width: 100%;
		margin-bottom: 1rem;
	}
	.panel-item .item_warp::after {
		display:none;
	}
	section.disease .content_wrap .content .disease_wrap .list01 {
		margin-bottom: 1rem;
		margin-right:1rem;
	}
	section.disease .content_wrap .content .disease_wrap .list02 {
		margin-right:1rem;
	}
	section.disease .content_wrap .content .disease_wrap .list03 {
		margin-right:1rem;
	}
	section.disease .content_wrap .content .disease_wrap .list04 {
		margin-right:1rem;
	}
	section.disease .content_wrap .content .department_wrap .list03 {
		margin-right:1rem;
	}
	section.disease .content_wrap .content .department_wrap .list04 {
		margin-right:1rem;
	}
	section.disease .content_wrap .content .disease_wrap > div {
		margin-bottom: 1rem;
	}
	section.disease .content_wrap .content .department_wrap .list01,section.disease .content_wrap .content .department_wrap .list02 {
		margin-bottom: 1rem;
		margin-right:1rem;
	}
	section.disease .content_wrap .content .department_wrap > div {
		margin-bottom: 1rem;
	}
}
@media screen and (max-width: 768px) {
	section.topics .content_wrap .content .left_con .content_title {
		margin-bottom:3rem;
		align-items:center;
	}
	section.topics .btn_more {
		margin-top:0;
	}
	section.depatment .content_wrap .content {
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	section.depatment .content_wrap .content > div {
		width: 80%;
	}
	section.depatment .content_wrap .content .left_con,section.depatment .content_wrap .content .right_con {
    margin: 0 auto 30px;
    border-radius: 20px;
	}
	section.depatment .content_wrap .left_con .bg_department::before,section.depatment .content_wrap .right_con .bg_department::before {
		border-radius:20px;
	}
	section.greeting .content_wrap .content {
		flex-flow: column;
	}
	section.greeting .content_wrap .content div.left_con {
		width: 100%;
	}
	section.about .content_wrap {
		background:none;
	}
	section.about .content_wrap .content {
		flex-flow: column;
	}
	section.about .content_wrap .content div.left_con {
		width:100%;
	}
	section.about .circle_text {
		display:none;
	}
	section.about .circle05 {
		display:block;
		position:relative;
	}
	section.about .circle01,section.about .circle02,section.about .circle03,section.about .circle04 {
		display:none;
	}
	section.about .content_wrap .content div.right_con {
		width: 100%;
	}
	section.depatment .content_wrap .content .left_con, section.depatment .content_wrap .content .right_con {
		margin:1rem;
	}
	section.depatment .content_wrap .content > div {
		width:100%;
	}
	section.depatment .content_wrap .bg_department a p::before {
		top:50%;
		transform:translatey(-50%);
	}
	section.depatment .content_wrap .bg_department a p::after {
		top:50%;
		transform:translatey(-50%) rotate(45deg);
	}
	section.depatment .content_wrap .bg_department a p {
		margin-right:120px;
	}
	section.patients .content_wrap .patients_wrap {
		flex-flow: column;
	}
	section.patients .content_wrap .content .patients_wrap .item_image {
		max-width: 100%;
	}
	section.patients .content_wrap .content .patients_wrap > div .item_image::after {
		width: 100%;
	}
	section.patients .content_wrap .content .patients_wrap .list01 {
		margin-bottom:2rem;
	}
	section.patients .content_wrap .content .patients_wrap div p.more::before {
		top:50%;
		transform: translateY(-50%);
	}
	section.patients .content_wrap .content .patients_wrap div p.more::after {
		top:50%;
		transform: translateY(-50%) rotate(45deg);
	}
	section.research .content_wrap .content .research_wrap div h4 {
		top:10px;
		font-size:26px;
	}
	section.research .content_wrap .content .research_wrap div p.more::before {
		top:50%;
		transform: translateY(-50%);
	}
	section.research .content_wrap .content .research_wrap div p.more::after {
		top:50%;
		transform: translateY(-50%) rotate(45deg);
	}
	section.patients .content_wrap .content .patients_wrap > div {
		margin: 0;
		padding: 0 1rem;
	}
	section.patients .content_wrap .content .patients_wrap div p.more {
		right:120px;
	}
		
	section .content_wrap h3 {
    font-family: "BIZ+UDGothic";
    font-size: 26px;
    color: #179243;
	}
	
	section.patients .content_wrap .content .patients_wrap div h4 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #000;
    transition: 0.5s;
}
	
	}
}
@media screen and (max-width: 560px) {
	.content_wrap {
		overflow:hidden;
	}
	.mv01 {
		margin-bottom:1rem;
	}
	.visual .slide-title {
		font-size:1.4rem;
	}
	section.topics .post_wrap {
		flex-flow:column;
		padding: 1rem 0;
		border-bottom: dotted 1px #179243;
	}
	section.topics .post_wrap .thumbnail {
		width:50%;
		margin-right:0;
		margin: 2rem auto;
	}
	section.topics .post_wrap .post_text {
		width: 100%;
	}
	section.topics .content_wrap {
		padding-top:2rem;
	}
	section.greeting .content_wrap .content div.right_con {
		width: 80%;
		margin-top:2rem;
	}
	section.about .content_wrap .content div.right_con {
		margin-top:2rem;
		min-height:auto;
	}
	section.about .circle_wrap {
		min-height:auto;
	}
	section.depatment .content_wrap .content > div {
		width:100%;
		max-height:220px;
		background-position: center center;
	}
	section.depatment .content_wrap .bg_department {
		height: 100%;
		max-height:220px;
	}
	section.depatment .content_wrap .left_con .bg_department::before, section.depatment .content_wrap .right_con .bg_department::before {
		height: 100%;
		max-height:220px;
	}
	section.depatment .content_wrap .bg_department a {
		height: 100%;
		max-height:220px;
	}
	section.depatment .content_wrap .content {
		padding-top:2rem;
	}
	section.disease .content_wrap .content .department_wrap .list03 {
		margin-right: 1rem;
	}
	section.patients .content_wrap .content .patients_wrap div h4 {
		font-size:26px;
	}
	section.research .content_wrap .content .research_wrap div p.more {
		right:120px;
	}
	section.staff .content_wrap .content {
		padding-top: 2rem;
		padding-bottom:2rem;
	}
	section.resident .content_wrap {
		padding: 2rem 0 ;
	}
	section.ckd .content_wrap {
		padding: 0 1rem;
	}
	.panel-item .item_warp {
		flex-flow:column;
		flex-wrap:nowrap;
		justify-content: center;
	}
	.panel-item .item_warp .item {
		margin-top:2rem;
	}
	section.patients .content_wrap {
		padding: 2rem 0;
	}
	section.disease .content_wrap {
		padding-top: 2rem;
		padding-bottom:2rem;
	}
	section.research .content_wrap {
		padding-top: 2rem;
		padding-bottom:2rem;
	}
	
}
@media screen and (max-width: 428px) {
	section.topics .content_wrap .content .left_con .content_title {
		flex-flow: column;
		align-items:flex-start;
	}
	
	section .content_wrap h3 span {
		display:inline-block;
		padding-left: 1rem;
	}
	section .content_wrap h3 {
		margin-bottom:1rem;
	}
	.mv01 {
		margin-bottom:2rem;
	}
	.visual .slide-title {
		font-size:1.3rem;
	}
	section.disease .content_wrap .content .disease_wrap .list01,section.disease .content_wrap .content .disease_wrap .list02,section.disease .content_wrap .content .disease_wrap .list03 {
		margin-right:0;
	}
	section.disease .content_wrap .content .department_wrap .list01,section.disease .content_wrap .content .department_wrap .list02,section.disease .content_wrap .content .department_wrap .list03,section.disease .content_wrap .content .department_wrap .list04 {
		margin-right: 0rem;
	}
	section.disease .content_wrap .bg_department a p::before {
    position: absolute;
    top: 0px;
    left: 82px;
    content: "";
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    transition: 0.5s;
}
	section.disease .content_wrap .bg_department a p::after {
    position: absolute;
    top: 10px;
    left: 90px;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: 0.5s;
}
	section.disease .content_wrap .content .disease_wrap .list04 {
        margin-right: 0;
    }
	    .panel-item .item_warp {
        padding:1.5rem 2rem;
    }
	section.topics .post_wrap {
    display: block;
	}
    section.topics .post_wrap .thumbnail {
    width: 100%;
    /* margin-right: 30px; */
	}
	section.topics .post_wrap .post_text {
    width:100%;
	}
	section.topics .post_wrap .post_text .post_title {
    font-weight: 600;
	margin-top: 15px;
    margin-bottom: 15px;
	}
	.submit_more {
    font-family: "BIZ+UDGothic";
    display: inline-block;
    width: 150px;
    text-align: left;
    text-decoration: none;
    line-height: 40px;
    outline: none;
    color: #000;
    background-color: #fff;
    position: relative;
    border: 1px solid #ACACAC;
    border-radius: 25px;
    transition: color 0.5s ease;
    overflow: hidden;
	}
	
	.submit_more .text::after {
    position: absolute;
    top: 50%;
       
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #179243;
    border-right: 2px solid #179243;
    transform: rotate(45deg) translatey(-50%);
	}
	
	section.disease .content_wrap .disease_wrap .bg_department a p {
    position: relative;
    left: -10px;
}
}
@media screen and (max-width: 375px) {
	section.depatment .content_wrap .bg_department a p {
		margin-right:80px;
	}
	section.disease .content_wrap .bg_department a h4 {
		padding-left:1rem;
	}
	section.disease .content_wrap .disease_wrap .bg_department a p {
		margin-left:220px;
	}
	section.disease .content_wrap .department_wrap .bg_department a p {
		margin-left:220px;
	}
}