@charset "utf-8";
/**value**/
/**format**/
body {
  -webkit-text-size-adjust: 100%;
}
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
dialog,
div,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  vertical-align: baseline;
  text-decoration: none;
  border: none;
  outline: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a:active,
a:hover,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}
br.decoration {
  display: none;
}
/**header**/
header {
  position: relative;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*header minimize*/
}
header > div {
  padding-top: 20px;
  background-color: white;
  width: 100%;
}
header > div > div {
  width: 85%;
  margin: 0 auto;
  background-color: white;
}
header > div:after {
  content: "";
  display: block;
  clear: both;
}
header h1 {
  margin: 0 auto 10px;
  text-align: center;
}
header h1 a {
  overflow: hidden;
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: inline-block;
  background-image: url("../img/index_name.svg");
  width: 255px;
  height: 30px;
}
header .top {
  text-align: center;
}
header .top a {
  background-color: white;
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -999em;
  width: 150px;
  height: 150px;
  position: relative;
}
header .top a:after {
  content: "";
  overflow: hidden;
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../img/index_logo.svg");
  width: 100%;
  height: 100%;
}
header .top a:hover:after {
  opacity: 0.5;
}
header .about {
  text-align: center;
  font-size: 0.8rem;
  padding: 1em 0 2em 0;
}
header .about a {
  color: #ee99ab;
  display: inline-block;
  vertical-align: middle;
}
header .about .line,
header .about .fb,
header .about .insta {
  margin: 0 0 0 10px;
  text-align: center;
  overflow: hidden;
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  width: 36px;
  height: 36px;
}
header .about .line {
  background-image: url("../img/icon-line.svg");
}
header .about .fb {
  background-image: url("../img/icon-facebook.svg");
}
header .about .insta {
  background-image: url("../img/icon-instagram.svg");
}
header nav {
  margin: 5px auto 0;
  text-align: center;
}
header nav .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1em 0;
}
header nav .tel strong {
  color: #ee99ab;
  display: block;
  font-size: 0.8em;
  vertical-align: middle;
}
header nav .tel a {
  overflow: hidden;
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: inline-block;
  background-image: url("../img/index_tel.svg");
  background-position: left;
  text-align: left;
  vertical-align: middle;
  width: calc(100% - 9em);
  height: 1rem;
}
header nav .tel.pediatrics a {
  background-image: url("../img/index_tel_ped.svg");
}
header nav ul {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-flex;
  -webkit-justify-content: right;
  -webkit-align-items: flex-end;
}
header nav li {
  font-size: 0.9rem;
  color: #ee99ab;
  overflow: hidden;
  width: calc(100% / 3 - .5em);
}
header nav li a {
  border-bottom: 3px solid #ee99ab;
  display: block;
  text-align: center;
  padding: 0 0 0.2em;
}
header nav li a:hover {
  color: #cccccc;
  border-bottom-color: #cccccc;
}
header nav p:last-of-type {
  font-size: 0.8rem;
  margin-bottom: 1em;
}
@-webkit-keyframes show {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
@keyframes show {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
header.minimize {
  -webkit-animation: show 0.5s ease 0s 1 alternate;
          animation: show 0.5s ease 0s 1 alternate;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  overflow: visible;
}
header.minimize > div {
  padding-top: 0;
}
header.minimize h1,
header.minimize nav .tel,
header.minimize nav .notice {
  display: none;
}
header.minimize .top {
  height: 45px;
  float: left;
}
header.minimize .top a {
  overflow: visible;
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 0 0 80px 80px;
  position: relative;
}
header.minimize .top a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2.5%;
  z-index: -1;
  width: 95%;
  height: 100%;
  border-radius: 80px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
header.minimize .about {
  display: none;
}
header.minimize nav {
  margin-top: 0;
  padding-top: 22.5px;
  overflow: hidden;
}
header.minimize nav ul {
  width: auto;
  max-width: 100%;
  min-width: 12em;
  float: right;
  padding-top: 0.1em;
}
header.minimize nav li {
  line-height: 1;
}
header.minimize nav li.aftercare {
  font-size: 0.8rem;
  line-height: 1.2;
}
header.minimize nav li.aftercare a {
  height: 2.4em;
}
header.minimize nav li:not(.aftercare) a {
  padding-top: 0.55em;
  height: 2.15em;
}
header.minimize nav li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.1em;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
header.minimize nav li a span {
  display: block;
}
header.minimize nav li a span:first-child {
  margin-bottom: 0.1em;
}
/*board*/
#board {
  position: relative;
  overflow: hidden;
}
/*tab*/
#tab {
  padding-top: 4.5em;
  padding-left: 3%;
  padding-right: 3%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#tab:before {
  content: "";
  border-bottom: 1px solid #ee99ab;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
#tab div,
#tab h2 {
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #ee99ab;
}
#tab > * {
  position: relative;
  border-top: 1px solid #ee99ab;
  border-left: 1px solid #ee99ab;
  border-right: 1px solid #ee99ab;
  border-radius: 5px 5px 0 0;
  width: 33%;
  background-color: white;
  font-size: 1.1rem;
  text-align: center;
  color: #ee99ab;
  letter-spacing: 0.1em;
}
#tab > div {
  z-index: 0;
}
#tab > h2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdf0f3), color-stop(60%, #fff));
  background: linear-gradient(to bottom, #fdf0f3 0%, #fff 60%);
  z-index: 1;
}
#tab > div a,
#tab > h2 {
  display: block;
  padding-top: 0.7em;
  padding-bottom: 0.5em;
}
#tab > div a small,
#tab > h2 small {
  display: inline-block;
  font-size: 0.8em;
}
/*tab effect*/
#tabarea.switch {
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.55, 0, 0.1, 1) both;
  animation: fadeIn 0.5s cubic-bezier(0.55, 0, 0.1, 1) both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
/*access*/
#access {
  margin: 3em auto 0;
}
#access div.content {
  width: 85%;
  margin: 0 auto 2em;
}
#access p.address {
  color: #ee99ab;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
#access p.address small {
  color: #000;
  font-size: 0.9rem;
  display: block;
  line-height: 1.5;
  margin-top: 0.3em;
}
#access p.address small span {
  display: inline-block;
}
#access dd,
#access dt,
#access p.access {
  font-size: 0.9rem;
  line-height: 1.4;
}
#access p.access {
  margin-bottom: 0.2em;
}
#access dd,
#access dt {
  margin-bottom: 0.2em;
  padding-left: 1em;
  text-indent: -1em;
}
#access dd:before {
  content: "・";
}
#access #parking {
  width: 75%;
  color: #ee99ab;
  text-align: center;
  line-height: 2;
  margin: 0.5em auto 0;
}
#access #parking p {
  margin-bottom: 0.5em;
}
#access #parking img {
  width: 100%;
}
#access #parking .notes {
  font-size: 0.8em;
  line-height: 1.3em;
}
#access #parking .notes a {
  border-bottom: 1px dotted;
}
#access .map a {
  display: block;
  color: #0071ba;
  border: 1px solid #0071ba;
  font-size: 0.9rem;
  text-align: center;
  padding: 1em 0;
  margin: 1em;
}
#access .map a:hover {
  background-color: #0071ba;
  color: white;
}
#access #map {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
#access #map embed,
#access #map iframe,
#access #map object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**footer**/
footer {
  background-color: #eee;
  font-size: 0.9rem;
  width: 100%;
  overflow: hidden;
}
footer > div {
  width: 85%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2.5em;
}
footer ul:not(.etc) {
  float: left;
  width: 49%;
  margin-bottom: 1em;
}
footer li {
  margin-bottom: 0.7em;
  line-height: 1.4;
}
footer li span {
  display: inline-block;
}
footer .new:after {
  content: " New";
  color: #df4263;
}
footer .etc {
  border-top: 1px solid #cccccc;
  clear: both;
  padding-top: 1em;
}
footer .etc li {
  font-size: 0.8rem;
  display: inline-block;
  margin-right: 1em;
  vertical-align: text-top;
}
footer .etc li.facebook a {
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: block;
  overflow: hidden;
  background-image: url("../img/footer_icon_facebook.svg");
  width: 1.2em;
  height: 1.2em;
}
footer .etc li.line a {
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: block;
  overflow: hidden;
  background-image: url("../img/icon-line.svg");
  width: 1.2em;
  height: 1.2em;
}
footer .etc li.instagram a {
  text-indent: -999em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: block;
  overflow: hidden;
  background-image: url("../img/icon-instagram.svg");
  width: 1.2em;
  height: 1.2em;
}
footer .sublink {
  display: none;
}
footer a:hover {
  color: #ee99ab;
}
/**for pc**/
@media screen and (min-width: 641px) {
  /**base**/
  #access,
  #cafe,
  footer > div,
  header > div > div {
    width: 95%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  br.decoration {
    display: inline-block;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  /**header**/
  header {
    overflow: visible;
  }
  header h1 {
    float: left;
    width: 41.5%;
    margin: 38px 0 0;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header h1 a {
    width: 100%;
    max-width: 255px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header h1 a:hover {
    opacity: 0.6;
  }
  header .top {
    float: left;
    width: 16%;
    height: 0;
  }
  header .top a {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
  }
  header .top a:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .about {
    text-align: right;
    padding: 0 0 7px 0;
  }
  header .about a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .about a:hover {
    color: #cccccc;
  }
  header .about .line,
  header .about .fb,
  header .about .insta {
    width: 24px;
    height: 24px;
  }
  header nav {
    float: right;
    max-width: 41.5%;
    margin-top: 8px;
  }
  header nav p.tel {
    width: 19.5em;
    text-align: right;
    margin: 0.5em 0;
  }
  header nav p.tel a {
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-position: right top;
  }
  header nav p.tel a:hover {
    opacity: 0.6;
  }
  header nav p:last-of-type {
    text-align: right;
  }
  header nav ul {
    float: right;
  }
  header nav ul li a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header.minimize .top {
    width: 80px;
    height: 0;
  }
  header.minimize .top a {
    width: 100%;
    height: 0;
    border-radius: 50%;
  }
  header.minimize nav {
    margin-top: 0;
    width: 20em;
  }
  header.minimize nav ul {
    width: 100%;
  }
  header.minimize nav ul a {
    height: auto !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header.minimize nav ul a span {
    display: inline-block;
  }
  header.minimize nav ul a span + span {
    font-size: 1em;
  }
  /*tab*/
  #tab {
    padding: 4em 0 0;
    text-align: center;
  }
  #tab div,
  #tab h2 {
    font-size: 1.7rem;
  }
  #tab:before {
    border-bottom: 2px solid #ee99ab;
    bottom: 0.5px;
  }
  #tab > * {
    border-radius: 5px 5px 0 0;
    float: none !important;
    display: inline-block;
    width: 47%;
    max-width: 15.5em;
    margin-left: 1%;
    margin-right: 1%;
    border-top: 2px solid #ee99ab;
    border-left: 2px solid #ee99ab;
    border-right: 2px solid #ee99ab;
  }
  #tab > div a,
  #tab > h2 {
    display: inline-block;
    padding-top: 1.3em;
    padding-bottom: 0.9em;
  }
  #tab > div a {
    display: block;
    position: relative;
    background-color: white;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #tab > div a:before {
    content: "";
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdf0f3), color-stop(60%, #fff));
    background: linear-gradient(to bottom, #fdf0f3 0%, #fff 60%);
  }
  #tab > div a:hover {
    background-color: transparent;
  }
  /*access*/
  #access {
    overflow: hidden;
    margin-bottom: 2em;
  }
  #access > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #access .access + dl {
    margin-bottom: 1em;
  }
  #access div.content {
    float: right;
    width: 40%;
    margin: 0;
    /*      width: 40%; parking追加前*/
  }
  #access #parking {
    width: 75%;
    margin: 0;
  }
  #access #parking p {
    text-align: left;
  }
  #access #map-area {
    width: 54%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  #access .map a {
    padding: 0.5em 0;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 1em 0;
  }
  #access #map {
    /*      position: absolute;*/
    padding-bottom: 0;
    padding-top: 0;
    /*      width: 57%; parking追加前*/
    width: 100%;
    height: 32.5em;
    top: 0;
    left: 0;
  }
  #access #map embed,
  #access #map iframe,
  #access #map object {
    position: relative;
  }
  /**footer**/
  footer .sublink {
    display: block;
  }
  footer ul {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer ul.main {
    width: 23%;
  }
  footer ul.department {
    width: auto;
    float: none;
  }
  footer ul.department > li {
    width: 18%;
    float: left;
    padding-left: 1.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer ul.department > li.aftercare {
    width: 22%;
  }
  footer ul.department > li:not(.system) {
    margin-bottom: 3em;
  }
  footer ul.department > li > a {
    display: block;
    border-bottom: 1px solid #808080;
  }
  footer ul.department ul {
    width: auto;
    float: none;
    margin-top: 0.4em;
    margin-bottom: 0;
  }
  footer ul.etc {
    float: left;
    width: auto;
    max-width: 19%;
    border-top: none;
    padding: 0.8em 0 0 1.5em;
    clear: none;
  }
  footer ul.etc li {
    display: block;
    font-size: 1em;
    float: left;
  }
  footer ul.etc li.facebook a,
  footer ul.etc li.line a,
  footer ul.etc li.instagram a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  footer ul.etc li.facebook a:hover,
  footer ul.etc li.line a:hover,
  footer ul.etc li.instagram a:hover {
    opacity: 0.6;
  }
  footer li {
    margin-bottom: 0.4em;
  }
  footer a {
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
  }
}
@media screen and (max-width: 780px) and (min-width: 641px) {
  header nav li,
  header.minimize nav ul li.aftercare {
    font-size: 0.75rem;
  }
  header.minimize nav li.aftercare a {
    padding-bottom: 0.15em;
    padding-top: 0.2em;
  }
}
#board article#flu {
  margin-top: 2.5em;
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: #fdf0f3;
}
#board article#flu .ul2 {
  padding-left: 0;
}
#board article#flu .ul2 li {
  list-style-type: none!important;
}
#board article#flu .small_font {
  font-size: 0.8rem;
}
#board article#flu .in_block {
  display: inline;
}
#board article#flu .strong_bold {
  font-weight: bold;
}
#board article#flu .strong_bold a {
  font-weight: normal;
}
#board article#flu .attention {
  font-weight: bold;
  color: #F00;
}
#board article#flu .flu_margin {
  line-height: 1.5em;
}
#board article#flu .flu_margin small {
  font-size: 14px;
}
#board article#flu h4 {
  color: #ee99ab;
  font-size: 1.2em;
  margin-bottom: 0.1em;
  line-height: 1.3;
}
#board article#flu dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #ee99ab;
}
#board article#flu dl + p {
  margin-top: 0.5em;
}
#board article#flu dl + p a {
  display: block;
  color: #ee99ab;
  font-size: 1.2em;
}
#board article#flu dl + p small {
  display: block;
  font-size: 0.8rem;
  line-height: inherit;
}
#board article#flu dl + p small span {
  display: inline-block;
}
#board article#flu dd,
#board article#flu dt {
  border-top: 1px solid #ee99ab;
  padding: 0.3em 0;
  line-height: 1.4;
}
#board article#flu ul {
  padding-left: 1em;
}
#board article#flu li {
  line-height: 1.4;
  list-style-type: disc;
}
#board article#flu li small {
  display: inline-block;
  font-size: 0.8em;
  line-height: inherit;
  vertical-align: text-top;
}
#board article#flu h4 {
  margin-bottom: 0.5em;
  color: #ea7f95;
  font-size: 1.3em;
}
#board article#flu h4 small {
  margin-bottom: 0.5em;
  display: block;
  font-size: 0.9rem;
  background-color: #fcff00;
  color: #ee99ab;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.45em 0.8em 0.35em;
  border-radius: 1em;
}
#board article#flu .halt {
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  max-width: 38em;
  background: ivory;
  padding: 1em;
}
#board article#flu .halt strong {
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}
#board article#flu .caution {
  font-size: 0.8rem;
  text-indent: -1em;
  padding-left: 1em;
}
#board article#flu p strong {
  color: #ea7f95;
}
#board article#flu dl {
  margin-top: 1em;
}
#board article#flu dt {
  padding-top: 0.45em;
}
#board article#flu dt small {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.9rem;
  background-color: #fcff00;
  color: #ee99ab;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.45em 0.8em 0.35em;
  border-radius: 1em;
}
#board article#flu dt span {
  display: inline-block;
}
#board article#flu dd {
  margin-bottom: 0.5em;
  padding-top: 0.5em;
}
#board article#flu dd p {
  margin-bottom: 0.3em;
}
#board article#flu dd p.focus {
  background-color: #ee99ab;
  color: white;
  font-size: 0.9em;
  padding: 0.15em 0.8em 0.08em;
  border-radius: 1em;
  display: inline-block;
}
#board article#flu dd p.note {
  font-size: 0.8rem;
}
#board article#flu dd .focus {
  background-color: #ee99ab;
  color: white;
  font-size: 0.9em;
  padding: 0.15em 0.8em 0.08em;
  border-radius: 1em;
  display: inline-block;
}
#board article#flu dd span {
  display: inline-block;
}
#board article#flu dd strong {
  display: inline-block;
  color: #ea7f95;
}
#board article#flu dd ul {
  padding-left: 1.5em;
}
#board article#flu dd li {
  margin-bottom: 0.3em;
}
#board article#flu dd li small {
  vertical-align: middle;
  color: white;
  background-color: #ee99ab;
  line-height: 1.1;
  padding: 0.2em 1em 0.1em;
  border-radius: 1em;
}
#board article#flu dd a {
  border-bottom: 1px dotted;
}
#board article#flu dd a.tel {
  color: #df4263;
  font-size: 1.2rem;
  border-bottom: none;
  margin-top: 0.2em;
  display: inline-block;
}
#board article#flu dd a .download {
  height: 1em;
  width: auto;
}
#board article#flu .yoyaku {
  margin-bottom: 0.5em;
  display: block;
  font-size: 0.9rem;
  background-color: #fcff00;
  color: #ee99ab;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.45em 0.8em 0.35em;
  border-radius: 1em;
}
#board article#flu .flu_end {
  /*    max-width: 60rem;
    width: 90%;          2021.12.07インフル予防接種終了*/
}
#board article#flu .flu_end .yoyaku {
  color: #000;
}
#board article#flu .mr_vaccine {
  background-color: #fff;
  width: 80%;
  padding: 15px;
}
#board article#flu .mr_vaccine .mr_ttl {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4em;
  color: #ee99ab;
  margin-bottom: 0.5em;
}
#board article#flu .mr_vaccine p {
  font-size: 0.9rem;
  line-height: 1.5em;
}
#board article#flu .mr_vaccine .mr_note {
  font-size: 0.8rem;
  text-align: justify;
  margin-left: 1em;
  margin-top: 0.5em;
}
#board article#flu .mr_vaccine .mr_note::before {
  content: "※ ";
  margin-left: -1.3em;
}
#board article#flu .mr_vaccine .mr_vaccine_supplement li {
  list-style: none;
  text-indent: -1.2em;
  margin-left: 0.2em;
}
#board article#flu .mr_vaccine .mr_vaccine_supplement li::before {
  content: "※";
  padding-right: 0.2em;
}
#board article#flu .addition {
  background: #F00;
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 5px;
}
#board article#flu {
  width: 100%!important;
  max-width: 100%!important;
  padding-top: 4em;
  padding-bottom: 4em;
  margin-bottom: 2em;
}
#board article#flu > * {
  margin-left: auto;
  margin-right: auto;
}
#board article#flu h4 small {
  display: block;
  margin-right: 0.5em;
}
#board article#flu p {
  text-align: inherit!important;
}
#board article#flu .text01 {
  display: block;
  vertical-align: middle;
  font-size: 0.8rem;
  text-indent: -1em;
  padding-left: 1em;
}
#board article.width1 > * {
  max-width: 60rem;
  margin: 10px 5%;
  width: 90%;
}
#board article.width2 > * {
  max-width: 45rem;
}
#board article#flu dd .web_reserv {
  margin: 0.5em 0;
}
#board article#flu dd .web_reserv a {
  color: #ee99ab;
}
#board article#flu dd .web_reserv a.web_btn {
  display: inline-block;
  font-size: 1em;
  padding: 0.5em 1em;
  background-color: #ee99ab;
  color: white;
  border-bottom: none;
}
#board article#flu dd .web_reserv small {
  display: inline-block;
  font-size: 0.8rem;
  line-height: inherit;
  margin: 0.5em 0;
  vertical-align: middle;
}
#board article#flu dd .web_reserv small span {
  line-height: 1.2;
}
#board article#flu dd .web_reserv + ul li {
  font-size: 0.8rem;
  list-style: none;
}
#board article#flu dd .web_reserv + ul li::before {
  content: "※";
  text-indent: 1.3em;
  margin-left: -1.3em;
}
.step {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  width: 335px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: left;
  background: #FFD3DF;
  padding: 3.5em 1em 1em;
  margin-bottom: 1em;
}
.step li .icon-img {
  width: 35%;
  text-align: center;
}
.step li .icon-img img {
  width: 100px;
}
.step li p {
  font-size: 0.8rem;
  width: 60%;
  line-height: 1.3em;
}
.step li p .red {
  font-size: 0.8rem;
  margin-top: 0.3em;
  line-height: 1.3em;
  color: #df4263;
}
.step li:first-child {
  /*      padding-top: 2em;*/
}
.step li:first-child .icon-img img {
  width: 65px;
}
.step li:last-child:after,
.step li:last-child:before {
  display: none;
}
.step li:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -40px;
  left: 0;
  border-style: solid;
  border-color: #fdf0f3 transparent transparent transparent;
  border-width: 35px 166px 0 166px;
  z-index: 1;
}
.step li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -35px;
  left: 0;
  border-style: solid;
  border-color: #FFD3DF transparent transparent transparent;
  border-width: 35px 166px 0 166px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 320px) {
  .step {
    width: 285px;
  }
  .step li {
    padding: 3em 1em 1em;
  }
  .step li:before {
    bottom: -30px;
    border-width: 25px 143px 0 143px;
  }
  .step li:after {
    bottom: -25px;
    border-width: 25px 143px 0 143px;
  }
}
@media screen and (min-width: 641px) {
  #board article#flu .in_block {
    display: inline-block;
  }
  #board article#flu h4 {
    font-size: 1.5em;
  }
  #board article#flu h4 small {
    display: inline-block;
  }
  #board article#flu dl {
    width: 95%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #board article#flu dl p {
    margin-bottom: 0;
  }
  #board article#flu dl.width2 {
    max-width: 45rem;
  }
  #board article#flu dt {
    width: 7em;
  }
  #board article#flu dt small {
    margin-left: 0;
  }
  #board article#flu dd {
    width: calc(100% - 7em);
    margin-bottom: 0;
  }
  #board article#flu .mr_vaccine {
    width: 900px;
    padding: 15px 25px;
    margin: 2em auto 0;
  }
  #board article#flu p.caution,
  #board article#flu p.note {
    line-height: 1.4;
  }
  #board article#flu p.focus {
    line-height: 1.3;
  }
  #board article#flu p.note {
    margin-top: 0.3em;
    margin-bottom: 0.5em;
  }
  #board article#flu p.hl1 {
    margin-bottom: 5px;
    line-height: 1.5;
  }
  #board article#flu ul {
    margin-top: 0.2em;
  }
  #board article#flu ul.price li strong {
    width: 18em;
  }
  #board article#flu .note + ul {
    margin-top: 0.5em;
  }
  #board article#flu a:hover {
    border-bottom: 1px solid #ee99ab;
  }
  #board article#flu .teisei_margin {
    line-height: 1.5em !important;
  }
  #board article#flu .text01 {
    text-indent: 0;
    padding-left: 0;
  }
  .step {
    width: 100%;
  }
  .step li {
    display: table-cell;
    width: 20%;
    padding: 0 0 1em 2em;
    margin-bottom: 1em;
  }
  .step li .icon-img {
    width: 85%;
    text-align: center;
  }
  .step li .icon-img img {
    max-width: 100%;
    margin-bottom: 0.5em;
  }
  .step li p {
    width: 85%;
    line-height: 1.5em;
  }
  .step li:first-child {
    padding-top: 1.2em;
    padding-left: 1em;
  }
  .step li:first-child .icon-img img {
    width: 65px;
  }
  .step li:before {
    top: -44px;
    left: auto;
    right: -18px;
    border-color: transparent transparent transparent #fdf0f3;
    border-width: 155px 0 155px 35px;
    z-index: 1;
  }
  .step li:after {
    top: -44px;
    left: auto;
    right: -13px;
    border-color: transparent transparent transparent #FFD3DF;
    border-width: 155px 0 155px 35px;
    z-index: 2;
    overflow: hidden;
  }
}
@media screen and (min-width: 641px) and (max-width: 780px) {
  #board article#flu .mr_vaccine {
    width: 87%;
  }
  .step li {
    padding: 0.5em 0 1em 1.5em;
    margin-bottom: 0.5em;
  }
  .step li .icon-img img {
    width: 80px;
  }
  .step li p {
    width: 85%;
  }
  .step li:first-child {
    padding-top: 1.5em;
    padding-left: 1em;
  }
  .step li:first-child .icon-img img {
    width: 50px;
  }
  .step li:before {
    border-width: 160px 0 160px 25px;
  }
  .step li:after {
    border-width: 160px 0 160px 25px;
  }
}
br.pcview {
  display: none;
}
/**for pc**/
@media screen and (min-width: 641px) {
  br.pcview {
    display: block;
  }
  br.spview {
    display: none;
  }
}
/*overview*/
#overview .title,
#overview .title-covid19,
#overview .title-meeting {
  background-color: #ee99ab;
  padding-top: 1em;
  padding-bottom: 1em;
}
#overview .title h2,
#overview .title-covid19 h2,
#overview .title-meeting h2 {
  text-indent: 0;
  font-family: a-otf-jun-pro, sans-serif;
  font-size: 28px;
  color: #fff;
  min-height: 1.3em;
  overflow: inherit;
  letter-spacing: 0.08em;
}
#overview .title h3,
#overview .title-covid19 h3,
#overview .title-meeting h3 {
  font-size: 18px;
  text-indent: 0;
  font-family: a-otf-jun-pro, sans-serif;
  color: #fff;
  overflow: inherit;
  margin-top: 0;
}
#overview .title-covid19,
#overview .title-meeting {
  margin-bottom: 30px;
}
#overview .title-covid19 h2,
#overview .title-meeting h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
/*access*/
#access {
  margin-top: 5em;
}
/**for pc**/
@media screen and (min-width: 641px) {
  /*overview*/
  #overview {
    margin-bottom: 2em;
  }
  #overview:after {
    content: "";
    clear: both;
    display: block;
  }
  #overview .title,
  #overview .title-covid19,
  #overview .title-meeting {
    padding-top: 3.2em;
    padding-bottom: 2.9em;
  }
  #overview .title h2,
  #overview .title-covid19 h2,
  #overview .title-meeting h2,
  #overview .title h3,
  #overview .title-covid19 h3,
  #overview .title-meeting h3 {
    width: auto;
    margin: 0;
  }
  #overview .title div,
  #overview .title-covid19 div,
  #overview .title-meeting div {
    width: 95%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  #overview .title h2,
  #overview .title-covid19 h2,
  #overview .title-meeting h2 {
    font-size: 40px;
  }
  #overview .title h3,
  #overview .title-covid19 h3,
  #overview .title-meeting h3 {
    font-size: 22px;
    margin-left: 2em;
  }
}
/*base*/
#overview .title h2,
#overview .title-covid19 h2,
#overview .title-meeting h2,
#movie .contents {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
article:not(#overview) h3 {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #ee99ab;
  border-bottom: 3px solid #ee99ab;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
  line-height: 1.4;
}
article:not(#overview) h3 span {
  font-size: 0.9rem;
  background-color: #ee99ab;
  color: #fff;
  padding: 0.25em 0.5em 0.2em;
  display: inline-block;
  border-radius: 3px;
  margin-left: 0.5em;
  vertical-align: text-bottom;
}
article:not(#overview) h3 span.birth {
  background-color: #9FCBEE;
}
article:not(#overview) h3 em {
  font-size: 0.8em;
}
/*overview*/
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
article#newsblock {
  width: 85%;
  max-width: 950px;
  margin: 0 auto 80px;
  min-height: 400px;
}
article#newsblock h3 {
  text-align: left;
}
article#newsblock h3.ttl_long {
  letter-spacing: 0.05em !important;
}
article#newsblock p {
  line-height: 1.6;
  margin-bottom: 1em;
}
article#newsblock ol {
  padding-left: 1.5em;
}
article#newsblock ol li {
  list-style: decimal outside;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
article#newsblock ul {
  padding-left: 1.5em;
}
article#newsblock ul li {
  list-style: disc outside;
  margin-bottom: 0.6em;
  line-height: 1.4;
  font-size: 0.9rem;
}
article#newsblock .images {
  width: 100%;
  text-align: center;
}
article#newsblock .images img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  article#newsblock .images img {
    width: 80%;
  }
}
article#newsblock a:link {
  text-decoration: underline;
}
article#newsblock .pdflink a:link {
  text-decoration: none;
}
article#newsblock .pdflink p {
  vertical-align: middle;
  display: inline-block;
  color: #F00;
}
article#newsblock .pdflink a:hover p {
  color: #ee99ab;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/**for pc**/
@media screen and (min-width: 641px) {
  /*base*/
  #overview .title div,
  #overview .title-covid19 div,
  #overview .content,
  #movie {
    width: 95%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  #overview .title h2,
  #overview .title-covid19 h2,
  #overview .title-meeting h2 {
    font-weight: normal;
    margin-left: 0;
  }
  #overview .title-covid19 .rs_br {
    display: none;
  }
  article:not(#overview) h3 {
    font-size: 1.8rem;
  }
  .pc-br {
    display: none;
  }
}
article#newsblock.meeting h3 {
  margin-top: 2em;
}
article#newsblock.meeting .meeting-txt {
  margin: 30px 0;
}
article#newsblock.meeting .meeting-txt strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.75;
}
article#newsblock.meeting .meeting-txt strong span {
  color: #ee99ab;
  font-weight: 600;
  padding-right: 1em;
  display: block;
  margin-bottom: 0.5em;
}
article#newsblock.meeting .meeting-txt ul {
  padding: 15px 0;
}
article#newsblock.meeting .meeting-txt ul li {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  font-size: 16px;
}
article#newsblock.meeting .meeting-txt ul li::before {
  content: "■";
  color: #ee99ab;
  font-size: 0.9rem;
}
article#newsblock.meeting .meeting-txt ul li span {
  color: red;
  font-weight: 600;
}
article#newsblock.meeting p span {
  color: red;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  article#newsblock.meeting .meeting-txt strong span {
    display: inline;
    margin-bottom: 0;
  }
}
article#newsblock.covid19 .pc-view {
  display: none;
}
article#newsblock.covid19 .red {
  color: red;
  font-weight: 500;
}
article#newsblock.covid19 .double-line {
  -webkit-text-decoration: underline double;
          text-decoration: underline double;
  color: #000;
  font-weight: 500;
}
article#newsblock.covid19 .yakumono {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1em;
}
article#newsblock.covid19 h3 {
  margin-top: 2em;
}
article#newsblock.covid19 h4 {
  font-size: 1.25em;
  font-weight: 900;
  color: #fff;
  background-color: #ee99ab;
  padding: 4px 7px 5px 7px;
  display: inline-block;
}
article#newsblock.covid19 h5 {
  font-weight: bold;
  color: #ee99ab;
}
article#newsblock.covid19 p {
  line-height: 1.8;
}
article#newsblock.covid19 p strong {
  font-weight: bold;
}
article#newsblock.covid19 p small {
  font-size: 0.9em;
}
article#newsblock.covid19 p a {
  color: #ee99ab;
}
article#newsblock.covid19 p span {
  font-weight: 600;
  color: red;
}
article#newsblock.covid19 .h6 {
  margin-top: 2rem;
  text-indent: -1rem;
  line-height: 1.5;
  margin-left: 1rem;
}
article#newsblock.covid19 .indent_block {
  margin: 0.8rem 0 0 1rem;
}
article#newsblock.covid19 .indent_block p {
  margin-left: 1rem;
  margin-top: 0.5rem;
}
article#newsblock.covid19 .inBox {
  padding: 1em;
}
article#newsblock.covid19 ul {
  padding-left: 0;
}
article#newsblock.covid19 ul li {
  list-style: none;
}
article#newsblock.covid19 .note {
  font-size: 0.9em;
}
article#newsblock.covid19 .note:before {
  content: " ※ ";
  width: 1em;
}
article#newsblock.covid19 .pink {
  color: #df4263;
  font-weight: bold;
}
article#newsblock.covid19 .color {
  color: #ee99ab;
  font-weight: bold;
}
article#newsblock.covid19 ul.link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
}
article#newsblock.covid19 ul.link-list li {
  margin-right: 2em;
  font-size: 1em;
}
article#newsblock.covid19 ul.link-list li a {
  color: #ee99ab;
}
article#newsblock.covid19 ul.link-list li:before {
  content: "▶";
  color: #ee99ab;
  width: 1em;
}
article#newsblock.covid19 ul.list-round {
  margin-bottom: 2em;
}
article#newsblock.covid19 ul.list-round li p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.111112em;
}
article#newsblock.covid19 div.chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
}
article#newsblock.covid19 div.chart .arrow {
  display: inline-block;
  padding: 0 0.5em;
  position: relative;
  margin-right: 1em;
}
article#newsblock.covid19 div.chart .arrow:before {
  border: 15px solid transparent;
  border-right-width: 0;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
}
article#newsblock.covid19 div.chart .p-bg,
article#newsblock.covid19 div.chart .b-bg {
  padding: 0 0.5em;
  font-weight: bold;
  line-height: 30px;
}
article#newsblock.covid19 div.chart .p-bg {
  color: #fff;
  background: #ee99ab;
}
article#newsblock.covid19 div.chart .p-bg:before {
  border-left-color: #ee99ab;
}
article#newsblock.covid19 div.chart .b-bg {
  color: #777;
  background: #d9eff9;
}
article#newsblock.covid19 div.chart .b-bg:before {
  border-left-color: #d9eff9;
}
article#newsblock.covid19 p.indent {
  margin: 0 1.2em;
}
article#newsblock.covid19 p.indent:last-child {
  margin-bottom: 2em;
}
article#newsblock.covid19 .link li {
  line-height: 1.6;
}
article#newsblock.covid19 .link li:before {
  content: "■";
  color: #ee99ab;
  width: 1em;
  margin-right: 0.3em;
}
article#newsblock.covid19 .conditions {
  background-color: #fdf0f3;
  padding: 20px 15px 1px;
  margin-bottom: 30px;
  margin-top: 28px;
}
article#newsblock.covid19 .conditions h5 {
  font-size: 1.25em;
  margin-bottom: 12px;
}
article#newsblock.covid19 .conditions .conditions_box {
  border: 1px solid #ee99ab;
  background-color: #FFF;
  border-radius: 10px;
  padding: 16px 13px 3px;
  margin-bottom: 20px;
}
article#newsblock.covid19 .conditions .conditions_box h5 {
  font-size: 1.1em;
}
article#newsblock.covid19 .conditions .conditions_box ul li {
  font-size: 1em;
  padding-left: 1.3em;
  margin-bottom: 0.7em;
}
article#newsblock.covid19 .conditions .conditions_box ul li span {
  color: #ee99ab;
  margin: 0 0.3em 1em -1.3em;
}
article#newsblock.covid19 .conditions .conditions_box .indent {
  text-indent: -1rem;
}
article#newsblock.covid19 .conditions ol {
  list-style-type: decimal;
}
article#newsblock.covid19 .conditions ol li {
  color: #ee99ab;
  font-weight: bold;
}
article#newsblock.covid19 .conditions ol li span {
  color: #000;
}
article#newsblock.covid19 .conditions ol li img {
  max-width: 520px;
  margin: 8px 0;
}
article#newsblock.covid19 .pcr_test {
  background-color: #fffac6;
  padding: 20px 14px 1px;
  margin-bottom: 30px;
}
article#newsblock.covid19 .pcr_test h5 {
  font-size: 1.1em;
  margin-bottom: 12px;
}
article#newsblock.covid19 table {
  font-size: 14px;
  width: 100%;
  border: 1px #969696 solid;
  border-collapse: collapse;
}
article#newsblock.covid19 table th {
  background: #f2f2f2;
  border: 1px #969696 solid;
  line-height: 1.5;
}
article#newsblock.covid19 table td {
  border: 1px #969696 solid;
  padding: 0.5rem 0.5rem;
  line-height: 1.5;
}
article#newsblock.covid19 table td:first-child {
  background: #f9dbe1;
  width: 25%;
  vertical-align: middle;
}
article#newsblock.covid19 table td:nth-child(2) {
  width: 30%;
  vertical-align: middle;
}
@media screen and (min-width: 641px) {
  article#newsblock.covid19 .pc-view {
    display: block;
  }
  article#newsblock.covid19 .sp-view {
    display: none;
  }
  article#newsblock.covid19 .conditions {
    padding: 28px 28px 5px;
    margin-bottom: 33px;
  }
  article#newsblock.covid19 .conditions h5 {
    font-size: 1.69em;
  }
  article#newsblock.covid19 .conditions .conditions_box {
    padding: 24px 20px 10px;
  }
  article#newsblock.covid19 .conditions .conditions_box h5 {
    font-size: 1.25em;
  }
  article#newsblock.covid19 .pcr_test {
    padding: 28px 28px 5px;
  }
  article#newsblock.covid19 .pcr_test h5 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }
  article#newsblock.covid19 table {
    font-size: 16px;
  }
  article#newsblock.covid19 table td {
    padding: 0.5rem 1rem;
  }
  article#newsblock.covid19 table td:first-child {
    width: 13%;
  }
  article#newsblock.covid19 table td:nth-child(2) {
    width: 16%;
  }
}
/*院内における無許可での撮影・録音およびSNS等への投稿禁止について*/
#overview .notes-title {
  padding: 30px 0;
}
#overview .notes-title h2 {
  width: 90%;
  height: 100%;
  line-height: 1.5;
}
#overview .notes-title h2 br {
  display: none;
}
#board .notes_sns_section01 {
  width: 90%;
  max-width: 938px;
  margin: 0 auto 25px;
}
#board .notes_sns_section01 p {
  line-height: 1.75;
}
#board .notes_sns_section01 div {
  text-align: center;
}
#board .notes_sns_section01 div img {
  width: 127px;
  margin: 0 auto;
}
#board .notes_sns_section01 .pc_br {
  display: none;
}
#board .notes_sns_section02 {
  width: 90%;
  max-width: 938px;
  border: 1px solid #ED7A94;
  border-radius: 10px;
  padding: 20px 5% ;
  margin: 0 auto 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#board .notes_sns_section02 h3 {
  color: #ED7A94;
  font-weight: 550;
  font-size: 20px;
  margin-bottom: 15px;
}
#board .notes_sns_section02 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
}
#board .notes_sns_section02 ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16px;
  height: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  border-radius: 50%;
  background: #ED7A94;
  color: #fff;
  margin: 5px 5px 0 0;
}
#board .notes_sns_section02 ul li p {
  font-size: 15px;
  width: calc(100% - 21px);
  line-height: 1.6;
}
#board .notes_sns_section02 p {
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  #overview .notes-title h2 {
    width: 100%;
    line-height: 1.3;
  }
  #overview .notes-title h2 br {
    display: block;
  }
  #board .notes_sns_section01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #board .notes_sns_section01 p {
    width: 70%;
  }
  #board .notes_sns_section01 p .under-line {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #E50012;
  }
  #board .notes_sns_section01 p .under-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #E50012;
    bottom: -4px;
    left: 0;
  }
  #board .notes_sns_section01 div {
    width: 30%;
  }
  #board .notes_sns_section01 .pc_br {
    display: block;
  }
  #board .notes_sns_section02 {
    padding: 23px 25px;
  }
  #board .notes_sns_section02 h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #board .notes_sns_section02 ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #board .notes_sns_section02 ul li p {
    font-size: 16px;
  }
}
/*RSウイルスワクチン*/
.rs_virus h5 {
  font-size: 18px;
  color: #e594a5;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
}
.rs_virus .pink_box {
  background: #fdf0f3;
  padding: 15px 20px 4px;
  border-radius: 5px;
}
.rs_virus .pink_box h6 {
  font-size: 16px;
  color: #e594a5;
  font-weight: 600;
  margin-bottom: 10px;
}
.rs_virus .pink_box p {
  font-size: 14px;
}
.rs_virus .pink_box p a {
  display: block;
}
.rs_virus .detail_list {
  padding-left: 1.2em !important;
  margin: 30px 0 10px;
}
.rs_virus .detail_list li {
  position: relative;
  list-style: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
}
.rs_virus .detail_list li::before {
  position: absolute;
  content: "●";
  font-size: 16px;
  color: #ed7a94;
  left: -1.2em;
}
.rs_virus .detail_list li .th {
  width: 5em;
}
.rs_virus .detail_list li p {
  width: calc(100% - 5em);
  margin-bottom: 0.6em !important;
}
.rs_virus .dotted_list {
  padding-left: 1em !important;
}
.rs_virus .dotted_list li {
  line-height: 1.6 !important;
}
@media screen and (min-width: 641px) {
  .rs_virus .rs_br {
    display: none;
  }
  .rs_virus h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .rs_virus .pink_box {
    padding: 20px 25px 4px;
    border-radius: 10px;
  }
  .rs_virus .pink_box h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .rs_virus .pink_box p {
    font-size: 16px;
  }
  .rs_virus .detail_list {
    margin: 40px 0 10px;
  }
}
/*# sourceMappingURL=news.css.map */