@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Cinzel&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&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;
  padding: 0;
  margin: 0;
}

/* 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: initial;
}

/* 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", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial",
    "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}

body {
  color: #444444;
  margin: 0;
  line-height: inherit;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  background: #fff;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}
.l-wrap.is-front {
  background: url(../img/bg-1.jpg) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 185px;
  box-sizing: border-box;
  padding-top: 1px;
  z-index: 20;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}
.l-header.is-sub::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: scaleY(100%);
  transition: 0.3s ease;
  transform-origin: center top;
}
@media (max-width: 767px) {
  .l-header.is-sub::before {
    height: 100px;
  }
}

.l-nav {
  position: absolute;
  left: 0;
  z-index: 32;
  height: 50px;
  top: 130px;
  margin-left: 180px;
  width: 100%;
  width: calc(100% - 180px);
}
.l-nav.is-fixed {
  position: fixed;
  top: 0;
  margin-left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.l-nav.is-fixed .p-nav {
  padding-left: 80px;
}
@media (max-width: 767px) {
  .l-nav {
    position: absolute !important;
    background: none !important;
    z-index: initial;
  }
}

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

.l-footer {
  position: relative;
}

.l-container {
  position: relative;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1340px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.l-content--sm {
  max-width: 1160px;
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-anchor-list {
  background: #e6f7f9;
  display: flex;
  gap: 15px;
  padding: 50px;
  margin: 50px auto;
}
.c-anchor {
  display: inline-block;
  text-align: center;
  padding: 10px;
  background: #fff;
  color: #333;
  text-decoration: none !important;
}
.c-anchor:hover, .c-anchor.is-active {
  color: white;
  background: #333;
}
@media (max-width: 767px) {
  .c-anchor-list {
    padding: 15px; 
    flex-wrap: wrap;
  }
}
.c-ic {
  display: inline-block;
}
.c-ic--reserve {
  background: url(../img/ic-reserve.png) 0 0 no-repeat;
  background-size: contain;
  width: 22px;
  height: 18px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.c-ic--access {
  background: url(../img/ic-access.png) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 21px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.c-feat {
  position: relative;
  width: 630px !important;
  box-sizing: border-box;
  box-shadow: 10px 10px 40px rgba(0, 14, 39, 0.15);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .c-feat {
    width: 310px !important;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 14, 39, 0.15);
  }
}
.c-feat__link {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
}
.c-feat__pic {
  height: 420px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .c-feat__pic {
    height: 210px;
  }
}
.c-feat__pic img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 767px) {
  .c-feat__pic img {
    height: 210px;
  }
}
.c-feat__content {
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.c-feat__num {
  color: #ffe55f;
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 5px;
  top: -50px;
}
@media (max-width: 767px) {
  .c-feat__num {
    font-size: 5rem;
    top: -25px;
  }
}
.c-feat__title {
  color: #fff;
  background: #007da2;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 285px;
  font-size: 3.4rem;
  padding: 15px;
}
@media (max-width: 767px) {
  .c-feat__title {
    top: 120px;
    font-size: 1.7rem;
  }
}
.c-feat__title-num {
  color: white;
  font-size: 3.4rem;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .c-feat__title-num {
    font-size: 1.7rem;
    padding-right: 5px;
  }
}
.c-feat__text {
  font-size: 1.6rem;
  line-height: 180%;
  padding: 30px;
  margin: 0;
}
@media (max-width: 767px) {
  .c-feat__text {
    padding: 15px;
    font-size: 1.5rem;
  }
}
.c-feat__text .u-bold {
  font-weight: bold;
  color: #ff577b;
}

.c-breadcrumb {
  position: relative;
}

@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb__list {
  padding: 0 !important;
  margin: 0 !important;
}

.c-breadcrumb__list > li {
  display: inline-block;
  font-size: 1.3rem;
}

.c-breadcrumb__list > li::after {
  content: "›";
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.8rem;
}

.c-breadcrumb__list > li:last-child::after {
  content: none;
}

.c-breadcrumb__list > li a {
  color: #09acc1 !important;
  text-decoration: none !important;
}

.c-voice {
  position: relative;
}
.c-voice__pic {
  position: relative;
}
.c-voice__pic > img {
  border-radius: 30px;
}
.c-voice__en {
  color: #50bfe0;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 5%;
  margin: 0;
  padding: 0;
  position: absolute;
  right: -35px;
  top: -25px;
}
.c-voice__lead {
  position: absolute;
  left: -10px;
  bottom: 20px;
}
.c-voice__lead span {
  font-size: 1.6rem;
  font-weight: normal;
  display: inline-block;
  background: #fff;
  padding: 10px 20px;
  margin-top: 6px;
}
.c-voice__lead span a {
  color: #007da2;
  text-decoration: underline;
  font-size: 1.4rem;
  padding-left: 5px;
}
.c-voice__content {
  position: relative;
  padding-top: 20px;
}
.c-voice__job {
  text-align: center;
  color: #007da2;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
.c-voice__name {
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
  margin: 0;
  color: #09acc1;
}

.c-news-list {
  /* border-top: 1px solid #09acc1; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.c-news-list--movie {
  grid-template-columns: repeat(2, 1fr);
}

.c-news {
  padding: 0;
  position: relative;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  border: 1px solid #09acc1;
  padding: 0px 0;
  line-height: 1.5em;
  /* gap: 30px; */
  background: #fff;
}
.c-news--movie {
  display: block;
}
@media (max-width: 767px) {
  .c-news-list {
    grid-template-columns: repeat(1, 1fr);
  }
  /* .c-news {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  } */
}
.c-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease;
}
.c-news__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}
.c-news__link:hover:after {
  right: 0;
}
.c-news__link:hover + .c-news__time + .c-news__category + .c-news__title a {
  color: #09acc1;
  text-decoration: underline;
  text-decoration-color: #09acc1;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.c-news__pic {
  flex: 0 0 45%;
  
}
.c-news__pic img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.c-news--movie .c-news__pic img {
  height: auto;
}
.c-news__content {
  /* flex: 1; */
  flex: 1 1 auto;
  padding: 15px;
}
.c-news__time {
  font-size: 1.5rem;
  color: #000000;
  line-height: 170%;
  letter-spacing: 8%;
  flex: 0 0 90px;
}
@media (max-width: 767px) {
  .c-news__time {
    margin-right: 15px;
  }
}
.c-news__category {
  /* flex: 0 0 150px; */
  z-index: 3;
  margin: 10px 0;
}
@media (max-width: 767px) {
  .c-news__category {
    margin-right: 0;
  }
}
.c-news__category > a {
  background: #eee;
  color: #444444;
  border-radius: 9999px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  line-height: 30px;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .c-news__category > a {
    font-size: 1.3rem;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 140px;
    width: auto;
  }
}
.c-news__category .movie {
  background: #444444;
  color: #fff;
}
.c-news__title {
  /* flex-grow: 1; */
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* padding-right: 65px; */
}
@media (max-width: 767px) {
  .c-news__title {
    width: 100%;
    padding-right: 35px;
  }
}
.c-news__title > a {
  color: #444444;
  font-weight: normal;
  font-size: 1.5rem;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.7em;
  letter-spacing: 8%;
  overflow: hidden;
  /* white-space: nowrap; */
  text-overflow: ellipsis;
  transition: 0.3s ease;
}
.c-news__title > a:hover {
  text-decoration: underline;
}
.c-news--white * {
  color: white !important;
}
.c-news--blog .c-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>
*/
ul.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.c-list > li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 170%;
  letter-spacing: 8%;
}
ul.c-list > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-list-entry {
  position: relative;
}
.c-list-entry__item {
  padding: 15px 15px !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #f2f5f6;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  .c-list-entry__item {
    display: block;
    padding: 15px 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;
}
.c-list-entry__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  background: url(../img/angle-right.svg) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  transition: 0.3s ease;
}
.c-list-entry__link:hover {
  background: rgba(255, 255, 255, 0.9);
  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;
  margin-left: 15px;
}
.c-list-entry__cat a {
  display: block;
  text-align: center;
  color: white;
  background: #50bfe0;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
}
.c-list-entry__cat .holiday {
  background: #804c2e;
  color: #fff;
}
.c-list-entry__date {
  display: inline-block;
  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;
  margin-top: 20px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.c-list-entry__title a {
  text-decoration: none;
  color: #444444;
}

.c-pagination {
  position: relative;
  border-top: 1px solid #09acc1;
  padding-top: 30px;
  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;
  display: block;
  padding: 0px 5px;
  border: 1px solid #09acc1;
}
.c-pagination ul li a:hover {
  background: #09acc1;
  color: #fff;
}
.c-pagination ul .current {
  color: #09acc1;
  font-weight: bold;
}
.c-pagination ul .next {
  display: none;
}
.c-pagination ul .prev {
  display: none;
}

.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-cta {
  padding-top: 148px;
  padding-bottom: 1px;
  position: relative;
}
.c-cta::before {
  content: "";
  display: block;
  position: absolute;
  left: 0%;
  top: 0;
  background: url(../img/cta-bg.png) center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 765px;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .c-cta {
    padding-top: 150px;
    padding-bottom: 1px;
  }
}
.c-cta .c-title-2 {
  text-align: center;
  margin-bottom: 0;
}
.c-cta .c-title-2::after {
  content: "CONTACT";
  display: block;
  font-size: 10rem;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #444444;
  text-align: center;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: -18px;
}
@media (max-width: 767px) {
  .c-cta .c-title-2::after {
    font-size: 5rem;
    margin-bottom: -9px;
    margin-top: 10px;
  }
}
.c-cta__top {
  position: relative;
}
.c-cta__top .l-content {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 60px;
  max-width: 1060px;
}
@media (max-width: 767px) {
  .c-cta__top .l-content {
    padding: 30px 15px;
  }
}
.c-cta__grid-1 {
  position: relative;
  display: flex;
  gap: 45px;
}
@media (max-width: 767px) {
  .c-cta__grid-1 {
    display: block;
  }
}
.c-cta__pic {
  flex: 0 0 180px;
}
@media (max-width: 767px) {
  .c-cta__pic {
    width: 90px;
    margin: 0 auto;
  }
}
.c-cta__title {
  flex: 0 0 180px;
}
@media (max-width: 767px) {
  .c-cta__title {
    margin: 15px auto;
    width: 280px;
  }
}
.c-cta__content {
  flex: 1;
}
@media (max-width: 767px) {
  .c-cta__tel {
    text-align: center;
  }
}
.c-cta__tel a {
  color: #444444;
  font-size: 4.1rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-cta__tel a {
    text-align: center;
  }
}
.c-cta__tel a::before {
  content: "";
  display: inline-block;
  background: url(../img/tel.svg) 0 0 no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  margin-right: 5px;
}
.c-cta__tel-item {
  margin-right: 10px;
  font-size: 1.3rem;
}
.c-cta__tel-item-tag {
  border: 1px solid #444444;
  font-size: 1.1rem;
  padding: 0 2px;
  margin-right: 7px;
}
.c-cta__tel__addr {
  font-size: 1.5rem;
  line-height: 170%;
  letter-spacing: 8%;
}
.c-cta__btns {
  display: flex;
  gap: 15px;
  margin: 30px 0 67px;
}
@media (max-width: 767px) {
  .c-cta__btns {
    margin: 15px auto;
  }
}
.c-cta__btns .c-btn {
  margin: 0;
  width: 320px;
}
.c-cta__grid-2 {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-cta__grid-2 {
    display: block;
  }
}
.c-cta__timetable {
  width: 47%;
}
@media (max-width: 767px) {
  .c-cta__timetable {
    width: 100%;
  }
}
.c-cta__schedule {
  width: 47%;
}
@media (max-width: 767px) {
  .c-cta__schedule {
    width: 100%;
  }
}
.c-cta__schedule iframe {
  width: 100%;
  height: 280px;
  display: block;
}
.c-cta__map {
  display: block;
  width: 100%;
  height: 350px;
}
@media (max-width: 767px) {
  .c-cta__map {
    height: 250px;
  }
}
.c-cta__grid-3 {
  display: flex;
  gap: 30px;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .c-cta__grid-3 {
    display: block;
    padding: 15px;
  }
}
.c-cta__access {
  background: #fff;
  padding: 30px;
}
.c-cta__access--1 {
  flex: 0 0 40%;
}
.c-cta__access--1 p {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .c-cta__access {
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
  .c-cta__access--1 p {
    padding-top: 0%;
  }
}
.c-cta__access p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 170%;
  letter-spacing: 8%;
}
.c-cta__title-2 {
  text-align: center;
  font-size: 2.2rem;
  line-height: 170%;
  letter-spacing: 15%;
  margin-bottom: 16px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-cta__title-2 {
    font-size: 2rem;
  }
}
.c-cta__title-2 img {
  display: inline-block;
  margin-right: 10px;
}
.c-cta__table {
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #2c2c2c;
  margin: 30px auto 0px;
  width: 100%;
}
.c-cta__table th {
  border-bottom: 1px solid #2c2c2c;
  text-align: center;
  font-size: 1.6rem;
  line-height: 170%;
  padding: 17px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-cta__table th {
    padding: 5px;
    font-size: 1.4rem;
  }
}
.c-cta__table td {
  border-bottom: 1px solid #2c2c2c;
  text-align: center;
  font-size: 1.6rem;
  line-height: 170%;
  padding: 17px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-cta__table td {
    padding: 5px;
    font-size: 1.4rem;
  }
}
.c-cta__table td.circle {
  color: #dcccbc;
}
.c-cta__table td.star {
  color: #804c2e;
}

.c-part {
  padding-top: 10px;
  padding-bottom: 80px;
  position: relative;
  background: #fff;
}
@media (max-width: 767px) {
  .c-part {
    padding-top: 1px;
    padding-bottom: 50px;
  }
}
.c-part .c-title-2::before {
  content: "";
  display: block;
  background: url(../img/part-en.svg) center top no-repeat;
  background-size: contain;
  height: 76px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-part .c-title-2::before {
    height: 38px;
    margin-bottom: 15px;
  }
}
.c-part__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-part__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-part__item {
  position: relative;
}
.c-part__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-part__link:hover + .c-part__pic {
  opacity: 0.7;
}
.c-part__area {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  padding: 9px 20px;
  background: #e5d0b5;
  width: 74px;
  margin-left: auto;
  margin-right: auto;
}
.c-part__title {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 170%;
  letter-spacing: 10%;
  padding: 15px 0;
  font-weight: normal;
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
}
.c-part__addr {
  font-size: 1.4rem;
  line-height: 170%;
  letter-spacing: 10%;
  margin-bottom: 1em;
}
.c-part .u-mb-0 + ul {
  margin-top: 0;
}
.c-part__access {
  margin-left: 0;
  padding-left: 0;
  list-style-position: inside;
  font-size: 1.4rem;
}

.c-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-case-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-case {
  position: relative;
}
.c-case__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-case__link:hover + .c-case__pic img {
  opacity: 0.7;
}
.c-case__pic {
  position: relative;
  padding: 20px;
  border: 1px solid #444;
}
.c-case__pic-before {
  background: #444;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.c-case__pic-before::before {
  content: "BEFORE";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel",sans-serif;
  font-size: 16px;
  text-align: center;
  width: 45%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-case__pic-before::after {
  visibility: visible;
  opacity: 1;
  content: "";
  display: block;
  background: url(../img/angle-bottom-w.svg) center center no-repeat;
  background-size: contain;
  width: 29px;
  height: 15px;
  position: absolute;
  left: 22.5%;
  bottom: -7px;
  margin-left: -15px;
  z-index: 3;
}
.c-case__pic-before img {
  width: 55%;
  transition: .3s ease;
  height: 112px;
  object-fit: cover;
}
.c-case__pic-after {
  background: #444;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.c-case__pic-after::before {
  content: "AFTER";
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel",sans-serif;
  font-size: 16px;
  text-align: center;
  width: 45%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-case__pic-after img {
  width: 55%;
  transition: .3s ease;
  height: 112px;
  object-fit: cover;
}
.c-case__num {
  background: #be9874;
  display: inline-block;
  height: 32px;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -1px;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  padding-left: 20px;
  padding-right: 20px;
}
.c-case__num .u-big {
  font-size: 2.4rem;
}
.c-case__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.c-case__cat a {
  display: inline-block; 
  color: white;
  background: #444;
  padding: 3px 10px;
  text-decoration: none;
}
.c-case__title {
  margin-top: 0px;
  font-size: 1.6rem;
  line-height: 170%;
  letter-spacing: 15%;
  font-weight: normal;
}

.c-banners {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .c-banners {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

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

.c-banner {
  position: relative;
  background: rgba(230, 247, 249, 0.5);
  overflow: hidden;
  padding: 70px 0 70px;
}
@media (max-width: 767px) {
  .c-banner {
    padding: 15px 0 15px;
  }
}
.c-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.c-banner__grid a:hover img {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .c-banner__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
.c-banner__link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-banner__label {
  display: none;
}

.c-btn {
  position: relative;
  display: block;
  text-align: left;
  color: #fff;
  text-decoration: none;
  letter-spacing: 10%;
  line-height: 170%;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  padding: 11px 25px 11px 15px;
  background: #444444;
  margin: 30px auto;
  width: 350px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn {
    width: 100%;
  }
}
.c-btn .u-small {
  font-size: 1.4rem;
}
.c-btn:hover {
  text-decoration: none !important;
  background: #09acc1;
}
.c-btn:hover::after {
  right: 10px;
}
.c-btn--arrow::after {
  content: "";
  display: block;
  background: url(../img/arrow-w.svg) 0 0 no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -13px;
  transition: 0.3s ease;
}
.c-btn--access::after {
  content: "";
  display: block;
  background: url(../img/ic-access.svg) 0 0 no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -13px;
  transition: 0.3s ease;
}
.c-btn--contact::after {
  content: "";
  display: block;
  background: url(../img/ic-contact.svg) 0 0 no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -13px;
  transition: 0.3s ease;
}
.c-btn--blog::after {
  content: "";
  display: block;
  background: url(../img/ic-blog.svg) center center no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -13px;
  transition: 0.3s ease;
}
.c-btn--blog:hover::after {
  background: url(../img/ic-blog-w.svg) center center no-repeat;
  background-size: contain;
}
.c-btn--youtube::after {
  content: "";
  display: block;
  background: url(../img/ic-youtube.svg) center center no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -13px;
  transition: 0.3s ease;
}
.c-btn--youtube:hover::after {
  background: url(../img/ic-youtube-w.svg) center center no-repeat;
  background-size: contain;
}
.c-btn--white {
  background: #fff;
  border: 1px solid #444444;
  color: #444444;
}
.c-btn--white:hover {
  color: #fff;
}
.c-btn--small {
  box-shadow: none;
  border: none;
}
.c-btn--small::after {
  content: none;
}

.c-title-2 {
  font-weight: normal;
  text-align: center;
  color: #444444;
  font-size: 1.8rem;
  margin-bottom: 50px;
  line-height: 170%;
  letter-spacing: 15%;
  margin-top: 68px;
  margin-bottom: 50px;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 767px) {
  .c-title-2 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.c-title-2-caption {
  text-align: center;
}
.c-title-2-caption img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-title-2-caption img {
    width: calc(var(--w) * 0.5);
    height: auto;
  }
}

.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: #09acc1;
}

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

.c-special {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}
@media (max-width: 767px) {
  .c-special {
    height: 200px;
  }
}
.c-special__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.c-special__link:hover .c-special__content::after {
  background: url(../img/bullet-green.svg) 0 0 no-repeat;
  background-size: contain;
}
.c-special__link:hover .c-special__pic {
  transform: scale(1.05);
}
.c-special__pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 250px;
  transition: 0.3s ease;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-special__pic {
    height: 200px;
  }
}
.c-special__content {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  height: 250px;
  display: flex;
  padding-left: 25px;
  padding-bottom: 15px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-special__content {
    height: 200px;
  }
}
.c-special__content::after {
  content: "";
  display: block;
  position: absolute;
  right: 25px;
  bottom: 15px;
  background: url(../img/bullet.svg) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}
.c-special__tag {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 4%;
  background: #7ea140;
  padding: 4px 7px;
  position: relative;
  color: #fff;
  margin: 0 0 10px;
}
.c-special__title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 4%;
  position: relative;
  margin: 0 0 10px;
}
.c-special__text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 4%;
  position: relative;
  margin: 0;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.c-tab {
  opacity: 0;
  display: none;
}
.c-tab.is-active {
  opacity: 1;
  display: block;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
.c-tab-list {
  margin-bottom: 30px;
}

@media (max-width: 767px) {

}
.c-tab-list ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-tab-list ul li span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background: #444;
  display: block;
  padding: 30px 5px;
  text-decoration: none;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.c-tab-list ul li a {
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .c-tab-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-tab-list ul li span {
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}
.c-tab-list ul li span:hover {
  opacity: 0.7;
}
.c-tab-list ul li.is-active span {
  background: #09acc1;
  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: 23;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 205px;
}
@media (max-width: 767px) {
  .p-header {
    padding-left: 95px;
  }
}
.p-header__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
}
.p-header__mark:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-header__mark {
    width: 90px;
  }
}
.p-header__heading {
  width: 490px;
}
.p-header__title {
  margin: 0;
  margin-top: 15px;
  padding: 0;
  position: relative;
  transition: 0.3s ease;
  width: 490px;
  text-wrap: initial;
  font-weight: normal;
  font-size: 1.6rem;
}
.p-header__logo {
  margin: 0;
  margin-top: 30px;
  padding: 0;
  position: relative;
  transition: 0.3s ease;
  width: 430px;
  text-wrap: initial;
  font-weight: normal;
}
.p-header__logo a {
  text-decoration: none;
}
.p-header__logo img {
  width: 288px;
}
@media (max-width: 767px) {
  .p-header__title {
    font-size: 1rem;
    position: relative;
    top: -5px;
  }
  .p-header__logo img {
    width: 230px;
  }
}
.p-header__logo-caption {
  color: #444444;
  font-size: 1.2rem;
  letter-spacing: 8%;
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-header__logo-caption {
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 5px;
  }
}
.p-header__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 255px;
    margin-top: 5px;
  }
}
.p-header__notice {
  position: absolute;
  left: 205px;
  top: 95px;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  font-weight: normal;
  color: #09acc1;
  z-index: 23;
}
.p-header__notice:hover {
  color: #a57954;
}
@media (max-width: 767px) {
  .p-header__notice {
    font-size: 1.4rem;
    right: auto;
    left: 100px;
    top: 65px;
    width: calc(100vw - 80px);
  }
}
.p-header__info {
  position: relative;
  width: 420px;
  margin-top: 11px;
  margin-right: 30px;
}
.p-header__info-note {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 1.3rem;
  line-height: 1.2em;
}
.p-header__info-tag {
  border: 1px solid #444444;
  font-size: 1.1rem;
  letter-spacing: 5%;
  padding: 0 3px;
  margin-right: 5px;
  margin-left: 20px;
}
.p-header__info-notice {
  text-align: right;
  font-size: 1.1rem;
  letter-spacing: 8%;
  line-height: 170%;
}
@media (min-width: 768px) and (max-width: 1010px) {
  .p-header__info {
    display: none;
  }
}
.p-header__tel {
  display: block;
  color: #444444;
  font-size: 3.8rem;
  text-decoration: none;
  text-align: right;
  margin-bottom: 0;
  line-height: 1;
}
.p-header__tel img {
  display: inline-block;
  margin-right: 5px;
}
.p-header__tel:hover {
  opacity: 0.7;
}
.p-header__time {
  text-align: right;
  font-size: 1.4rem;
  color: #a57954;
  margin: 0;
}

.p-nav {
  position: relative;
  padding: 0;
  display: flex;
  height: 50px;
  padding-left: 20px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 767px) {
  .p-nav {
    padding-left: 0;
  }
}
.p-nav__logo {
  width: 122px;
  display: none;
}
@media (max-width: 767px) {
  .p-nav__logo {
    display: block;
    width: 90px;
    position: absolute;
    left: 0px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .p-nav.is-active {
    transform: translateX(0%);
  }
}
.p-nav__list {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  /* gap: clamp(15px, 5vw, 30px); */
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 990px) {
  .p-nav__list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .p-nav__list {
    display: block;
    margin-right: 0;
    border-top: 1px solid #444444;
  }
}
.p-nav__list > li {
  position: relative;
}
@media (max-width: 767px) {
  .p-nav__list > li {
    border-bottom: 1px solid #444444;
    margin: 0;
    padding: 0;
  }
}
.p-nav__list > li > a {
  color: #444444;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  transition: 0.3s ease;
  padding-top: 10px;
  padding-bottom: 8px;
  font-weight: normal;
  line-height: 170%;
  letter-spacing: 19%;
}
@media (max-width: 767px) {
  .p-nav__list > li > a {
    padding: 15px;
    text-align: left;
    font-size: 1.7rem;
  }
}
.p-nav__list > li > a:hover {
  color: #09acc1;
  text-decoration: none;
}
.p-nav__list > li > a:hover img {
  animation: poyopoyo 2s ease-out infinite;
  animation-delay: 0;
}
@media (max-width: 767px) {
  .p-nav__list > li > a:hover {
    color: #444444;
  }
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.p-nav__list > .has-child > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 3px;
  background: url(../img/angle.svg) center center no-repeat;
  background-size: contain;
  width: 100%;
  height: 6.5px;
}
@media (max-width: 767px) {
  .p-nav__list > .has-child > a::before {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 15px;
    top: 20px;
    background: url(../img/angle-bottom.svg) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
  }
  .p-nav__list > .has-child.is-toggle > a:before {
    background: url(../img/angle-top.svg) center center no-repeat;
    background-size: contain;
  }
}
.p-nav__child {
  position: absolute;
  left: 0%;
  top: 100%;
  background: #fff;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  width: 280px;
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .p-nav__child {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    opacity: 1;
    max-height: 100%;
    transform: translateY(0px);
    border: none;
  }
}
.p-nav__child li {
  border-bottom: 1px solid #aaa;
  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 #444444;
    border-bottom: none;
    padding-left: 30px;
  }
}
.p-nav__child li:last-child a:before {
  content: "└ ";
}
.p-nav__child li a {
  color: #444444;
  display: block;
  text-align: left;
  padding: 5px;
  position: relative;
  font-weight: normal;
  font-size: 1.5rem;
  text-decoration: none;
}
.p-nav__child li a::before {
  content: "├ ";
}
@media (max-width: 767px) {
  .p-nav__child li a {
    padding: 15px 25px;
  }
}
@media (min-width: 768px) {
  .p-nav__list > li:hover .p-nav__child {
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
    display: block;
  }
}
.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: #444444;
  color: #fff;
  opacity: 1;
}
.p-nav__tel {
  width: 310px;
  margin-right: 15px;
  background: #007da2;
  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: -13px;
}
.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 (min-width: 768px) and (max-width: 860px) {
  .p-nav__list > li > a {
    letter-spacing: normal;
  }
}
@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: 45px;
  height: 50px;
  border-radius: 100%;
  position: fixed;
  right: 5px;
  top: 17px;
  z-index: 99;
}
.p-nav__toggle span {
  background: #444444;
  width: 30px;
  height: 1px;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.3s ease;
}
.p-nav__toggle span:nth-child(2) {
  top: 10px;
}
.p-nav__toggle span:nth-child(3) {
  top: 20px;
}
.p-nav__toggle small {
  position: absolute;
  left: 0;
  top: 33px;
  text-align: center;
  color: #09acc1;
  font-size: 0.9rem;
  letter-spacing: 7%;
}
.p-nav__toggle.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.p-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.p-nav__toggle.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .p-nav {
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    overflow: scroll;
    height: 100vh;
    padding-top: 90px;
    box-sizing: border-box;
    padding-bottom: 80px;
    display: block;
    transition: 0.3s ease;
    transform: translate3d(100%, 0, 0);
  }
}

.l-nav.is-fixed {
  justify-content: space-between;
}
.l-nav.is-fixed .p-nav__logo {
  display: block;
  width: 50px;
  position: absolute;
  left: 0;
  top: 0;
}

.p-footer {
  position: relative;
}
.p-footer__fix {
  position: fixed;
  right: 0px;
  top: 50%;
  width: 110px;
  z-index: 50;
  margin-top: -174.5px;
}
@media (max-width: 767px) {
  .p-footer__fix {
    width: 100%;
    right: 0;
    bottom: 0;
    top: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
  }
}
.p-footer__fix a {
  margin-top: 8px;
  display: block;
  height: 110px;
  display: block;
  font-size: 1.3rem;
  color: #444444;
  background: #fff;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid #444444;
}
@media (max-width: 767px) {
  .p-footer__fix a {
    font-size: 1.3rem;
    height: 55px;
    margin: 0;
    border-radius: 0;
    border: none;
    border-right: 1px solid #444444;
    border-top: 1px solid #444444;
  }
}
.p-footer__fix a img {
  width: 22px;
  display: block;
  margin: 0 auto 5px;
}
.p-footer__fix a::before {
  content: "";
  display: block;
  background: url(../img/footer-fix-1.svg) center center no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
}
@media (max-width: 767px) {
  .p-footer__fix a::before {
    width: 20px;
    height: 20px;
  }
}
.p-footer__fix a:hover {
  background: #09acc1;
  color: #fff;
}
.p-footer__fix a:nth-child(2):hover::before {
  background: url(../img/footer-fix-1-active.svg) center center no-repeat;
  background-size: contain;
}
.p-footer__fix a:nth-child(3)::before {
  background: url(../img/footer-fix-2.svg) center center no-repeat;
  background-size: contain;
}
.p-footer__fix a:nth-child(3):hover::before {
  background: url(../img/footer-fix-2-active.svg) center center no-repeat;
  background-size: contain;
}

.p-footer__fix a:nth-child(1)::before {
  background: url(../img/common/footer_tel.svg) center center no-repeat;
  background-size: contain;
}
.p-footer__fix a:nth-child(1):hover::before {
  background: url(../img/common/footer_tel.svg) center center no-repeat;
  background-size: contain;
}

.p-footer__fix a:nth-child(4) {
  background: #444444;
  color: #fff;
}
.p-footer__fix a:nth-child(4):hover {
  background: #09acc1;
  color: #fff;
}
.p-footer__fix a:nth-child(4)::before {
  background: url(../img/footer-fix-3.svg) center center no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .p-footer__fix a {
    margin-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1560px) {
  .p-footer__fix {
    transform: scale(0.7);
    transform-origin: right center;
  }
}

.p-footer-top {
  position: relative;
  padding-top: 64px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .p-footer-top {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.p-footer-top .l-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-footer-top .l-content {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-footer-top__entry {
  flex: 1 1 390px;
}
.p-footer-top__entry:hover {
  opacity: 0.7;
}
.p-footer-top__nav {
  flex: 1;
}
@media (max-width: 767px) {
  .p-footer-top__nav {
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
.p-footer-top__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  padding: 0;
  margin: 0;
  gap: 60px;
}
@media (max-width: 767px) {
  .p-footer-top__list {
    display: block;
    border-top: 1px solid #444444;
  }
}
.p-footer-top__item-caption {
  color: #444444;
  font-size: 2rem;
  position: relative;
  border-bottom: 1px solid #60cddb;
  display: block;
  padding-bottom: 15px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .p-footer-top__item-caption {
    padding: 0;
    border: none;
  }
}
@media (min-width: 768px) {
  .p-footer-top__item-caption::before {
    content: "";
    background: url(../img/top/visual-link.svg) 0 0 no-repeat;
    background-size: contain;
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}
.p-footer-top__item > a,
.p-footer-top__item > span {
  color: #007da2;
  font-weight: 500;
  font-size: 2rem;
  text-decoration: none;
  line-height: 170%;
  letter-spacing: 15%;
  margin-bottom: 10px;
  display: block;
  position: relative;
}
.p-footer-top__item > a .u-en,
.p-footer-top__item > span .u-en {
  color: #50bfe0;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3%;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.p-footer-top__item > a:hover,
.p-footer-top__item > span:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-footer-top__item > a,
  .p-footer-top__item > span {
    font-size: 2rem;
    border-bottom: 1px solid #444444;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .p-footer-top__item > a::after,
  .p-footer-top__item > span::after {
    content: "";
    display: block;
    background: url(../img/angle-bottom.svg) 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.svg) 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;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-footer-top__sublist {
    display: none;
    margin: 0 !important;
  }
}
.p-footer-top__sublist li {
  margin-bottom: 10px;
  line-height: 2em;
  position: relative;
}
@media (max-width: 767px) {
  .p-footer-top__sublist li {
    border-bottom: 1px solid #444444;
    margin-bottom: 0;
  }
}
.p-footer-top__sublist li::before {
  content: "・";
  display: block;
  color: #60cddb;
  position: absolute;
  left: 0;
  top: 0px;
}
@media (max-width: 767px) {
  .p-footer-top__sublist li::before {
    content: none;
  }
}
.p-footer-top__sublist a {
  color: #444444;
  font-size: 1.5rem;
  text-decoration: none;
  padding-left: 15px;
  line-height: 220%;
  letter-spacing: 8%;
  display: block;
}
.p-footer-top__sublist a .u-small {
  font-size: 1.5rem;
}
.p-footer-top__sublist a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-footer-top__sublist a {
    font-size: 1.4rem;
    padding: 10px 35px;
    display: block;
  }
}
@media (max-width: 767px) {
  .p-footer-top__sublist {
    margin-bottom: 15px;
  }
}

.p-footer-bottom {
  position: relative;
  padding-top: 1px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: url(../img/footer-bg.jpg) center center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .p-footer-bottom {
    min-height: 300px;
  }
}
.p-footer-bottom__logo {
  margin-top: 100px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1em;
}
.p-footer-bottom__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo {
    margin-top: 50px;
    margin-bottom: 25px;
    max-width: 200px;
    text-align: center;
  }
}
.p-footer-bottom__logo-img {
  max-width: 291px;
  display: block;
  margin-left: auto;
  margin-bottom: 50px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo-img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.p-footer-bottom__logo a {
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: normal;
  color: #fff;
  line-height: 170%;
  letter-spacing: 8%;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo a {
    font-size: 1.3rem;
  }
}
.p-footer-bottom__copyright {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding-bottom: 100px;
  margin-top: 0;
  letter-spacing: 8%;
  line-height: 170%;
}
@media (max-width: 767px) {
  .p-footer-bottom__copyright {
    padding-bottom: 3em;
    font-size: 1rem;
  }
}

.p-footer-page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 90px;
  z-index: 10;
  transition: 0.3s ease;
}
.p-footer-page-top.is-hidden {
  display: none;
}
.p-footer-page-top.is-visible {
  display: block;
  animation: fadein ease 500ms 1;
}
@media (max-width: 767px) {
  .p-footer-page-top {
    bottom: 70px;
    width: 60px;
    right: 5px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-footer-fix {
  position: fixed;
  right: 15px;
  bottom: 150px;
  width: 140px;
  z-index: 10;
}
.p-footer-fix > a:nth-child(1) {
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 767px) {
  .p-footer-fix > a:nth-child(1) {
    background: url(../img/p-footer-fix-1-sp.svg) center center no-repeat;
    background-size: cover;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .p-footer-fix > a:nth-child(2) {
    background: url(../img/p-footer-fix-2-sp.svg) center center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .p-footer-fix {
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
  }
}
.p-footer-fix > a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-footer-fix > a {
    width: 50%;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-footer-fix > a > img {
    display: none;
  }
}

.p-page {
  position: relative;
}
@media (max-width: 767px) {
  .p-page {
    margin-top: -80px;
  }
}

.p-page-header {
  text-align: center;
  margin-bottom: 3rem;
  height: 600px;
  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 30px;
  padding-top: 100px;
}
.p-page-header--news {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-page-header {
    height: 300px;
    padding-top: 160px;
  }
}
.p-page-header__title {
  font-size: 5rem;
  font-weight: normal;
  position: relative;
  text-align: center;
  text-wrap: initial;
}
@media (max-width: 767px) {
  .p-page-header__title {
    font-size: 2.5rem;
  }
}
.p-page-header__title span {
  display: inline-block;
  word-break: keep-all;
  padding: 15px;
  text-shadow:
    white 2px 0px 2px,
    white -2px 0px 2px,
    white 0px -2px 2px,
    white -2px 0px 2px,
    white 2px 2px 2px,
    white -2px 2px 2px,
    white 2px -2px 2px,
    white -2px -2px 2px,
    white 1px 2px 2px,
    white -1px 2px 2px,
    white 1px -2px 2px,
    white -1px -2px 2px,
    white 2px 1px 2px,
    white -2px 1px 2px,
    white 2px -1px 2px,
    white -2px -1px 2px,
    white 1px 1px 2px,
    white -1px 1px 2px,
    white 1px -1px 2px,
    white -1px -1px 2px;
}
.p-page-header__caption {
  text-align: center;
  font-size: 2rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  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;
}
@media (max-width: 767px) {
  .p-page__content {
    padding-bottom: 50px;
  }
}

.u-font-feature-initial {
  font-feature-settings: initial;
}

.u-en {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.u-en-allura {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

.u-type {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

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

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

@media (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-tate {
  writing-mode: vertical-rl;
}

.u-small {
  font-size: 0.7em;
}

.u-big {
  font-size: 1.3em;
}

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

.u-bold {
  font-weight: bold;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pic-round {
  border-radius: 15px;
}

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

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

@media (max-width: 767px) {
  .u-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: #7ea140 !important;
}

.u-color-blue {
  color: #09acc1 !important;
}

.u-color-blue-sub {
  color: #007da2 !important;
}

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

.u-color-skyblue {
  color: #50bfe0 !important;
}

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

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

.u-color-brown {
  color: #a57954 !important;
}

.u-color-gray {
  color: #f2f5f6 !important;
}

.u-bleed-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-right {
    margin-right: 0;
    width: auto;
  }
}

.u-bleed-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-left {
    margin-left: 0;
    width: 100%;
  }
}

/*
BG
*/
.u-bg-skyblue {
  background: #50bfe0;
}

.u-bg-pink {
  background: #ff8da6;
}
.lyte-wrapper {
  width: 100% !important;
  border-radius: 5px;
  overflow: hidden;
}
.clinicBox div {
  width: 100% !important;
}
iframe {
  border-radius: 5px;
}