@charset "utf-8";

body {
  font-family: 'Zen Kaku Gothic New',"Noto Serif JP","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  background-color: #EBDFC3;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: justify;
}
html {
  font-size: 62.5%;
}

/* wrapper
-----------------------------------------*/
.wrapper {
  width: 1100px;
  background-color: #FFF6E6;
  margin: 0 auto;
}
/* calendar
-----------------------------------------*/
.calender  {
  position: relative;
  margin-top: 10px;
}
.calender .calender_ttl {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #545454;
}
.calender .calender_day {
  display: block;
  width:100%;
}
.calender .calender_day tbody {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #545454;
  box-sizing: border-box;
}
.calender .calender_day tbody tr {
  display: flex;
  width:100%;
  box-sizing: border-box;

}
.calender .calender_day tbody th,
.calender .calender_day tbody td {
  width: 30px;
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
  border-right: 1px solid #545454;
}
.calender .calender_day tbody th:nth-child(7),
.calender .calender_day tbody td:nth-child(7) {
  border-right: none;
}
.calender .calender_day tbody tr {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #545454;
}
.calender .calender_day tbody tr:last-child {
  border-bottom: none;
}
.calender .calender_day tbody th {
  background-color: #38b48b;
  color: #fafafa;
}
.calender .calender_day tbody td {
  background: #fafafa;
}
.calender .calender_day tr th:nth-child(7n) {
  background: #C69998;
  color: #fafafa;
}
.calender .calender_day tr td:nth-child(7n) {
  background: #f0dbdb;
}
.calender .is_arrow {
  background: #545454;
  width: 20px;
  height: 20px;
  display: flex;
  color: #fafafa;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 10px;
  position: absolute;
  top: 5px;
  right: 30px;
  z-index: 10;
  transition: all 0.5s;
}
.calender .is_arrow:hover {
  opacity: 0.5;
}
.calender .is_arrow.is_next {
  right: 0px;
}
/* header
-----------------------------------------*/
header {
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
}
.header_logo p {
  font-size: 16px;
  color: #38b48b;
  padding-bottom: 3px;
}
.header_logo {
  width:50%;
  margin-bottom: 20px;
}
header h1 {
  font-size: 4rem;
  color: #38b48b;
  font-weight: 900;
  display:flex;
  align-items: center;
  line-height:1;
  gap:3px;
}
header h1 img {
  display: block;
  width:3.5rem;
  margin-top: 3px;
}
.header_inner {
  width:100%;
}
.header_text {
  margin:0 auto;
  display:flex;
  width:1020px;
  align-items:end;
}
header address {
  width:50%;
  text-align: right;
  color: #38b48b;
  font-size: medium;
  font-weight:500;
}
header address a {
  text-decoration: none;
  color: #38b48b;
  }
/* nav.global
-----------------------------------------*/
.global {
  width: 100%;
  line-height: 40px;
  margin-top: 10px;
  background-color: #38b48b;
}

.global ul {
  display: flex;
  justify-content: space-between;
}

.global li a {
  width: 220px;
  display: block;
  text-align: center;
  color: #fafafa;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-right: 1px solid #fafafa;
  transition: all 0.5s;
}

.global li:last-child a {
  padding-right: 0;
  border-right: none;
  border-right: 0px;
}

.global li a:hover{
  color: #38b48b;
  background-color: #fafafa;
}

/* .visual_img
-----------------------------------------*/
.visual_img {
  display: block;
}
/* .content
-----------------------------------------*/
.content {
  margin: 40px;
  display: flex;
  justify-content: space-between;
}
/* aside---------------------------------*/
aside{
  width: 200px;
  background-color: #FFF6E6;
}
aside .sidemenu li{
  padding-top: 10px;
}
aside .sidemenu li a {
  display: block;
  text-align: center;
  background-color: #fafafa;
  color: #38b48b;
  font-size: 2rem;
  text-decoration: none;
  border: 1px solid #38b48b;
  transition: all 0.5s;
}
aside .sidemenu li:first-child a{
  background-color: #fafafa;
  border: 1px solid #C69998;
  color: #C69998;
}
aside .sidemenu li:first-child a:hover{
  background-color: #C69998;
  color: #fafafa;
}
aside .sidemenu li a:hover{
  background-color: #38b48b;
  color: #fafafa;
}
aside .time p{
  padding-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1.5px solid #38b48b;
  width: 100%;
  color: #38b48b;
  font-weight: 500;
}
aside .time li{
  color: #38b48b;
  font-size: 12px;
  font-weight: 600;
}

/* main
-----------------------------------------*/
main {
  width: 800px;
  margin-left: 40px;
  color: #545454;
}

main h2 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 30px;
  color: #38b48b;
  margin-bottom: 10px;
}

main section {
  margin-bottom: 40px;
}

main section:last-child {
  margin-bottom: 0;
}

/* recommend
-----------------------------------------*/
main section.recommend div{
  display: flex;
  justify-content: space-between;
}
main section.recommend img{
  display: block;
  width: 100%;
}
main section.recommend a{
  display: block;
  width: calc(33.333% - 20px);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}
main section.recommend a:hover{
  opacity: 0.5;
  }

/* information
-----------------------------------------*/
main section.information{
  padding-bottom: 35px;
}
main section.information img{
  float: right;
  width: 280px;
  margin-left: 50px;
}
main section.information p{
  color: #545454;
}

/* open
-----------------------------------------*/
main section.open p span{
  display: inline-block;
  padding-top: 20px;
}

/* caution
-----------------------------------------*/
main section.caution p span{
  display: inline-block;
  padding: 20px 0 5px 0;
  color: #c23e3c;
  font-size: 20px;
  font-weight: 500;
}
main section.caution ul li{
  font-size: 14px;
}

/* doctors
-----------------------------------------*/
main section.doctors div{
  height: 380px;
}
main section.doctors h3{
  padding-top: 10px;
  display: block;
  margin-left: 20px;
}
main section.doctors img{
  float: left;
  margin: 10px 25px 10px 20px;
  border-radius: 10px;
}
main section.doctors div.satou img{
  float: right;
  margin: 10px 25px 10px 20px;
}
main section.doctors div.satou h3{
  padding-bottom: 10px;
}
main section.doctors div.satou p{
  padding-left: 20px;
}
p.end{
  clear: both;
}
.doctors > div:nth-child(even) p {
  padding-right: 20px;
}
/* services
-----------------------------------------*/
.services h2 {
  margin-bottom: 50px;
}
.services-table table{
  width: 100%;  /* テーブルの幅を100%に */
  border-collapse: collapse;  /* セルの罫線を重ねる */
}
/* セルの罫線 */
.services-table td, .services-table th {
  border: 1px solid #545454;
  padding: 8px 3px;
  text-align: center;
  width: 20%;
}
/* ヘッダーのスタイル */
.services-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;  /* テキストを左寄せ */
  background-color: #38b48b;  /* 背景色 */
  color: #fafafa  /* 文字色 */
}
/* access
-----------------------------------------*/
.access {
  padding: 30px;
  background-color: #fafafa;
  border-radius: 8px;
  margin-bottom: 20px;
}

.access h3 {
  font-size: 1.2em;
  border-bottom: 2px solid #545454;
  margin-bottom: 15px;
  padding-bottom: 5px;
  padding-top: 20px;
}

/* map
-----------------------------------------*/
.access iframe {
  width: 100%;
  height: 300px;
}


/* dl.info
-----------------------------------------*/
dl.info {
  font-size: 1.6rem;
  font-weight: 500;
  border: 2px solid #38b48b;
  padding: 10px 20px;
  height: 100px;
  overflow-y: auto;
  color: #545454;
}

.info div {
  display: flex;
  justify-content: flex-start;
  line-height: 24px;
  padding: 10px 0;
  margin-bottom: 5px;
  border-bottom: 2px dotted #38b48b;
}

.info dt {
  width: 9em;
}

.info dd {
  width: calc(100% - 9em);
  text-align: justify;
}
/* footer
-----------------------------------------*/
footer {
  background-color: #38b48b;
  padding: 20px 40px;
  color: #fafafa;
}

footer .content {
  margin: 0;
}

footer h2 {
  font-size: 2.2rem;
  line-height: 33px;
  margin-bottom: 20px;
}

/* footer.address
-----------------------------------------*/
address {
  font-size: 1.4rem;
}
address img{
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
  
}
footer address a {
  text-decoration: none;
  color: #fafafa;
  }
/* nav.local
-----------------------------------------*/
.local {
  margin-top: 5px;
}

.local ul li {
  display: inline-block;
  text-align: right;
}

.local ul li a {
  font-size: 1.6rem;
  color: #fafafa;
  text-decoration: none;
  margin-left: 30px;
}

.local ul li a:hover {
  border-bottom: 1px solid #fafafa;
}

/* small
-----------------------------------------*/
small {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  line-height: 40px;
}