@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0
}
input[type="submit"], input[type="text"], select, textarea, button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
ul, li {
  list-style: none;
}
body {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 18px;
  color: #333333;
}
#header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
section {
  line-height: 0;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-inner {
  display: flex;
  justify-content: space-between;
}
.h-logo {
  margin: 30px 0 0 50px;
  width: 30%;
}
.h-logo h1 {
  margin-bottom: 20px;
}
.h-contact {
  position: fixed;
  right: 131px;
  top: 20px;
}
.drawer {
  width: 300px;
  height: 100vh;
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transition: .5s;
  transition: .5s;
  background-color: #ffffff;
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0
}
.drawer__inner {
  padding-bottom: 100px
}
.drawer__top {
  width: 100%;
  height: 160px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--base);
  z-index: 1
}
.drawer__item {
  border-bottom: 1px solid #333333;
}
.drawer__item:first-of-type {
  border-top: 1px solid #333333;
}
.drawer__link {
  height: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: bold;
  letter-spacing: .06em;
  padding-right: 20px;
  padding-left: 20px;
  color: #333333;
}
.drawer__link_sub {
  padding-left: 40px
}
.drawer__button-wrapper {
  max-width: 260px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin: 30px auto 0
}
.is-drawer-active {
  overflow: hidden
}
@media(hover: hover)and (pointer: fine) {
  .drawer__link {
    -webkit-transition: background-color .4s, color .4s;
    transition: background-color .4s, color .4s
  }
  .drawer__link:hover, .drawer__link:focus {
    opacity: 0.8;
  }
}
.drawer-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 5
}
.is-drawer-active {
  height: 100%;
  overflow: hidden
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: .8;
  -webkit-transition: .3s;
  transition: .3s
}
.hamburger {
  width: 117px;
  height: 117px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 30;
  background-color: #0293cd;
  padding-bottom: clamp(.875rem, .4088263822rem + .9699321048vw, 1.5rem);
  position: fixed;
  right: 10px;
  top: 20px;
  border: none;
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: rgba(0, 0, 0, 0)
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(calc(clamp(0.5rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg);
  -ms-transform: translateY(calc(clamp(0.5rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg);
  transform: translateY(calc(clamp(0.5rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg);
  width: 120%;
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(clamp(0.5rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg);
  -ms-transform: translateY(clamp(0.5rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg);
  transform: translateY(clamp(0.5rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg)
}
.hamburger__line {
  width: clamp(1.650625rem, 1.3rem + 1.8031037827vw, 3rem);
  height: 3px;
  display: inline-block;
  position: absolute;
  top: calc(50% - clamp(.4375rem, .1111784675rem + .6789524733vw, .875rem));
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #ffffff;
}
.hamburger__line::before {
  content: "";
  width: 80%;
  height: 3px;
  display: inline-block;
  position: absolute;
  top: clamp(.5rem, .2202958293rem + .5819592629vw, .875rem);
  left: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-color: #ffffff;
}
.hamburger__line::after {
  content: "";
  width: 120%;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: clamp(.5rem, .2202958293rem + .5819592629vw, .875rem);
  left: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-color: #ffffff;
}
.hamburger__menu {
  color: #ffffff;
  font-size: clamp(20px, 2.1vw, 27px);
}
@media(hover: hover)and (pointer: fine) {
  .hamburger:hover {
    opacity: 0.9;
  }
}
.main {
  position: relative;
}
.main-btn {
  position: absolute;
  right: 1%;
  bottom: 15%;
}
.main-btn img {
  width: 15vw;
}
.consultation {
  background-image: url("../img/consultation-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 17 / 6;
  display: flex;
  align-items: flex-end;
}
.consultation-bunner {
  max-width: 925px;
  width: 70%;
  margin: 0 auto 5%;
  flex-wrap: nowrap;
  justify-content: center;
}
.consultation-tel {
  margin-right: 20px;
}
.case {
  margin: 100px 0;
}
.case-inner {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.feature {
  margin-bottom: 100px;
}
.swiper {
  max-width: 1220px;
  width: 90%;
  margin: 50px auto 0;
}
/* 前への矢印 */
.swiper-button-prev {
  left: -65px !important;
  top: 50% !important;
  color: #815D49 !important;
}
/* 次への矢印 */
.swiper-button-next {
  right: -65px !important;
  top: 50% !important;
  color: #815D49 !important;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev, .swiper-button-next {
  height: 76px !important;
  width: 76px !important;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after, .swiper-button-next::after {
  background-repeat: no-repeat !important;
  background-size: contain !important;
  content: "" !important;
  height: 76px !important;
  margin: auto !important;
  width: 76px !important;
}
.swiper-button-prev:after, .swiper-button-prev:after {
  background-image: url("../img/arrow-left.png");
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  background-image: url("../img/arrow-right.png");
}
.clinic-inner {
  max-width: 1630px;
  width: 90%;
  margin: 150px auto;
}
.clinic-left {
  width: 50%;
}
.clinic-right {
  width: 50%;
  text-align: center;
}
.clinic02 {
  margin: 50px 0;
}
.clinic-map {
  margin-top: 100px;
}
.accordion {
  margin-inline: auto;
  margin-top: 30px;
  max-width: 1550px;
  position: relative;
  width: 95%;
}
.accordion-container {
  margin: 125px 0;
}
.accordion-title {
  cursor: pointer;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
}
.accordion-title span {
  display: block;
  width: 74px;
  height: 74px;
  text-align: center;
  font-size: 66px;
  font-weight: normal;
  background-color: #0293cd;
  color: #ffffff;
  line-height: 1;
  margin-right: 30px;
}
.accordion-content {
  display: none;
  padding: 30px;
  background-color: #ffffff;
}
.accordion-content p {
  font-size: 20px;
  line-height: 2.5;
  text-align: left;
}
.accordion-item {
  margin-bottom: 20px;
}
.icon-q {
  position: absolute;
  left: 1%;
  bottom: -3%;
}
.accordion-item .accordion-title {
  background-color: #b1ebff;
}
/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 3px #0293c4;
  border-top: solid 3px #0293c4;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(-45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 25px;
}
.accordion-title.open::after {
  top: 23%;
  transform: rotate(135deg);
}
.inquiry {
  padding-bottom: 200px;
}
.inquiry-inner {
  max-width: 1050px;
  width: 95%;
  margin: 70px auto 0;
}
.inquiry-text {
  line-height: 2;
}
input[type="text"], textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 95%x;
  transition: 0.8s;
  border-radius: 0;
}
input[type="text"]:focus, textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
textarea[name="content"] {
  display: inline-block;
  max-width: 100%;
  height: 200px;
}
input::placeholder, textarea::placeholder {
  color: #ccc;
}
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.form-table {
  width: 100%;
  margin: 100px auto;
  border-collapse: collapse;
  line-height: 2;
  border: solid 1px #d7d7d7;
}
.form-table th, .form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}
.form-table th {
  background: #0293cd;
  color: #ffffff;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: 300px;
  vertical-align: top;
}
.form-table span {
  color: #ff0000;
  margin-left: 30px;
}
.inquiry-btn {
  text-align: center;
}
.inquiry-btn input {
  width: 250px;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  background-color: #0293cd;
  color: #ffffff;
  font-size: 21px;
}
.inquiry-btn input:hover {
  opacity: 0.8;
}
#footer {
  background-color: #f3fcff;
}
.footer-inner {
  max-width: 1350px;
  width: 90%;
  padding: 100px 0;
  margin: 0 auto;
}
.footer-inner .clinic-left {
  text-align: center;
}
#page_top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;
}
#page_top a {
  position: relative;
  display: block;
}
.map {
  height: 540px;
  line-height: 0;
}
.cpylight {
  background-color: #0293cd;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 1024px) {
  body {
    font-size: 18px;
  }
  .hamburger {
    width: 90px;
    height: 90px;
  }
  .h-tel {
    height: 90px;
  }
  .h-mail {
    height: 90px;
  }
  .h-contact {
    right: 104px;
  }
  .consultation-tel2 img {
    height: 110px;
  }
  .swiper-button-prev {
    left: -10px !important;
  }
  .swiper-button-next {
    right: -10px !important;
  }
  .clinic-left {
    width: 47%;
  }
}
@media (max-width: 820px) {
  .h-contact {
    right: auto;
    bottom: 0;
    top: auto;
    left: 5px;
  }
  .consultation-tel2 img {
    height: 80px;
  }
  .consultation-tel2 img {
    height: 110px;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 50px !important;
  }
  .accordion-title {
    font-size: 20px;
  }
  .form-table th, .form-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    box-sizing: border-box;
  }
  input[type="text"], textarea {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 425px) {
  body {
    font-size: 16px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .h-logo {
    margin: 10px 0 0 15px;
    width: 50%;
  }
  .h-logo h1 {
    margin-bottom: 10px;
  }
  .hamburger {
    width: 60px;
    height: 60px;
    top: 10px;
    padding-bottom: 0.5em;
  }
  .hamburger__menu {
    font-size: 16px;
  }
  .drawer__top {
    height: 80px;
  }
  .main-btn {
    bottom: 30%;
  }
  .main-btn img {
    width: 47vw;
  }
  .consultation {
    background-image: url("../img/sp/consultation-bg.jpg");
    aspect-ratio: 8 / 13;
  }
  .consultation-bunner {
    width: 95%;
    flex-wrap: wrap;
    margin-bottom: 18%;
  }
  .consultation-tel {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .consultation2 {
    aspect-ratio: 8 / 9;
  }
  .consultation-tel2 img {
    height: auto;
  }
  .h-tel {
    width: 61%;
    height: auto;
  }
  .h-mail {
    width: 37%;
    height: auto;
  }
  .js-scrollable img {
    max-width: 990px;
    margin: 30px;
  }
  .swiper-button-prev {
    top: 61% !important;
  }
  .swiper-button-next {
    top: 61% !important;
  }
  .greeting {
    margin-bottom: 100px;
  }
  .clinic-inner {
    margin: 50px auto 100px;
  }
  .clinic-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .clinic-right {
    width: 100%;
  }
  .accordion-container {
    margin-top: 50px;
  }
  .accordion-title {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    padding-right: 50px;
  }
  .accordion-title span {
    margin-right: 15px;
    padding: 0 10px;
    width: auto;
    font-size: 50px;
    line-height: 1.3;
  }
  .accordion-title::after {
    width: 20px;
    height: 20px;
  }
  .accordion-content p {
    font-size: 16px;
  }
  .form-table {
    margin: 50px auto;
  }
  .inquiry {
    padding-bottom: 100px;
  }
  #page_top {
    right: 15px;
    bottom: 100px;
  }
  #footer {
    margin-bottom: 80px;
  }
}
@media (max-width: 320px) {
  #footer {
    margin-bottom: 66px;
  }
}