html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: auto;
  padding-left: revert;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

/* layout START */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  max-width: 1924px;
  height: 100%;
  overflow-y: scroll;
  width: 100vw;
  margin: 0 auto;
  overflow-x: hidden;
}

header {
  width: 100%;
}

input, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: 900;
  -webkit-appearance: none;
  appearance: none;
}

select, option {
  font-weight: 900;
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

.anchor {
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}

/* layout END */
/* templates START */
.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  font-weight: 500;
  padding: 6px 0;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.header__link {
  width: 100%;
  text-align: center;
}
.header__logo {
  width: 204px;
}
.header__container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.header__hamburger-menu {
  width: 52px;
  height: 50px;
  box-sizing: border-box;
  margin: -6px 0;
  display: block;
  padding: 10px 10px 6px;
  background-color: #165e83;
}
.header__hamburger-menu:hover {
  cursor: pointer;
}
.header__hamburger-menu-menu {
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.header__hamburger-border {
  width: 31px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  margin-bottom: 6px;
  transition: 0.3s;
}
.header__hamburger-border:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  .header {
    padding: 6px 0;
    border-bottom: none;
    z-index: 4;
  }
  .header::after {
    display: none;
  }
}
.openHamburger {
  height: 51px;
}
.openHamburger .header__hamburger-border--first {
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}
.openHamburger .header__hamburger-border--third {
  position: absolute;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.openHamburger .header__hamburger-border--second {
  opacity: 0;
}
.openHamburger .header__hamburger-menu-menu {
  display: none;
}

.footer {
  font-weight: normal;
  padding: 10px 0 58px;
  background-color: #165e83;
  text-align: center;
}
.footer__container {
  position: relative;
  margin: 0 auto;
}
.footer__logo {
  width: 204px;
}
.footer__copyrights {
  display: block;
  margin-top: 9px;
  text-align: center;
  color: #fff;
  font-size: 8px;
}
@media screen and (max-width: 840px) {
  .footer__logo-link {
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__copyrights {
    text-align: center;
  }
}

.drawer-layer {
  display: block;
  overflow: hidden;
}

.drawer {
  position: fixed;
  width: 100vw;
  height: calc(100vh - 50px);
  background-color: rgba(255, 255, 255, 0.8);
  top: 50px;
  right: -100%;
  z-index: 4;
  transition: 0.6s;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.drawer::-webkit-scrollbar {
  display: none;
}
.drawer__item {
  display: block;
  position: relative;
  padding: 24px 30px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #000;
  box-sizing: border-box;
}
.drawer__item--top {
  border-top: 1px solid #F8F8F8;
}

.drawer__filter {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: none;
  background-color: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  transition: 0.3s;
}

.is-fixed {
  height: 100%;
  overflow: hidden;
}

.slideDrawer {
  display: block;
  right: 0;
}

.showFilter {
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
}

.hover {
  position: fixed;
  width: 100%;
  padding: 17px 0;
  background-color: #165e83;
  text-align: center;
  bottom: 0;
}
.hover__link {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.2em;
}
.hover__link-image {
  margin-bottom: -2px;
  margin-right: 10px;
}

/* templates END */
/* top START */
.top-main-view-section {
  max-width: 800px;
  margin: auto;
  position: relative;
  opacity: 0;
}
.top-main-view-section__main-title {
  position: absolute;
  max-width: 520px;
  width: 100%;
  color: #fff;
  top: 85px;
  left: 10px;
  z-index: 2;
}
.top-main-view-section__main-image {
  width: 80%;
  min-width: 340px;
}
.top-main-view-section__slider {
  position: relative;
  max-width: 1451px;
  width: 100%;
  overflow: hidden;
}
.top-main-view-section__slider div img {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .top-main-view-section__main-title {
    z-index: 3;
  }
}
.top-main-view-section .slick-dots {
  width: inherit;
  position: absolute;
  bottom: 18px;
  transform: scale(0.9);
}
.top-main-view-section .slick-dots li {
  margin: 0;
}
@media screen and (max-width: 980px) {
  .top-main-view-section .slick-dots {
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-main-view-section .slick-arrow {
  display: none;
}
.top-main-view-section .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.top-main-view-section .slick-dots li button:before {
  opacity: 1;
  color: #fff;
}
.top-main-view-section .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #E35E54;
}

.top-information-section {
  max-width: 800px;
  margin: auto;
  padding: 50px 15px;
}

.top-antivirus-section {
  max-width: 800px;
  margin: auto;
  padding: 50px 15px;
}
.top-antivirus-section__card {
  position: relative;
  padding: 50px 20px 60px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 12px;
  background-color: #fff;
}
.top-antivirus-section__card--main-view {
  opacity: 0.9;
  min-height: 320px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-antivirus-section__card--antivirus {
  padding: 50px 40px;
  margin-top: 20px;
}
.top-antivirus-section__card--clinic {
  padding: 50px 20px;
  margin-top: 20px;
}
.top-antivirus-section__body {
  font-size: 16px;
  display: flex;
  justify-content: center;
  margin: 31px auto 0;
  font-weight: 300;
}
.top-antivirus-section__button {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.top-aboutus-section {
  max-width: 800px;
  margin: auto;
  padding: 50px 10px;
}
.top-aboutus-section__main-image {
  margin-top: 10px;
  width: 100%;
}
.top-aboutus-section__card {
  position: relative;
  padding: 100px 20px;
  margin-top: 10px;
  border: 1px solid #165E83;
  text-align: center;
}
.top-aboutus-section__card-title {
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.top-aboutus-section__card-sub-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  margin: 20px auto 0;
  letter-spacing: 0.1em;
  border-bottom: 4px solid #e7b924;
}
.top-aboutus-section__body {
  font-size: 16px;
  display: flex;
  justify-content: center;
  margin: 31px auto 0;
  font-weight: 300;
  text-align: justify;
  line-height: 2;
}
.top-aboutus-section__button {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.top-aboutus-section__links {
  padding: 100px 20px;
}
.top-aboutus-section__link {
  display: block;
  width: 100%;
  padding: 31px 0;
  background-color: #165e83;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  text-align: center;
}
.top-aboutus-section__link:last-of-type {
  margin-bottom: 0;
}
.top-aboutus-section__link:hover {
  opacity: 0.5;
}
.top-aboutus-section__consultation {
  padding-bottom: 150px;
}
.top-aboutus-section__consultation-hour-image {
  width: 100%;
  max-width: 740px;
  display: block;
  margin: 50px auto 0;
}
.top-aboutus-section__consultation-hour-detail-image {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 50px auto 0;
}

.top-access-section {
  max-width: 800px;
  margin: auto;
  padding: 0 10px 100px;
}
.top-access-section__address {
  margin-top: 60px;
  padding: 0 20px;
}
.top-access-section__logo {
  width: 204px;
}
.top-access-section__details {
  display: flex;
  margin-top: 19px;
}
.top-access-section__detail {
  padding: 7px 14px;
  background-color: #165e83;
  font-size: 16px;
  color: #fff;
  margin-right: 13px;
}
.top-access-section__detail:last-of-type {
  margin-right: 0;
}
.top-access-section__heading {
  display: inline-block;
  text-align: center;
  margin-top: 33px;
  padding: 3px 0;
  min-width: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background-color: #165e83;
  border-radius: 22px;
}
.top-access-section__body {
  margin-top: 15px;
  line-height: 2;
  font-size: 16px;
  font-weight: 300;
}
.top-access-section__map {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.section-title {
  padding: 16px 0;
  margin: 0 -15px;
  display: block;
  background-color: #165e83;
  color: #fff;
  letter-spacing: 0.3em;
  text-align: center;
}
.section-title__main {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
.section-title__sub {
  margin-top: 15px;
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: 400;
}

.link-button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  min-width: 240px;
  width: 100%;
  padding: 22px 0;
  box-sizing: border-box;
  font-weight: 500;
  transition: 0.3s ease;
  background-color: #fff;
  color: #165e83;
  border: #165e83 solid 1px;
  letter-spacing: 0.5em;
  text-align: center;
}
.link-button:hover {
  color: #fff;
  background-color: #165e83;
}

.link-button:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 12px;
  right: -29px;
  bottom: 10px;
  background: url(../image/button_arrow.png) top center no-repeat;
}

/* top END */
/* about START */
.section-head {
  background-size: cover;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
.section-head__icon {
  margin-bottom: 10px;
}
.section-head__head-title {
  margin-bottom: 20px;
  font-size: 14px;
  color: #747779;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.section-head__head-sub-title {
  color: #165e83;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

/* about END */
/* antivirus START */
.antivirus-section {
  max-width: 800px;
  margin: 50px auto 100px;
}
.antivirus-section__main-view {
  padding: 30px;
  background: url(../image/antivirus_top_image.png) top center no-repeat;
  background-size: cover;
}
.antivirus-section__body {
  padding: 10px;
  margin-top: -10px;
  text-align: center;
}
.antivirus-section__heading {
  color: #165e83;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 0;
  border: 1px solid #165e83;
  letter-spacing: 0.4em;
}
.antivirus-section__heading-sub-heading {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.antivirus-section__card-image {
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
}

/* antivirus END */
/* new START */
.new-section {
  max-width: 800px;
  margin: 50px auto 100px;
}
.new-section__main-view {
  padding: 30px;
  background: url(../image/new_top_image.png) top center no-repeat;
  background-size: cover;
}
.new-section__body {
  padding: 10px;
  margin-top: -10px;
  text-align: center;
}
.new-section__heading {
  display: inline-block;
  color: #165e83;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 2px 8px 6px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #165e83;
  border-radius: 50%;
  letter-spacing: 0.4em;
  line-height: 1.5;
}
.new-section__heading-sub-heading {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.new-section__card-image {
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
}
.new-section__sub-body {
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 20px -20px 0;
}
.new-section__card-in-card {
  position: relative;
  margin-top: 75px;
  padding: 55px 20px 50px;
  border: 1px solid #e4e4e4;
}
.new-section__card-in-card-title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 250px;
  box-sizing: border-box;
  border-radius: 60px;
  transform: translateX(-50%) translateY(-50%);
  padding: 17px 0;
  background-color: #165e83;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 16px;
}
.new-section__card-in-card-body {
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
}

/* new END */
/* clinic START */
.clinic-section {
  max-width: 800px;
  margin: 50px auto 100px;
}
.clinic-section__main-view {
  padding: 30px;
  background: url(../image/clinic_top_image.png) top center no-repeat;
  background-size: cover;
}
.clinic-section__body {
  padding: 10px;
  margin-top: -10px;
  text-align: center;
}
.clinic-section__heading {
  color: #747779;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.4em;
}
.clinic-section__heading-sub-heading {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.clinic-section__card-image {
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
}
.clinic-section__doctor-card {
  width: 100%;
  margin-top: 50px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 12px;
}
.clinic-section__doctor-card:last-of-type {
  margin-top: 70px;
}
.clinic-section__doctor-card-upper {
  position: relative;
  background-color: #165e83;
  height: 60px;
}
.clinic-section__doctor-card-upper-icon {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #165e83;
  font-size: 14px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.clinic-section__doctor-card-upper-icon-image {
  margin-top: -24px;
}
.clinic-section__doctor-card-upper-icon-text {
  position: absolute;
  bottom: 24px;
  letter-spacing: 0.3em;
  font-weight: 500;
  font-size: 14px;
}
.clinic-section__doctor-card-lower {
  padding: 52px 10px 22px;
}
.clinic-section__sub-body {
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 20px -20px 0;
}
.clinic-section__image-heading {
  margin-top: 30px;
  color: #165e83;
  padding: 8px 0;
  font-weight: 300;
  font-size: 14px;
  border: 1px solid #165e83;
}
.clinic-section__doctor-sub-heading {
  font-size: 14px;
  color: #747779;
  font-weight: 300;
  letter-spacing: 0.3em;
}
.clinic-section__doctor-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 30px;
  color: #165e83;
  letter-spacing: 0.1em;
}
.clinic-section__doctor-kana {
  margin-top: 10px;
  font-weight: 400;
  color: #747779;
  font-size: 12px;
  letter-spacing: 0.2em;
}

/* clinic END */
/* subjects START */
.subjects-section {
  max-width: 800px;
  margin: 50px auto;
}
.subjects-section__main-view {
  padding: 30px;
  background: url(../image/subjects_top_image.png) top center no-repeat;
  background-size: cover;
}
.subjects-section__title {
  font-size: 22px;
  color: #165e83;
  font-weight: 500;
}
.subjects-section__links {
  margin: 0 10px;
  padding: 50px 3px 100px;
  text-align: center;
  border-bottom: 1px solid #707070;
}
.subjects-section__panels {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.subjects-section__panel {
  position: relative;
  margin: 7px;
  padding: 34px 0 42px;
  border: 1px solid #464949;
  box-sizing: border-box;
  width: 100%;
  min-height: 160px;
  min-width: 160px;
  max-width: 160px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 12px;
}
.subjects-section__panel-icon {
  width: 30px;
  height: 30px;
}
.subjects-section__panel-arrow-icon {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}
.subjects-section__panel-title {
  margin-top: 27px;
  color: #3e4040;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.2em;
}
.subjects-section__panel-title--underline {
  display: inline-block;
  border-bottom: 10px solid #e7b924;
}
.subjects-section__panel-title-sub {
  font-size: 12px;
  margin-top: 5px;
  color: #3e4040;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.subjects-section__panel-title-sub--no-margin {
  margin-top: 0;
}
.subjects-section__detail-container {
  padding: 50px 0;
  margin: 0 10px;
  border-bottom: 1px solid #707070;
}
.subjects-section__detail {
  padding: 50px 20px;
  border: 3px solid #165e83;
}
.subjects-section__body {
  margin-top: 50px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  text-align: justify;
}
.subjects-section__body-image {
  display: block;
  width: 90%;
  margin: 30px auto;
}

/* subjects END */
/* facility START */
.facility-section__card {
  position: relative;
  padding: 100px 20px;
  margin-top: 10px;
  border-bottom: 1px solid #707070;
  text-align: center;
}
.facility-section__card-title {
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.facility-section__card-sub-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  margin: 20px auto 0;
  letter-spacing: 0.1em;
  border-bottom: 4px solid #e7b924;
}
.facility-section__card-body {
  font-size: 16px;
  display: flex;
  justify-content: center;
  margin: 31px auto 0;
  font-weight: 300;
  text-align: justify;
  line-height: 2;
}
.facility-section__main-view {
  padding: 30px;
  background: url(../image/facility_top_image.png) top center no-repeat;
  background-size: cover;
}
.facility-section__links {
  margin: 0 10px;
  padding: 50px 3px 50px;
  text-align: center;
  border-bottom: 1px solid #707070;
}
.facility-section__title {
  font-size: 18px;
  font-weight: bold;
  color: #165e83;
  line-height: 2;
}
.facility-section__body {
  margin-top: 50px;
  margin-left: inherit;
  margin-right: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  text-align: justify;
}
.facility-section__under-card {
  position: relative;
  padding: 30px 20px;
  margin-top: 10px;
  text-align: center;
}
.facility-section__under-card-body {
  margin-top: 30px;
  margin-left: inherit;
  margin-right: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  text-align: center;
}

/* facility end */