@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #FAF9F8;
  color: #444;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 2;
  min-width: 1100px;
}

a {
  text-decoration: none;
}

br.sp {
  display: none;
}

strong {
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s cubic-bezier(.16, .84, .44, 1);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.fade>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s, transform 1.2s cubic-bezier(.16, .84, .44, 1);
}

.fade.show>* {
  opacity: 1;
  transform: translateY(0);
}

.splash {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 2000;
}

.splash img {
  width: 220px;
  height: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.wrap {
  position: fixed;
  width: 100%;
}

.wrap.scroll {
  position: static;
}

.header .navi {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #76D6E2;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.header .navi.show {
  opacity: 1;
  visibility: visible;
}

.header .navi::before {
  content: '';
  background: #fff;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  transition: 1s;
}

.header .navi.show::before {
  transform: translate(-50%, -50%);
}

.header .navi ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .navi li {
  text-align: center;
  margin: 30px 0;
}

.header .navi a {
  display: inline-block;
  color: #444;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
}

.header .navi-btn {
  position: fixed;
  top: 2.5vw;
  right: 2.5vw;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 1001;
}

.header .navi-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #75CF79;
  transition: .3s;
  z-index: -1;
}

.header .navi-btn:hover span {
  transform: scale(1.1);
}

.header .navi-btn::before,
.header .navi-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  top: 47px;
  background: #fff;
  width: 40px;
  height: 1px;
  transition: .5s;
}

.header .navi-btn::after {
  top: 53px;
}

.header .navi-btn.x::before {
  top: 50px;
  transform: rotate(-25deg);
}

.header .navi-btn.x::after {
  top: 50px;
  transform: rotate(25deg);
}

.cover {
  background: url(../img/cover.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
  width: 100%;
}

.cover .logo {
  position: absolute;
  top: 4vw;
  left: 4vw;
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: .2em;
  text-align: left;
  text-shadow: 0 0 40px #6bafb8;
}

.cover .logo .kana {
  display: block;
  font-size: 110%;
  letter-spacing: .1em;
  transform: translateX(-.05em);
}

.cover .logo .en {
  display: block;
  color: #999;
  font-size: 12px;
  letter-spacing: .3em;
  position: absolute;
  top: 0;
  left: -2vw;
  transform: rotate(90deg);
  transform-origin: left bottom;
  width: 200px;
}

.cover .copy {
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 4vw;
  bottom: 4vw;
  font-size: 40px;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  text-align: left;
  text-shadow: 0 0 40px #5a9198;
}

.sec-title {
  font-size: 35px;
  letter-spacing: .1em;
  line-height: 1.75;
  margin: 300px auto 150px;
  padding-top: 50px;
  width: 92%;
  transform: translateX(-30px);
}

.sec-title span {
  display: block;
  transform: none;
}

.sec-title .en {
  color: #999;
  font-size: 12px;
  letter-spacing: .3em;
}

.concept {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.concept .copy {
  color: #8e7a62;
  display: inline-block;
  font-size: 40px;
  line-height: 1.5;
  border-bottom: 1px solid #8e7a62;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.concept .body p {
  line-height: 2.5;
  margin-top: 30px;
}

.concept .flower {
  position: absolute;
  bottom: 0;
  right: -5vw;
  width: 60%;
  z-index: -1;
}

.concept .flower img {
  width: 100%;
}

.medical .white,
.about .white {
  background: #fff;
  border-radius: 30px;
  width: 92%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 5vw;
}

.medical .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

.medical .figure {
  width: 40%;
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.medical .figure .page {
  position: absolute;
  top: 10vh;
  left: 2.5vw;
  font-size: 25px;
  z-index: 1;
}

.medical .figure .page .head {
  display: block;
  color: #999;
  font-size: 11px;
  letter-spacing: .2em;
}

.medical .figure .img {
  width: 100%;
  position: fixed;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}

.medical .figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: 1s;
  opacity: 0;
}

.medical .figure img.show {
  opacity: 1;
}

.medical .text {
  width: 55%;
}

.medical .item {
  margin: 40vh auto;
}

.medical .item .illust {
  display: none;
}

.medical .heading {
  color: #F7845E;
  font-size: 20px;
  letter-spacing: .1em;
}

.medical .heading .ha {
  color: #fff;
  background: url(../img/ha.svg) right center no-repeat;
  background-size: contain;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px;
  padding-bottom: .4em;
  font-size: 14px;
  letter-spacing: .1em;
  text-indent: .1em;
}

.medical .lead {
  font-size: 35px;
  margin-top: 30px;
  padding: 20px 0;
}

.medical .body {
  background: #FAF9F8;
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
  display: none;
}

.medical .body p {
  font-size: 15px;
  line-height: 2.2;
  text-align: justify;
  letter-spacing: .01em;
}

.medical .body p:nth-child(n+2) {
  margin-top: 30px;
}

.more {
  display: inline-block;
  cursor: pointer;
  position: relative;
  color: #F7845E;
  padding-bottom: 10px;
  border-bottom: 1px solid #F7845E;
  margin-top: 30px;
}

.more::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: #F7845E;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin: 0 10px 4px 0;
  transition: .3s;
}

.more::after {
  content: '＋';
  display: inline-block;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 15px;
  top: 15px;
  transform: translate(-50%, -50%);
  transition: .5s;
}

.more:hover::before {
  transform: scale(1.1);
}

.link::after {
  content: '→';
}

.more.x::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.supplement {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: #FAF9F8;
  padding: 20px;
  border-radius: 30px;
  text-align: left;
}

.supplement .info {
  display: flex;
  padding: 10px;
}

.supplement .head {
  width: 7em;
}

.supplement ul {
  flex: 1;
  list-style-type: none;
  overflow: hidden;
}

.supplement li {
  color: #999;
  position: relative;
  float: left;
  font-size: 15px;
  margin-right: 1.2em;
  padding-left: 1.2em;
}

.supplement li::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid #75CF79;
  border-bottom: 2px solid #75CF79;
  transform: rotate(-45deg);
}

.about .sec {
  margin: 0 auto;
  width: 92%;
  max-width: 1000px;
}

.staff .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.staff .profile {
  width: 48%;
}

.staff .profile img {
  border-radius: 30px;
  position: relative;
  z-index: -1;
  transform: scale(.8);
  transition: 1.5s;
}

.staff.show .profile:first-of-type img {
  transform: rotate(-3deg) scale(.9);
}

.staff.show .profile:last-of-type img {
  transform: rotate(3deg) scale(.9);
}

.staff .profile .header {
  font-size: 20px;
  letter-spacing: .1em;
  line-height: 1.2;
  margin-top: -70px;
}

.staff .profile .name {
  font-size: 30px;
  letter-spacing: .1em;
  line-height: 1.75;
}

.staff .profile .kana {
  display: block;
  color: #999;
  font-size: 11px;
  letter-spacing: .3em;
}

.staff .profile .body {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
  display: none;
}

.staff .profile .body p {
  font-size: 15px;
  line-height: 2.2;
  text-align: justify;
  letter-spacing: .01em;
}

.staff .profile .body p:nth-child(n+2) {
  margin-top: 30px;
}

.staff .dog {
  margin: 150px auto 0;
  width: 250px;
}

.calendar,
.hours {
  padding-top: 100px;
}

.gcal iframe {
  display: block;
}

.hours .heading {
  font-size: 20px;
  letter-spacing: .1em;
}

.hours table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 0;
  border-spacing: 0;
  margin-top: 30px;
}

.hours table th {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 2px;
}

.hours table th:first-of-type {
  width: 200px;
}

.hours table td {
  border: 1px solid #e1e1e1;
  text-align: center;
  padding: 10px 0;
}

.hours table .o {
  color: #75CF79;
  font-size: 20px;
  font-weight: 700;
}

.hours table .close {
  color: #999;
  font-size: 90%;
}

.hours .note {
  color: #999;
  font-size: 85%;
  margin-top: 15px;
}

.about .supplement {
  margin-top: 100px;
}

.access .map {
  width: 100%;
  padding-top: 56.25%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 50px;
}

.access .info {
  width: 48%;
}

.access .head,
.insta .head {
  display: block;
  color: #999;
  font-size: 11px;
  letter-spacing: .3em;
}

.access .info .tel,
.insta .id {
  font-size: 32px;
  letter-spacing: .1em;
}

.access .info .tel a,
.insta .id a {
  color: #444;
}

.about .more::before {
  background: #75CF79;
}

.insta .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.insta .photo {
  width: 33%;
}

.insta .photo img {
  border-radius: 30px;
  position: relative;
  z-index: -1;
  transform: scale(.8);
  transition: 1.5s;
  filter: contrast(0.7) brightness(1.3);
}

.insta.show .photo:first-of-type img,
.insta.show .photo:last-of-type img {
  transform: rotate(-3deg) scale(.9);
}

.insta.show .photo:nth-of-type(2) img {
  transform: rotate(3deg) scale(.9);
}

.about .more {
  color: #75CF79;
  border-bottom: 1px solid #75CF79;
}

.footer {
  background: #fff;
  text-align: center;
  position: relative;
  padding: 100px 0;
  width: 92%;
  margin: 300px auto 5vh;
  border-radius: 30px;
  position: relative;
}

.footer .pagetop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  z-index: 1;
  transition: .3s;
}

.footer .pagetop span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #76D6E2;
  transition: .3s;
  z-index: -1;
}

.footer .pagetop:hover span {
  transform: scale(1.1);
}

.footer .pagetop:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.footer .pagetop::after {
  content: '↑';
  display: inline-block;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer .navi ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.footer .navi li {
  float: left;
  margin: 0 25px;
}

.footer .navi a {
  display: inline-block;
  color: #444;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
}

.footer .navi-s {
  margin-top: 40px;
}

.footer .navi-s a {
  font-size: 13px;
  color: #999;
}

.footer .copyright {
  color: #999;
  font-size: 11px;
  letter-spacing: .2em;
  margin-top: 50px;
}







.page .cover {
  background: #fff;
  max-height: 340px;
}

.page .cover .logo {
  color: #999;
  text-shadow: none;
}

.page .sec-title {
  margin: 100px auto;
}

.page .footer .copyright {
  margin-top: 0;
}






@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    min-width: inherit;
  }

  br.sp {
    display: inline;
  }

  br.pc {
    display: none;
  }

  .splash img {
    width: 200px;
    height: 200px;
  }

  .wrap {
    text-align: center;
  }

  .header .navi-btn {
    top: 4vw;
    right: 4vw;
    width: 70px;
    height: 70px;
  }

  .header .navi-btn::before,
  .header .navi-btn::after {
    left: 20px;
    top: 32px;
    width: 30px;
  }

  .header .navi-btn::after {
    top: 38px;
  }

  .header .navi-btn.x::before {
    top: 35px;
  }

  .header .navi-btn.x::after {
    top: 35px;
  }

  .cover .logo {
    font-size: 30px;
    left: 8vw;
    top: 8vw;
  }

  .cover .logo .en {
    font-size: 11px;
    left: -5vw;
  }

  .cover .copy {
    font-size: 30px;
    left: 8vw;
    bottom: 8vw;
  }

  .sec-title {
    font-size: 24px;
    margin: 100px auto 50px;
    padding-top: 100px;
    transform: translateY(30px);
  }

  .concept .copy {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 0;
  }

  .concept .body p {
    line-height: 2.2;
  }

  .concept .body p:nth-child(n+2) {
    margin-top: 15px;
  }

  .concept .flower {
    position: static;
    width: 50vw;
    margin: 100px auto 0;
  }

  .medical .white,
  .about .white {
    width: 100%;
    padding-bottom: 8vw;
  }

  .medical .figure {
    display: none;
  }

  .medical .text {
    width: 100%;
  }

  .medical .item {
    margin: 12.5vh auto;
  }

  .medical .item .illust {
    display: block;
    width: 60%;
    margin: 0 auto;
  }

  .medical .heading {
    font-size: 17px;
    margin-top: 10px;
    transform: none;
  }

  .medical .lead {
    font-size: 24px;
    padding: 0;
    text-indent: .5em;
  }

  .medical .body {
    padding: 5%;
    margin-top: 30px;
    text-align: left;
  }

  .medical .body p {
    font-size: 14px;
    line-height: 2;
  }

  .supplement {
    width: 86%;
    padding: 3.5%;
  }

  .supplement .info {
    padding: 1.5%;
  }

  .supplement li {
    font-size: 13px;
  }

  .about .sec {
    width: 86%;
  }

  .about .title {
    font-size: 21px;
    width: 250px;
    height: 250px;
    border-radius: 125px;
  }

  .about .title img {
    width: 120px;
  }

  .staff .flex {
    display: block;
  }

  .staff .profile {
    width: 100%;
  }

  .staff .profile img {
    width: 70%;
    margin: 0 auto;
  }

  .staff .profile .header {
    font-size: 18px;
    margin-top: -20px;
  }

  .staff .profile .name {
    font-size: 24px;
  }

  .staff .profile:last-of-type {
    margin-top: 60px;
  }

  .staff .profile .body {
    padding: 5%;
    margin-top: 30px;
    text-align: left;
  }

  .staff .profile .body p {
    font-size: 14px;
    line-height: 2;
  }

  .staff .dog {
    margin: 60px auto 0;
    width: 150px;
  }

  .calendar,
  .hours {
    padding-top: 8vw;
  }

  .gcal iframe {
    height: 60vw;
    min-height: 300px;
  }

  .hours .heading {
    font-size: 18px;
  }

  .hours table th:first-of-type {
    width: 75px;
  }

  .hours table td {
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 0;
  }

  .hours table .o {
    font-size: 14px;
  }

  .about .supplement {
    margin-top: 50px;
  }

  .access .map {
    padding-top: 66.6%;
    min-height: 300px;
  }

  .access .flex {
    display: block;
  }

  .access .info {
    width: 100%;
  }

  .access .info:last-of-type {
    margin-top: 60px;
  }

  .access .info .tel,
  .insta .id {
    font-size: 24px;
    line-height: 1.5;
  }

  .footer {
    margin-top: 200px;
    padding: 60px 0 30px;
  }

  .footer .navi ul {
    width: 90%;
    text-align: center;
  }

  .footer .navi li {
    float: none;
    display: inline-block;
    margin: 10px 15px;
  }

  .footer .copyright {
    margin-bottom: 30px;
  }







  .page .cover {
    max-height: 250px;
  }

  .page .sec-title {
    margin: 100px auto;
    padding-top: 0;
  }

  .page .concept .body {
    text-align: left;
    font-size: 13px;
  }

}