@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@700&display=swap");
/* reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* base styles */
:root {
  color-scheme: light;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  font-size: 62.5%;
  /* 游ゴシック体 */
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}

body {
  color: #133e70;
  margin: 0;
  line-height: inherit;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  background: #fff;
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.u-type {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.u-type-all * {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.u-center {
  text-align: center;
}

.u-br-pc,
.br-pc {
  display: none;
}
@media (min-width: 768px) {
  .u-br-sp,
  .br-sp {
    display: none !important;
  }
  
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
  .u-br-pc,
  .br-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-reset li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-over {
  transition: 0.3s ease;
}

.u-over:hover {
  opacity: 0.7;
}

.u-color-green {
  color: #48bb6b !important;
}

.u-color-blue {
  color: #133e70 !important;
}

.u-color-blue-sub {
  color: #0050ad !important;
}

.u-color-white {
  color: #fff !important;
}

.u-color-lightblue {
  color: #3ed2e3 !important;
}

.u-color-yellow {
  color: #ffdc6b !important;
}

.u-color-pink {
  color: #ff8dc9 !important;
}

.u-bg-white {
  background: #fff;
}

.u-bg-blue {
  background: #eef9fa;
}

.u-font-lg {
  font-size: 2.4rem !important;
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-top: 1px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}
.l-header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleY(0);
  transition: 0.3s ease;
  transform-origin: center top;
}
.l-header.is-scroll::before {
  transform: scaleY(100%);
}

.l-main {
  position: relative;
}
.l-sidebar {
  background: #ddd;
}

.l-footer {
  position: relative;
  background: #6e93c5;
  color: #fff;
}
@media (max-width: 767px) {
  .l-footer {
    padding-bottom: 62px;
  }
}

.l-container {
  position: relative;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .l-content {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.l-content--sm {
  max-width: 1000px;
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-list-news > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #ffdc6b;
  padding: 20px 0;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .c-list-news > li {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.c-list-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-list-news__link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../img/bullet-circle-green.svg) 0 0 no-repeat;
  background-size: contain;
  width: 29px;
  height: 29px;
  margin-top: -14.5px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-news__link:after {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
}
.c-list-news__link:hover:after {
  opacity: 0.7;
}
.c-list-news__link:hover ~ .c-list-news__title a {
  text-decoration: underline;
}
.c-list-news__time {
  font-size: 1.6rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 30px;
  color: #133e70;
}
@media (max-width: 767px) {
  .c-list-news__time {
    margin-right: 15px;
  }
}
.c-list-news__category {
  flex-shrink: 0;
  margin-right: 30px;
  z-index: 3;
}
@media (max-width: 767px) {
  .c-list-news__category {
    margin-right: 0;
  }
}
.c-list-news__category > a {
  background: #48bb6b;
  color: #fff;
  border-radius: 6px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 140px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .c-list-news__category > a {
    font-size: 1.3rem;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 140px;
    width: auto;
  }
}
.c-list-news__title {
  flex-grow: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  padding-right: 65px;
}
@media (max-width: 767px) {
  .c-list-news__title {
    width: 100%;
    margin-top: 15px;
    padding-right: 35px;
  }
}
.c-list-news__title > a {
  color: #133e70;
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-list-news__title > a:hover {
  text-decoration: underline;
}
.c-list-news--white * {
  color: white !important;
}
.c-list-news--blog .c-list-news__link::after {
  background: url(../img/bullet-circle-purple.svg) 0 0 no-repeat;
  background-size: contain;
}

/*
<li v-for="post in posts" :key="post.id">
      <time class="c-list-news__time" :datetime="post.date">
        {{ formatDate(post.date) }}
      </time>
      <div class="c-list-news__category">
        <a :href="'/category/' + getPrimaryCategory(post)">
          {{ getPrimaryCategory(post) }}
        </a>
      </div>
      <h3 class="c-list-news__title">
        <a :href="post.link" v-html="post.title.rendered"></a>
      </h3>
    </li>
*/
.c-list-entry {
  position: relative;
}
.c-list-entry__item {
  padding: 25px 25px !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  background: rgba(0, 80, 173, 0.1);
  border-radius: 15px;
  margin-bottom: 15px !important;
  
}
@media (max-width: 767px) {
  .c-list-entry__item {
    display: block;
    padding: 15px !important;
  }
}
.c-list-entry__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  border-radius: 15px;
}
.c-list-entry__link:hover {
  background: rgba(0, 80, 173, 0.3);
  opacity: 0.3;
}
.c-list-entry__pic {
  flex-shrink: 0;
  position: relative;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .c-list-entry__pic {
    margin-right: 0;
  }
}
.c-list-entry__content {
  flex-grow: 1;
  position: relative;
}
@media (max-width: 767px) {
  .c-list-entry__content {
    padding-right: 0;

  }
}
.c-list-entry__cat {
  display: inline-block;
  min-width: 140px;
}
.c-list-entry__cat a {
  display: block;
  text-align: center;
  color: white;
  background: #133e70;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
}
.c-list-entry__date {
  position: absolute;
  right: 0px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-list-entry__date {
    position: relative;
    right: auto;
    margin-left: 15px;
  }
}
.c-list-entry__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
  /* border-bottom: 1px solid #133e70; */
  margin-top: 15px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.c-list-entry__title a {
  text-decoration: none;
  color: #222222;
}

.c-pagination {
  position: relative;
  border-top: 1px solid #133e70;
  padding-top: 75px;
  padding-bottom: 30px;
  margin-top: 50px;
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.c-pagination ul li {
  font-size: 1.8rem;
}
.c-pagination ul li a {
  color: #222222;
  text-decoration: none;
}
.c-pagination ul .current {
  color: #48bb6b;
  font-weight: bold;
}
.c-pagination ul .next {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25.5px;
  text-indent: -9999px;
  display: block;
  background: url(../img/angle-right.svg) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  position: absolute;
}
.c-pagination ul .next:hover {
  opacity: 0.7;
}
.c-pagination ul .prev {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  margin-top: -25.5px;
  text-indent: -9999px;
  display: block;
  background: url(../img/angle-left.svg) 0 0 no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
  position: absolute;
}
.c-pagination ul .prev:hover {
  opacity: 0.7;
}

.c-clinic-info {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-clinic-info {
    display: block;
  }
}
.c-clinic-info__left {
  width: 43%;
}
@media (max-width: 767px) {
  .c-clinic-info__left {
    width: 100%;
  }
}
.c-clinic-info__right {
  width: 50%;
}
@media (max-width: 767px) {
  .c-clinic-info__right {
    width: 100%;
  }
}
.c-clinic-info__title {
  max-width: 427px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .c-clinic-info__title {
    max-width: 270px;
    margin-bottom: 25px;
  }
}
.c-clinic-info__timetable {
  margin-top: 50px;
}
.c-clinic-info__addr {
  text-align: left;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  padding-left: 60px;
  margin-bottom: 50px;
}
.c-clinic-info__addr::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -27px;
  background: url(../img/addr.svg) 0 0 no-repeat;
  background-size: contain;
  width: 50px;
  height: 45px;
}
@media (max-width: 767px) {
  .c-clinic-info__addr {
    margin-bottom: 20px;
  }
}
.c-clinic-info .c-btn--pink:before {
  content: "";
  display: inline-block;
  background: url(../img/ic-tel.svg) 0 0 no-repeat;
  background-size: contain;
  width: 41px;
  height: 43px;
  vertical-align: middle;
  margin-right: 15px;
}
.c-clinic-info__map {
  margin-bottom: 35px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .c-clinic-info__map {
    margin-top: 30px;
  }
}
.c-clinic-info--contact {
  max-width: 1071px;
  margin-left: auto;
  margin-right: auto;
}
.c-clinic-info--contact .c-btn {
  width: 100%;
}

.c-clinic-access {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-clinic-access {
    display: block;
    margin-top: 0;
  }
}
.c-clinic-access__item {
  width: 50%;
  box-sizing: border-box;
  position: relative;
  padding: 0px 25px;
  padding-left: 110px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-clinic-access__item {
    width: 100%;
    padding: 25px;
    padding-left: 60px;
  }
}
.c-clinic-access__item:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-clinic-access__item:nth-child(1):after {
    width: 100%;
    height: 1px;
    position: static;
    margin-top: 25px;
  }
}
.c-clinic-access__ic {
  position: absolute;
  left: 40px;
  top: 50%;
  margin-top: -25px;
}
@media (max-width: 767px) {
  .c-clinic-access__ic {
    left: 0;
  }
}
.c-clinic-access__title {
  font-weight: bold;
  font-size: 1.8rem;
  color: #69eac1;
  text-align: left;
}
.c-clinic-access p {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.c-clinic-access__park {
  position: relative;
  padding-left: 23px;
}
.c-clinic-access__park::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0%;
  background: url(../img/c-clinic-access__ic-park.svg) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-clinic-access ul li {
  color: white;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
}
.c-clinic-access ul li::before {
  content: "・";
  color: #36bd92;
  position: absolute;
  left: 0;
  top: 0;
}
.c-clinic-access__header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  height: 108px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .c-clinic-access__header {
    display: block;
    height: auto;
    margin-bottom: 20px;
    border-bottom: none;
  }
}
.c-clinic-access__header p {
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  position: relative;
  top: 5px;
}
.c-clinic-access__title {
  width: 199px;
  margin: 0;
}
.c-clinic-access--contact {
  margin-bottom: 50px;
}

.c-contact {
  background: url(../img/top/top-clinic-bg.png) 0 0 repeat;
  background-size: 10px 10.5px;
  padding-top: 1px;
  position: relative;
}
.c-contact__swiper {
  margin-top: -135px;
}
@media (max-width: 767px) {
  .c-contact__swiper {
    margin-top: -67.5px;
  }
}
.c-contact__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.c-contact__swiper .swiper-slide {
  width: 380px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .c-contact__swiper .swiper-slide {
    width: 190px;
    margin-right: 10px;
  }
}
.c-contact__stick-1 {
  position: absolute;
  left: -70px;
  top: 110px;
  background: url(../img/p-top-clinic__stick-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 350px;
  height: 130px;
  transform: rotate(-5deg) !important;
}
@media (max-width: 767px) {
  .c-contact__stick-1 {
    left: -35px;
    top: 55px;
    width: 175px;
    height: 65px;
  }
}
.c-contact__stick-2 {
  position: absolute;
  right: 0;
  top: 100px;
  background: url(../img/p-top-clinic__stick-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 262px;
  height: 213.5px;
}
@media (max-width: 767px) {
  .c-contact__stick-2 {
    top: 50px;
    width: 131px;
    height: 106.5px;
  }
}
.c-contact__main-title {
  width: 480px;
  margin: 150px auto 100px;
}
@media (max-width: 767px) {
  .c-contact__main-title {
    width: 320px;
    margin-bottom: 50px;
  }
}
.c-contact__logo-title {
  width: 400px;
  margin: 0 auto 70px;
}
@media (max-width: 767px) {
  .c-contact__logo-title {
    width: 270px;
    margin-bottom: 30px;
  }
}
.c-contact .map {
  height: 400px;
  width: 100%;
  margin: 0;
  position: relative;
  margin-bottom: -5px;
}
@media (max-width: 767px) {
  .c-contact .map {
    height: 300px;
  }
}

.c-banners {
  background: #baebad;
  padding: 90px 0 290px;
  position: relative;
}
@media (max-width: 767px) {
  .c-banners {
    padding-top: 30px;
    padding-bottom: 145px;
  }
}

.c-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .c-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.c-banner__link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-banner img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .c-banner img {
    border-radius: 10px;
  }
}
.c-banner__label {
  display: none;
}

.c-btn {
  position: relative;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.8rem;
  padding-left: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #36bd92;
  border-radius: 50px;
  text-align: center;
  height: 100px;
  margin: 20px auto;
  transition: 0.3s ease;
}
.c-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  background: url(../img/btn-green.svg) 0 0 no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  transition: 0.3s ease;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn:hover::after {
  right: 0;
}
.c-btn--pink {
  background: #ff8dc9;
}
.c-btn--yellow {
  color: #ffdc6b;
  border-color: #ffdc6b;
}
.c-btn--yellow::after {
  background: url(../img/bullet-circle-yellow.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--purple {
  color: #fff;
  background: #b6a4eb;
}
.c-btn--purple::after {
  background: url(../img/btn-purple.svg) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--blue {
  color: #fff;
  background: #0050ad;
}
.c-btn--blue::after {
  background: url(../img/btn-blue.svg) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--no-bullet::after {
  content: none !important;
}
@media (max-width: 767px) {
  .c-btn {
    max-width: 100%;
    font-size: 3rem;
    padding-left: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 80px;
  }
}

.c-bubble {
  display: inline-flex;
  overflow: visible;
}
.c-bubble__char {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin-right: -1.3rem;
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-bubble__char {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 2.2rem;
  }
}
.c-bubble__char::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.c-bubble__char__char:last-child {
  margin-right: 0;
}

.c-title-2 {
  text-align: center;
  font-weight: bold;
  color: #133e70;
  font-size: 3rem;
  margin-bottom: 30px;
}
.c-title-2__ic {
  display: block;
  width: 78px;
  margin: 60px auto 40px;
  position: relative;
}
.c-title-2--minus .c-title-2__ic {
  margin: -60px auto 40px;
}

.c-title-3 {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 70px 0 40px;
  line-height: 1.6em;
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.c-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin: 60px auto;
}
@media (max-width: 767px) {
  .c-card-grid--3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .c-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-card__pic {
  position: relative;
  margin-bottom: 30px;
}
.c-card__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #133e70;
}

.c-col-2 {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}
.c-col-2 > div {
  width: 48%;
}
@media (max-width: 767px) {
  .c-col-2 {
    display: block;
  }
}
.c-col-2__pic {
  position: relative;
  width: 48%;
}
@media (max-width: 767px) {
  .c-col-2__pic {
    width: 100%;
  }
}
.c-col-2__content {
  width: 48%;
}
.c-col-2__content table th {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  white-space: nowrap;
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}
.c-col-2__content table td {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
}
@media (max-width: 767px) {
  .c-col-2__content {
    width: 100%;
  }
}

.c-box-border {
  background: #fff;
  border: 4px solid #ffb0d2;
  padding: 30px 40px;
}
.c-box-border__title {
  font-weight: bold;
  color: #133e70;
  font-size: 1.8rem;
}
.c-box-border p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-box-border {
    padding: 20px;
  }
}

.c-tab-list {
  background: #d8eff1;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .c-tab-list {
    padding-top: 35px;
  }
}
.c-tab-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-tab-list ul li a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #3ed2e3;
  background: #f3fafb;
  display: block;
  padding: 30px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-tab-list ul li a {
    padding: 15px;
  }
}
.c-tab-list ul li a:hover {
  opacity: 0.7;
}
.c-tab-list ul li.is-active a {
  background: #fff;
  pointer-events: none;
}

.c-list-qna__q {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #cae4e7;
  position: relative;
  padding: 25px 40px;
}
@media (max-width: 767px) {
  .c-list-qna__q {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .c-list-qna__q {
    line-height: 1.6em;
  }
}
.c-list-qna__q::before {
  content: "";
  display: block;
  background: url(../img/q.png) 0 0 no-repeat;
  background-size: contain;
  width: 28.5px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 15px;
}
.c-list-qna__a {
  padding: 15px 40px;
}
@media (max-width: 767px) {
  .c-list-qna__a {
    padding-right: 0;
  }
}

.c-table {
  width: 100%;
}
.c-table th {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
  text-align: left;
}
.c-table td {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
}
.c-table td iframe {
  display: block;
  width: 100%;
  margin-top: 30px;
  height: 350px;
}
.c-table td a {
  color: #2484a0;
}
.c-table__qr {
  width: 150px;
}

.p-header {
  position: relative;
  z-index: 21;
}
.p-header__text {
  position: absolute;
  left: 30px;
  top: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  font-weight: normal;
  color: #0050ad;
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  .p-header__text {
    left: 5px;
    font-size: 1rem;
    width: 100vw;
  }
}
.p-header__logo {
  width: 212px;
  margin: 0;
  margin-top: 30px;
  margin-left: 30px;
  padding: 0;
  position: relative;
  transition: 0.3s ease;
}
.p-header__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 150px;
    margin-top: 23px;
    margin-left: 5px;
  }
}
.p-header__notice {
  position: absolute;
  left: 30px;
  top: 75px;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  font-weight: normal;
  color: #0050ad;
  min-width: 50vw;
}
.p-header__notice:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .p-header__notice {
    font-size: 1.4rem;
    left: 5px;
    top: 55px;
    width: calc(100vw - 80px);
  }
}

.p-nav {
  position: relative;
  z-index: 21;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .p-nav {
    z-index: 19;
    transform: translateX(100%);
    display: block;
    margin: 0;
    margin-top: -80px;
    padding-top: 100px;
    height: 100vh !important;
    transition: 0.3s ease;
  }
}
@media (max-width: 767px) {
  .p-nav.is-active {
    transform: translateX(0%);
  }
}
.p-nav__list {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .p-nav__list {
    display: block;
  }
}
.p-nav__list-ic {
  height: 45px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-nav__list-ic {
    width: 50px;
    text-align: center;
    justify-content: center;
  }
}
.p-nav__list-ic img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-nav__list-ic img {
    display: inline-block;
  }
}
.p-nav__list > li {
  position: relative;
  margin-left: 30px;
}
@media (max-width: 1180px) {
  .p-nav__list > li {
    margin-left: 15px;
  }
}
.p-nav__list > li a {
  color: #133e70;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__list > li {
    border-top: 1px solid #cae4e7;
  }
  .p-nav__list > li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.p-nav__list > li a:hover {
  color: #133e70;
}
.p-nav__list > li a:hover img {
  animation: poyopoyo 2s ease-out infinite;
  animation-delay: 0;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@media (max-width: 767px) {
  .p-nav__list > .has-child > a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    background: url(../img/angle-bottom.svg) center center no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
  }
  .p-nav__list > .has-child.is-toggle > a::after {
    background: url(../img/angle-top.svg) center center no-repeat;
    background-size: contain;
  }
}
.p-nav__child {
  position: absolute;
  left: -70%;
  top: 99%;
  background: #fff;
  padding: 15px;
  width: 430px;
  display: none;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  /* transition: all 0.3s ease; */
  transform: translateY(-10px);
}
li:last-child .p-nav__child {
  left: auto;
  right: -70%;
}
@media (max-width: 767px) {
  .p-nav__child {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    opacity: 0;
    max-height: 100%;
    background: none;
    overflow: initial;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  li:last-child .p-nav__child {
    left: 0;
    right: auto;
  }
}
.p-nav__child li {
  border-bottom: 1px solid #eeeeee;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__child li {
    opacity: 1;
    transform: none;
    border-top: 1px solid #cae4e7;
    border-bottom: none;
  }
}
.p-nav__child li a {
  color: #133e70;
  display: block;
  text-align: left;
  padding: 20px 5px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-nav__child li a {
    padding: 15px;
  }
}
.p-nav__child li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-nav__list .is-toggle .p-nav__child {
    display: block;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation-name: fadeIn;
    animation-fill-mode:forwards;
    animation-duration:0.3s;
  }
}
@media (min-width: 768px) {
  .p-nav__list > li:hover .p-nav__child {
    display: block;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation-name: fadeIn;
    animation-fill-mode:forwards;
    animation-duration:1s;
  }
}
.p-nav__list > li:hover .p-nav__child li {
  opacity: 1;
  transform: translateY(0);
}
.p-nav__list > li:hover .p-nav__child li a:hover {
  background: #133e70;
  color: #fff;
  opacity: 1;
}
.p-nav__tel {
  width: 310px;
  margin-right: 15px;
  background: #0050ad;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80px;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
  position: relative;
  top: -9px;
}
.p-nav__tel img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.p-nav__tel:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width: 1386px) {
  .p-nav__tel {
    width: 80px;
  }
  .p-nav__tel img {
    margin-right: 0;
  }
  .p-nav__tel .p-nav__tel-text {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-nav__tel {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
}
.p-nav__toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0;
  top: 0;
  background: #0050ad;
  z-index: 22;
}
.p-nav__toggle span {
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 20px;
  top: 25px;
  transition: 0.3s ease;
}
.p-nav__toggle span:nth-child(2) {
  top: 40px;
}
.p-nav__toggle span:nth-child(3) {
  top: 55px;
}
.p-nav__toggle.is-active span:nth-child(1) {
  top: 40px;
  transform: rotate(45deg);
}
.p-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.p-nav__toggle.is-active span:nth-child(3) {
  top: 40px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .p-nav {
    position: fixed;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background: #eef9fa;
    overflow: scroll;
    height: calc(100vh - 80px);
    padding-bottom: 80px;
  }
}
.p-footer-pagetop {
  position: fixed;
  width: 110px;
  right: 15px;
  bottom: 15px;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
@media (max-width: 767px) {
  .p-footer-pagetop {
    width: 55px; 
    bottom: 70px;
    right: 5px;
  }  
}
.p-footer-pagetop.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.p-footer-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-footer-top {
  background: url(../img/top/top-clinic-bg.png) 0 0 repeat;
  background-size: 10px 10.5px;
  position: relative;
}
.p-footer-top::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -155px;
  background: url(../img/top/top-clinic-top.png) center top no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 155px;
}
@media (max-width: 767px) {
  .p-footer-top::before {
    background-size: 200% 100%;
    top: -75px;
  }
}
.p-footer-top__stick-1 {
  background: url(../img/p-footer-top__stick-1.svg) 0 0 no-repeat;
  background-size: contain;
  width: 278px;
  height: 192px;
  position: absolute;
  left: 0;
  top: -200px;
}
@media (max-width: 767px) {
  .p-footer-top__stick-1 {
    width: 139px;
    height: 96px;
    top: -100px;
  }
}
.p-footer-top__stick-2 {
  background: url(../img/p-footer-top__stick-2.svg) 0 0 no-repeat;
  background-size: contain;
  width: 125px;
  height: 105px;
  position: absolute;
  right: 0;
  top: -100px;
}
@media (max-width: 767px) {
  .p-footer-top__stick-2 {
    width: 62.5px;
    height: 52.5px;
    top: -50px;
  }
}
.p-footer-top__nav {
  padding-top: 64px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .p-footer-top__nav {
    padding-top: 32px;
    margin-bottom: 30px;
    border-bottom: 1px solid white;
  }
}
.p-footer-top__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
@media (max-width: 767px) {
  .p-footer-top__list {
    display: block;
  }
}
.p-footer-top__item {
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: none;
}
.p-footer-top__item > a {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: none;
  /* margin-bottom: 10px; */
  display: block;
}
.p-footer-top__item > a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-footer-top__item > a, .p-footer-top__item > span {
    font-size: 2rem;
    border-top: 1px solid white;
    padding: 15px 15px;
    margin-bottom: 0;
    position: relative;
    display: block;
  }
  .p-footer-top__item > a:after, .p-footer-top__item > span:after {
    content: "";
    display: block;
    background: url(../img/angle-bottom-w.png) 0 0 no-repeat;
    background-size: contain;
    width: 20px;
    height: 12px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  .p-footer-top__item.is-active > a:after, .p-footer-top__item.is-active > span:after {
    background: url(../img/angle-top-w.png) 0 0 no-repeat;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .p-footer-top__item {
    margin-bottom: 15px;
  }
}
.p-footer-top__sublist {
  padding: 0;
  margin-top: 10px;
}
.p-footer-top__sublist.is-active {
display: block;
animation-name: fadeIn;
animation-fill-mode:forwards;
animation-duration:1s;
}
@keyframes fadeIn{
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
}
.p-footer-top__sublist li {
  margin-bottom: 5px;
  position: relative;
}
.p-footer-top__sublist li::before {
  content: "・";
  color: #36bd92;
}
.p-footer-top__sublist a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: normal;
}
.p-footer-top__sublist a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-footer-top__sublist {
    display: none;
    opacity: 0;
    transition: all 0.3s;
  }
  .p-footer-top__sublist a {
    font-size: 1.6rem;
    display: block;
    padding: 15px;
    padding-right: 30px;
    border-top: 1px dashed white;
    position: relative;
  }
  .p-footer-top__sublist a:after {
    content: "";
    background: url(../img/angle-right-w.png) 0 0 no-repeat;
    background-size: contain;
    width: 12px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
  }
  .p-footer-top__sublist li::before {
    content: none; 
  }
}
@media (max-width: 767px) {
  .p-footer-top__sublist {
    margin-bottom: 15px;
  }
}

.p-footer__pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}
.p-footer__fix-btn-pc {
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: -188px;
  z-index: 10;
  width: 105px;
}
.p-footer__fix-btn-pc a {
  display: block;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.p-footer__fix-btn-pc a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-footer__pics {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-footer__fix-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* flex: 1 1 25%; */
    z-index: 19;
    background: #fff;
  }
  .p-footer__fix-btn > a {
    flex: 1;
  }
  .p-footer__fix-btn > a > img {
    width: 100%;
    max-width: 100%;
  }
  .p-footer__fix-btn > a:nth-child(1) {
    flex: 3.26;
  }
}

.p-footer-bottom {
  background: url(../img/top/top-clinic-bg.png) 0 0 repeat;
  background-size: 10px 10.5px;
  position: relative;
  padding-top: 1px;
}
.p-footer-bottom__logo {
  width: 244px;
  margin-top: 40px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.p-footer-bottom__lead {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 30px;
}
.p-footer-bottom__copyright {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 1em;
}

.p-page {
  position: relative;
}

.p-page-header {
  text-align: center;
  margin-bottom: 3rem;
  height: 400px;
  background: url(../img/page-header-about.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 0 100px;
}
.p-page-header--news {
  margin-bottom: 0;
}
/* .p-page-header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
} */
@media (max-width: 767px) {
  .p-page-header {
    height: 300px;
  }
}
.p-page-header__title {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  background: #fff;
  border-radius: 9999px;
  padding: 15px;
}
@media (max-width: 767px) {
  .p-page-header__title {
    font-size: 2.2rem;
    line-height: 1.3em;
  }  
}
.p-page-header__caption {
  text-align: center;
  font-size: 2rem;
  display: inline-block;
  background: #fff;
  padding: 5px 15px;
  position: relative;
  border-radius: 5px;
}

.p-page__content {
  position: relative;
  line-height: 2em;
  padding-bottom: 250px;
}
.p-page__content section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 75px;
}
.p-page__content section p {
  margin-bottom: 1em;
}
/*# sourceMappingURL=style.css.map */
