@charset "UTF-8";
main .pagetitle {
  margin-bottom: 0;
}
main #container {
  padding: 2rem 5.6vw 10rem;
}

/* structure
------------------------------------ */
#newsTopContainer {
  display: grid;
  grid-template-columns: 35% 60%;
  gap: 5%;
}

@media screen and (max-width: 768px) {
  #newsTopContainer {
    display: block;
    grid-template-columns: 1fr;
    gap: 10%;
  }
}
/* newsindex
------------------------------------ */
#newsTopic {
  color: #fff;
  background: #51443D;
  padding: 2.1vw;
}
#newsTopic:not(:has(.article)) {
  background: #51443D;
}
#newsTopic section + section {
  margin-top: 10rem;
}
#newsTopic section hgroup {
  display: block;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  border-bottom: 1px dotted #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.5vw, 1.5vw);
}
#newsTopic section hgroup span {
  font-size: clamp(1.4rem, 1.1vw, 1.1vw);
  font-weight: normal;
}
#newsTopic section .detail p {
  line-height: 1.8;
  font-size: clamp(1.6rem, 1.3vw, 1.3vw);
}
#newsTopic section .detail a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #newsTopic {
    color: #fff;
    margin-bottom: 5rem;
  }
  #newsTopic:not(:has(.article)) {
    display: none;
  }
}
/* news
------------------------------------ */
#newslist section + section {
  margin-top: 10rem;
}
#newslist section hgroup {
  display: block;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  border-bottom: 1px dotted #51443D;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.5vw, 1.5vw);
}
#newslist section hgroup span {
  font-size: clamp(1.4rem, 1.1vw, 1.1vw);
  font-weight: normal;
}
#newslist section .detail p {
  line-height: 1.8;
  font-size: clamp(1.6rem, 1.3vw, 1.3vw);
}
#newslist section .detail a {
  text-decoration: underline;
}
#newslist .pager {
  margin: 10rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#newslist .pager li a {
  background: #C8B5A1;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-family: "Century Gothic", "Futura", serif;
}

.kyoseiScheduleDatas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: clamp(1.2rem, 1vw, 1vw);
  gap: 2px;
}
.kyoseiScheduleDatas dt {
  grid-column: 1/3;
  text-align: center;
  padding: 0.25rem 0.5rem;
}
.kyoseiScheduleDatas dd {
  color: #51443D;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
.kyoseiScheduleDatas dd.fdoctor {
  background: #F4F4D2;
}
.kyoseiScheduleDatas dd.mdoctor {
  background: #DDEBEA;
}

.kyoseiSchedule {
  width: 100%;
  font-size: clamp(1.2rem, 1vw, 1vw);
  margin-bottom: 1rem;
}
.kyoseiSchedule th, .kyoseiSchedule td {
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  font-weight: normal;
  letter-spacing: 0em;
  text-indent: 0em;
}
.kyoseiSchedule thead {
  text-align: center;
}
.kyoseiSchedule thead th:nth-child(2) {
  background: #F4F4D2;
  color: #51443D;
}
.kyoseiSchedule thead th:nth-child(3) {
  background: #DDEBEA;
  color: #51443D;
}
.kyoseiSchedule tbody th {
  padding-right: 1rem;
  padding: 0.25rem 1rem 0.25rem 0;
  display: block;
}
.kyoseiSchedule tbody td {
  background: #DDEBEA;
  color: #51443D;
}
.kyoseiSchedule tbody td:nth-of-type(1) {
  background: #F4F4D2;
  color: #51443D;
}

/* ------------------------------------
// wp class
------------------------------------ */
div.alignright,
img.alignright,
a.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

div.alignleft,
img.alignleft,
a.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

div.aligncenter,
img.aligncenter,
a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px 0 0;
}

.entrybody::after {
  content: "";
  clear: both;
  display: block;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entrybody h4,
.entrybody h5,
.entrybody h6 {
  font-weight: 700;
  margin: 2em 0 1em;
}
.entrybody h1 {
  font-size: 2.4rem;
}
.entrybody h2 {
  font-size: 2.2rem;
}
.entrybody h3 {
  font-size: 2rem;
}
.entrybody h4 {
  font-size: 1.8rem;
}
.entrybody h5 {
  font-size: 1.6rem;
}
.entrybody h6 {
  font-size: 1.4rem;
}
.entrybody p {
  margin-bottom: 2em;
}
.entrybody p::before {
  content: "";
  clear: both;
  display: block;
}
.entrybody ul {
  margin-bottom: 2em;
}
.entrybody ul li {
  padding-left: 1em;
  position: relative;
}
.entrybody ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.entrybody ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.entrybody ol li {
  padding-left: 1.5em;
  position: relative;
}
.entrybody ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}

@media screen and (max-width: 768px) {
  .aligncenter,
  .alignright,
  .alignleft {
    float: none !important;
    padding: 0 0 20px 0 !important;
  }
}
/* ------------------------------------
// pager
----------------------------------- */
.pager {
  margin: 10rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pager li a,
.pager li span.current {
  background: #C8B5A1;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-family: "Century Gothic", "Futura", serif;
}
.pager li span.current {
  background: #fff;
  border: solid 1px #C8B5A1;
}

/*# sourceMappingURL=news.css.map */