@charset "UTF-8";
body, html {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0px;
  margin-top: 0px;
  box-sizing: border-box;
  font-size: 65.5%;
  color: #6A6A6A;
}

.font-S {
  font-size: clamp(1.1rem, 1rem + 0.625vw, 1.5rem);
}

/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.font-M {
  font-size: clamp(1.5rem, 1.4rem + 0.625vw, 2rem);
}

/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-L {
  font-size: clamp(2.4rem, 2.4rem + 0.625vw, 3rem);
  letter-spacing: 4px;
}

.font-LL {
  font-size: clamp(3rem, 3rem + 0.625vw, 4rem);
}

.m-time {
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 99;
}
.m-time .time {
  width: 100%;
  padding: 10px;
  height: auto;
  border-radius: 20px;
}
.m-time .time #time-back {
  background-color: rgba(252, 123, 48, 0.7882352941);
}
.m-time .time #time-back th {
  color: white;
}
.m-time .time .medical-time {
  width: 95%;
}
.m-time .time .medical-times {
  width: 30% !important;
  color: #555555;
}
.m-time .time .medical-table th, .m-time .time .medical-table td {
  text-align: center;
  padding: 10px 5px;
  width: 30px;
  height: 30px;
}
.m-time .time .medical-table td {
  width: 30px;
  height: 30px;
  color: rgba(58, 58, 58, 0.726);
  font-weight: bold;
}

.first {
  position: relative;
  width: 100%;
  margin: 2% 0;
}
.first .back {
  width: 70%;
  max-width: 800px;
  min-width: 250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.first .back img {
  width: 320px;
  height: 150px;
}
.first .h {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  text-align: center;
  align-content: center;
  transform: translateY(-50%);
}
.first .h h2 {
  text-align: center;
  font-weight: 700;
  color: #ec9939;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.87);
  letter-spacing: 3px;
}

.top {
  width: 100%;
  background-image:url("img/top-back.png");
  background-position: top;
  background-size: cover;
  z-index: 99;
}
 header {
  width: 100%;
  position:fixed;
	 top:0;
	 left:0;
  z-index: 99;
  /*ハンバーガメニュー*/
}
 header .header-contener {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: rgba(106, 106, 106, 0);
}
  header .header-contener .logo {
  width: 20%;
  min-width: 200px;
  margin: auto;
}
header .header-contener .logo img {
  height: 100%;
}
header .header-contener .header-menu-contents {
  width: 60%;
  height: 100%;
  float: right;
}
header .header-contener .header-menu-contents nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-content: center;
  cursor: pointer;
  align-items: center;
}
header .header-contener .header-menu-contents nav a {
  display: block;
  display: flex;
  width: 25%;
  height: 80%;
  display: block;
  text-align: center;
  align-content: center;
  line-height: 50px;
  text-align: center;
  border-radius: 2px;
}
header .header-contener .header-menu-contents nav a img {
  width: 60px;
}
header .header-contener .header-menu-contents nav .tel {
  border-radius: 20px;
}
header .header-contener .header-menu-contents nav a:hover {
  background-color: rgb(248, 248, 248);
  transition: 0.6s;
}
header .hamburger-menu .menu-btn {
  position: fixed;
  top: 10px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  z-index: 60;
  background-color: rgba(255, 207, 162, 0.897);
}
header .hamburger-menu .menu-btn span,
header .hamburger-menu .menu-btn span:before,
header .hamburger-menu .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
 header .hamburger-menu .menu-btn span:before {
  bottom: 8px;
}
header .hamburger-menu .menu-btn span:after {
  top: 8px;
}
 header .hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
header .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
header .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
header .hamburger-menu #menu-btn-check {
  display: none;
}
header .hamburger-menu #menu-btn-check {
  display: none;
}
header .hamburger-menu .menu-content {
  padding: 5%;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 50;
  background-color: rgb(255, 255, 255);
  transition: all 0.5s; /*アニメーション設定*/
}
header .hamburger-menu .menu-content ul {
  padding: 70px 10px 0;
}
header .hamburger-menu .menu-content ul li {
  border-bottom: solid 1px #ffd4c0;
  list-style: none;
  width: 90%;
  font-size: 15px;
  box-sizing: border-box;
  color: #535353;
  text-decoration: none;
  padding: 5% 5%;
}
header .hamburger-menu .menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #484948;
  text-decoration: none;
  position: relative;
}
header .hamburger-menu .menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffe5e5;
  border-right: solid 2px #e1fce1;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
header .hamburger-menu .menu-content ul li p::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffd3be;
  border-right: solid 2px #ffdcb5;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
header .hamburger-menu #menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
.top .top-contener {
  width: 100%;
  padding-top:80px;
}
.top .top-contener .top-contents-1 {
  position: relative;
  margin: auto;
  padding: 2% 0;
  text-align: center;
}
.top .top-contener .top-contents-1 img {
  width: 100%;
  height: 100%;
}
.top .top-contener .top-contents-1 .cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.top .top-contener .top-contents-1 h1 {
  position: absolute;
  top: 25%;
  left: 40%;
  transform: rotate("-50% ,-50%");
  writing-mode: vertical-rl;
  text-align: center;
}
.top .top-contener .top-contents-1 h1 span {
  color: #D18598;
}
.top .top-contener .top-contents-2 {
  width: 90%;
  min-width: 200px;
  text-align: right;
  margin: auto;
}
.top .top-contener .top-contents-2 img {
  width: 30%;
  min-width: 300px;
  transform: translateY(-80%);
}


.news-contener {
  width: 100%;
  margin: auto;
}
.news-contener .news-contents {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
.news-contener .news-contents ul {
  width: 75%;
  padding: 5% 2%;
  background-color: #F25700;
  min-width: 360px;
}
.news-contener .news-contents ul .news-item {
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.news-contener .news-contents ul .news-item .news-h {
  text-align: center;
}
.news-contener .news-contents ul .news-item .news-h h2 {
  letter-spacing: 10px;
  position: relative;
  border-bottom: solid 2px #ffffff;
  padding-bottom: 15px;
}
.news-contener .news-contents ul li {
  width: 90%;
  margin: auto;
  padding: 15px 0;
  display: flex;
}
.news-contener .news-contents ul li h3 {
  width: 30%;
  color: white;
  line-height: 25px;
  text-align: center;
  border-right: 2px solid white;
}
.news-contener .news-contents ul li p {
  padding-left: 15px;
  color: white;
  align-items: flex-end;
  justify-content: flex-end;
}
.news-contener .news-back-img {
  width: 40%;
  transform: translatex(40%);
}
.news-contener .news-back-img img {
  width: 250px;
  height: auto;
  transform: translateY(-30%);
}

.schedule-contener {
  padding-bottom: 40px;
  margin: auto;
  display: flex;
  align-items: center;
}
.schedule-contener .schedule-contents {
  height: 50vh;
  background-color: #dfdfdf;
}

.news-h h2::before {
  content: "";
  position: absolute;
  bottom: -7.5px;
  right: -7.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
}

.clean {
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.658), rgba(255, 255, 255, 0.932)), url("img/3859116_m.jpg");
  background-position: center;
  background-size: cover;
}
.clean .clean-contener {
  width: 80%;
  margin: auto;
}
.clean h2 {
  color: grey;
  font-weight: 700;
  letter-spacing: 3px;
}
.clean h3 {
  text-align: center;
  color: rgb(122, 122, 122);
  font-weight: 700;
  padding-top: 15px;
  letter-spacing: 2px;
  box-shadow: 1px grey;
}

.about {
  width: 100%;
  padding: 2% 0;
  margin: auto;
}
.about .about-contener {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.about .about-contener .about-contents1 img {
  width: 100%;
}
.about .about-contener .about-item1 {
  width: 90%;
  margin-left: 10%;
  height: 100px;
  background-color: rgba(255, 145, 19, 0.6235294118);
  position: relative;
}
.about .about-contener .about-item1 .about-item1-h {
  width: 100%;
  position: absolute;
  left: -20%;
}
.about .about-contener .about-item1 .about-item1-h h3 {
  line-height: 4rem;
}
.about .about-contener .about-item1 .about-item1-h img {
  z-index: -1;
}
.about .about-contener .about-item2 {
  width: 90%;
  margin: auto;
}
.about .about-contener .about-item2 p {
  color: #3b3b3b;
  letter-spacing: 3px;
  line-height: 3rem;
}

.clinic-point {
  width: 100%;
  padding: 5% 0;
  margin: auto;
  background-color: rgba(253, 255, 231, 0.486);
}
.clinic-point .clinic-point-contents {
  width: 90%;
  margin: auto;
}
.clinic-point .clinic-point-contents img {
  width: 90%;
  min-width: 240px;
}
.clinic-point .clinic-point-contents h3 {
  color: #383838;
  line-height: 4rem;
}
.clinic-point .clinic-point-contents p {
  line-height: 3rem;
  color: rgb(61, 61, 61);
  font-weight: 600;
}

.for {
  width: 70%;
  max-width: 700px;
  min-width: 350px;
  margin: 10% auto;
}
.for img {
  width: 100%;
}

.medical {
  width: 100%;
  padding: 5% 0;
}
.medical .medical-second {
  width: 80%;
  min-width: 360px;
  margin: auto;
}
.medical .medical-item1 {
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  background-color: #ffffff;
}
.medical .medical-item1 img {
  width: 80px;
}

.slider-contener {
  width: 100%;
  padding: 15% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
.slider-contener img {
  width: 35%;
  height: 230px;
  padding: 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.QA-contener {
  padding: 5% 0;
}
.QA-contener h2 {
  text-align: center;
  padding: 3% 0;
}
.QA-contener ul {
  width: 90%;
  max-width: 900px;
  min-width: 350px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.QA-contener li {
  width: 90%;
  padding: 2%;
  margin-top: 30px;
  flex: auto;
  cursor: pointer;
}
.QA-contener li span {
  display: inline-block;
  float: right;
}
.A {
  display: none;
  margin-top: 20px;
  padding: 3%;
  background-color: #f1f1f1;
  border-top: 2px grey dashed;
  border-bottom: 2px grey dashed;
}
.QA-contener .active{
  display: block !important;
}

.QA-contener ul li:last-child {
  margin-bottom: 40px;
}


@media screen and (min-width: 769px) {
  .top-contents-1 {
    width: 70%;
    min-width: 900px;
    height: 80vh;
  }
  .top-contents-1 img {
    border-radius: 15px;
  }
  .clinic-point {
    background-image: url("img/Group 17.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .hamburger-menu {
    display: none;
  }
  .m-time {
    width: 45%;
  }
  .news-contents {
    width: 45%;
  }
  .about-contents1 {
    width: 65%;
  }
  .about-contents2 {
    width: 35%;
    min-width: 300px;
  }
	
.QA-contener {
  background: linear-gradient(90deg, rgba(238, 237, 237, 0.63), rgba(228, 228, 228, 0.699)), url("img/016181.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
	}
	  .schedule-contener {
    width: 85%;
    justify-content: space-around;
  }
  .schedule-contents {
    width: 45%;
    height: 50vh;
    background-color: #dfdfdf;
  }
}
@media screen and (max-width: 768px) {
  .top-contents-1 {
    width: 100%;
    height: 80vh;
  }
  .header-contener{
    display: none !important;
  }
  .hamburger-menu {
    display: block;
  }
  .news-contener {
    margin-top: -25px;
    flex-direction: column;
  }
  .news-contener .m-time {
    width: 90%;
  }
  .news-contents {
    width: 90%;
    margin-bottom: 15px;
  }
  .about-contener {
    flex-direction: column;
  }
  .about-contents1 {
    width: 80%;
  }
  .about-contents2 {
    width: 70%;
  }
  .clinic-point {
    background-image: url("img/Group 17-modaill.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .clinic-point-content li {
    text-align: center;
  }
  .clinic-point-content li {
    text-align: center;
  }
	 .schedule-contener {
    width: 95%;
    max-width: 500px;
    justify-content: center;
    flex-direction: column;
  }
  .schedule-contents {
    width: 100%;
    height: 50vh;
    background-color: #dfdfdf;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 555px) {
  .top-contents-1 {
    width: 100%;
    height: 60vh;
  }
  .medical-item1 {
    flex-direction: column;
  }
  .medical-item1 p {
    padding-top: 10px;
  }
  .about-contents1 {
    width: 100%;
  }
  .about-contents2 {
    width: 85%;
  }
  .about-item2 {
    padding: 1% 0;
  }
	.insta {
		margin:30px 0;
	}
}
@media screen and (min-width: 556px) {
  .about-item2 {
    padding: 10% 0;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.insta-contents {
  width: 100%;
  display: flex;
  margin: auto;
  padding: 5%;
  text-align: center;
}

.insta {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta h2 {
  padding-left: 15px;
}
.insta h2 span {
  color: rgb(210, 39, 216);
}

.insta_btn3 { /*ボタンの下地*/
  color: #FFF; /*文字・アイコン色*/
  border-radius: 14px; /*角丸に*/
  position: relative;
  display: block;
  height: 100px; /*高さ*/
  width: 100px; /*幅*/
  text-align: center; /*中身を中央寄せ*/
  padding-top: 12px; /*上側との余白*/
  box-sizing: border-box;
  font-size: 19px; /*文字のサイズ*/
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  text-decoration: none; /*下線は消す*/
}

.insta_btn3:before { /*グラデーション②*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*全体を覆う*/
  height: 100%; /*全体を覆う*/
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 2%;
  left: 0;
  z-index: 3;
  scale: 0.8;
}

.insta_btn3 .fa-instagram {
  font-size: 70px; /*アイコンサイズ*/
  position: relative;
  display: inline-block;
  transition: 0.5s;
}

.insta div {
  text-align: center;
  padding: 5%;
  font-size: 1.3rem;
}

footer {
  width: 100%;
  height: auto;
  padding: 3% 0;
  display: flex;
  align-items: center;
  justify-content: 	center;
  flex-wrap: wrap;
}
footer .acess-item {
  width: 40%;
  min-width: 350px;
  height: 100%;
  padding: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .acess-item iframe {
  width: 100%;
  height: 30vh;
}
footer .acess-item h3 {
  padding: 2%;
}
footer .acess2 {
  width: 60%;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .acess2 b {
  color: #ff90d1;
}
footer .acess2 img {
  width: 300px;
  text-align: center;
  padding: 2%;
}
footer .acess2 .footer-tel {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
footer .acess2 .footer-tel a {
  width: 100%;
  text-align: center;
  color: #696969;
  text-shadow: 1px 1px rgba(10, 10, 10, 0.295);
}
.Q,.clean, .clinic-point-item , .about-contents1  ,  .medical-item , .insta , .about-item1-h , .about-item2{
opacity:0;
}
/*# sourceMappingURL=kitao.css.map */