@charset "UTF-8";

*{
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}
body{
  font-family: "游ゴシック","メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #fffafa;
}
li{
  list-style: none;
}

a{
  overflow: hidden;
  text-decoration: none;
}
p{
  font-size: 0.6rem;
}
.header{
  background-color: #fffafa;
  width: 100%;
  top: 0;
  margin: 0;
}
@media screen and (max-width: 768px)  {
  .header{
    position: fixed;
    z-index: 100;
  }
 }
.header-top{
	display: flex;
  justify-content: space-between;
}
.header-top-l p{
	font-size: 0.9rem;
  padding-left: 1rem;
}
.header-top-r p{
	font-size: 0.9rem;
  padding-right: 1rem; 
}
@media screen and (max-width: 768px)  {
  .header-top{
    display: none;
  }
 }
.header-middle{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px)  {
  .header-middle{
    display: block;
  }
 }
img.logo{
  width: auto;
  height: 90px;
  margin: 0px 4px 0 15px;
}
.logo:hover{
  opacity: 0.6;
}
.header-button{
  flex-direction: column;
}
@media screen and (max-width: 768px)  {
  img.logo{
    width: 75%;
    height: auto;
    margin: 0px 4px 0 15px;
  }
  .header-button{
    flex-direction: row;
    display: flex;
    justify-content: center;
  }
 }

.original-button, .original-button2 {
  display: block;
  margin: 0px 10px 10px auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  padding:10px 0;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  border-radius: 5px;
  width: 160px;
  height: 36px;
  font-weight: bold;
  border-bottom: 4px solid #015249;
  transition: 0.3s;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
  background-color: #57bc90;
}

.original-button:hover, .original-button2:hover{
  box-shadow: 0 0 rgba(0, 0, 0, 0.4);
  border-bottom-width: 2px;
  transform: translateY(2px);
}
@media screen and (max-width: 768px)  {
  .original-button, .original-button2 {
    display: none;
  }
 }
#globalNavi{
	width: 100%;
	background:#57bc90;
  display: inline-block;
  margin: 0;
  z-index: 20;
  vertical-align:top;
}
#globalNavi ul li a{
	background:#57bc90;
	width: 20%;
  margin: 0;
	float: left;
	padding:10px 0;
        text-align: center;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #57bc90;
	box-sizing: border-box;
  font-size: 16px;
	font-weight: bold;
        
}
#globalNavi ul li a:hover{
	background:#77c9d4;
}
.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
@media screen and (min-width: 769px){
  #globalNavi .ph-reservation,.ph-access{
    display: none;
  }
}
@media screen and (max-width: 768px){
  #globalNavi .home,.clinic,.reservation,.access,.inquiry{
    display: none;
  }
  #globalNavi ul li a{
    width: 50%;
  }
  .fixed {
    position: static;
  }
}
@media screen and (max-width: 400px){
  #globalNavi ul li a{
    padding:10px 0;
  }
}
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #015249;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
@media screen and (min-width: 769px){
  .hamburger{
    display: none;
  }
}
@media screen and (max-width: 480px)  {
  .hamburger{
    display : block;
  }
}
/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: #57bc90;
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#77c9d4;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 0.9;
  display: block;
   transform: translateX(0%);
}

/* グーローバルナビend */

.main{
  height: auto;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px){
  .main{
    margin-top: 180px;
  }
}
@media screen and (max-width: 580px){
  .main{
    margin-top: 160px;
  }
}
@media screen and (max-width: 464px){
  .main{
    margin-top: 150px;
  }
}
@media screen and (max-width: 388px){
  .main{
    margin-top: 140px;
  }
}
@media screen and (max-width: 324px){
  .main{
    margin-top: 130px;
  }
}
@media screen and (max-width: 266px){
  .main{
    margin-top: 120px;
  }
}
.main-visual{
  position: relative;
  top: auto;
  margin: 0;
  padding: 0;
}
.main-visual img{
  width: 100%;
  height: 580px;
  object-fit: cover;
}
@media screen and (max-width: 768px){
  .main-visual img{
    height: 380px;
  }
}
@media screen and (max-width: 486px){
  .main-visual img{
    height: 240px;
  }
}
@media screen and (max-width: 270px){
  .main-visual img{
    height: 170px;
  }
}
.main-visual-text{
  position: absolute;
  left: 100px;
  top: 300px;
  z-index: 1;
}
@media screen and (max-width: 768px){
  .main-visual-text{
    top: 100px;
  }
}
.main-visual-text h2{
  font-weight: bold;
  color: #000;
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.5em;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
@media screen and (max-width: 486px){
  .main-visual-text{
    top: 60px;
  }
  .main-visual-text h2{
    font-size: 20px;
    padding: 6px;
  }
}
@media screen and (max-width: 320px){
  .main-visual-text{
    left: 40px;
    top: 30px;
  }
  .main-visual-text h2{
    font-size: 16px;
    padding: 5px;
  }
}
@media screen and (max-width: 215px){
  .main-visual-text{
    display: none;
  }
}
.main-visual-img img{
  width: 100%;
  max-width: 100%;
}
.time-table {
  display: inline-block;
  border-collapse: collapse;
  position: absolute;
  opacity: 0.8;
  right: 100px;
  top: 300px;
  width: 495px;
  z-index: 1;
}

.time-table .tb01 tr td{
  background-color: #fffafa;
}
.time-table .tb01 tr th{
  background-color: #fffafa;
}

.time-table .tb01 tr:first-child th{
  color: #fffafa;
  background-color: #57bc90;
}
.time-table .tb01 tr:first-child td{
  color: #fffafa;
  background-color: #57bc90;
}
@media screen and (max-width: 1025px)  {
 .time-table{
  display: none;
 }
}
.sp-info{
   background-color: #f7f7f7;
   font-family: "Arial", "メイリオ";
   font-size: 11px;
   margin: 0;
   font-weight: normal;
   position: unset;
   padding: 10px 5%;
   text-align: center;
}
.sp-info{
  display: none;
}
@media screen and (max-width: 768px)  {
  .sp-info{
     display: block;
  }
  .sp-info span{
     display: inline-block;
  }
}
.wrapper {
  margin: 0 auto;
  padding: 50px 10px 100px 10px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
/* content2
------------------------------ */
#news {
  width: 100%;
  background-color: #edfff7;
}
#news a{
  color: #808080;
}

#news h2 {
  display: inline-block;
  margin: 0 auto 40px auto;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 4px solid #57bc90;
}

#news ol {
  margin-bottom: 40px;
  padding: 30px 40px 40px;
  text-align: left;
  border-radius: 20px;
  background-color: #fffafa;
}
@media screen and (max-width: 1133px){
  #news ol {
    margin: 0 2rem 40px 2rem;
  }
}
#news ol li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 2.0em;
  border-bottom: 2px solid #015249;
}

#news ol li:last-child {
  margin-bottom: 0;
}

#news ol li time {
  margin-right: 20px;
  font-size: 0.85rem;
}
#news .link_contact{
  border-radius: 20px;
}
#news .link_contact a {
  display: inline-block;
  padding: 15px 60px;
  color: #fff;
  font-size: 1.0rem;
  font-weight: 500;
  box-shadow: 0 5px 0 #012522;
  background-color: #015249;
  border-radius: 20px;
}

#news .link_contact a:hover {
  background-color: #013b35;
}

/* content2 end
------------------------------ */
/* feature start-----------------------*/
#feature {
  width: 100%;
  background-color: #d4f5f1;
}

#feature h2 {
  display: inline-block;
  margin: 0 auto 40px auto;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 4px solid #57bc90;
}

.top-feature-item {
  margin: 0 0 2rem 0;
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #fffafa;
}
.top-feature-item-inner {
  display: flex;
}
@media screen and (max-width: 1133px){
  .top-feature-item {
    margin: 0 2rem 40px 2rem;
  }
}

@media screen and (max-width: 640px){
  .top-feature-item-inner {
    display: block;
  }
}
@media screen and (max-width: 640px){
  .top-feature-img {
    margin: 0 0 10px;
    max-width: unset;
  }
}
.top-feature-img img {
  width: 320px;
  height: auto;
  border-radius: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 476px){
  .top-feature-img img {
    width: 100%;
    height: auto;
  }
}
.point h3{
  color: #57bc90;
}
#feature h3 {
  border-bottom: 4px dotted #57bc90;
  padding: 0 0 4px;
  margin: 0 0 20px;
  line-height: 1.4;
  font-family: fot-tsukuardgothic-std,sans-serif;
  font-weight: bold;
  display: table;
}
.top-feature-box span{
  display: inline-block;
}
/* feature end-----------------------*/
/* disease start-----------------------*/
#disease {
  width: 100%;
  background-color: #c8ecd9;
}

#disease h2 {
  display: inline-block;
  margin: 0 auto 40px auto;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 4px solid #57bc90;
}

#disease .top-feature-item {
  margin: 0 0 2rem 0;
  padding: 20px 30px;
  background-color: #c8ecd9;
}
.top-feature-item-inner {
  display: flex;
}
@media screen and (max-width: 1133px){
  .top-feature-item {
    margin: 0 2rem 40px 2rem;
  }
}

@media screen and (max-width: 640px){
  .top-feature-item-inner {
    display: block;
  }
}
@media screen and (max-width: 640px){
  .top-feature-img {
    margin: 0 0 10px;
    max-width: unset;
  }
}
.top-feature-img img {
  width: 320px;
  height: auto;
  border-radius: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 476px){
  .top-feature-img img {
    width: 100%;
    height: auto;
  }
}

#disease p {
  font-size: 1rem;
  text-align: start;
}
.top-feature-box span{
  display: inline-block;
}
/* disease end-----------------------*/
footer{
  background-color: #F2F0EC;
  margin: 0;
  width: 100%;
}
footer a{
  color: #808080;
}
footer a:hover{
  opacity: 0.6;
}
.footer-info{
  display: flex;
  width: 100%;
  margin: 0;
  padding: 2rem 2rem 1rem 2rem;
}
.footer-info-l,.footer-info-m,.footer-info-r{
  font-size: 1rem;
}
.footer-info-l,.footer-info-r{
  width: 34%;
}
.footer-info-m{
  width: 22%;
}
@media screen and (max-width:1660px){
  .footer-info{
    display: block;
  }
  .footer-info-l{
    width: 55%;
    display: inline-block;
    vertical-align: top;
  }
  .footer-info-m{
    width: 31%;
    display: inline-block;
    vertical-align: top;
  }
  .footer-info-r{
    width: 100%;
  }
}
@media screen and (max-width:1053px){
  .footer-info-l{
    width: 100%;
    display: block;
  }
  .footer-info-m{
    width: 100%;
    display: block;
  }
}
.footer-logo{
  margin-bottom: 1rem;
  height: 80px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 500px){
  .footer-logo{
    width: 100%;
    height: auto;
  }
}
.footer-logo:hover{
  opacity: 0.6;
}
.footer-info-add{
  margin-bottom: 0.5rem;
}
.footer-info-add a {
  color: #333333;
  background-image: linear-gradient(#333333, #333333);
  transition: background-size .52s cubic-bezier(.165, .84, .44, 1);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px){
  .footer-info-add a {
  line-height: 0.3;    
  }
}
.footer-info-access span{
  display: inline-block;
} 
.footer-info-sche{
  width: 100%;
}
.footer-info-sche .schedule table{
  width: 100%;
  border: 1px solid #DDD6CF;
}
.tb01{
  border-spacing: 0;
  border-collapse: collapse;
}
tbody{
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
tr{
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.footer-info-sche .tb01 tr:first-child th{
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  text-align: center;
}



table {
  border-collapse: collapse;
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 0.8rem;
}
footer th span{
  display: inline-block;
}
@media screen and (max-width: 768px){
  footer a,span{
    font-size: 1rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 1rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 1rem;
  }
  table {
    font-size: 1rem;
  }
}
@media screen and (max-width: 614px){
  footer span .pr01,.pr005{
    font-size: 0.9rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.9rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.9rem;
  }
  table {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 587px){
  footer span{
    font-size: 0.8rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.8rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.8rem;
  }
  table {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 556px){
  footer th span{
    font-size: 0.75rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.75rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.75rem;
  }
  table {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 542px){
  footer th span{
    font-size: 0.7rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.7rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.7rem;
  }
  table {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 529px){
  footer th span{
    font-size: 0.65rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.65rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.65rem;
  }
  table {
    font-size: 0.65rem;
  }
}

.tb01 tr:first-child th{
  color: #333333;
  background-color: #83caab;
}
.tb01 tr:first-child td{
  color: #333333;
  background-color: #83caab;
}
td,th {
  border: 1px solid rgb(190, 190, 190);
  padding: 5px 10px;
}
.footer_info_sche .tb01 td {
  width: 10%;
  text-align: center;
}
.tb01 td {
  font-weight: bold;
}
.pr01{
  position: relative;
  top: -0.1rem;
}
.pr005{
  position: relative;
  top: -0.05rem;
}
@media screen and (max-width: 516px){
  td,th {
    padding: 3px 5px;
  }
  .tb01 td {
    font-weight: normal;
  }
}
@media screen and (max-width: 340px){
  footer th span{
    font-size: 0.6rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.6rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.6rem;
  }
  table {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 329px){
  footer th span{
    font-size: 0.55rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.55rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.55rem;
  }
  table {
    font-size: 0.55rem;
  }
}
@media screen and (max-width: 288px){
  footer th span{
    font-size: 0.5rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.5rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.5rem;
  }
  table {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 271px){
  footer th span{
    font-size: 0.3rem;
  }
  .footer-info-sche .tb01 th:first-child{
    font-size: 0.3rem;
  }
  .footer-info-sche .tb01 tr:first-child td{
    font-size: 0.3rem;
  }
  table {
    font-size: 0.3rem;
  }
}
.footer-info-m h3 {
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 1px #c4c4c4 solid;
 }
.footer-info-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-info-map {
  text-align: center !important;
  margin-top: 10px;
}
iframe {
  overflow-clip-margin: content-box !important;
  overflow: clip !important;
}
@media screen and (max-width:1660px){
  .footer-info-map iframe{
    width: 100%;
  }
}
@media screen and (max-width:750px){
  .footer-info{
    display: block;
    margin: 0;
    padding: 3rem 3rem 1rem 3rem;
  }
  .footer-info-l{
    display: block;
    width: 100%;
    font-size: 2rem;
  }
  .footer-info-map iframe{
    height: 200px;
  }
}
@media screen and (max-width:400px){
  .footer-info{
    padding: 2rem 2rem 1rem 2rem;
  }
}
@media screen and (max-width:318px){
  .footer-info{
    padding: 2rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width:280px){
  .footer-info{
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
}
@media screen and (max-width: 240px){
  .footer-info-sche{
    display: none; 
  }
}
@media screen and (max-width:300px){
  .footer-info-r{
    display: none;
  }
  .footer-info-map{
    display: none;
  }
}
.copy {
  text-align: center;
  font-family: 'Heebo', sans-serif;
}
.copy small {
  font-weight: 300;
  color: #A8A4A0;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width:488px){
  .copy small {
    font-size: 0.8rem;
  }
}
@media screen and (max-width:388px){
  .copy small {
    font-size: 0.75rem;
  }
}
@media screen and (max-width:354px){
  .copy small {
    font-size: 0.7rem;
  }
}
@media screen and (max-width:330px){
  .copy small {
    font-size: 0.65rem;
  }
}
@media print, screen and (min-width: 737px){
#pagetop{
  padding-bottom: 10px;
}
#pagetop{
  display: none;
  position: fixed;
  bottom: 0px;
  right: 10px;
  padding-bottom: 15px;
}
}
.clear {
  clear: both;
}
.gotop .btn img{
  float: right;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

@media screen and (max-width:750px){
  .gotop img{
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    opacity: 1;
    border: none;
    background: none;
    bottom: 10px;
    right: 10px;
  }
  .gotop::before{
    bottom: 0;
  }
}
html {
    scroll-behavior: smooth;
}
/* --------------------------
* ブログ
* --------------------------
*/
.blog {
  margin-bottom: 50px;
}
.blog ul {
  margin-left: 0;
  padding-left: 0;
}
.blog li {
  border-bottom: 1px dotted #ddd;
  padding-top: 2rem;
}
.blog .blog-info h3{
  color: #16a765;
  font-size: 20px;
  font-weight: bold;
}

.blog .blog-info span {
  color: #666;
  font-size: 13px;
}

.blog .blog-info p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* --------------------------
* 見出し
* --------------------------
*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------------
* ブログ end
* --------------------------
*/


/* --------------------------
* クリニック案内ページ
* --------------------------
*/

.main-title{
  position: relative;
}
.main-title h1 {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }
.main-title img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align:top;
  }
#news .greeting{
  width: 100%;
}
#news .greeting h2 {
  display: flex;
  align-items: center;
  padding: .5em .7em;
  margin: 0 auto 40px auto;
  color: #333333;
  background-color: #dcf0db;
  font-size: 1.4rem;
  font-weight: 700;
  border-left: 8px solid #57bc90;
}
#news .greeting p {
  text-align: start;
  display: flex;
  color: #333333;
  font-size: 1rem;
}
#news .greeting h3 {
  text-align: start;
  display: flex;
  color: #57bc90;
  font-size: 1.4rem;
}
#news .greeting table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  border:none
}
#news .greeting table td{
  padding: 1em;
  font-size: 1rem;
  text-align: left;
  border:none;
}
#news .greeting table th{
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  width: 20%;
  min-width: 4em;
  border-top:none;
  border-left:none;
  border-bottom:none;
  border-right: 1px solid #57bc90;
}
#feature .greeting h2 {
  display: flex;
  align-items: center;
  padding: .5em .7em;
  margin: 0 auto 40px auto;
  color: #333333;
  background-color: #dcf0db;
  font-size: 1.4rem;
  font-weight: 700;
  border-left: 8px solid #57bc90;
}
#feature .greeting p {
  text-align: start;
  display: flex;
  color: #333333;
  font-size: 1rem;
}
#feature .greeting table{
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  border:none
}
#feature .greeting table td{
  padding: 1em;
  font-size: 1rem;
  text-align: left;
  border:none;
}
#feature .greeting table th{
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  width: 20%;
  min-width: 4em;
  border-top:none;
  border-left:none;
  border-bottom:none;
  border-right: 1px solid #57bc90;
}
#disease .greeting h2 {
  display: flex;
  align-items: center;
  padding: .5em .7em;
  margin: 0 auto 40px auto;
  color: #333333;
  background-color: #dcf0db;
  font-size: 1.4rem;
  font-weight: 700;
  border-left: 8px solid #57bc90;
}
#disease .greeting p {
  text-align: start;
  display: flex;
  color: #333333;
  font-size: 1rem;
}
ul.cp_list {
	padding: 0.5em;
	list-style-type: none;
}
ul.cp_list li {
	position: relative;
	padding: 0.5em 1em 0.5em 2.3em;
	margin-bottom:5px;
        font-size: 1rem;
        text-align: left;
        font-weight: bold;
}
ul.cp_list li:after,
ul.cp_list li:before{
	content:'';
	position: absolute;
	border-radius: 50%;
}
ul.cp_list li:before {
	top: 50%;
	left: 0.2em;
	width: 17px;
	height: 17px;
	background: #57bc90;
	transform: translateY(-50%);
}
ul.cp_list li:after {
	top: 1.1em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: #b6e2cf;
}

@media screen and (max-width:360px){
  ul.cp_list li {
        font-size: 0.9rem;
        }
}

.clinic-guidance{
   display: flex;
   flex-wrap: wrap;/*4記事以上ある場合、折り返しできるように指定*/
}
.box1{
   width: 45%;
}

.clinic-guidance li figure {
   position: relative;
   overflow: hidden;
   padding-top: 60%;
   margin: 0 10px;
}

.clinic-guidance li figure img {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   width: 100%;
   height: 100%;
   object-fit: cover;
}
@media screen and (max-width:425px){
  .box1{
   width: 85%;
   }
}
/* --------------------------
* クリニック案内ページ end
* --------------------------
*/
.greeting iframe{
  width: 100%;
  object-fit: cover;
}