@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

img{max-width: 100%;height: auto;}

.common-width {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  display: block;
}

#wrap {
  overflow: hidden;
}

.common-ma {
  padding: 120px 0 0 0;
}

.page-header-left {
  position: relative;
  padding-left: 68px;
}

.page-header-left::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  margin: auto;
  width: 56px;
  height: 59px;
}

.page-header-left h2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.page-header-left h2 span {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #996CC1;
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: 500;
}

.page-header-center h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}

.page-header-center h2 span {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #996CC1;
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.page-sub-title {
  position: relative;
}

.page-sub-title::before {
  content: "";
  background: #996CC1;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.page-sub-title::after {
  content: "";
  background: #996CC1;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.page-sub-title h3 {
  font-size: 2.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background: #fff;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  display: table;
  margin: 0 auto;
}

.icon-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  color: #804BAF;
  padding-left: 26px;
}

.icon-title::before {
  content: "";
  background: url(../images/icon-title.svg) no-repeat;
  background-size: contain;
  width: 19px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
}

.btn {
  background: #A3C902;
  border-radius: 50px;
  width: 340px;
  color: #fff !important;
  display: block;
  margin: 24px auto 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 12px 0;
  position: relative;
  transition: all ease 0.5s;
}

.btn:hover {
  background: #88A800;
}

.btn::after {
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 6px;
  height: 11px;
  margin: auto;
}

/*---スクロール時遅れて表示、順番に表示---*/
.fadein {
  opacity: 0;
  transition: all 1.3s;
  transform: translate(0, 45px);
}

.fadein2 {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---TOP遅れて表示---*/
.post {
  opacity: 0;
}

.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px !important;
}

.headline {
  animation: SlideIn 1.5s;
  animation-timing-function: ease;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 1; /*初期状態では透明に*/
    transform: translateX(45px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 404 */
.title-404 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  margin: 200px auto 24px auto;
}

.txt-404 {
  width: 90%;
  margin: 0 auto 80px auto;
  font-size: 1.6rem;
  text-align: center;
}

#global-header {
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 998;
  bottom: 0;
}

#global-header #global-navi {
  background: #BA93DD;
  width: 100%;
}

#global-header #global-navi .main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

#global-header #global-navi .main-menu .g-menu__item {
  display: block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  transition: all ease 0.3s;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 52px;
}

#global-header #global-navi .main-menu .g-menu__item:last-child {
  margin-right: 0;
}

#global-header #global-navi .main-menu .g-menu__item:nth-child(7) {
  margin-right: 24px;
}

#global-header #global-navi .main-menu .g-menu__item:hover a {
  color: #8959B4;
}

#global-header #global-navi .main-menu .g-menu__item a {
  font-size: 1.7rem;
  line-height: 1.2;
  padding: 16px 0;
  color: #fff;
  display: block;
  transition: all ease 0.5s;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メイン部分 */
.g-menu {
  display: flex;
}

.g-menu__item {
  position: relative;
}

.g-menu__item:hover {
  color: #D792BD;
}

.g-menu__item a:hover {
  color: #D792BD;
}

.g-menu__link {
  display: block;
  padding: 50px 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.g-menu__link:hover {
  color: #D792BD;
}

.g-menu__dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -231px;
  left: -265px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.g-menu__dropdown-menu::after {
  content: "";
  background: url(../images/d-menu-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -13px;
  width: 24px;
  height: 14px;
  left: 0;
  right: 0;
  margin: auto;
}

.g-menu__dropdown-menu-item {
  width: 100%;
}
.g-menu__dropdown-menu-item:nth-child(-n+5) {
  width: 25%;
}
.g-menu__dropdown-menu-item:nth-child(n+5) {
  width: 20%;
}

.g-menu__dropdown-menu-item:nth-child(1) a::before {
  background: url(../images/icon-mushiba.svg) no-repeat;
  background-size: contain;
}

.g-menu__dropdown-menu-item:nth-child(2) a::before {
  background: url(../images/icon-shishubyou.svg) no-repeat;
  background-size: contain;
}

.g-menu__dropdown-menu-item:nth-child(3) a::before {
  background: url(../images/icon-shounika.svg) no-repeat;
  background-size: contain;
}

.g-menu__dropdown-menu-item:nth-child(4) a::before {
  background: url(../images/icon-inpuranto.svg) no-repeat;
  background-size: contain;
}

.g-menu__dropdown-menu-item:nth-child(5) a::before {
  background: url(../images/icon-shinbishika.svg) no-repeat;
  background-size: contain;
}

.g-menu__dropdown-menu-item:nth-child(6) a::before {
  background: url(../images/icon-yoboushika.svg) no-repeat;
  background-size: contain;
  width: 43px;
}

.g-menu__dropdown-menu-item:nth-child(7) a::before {
  background: url(../images/icon-teikikenshin.svg) no-repeat;
  background-size: contain;
  width: 43px;
}

.g-menu__dropdown-menu-item:nth-child(8) a::before {
  background: url(../images/icon-kyousei.svg) no-repeat;
  background-size: contain;
  width: 31px;
}

.g-menu__dropdown-menu-item:nth-child(9) a::before {
  background: url(../images/icon-mausugird.svg) no-repeat;
  background-size: contain;
  width: 43px;
}

.g-menu__dropdown-menu-item a {
  padding: 60px 0 12px 0 !important;
  text-align: center;
  position: relative;
  color: #313131 !important;
  height: 39px;
}

.g-menu__dropdown-menu-item a::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 31px;
  display: block;
  height: 35px;
  left: 0;
  right: 0;
  margin: auto;
}

.g-menu__dropdown-menu-item a:hover {
  color: #8959B4 !important;
}

.g-menu__dropdown-menu-item:last-child {
  border-width: 0;
}

.g-menu__dropdown-menu-link {
  display: block;
  padding: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  border: 1px solid #EAD9F9 !important;
}

.g-menu__item:hover .g-menu__link {
  color: #D792BD;
  transition: all ease 0.5s;
}

.g-menu__item:hover .g-menu__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transition: all ease 0.5s;
  width: 600px;
}

#sp-global-header {
  display: none;
}

.key-wrap {
  position: relative;
}

.key-wrap #key-visual {
  height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100 - 50px);
  width: 100%;
  position: relative;
}

.key-wrap #key-visual .slide {
  position: relative;
  height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100 - 50px);
}

.key-wrap #key-visual .slide .top-inner {
  height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100 - 50px);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.key-wrap #key-visual .slide .top-inner img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.key-wrap #key-visual .slide .top-inner .sp {
  display: none;
}

.key-wrap #key-visual .slide .top-inner .key-txt {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 146px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.key-wrap #key-visual .slide .top-inner .key-txt h1 {
  font-size: 4.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
  position: relative;
}

.key-wrap #key-visual .slide .top-inner .key-txt h1::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -70px;
  width: 65px;
  height: 76px;
}

.key-wrap #key-visual .slide .top-inner .key-txt h1 span {
  font-size: 5.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.key-wrap #key-visual .slide .top-inner .key-txt p {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(186, 147, 221, 0.5);
  padding: 16px 24px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 16px auto 0 auto;
  font-weight: 500;
  letter-spacing: 0.3rem;
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 96px;
  padding: 12px 24px;
  background: #fff;
  border-radius: 0 0 25px 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 999;
}

.logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-top {
  position: fixed;
  bottom: 0px;
  right: 2vw;
  z-index: 999;
  width: 51px;
  height: 50px;
  display: block;
  transition: all ease 0.5s;
}

.page-top:hover {
  opacity: 0.5;
}

.page-top img {
  width: 100%;
}

#subkey-visual {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100); /* 変数をサポートしていないブラウザのフォールバック */
}

#subkey-visual .subkey-top {
  height: 334px;
  background-color: #FBF6FF;
  background-image: url(../images/sub-bg.png);
  background-repeat: repeat;
  display: grid;
  place-items: center;
  position: relative;
}

#subkey-visual .subkey-top .sub-title h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

#subkey-visual .subkey-top .sub-title h1 span {
  font-size: 6.2rem;
  color: #996CC1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

#subkey-visual .subkey-top .sub-title p {
  font-size: 1.5rem;
  text-align: center;
  color: #7D7D7D;
  margin-top: 32px;
}

#subkey-visual .subkey-top .pankuzu {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
}

#subkey-visual .subkey-top .pankuzu li {
  margin-right: 48px;
  position: relative;
}

#subkey-visual .subkey-top .pankuzu li:last-child::after {
  display: none;
}

#subkey-visual .subkey-top .pankuzu li::after {
  content: ">";
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -24px;
}

#subkey-visual .subkey-top .pankuzu li a {
  font-size: 1.5rem;
  transition: all ease 0.5s;
  font-weight: 500;
}

#subkey-visual .subkey-top .pankuzu li a:hover {
  color: #804BAF;
}

#subkey-visual .subkey-img-list {
  height: calc(var(--vh, 1vh) * 100 - 334px);
  display: flex;
}

#subkey-visual .subkey-img-list .subkey-img {
  width: 50%;
}

#subkey-visual .subkey-img-list .subkey-img img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#subkey-visual .subkey-img-list .subkey-img .recruit-topimg {
  -o-object-position: 72%;
  object-position: 72%;
}

#top-contents .news {
  display: flex;
  justify-content: space-between;
}

#top-contents .news .news-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

#top-contents .news .news-list {
  width: 60%;
}

#top-contents .news .news-list li:last-child {
  border-bottom: dashed 1px #BA93DD;
}

#top-contents .news .news-list li a {
  padding: 16px 24px;
  border-top: dashed 1px #BA93DD;
  display: flex;
  align-items: center;
}

#top-contents .news .news-list li a:hover h3 {
  color: #996CC1;
}

#top-contents .news .news-list li a time {
  font-size: 1.4rem;
  width: 110px;
}

#top-contents .news .news-list li a h3 {
  font-size: 1.6rem;
  width: calc(100% - 110px);
  transition: all ease 0.5s;
}

#top-contents .about {
  background: #FBF6FF;
  padding: 80px 0;
  position: relative;
  margin-top: 120px;
}

#top-contents .about::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  bottom: -20px;
  left: -5vw;
  width: 467px;
  height: 513px;
}

#top-contents .about .about-inner .about-txt {
  width: 60%;
  margin-top: 24px;
}

#top-contents .about .about-inner .about-txt h3 {
  font-size: 2.7rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: 40px 0;
}

#top-contents .about .about-inner .about-txt p {
  font-size: 1.8rem;
  line-height: 2;
}

#top-contents .about .about-inner .about-txt .btn-list {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

#top-contents .about .about-inner .about-txt .btn-list li {
  width: 47%;
}

#top-contents .about .about-inner .about-txt .btn-list li a {
  width: 100%;
  display: block;
}

#top-contents .about .about-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35vw;
  height: 68%;
}

#top-contents .about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 194px 0 0 0;
}

#top-contents .feature .feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 80px;
}

#top-contents .feature .feature-list .feature-box {
  padding: 16px;
  border-radius: 8px;
  position: relative;
}

#top-contents .feature .feature-list .feature-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -37px;
  width: 64px;
  height: 64px;
  margin: auto;
}

#top-contents .feature .feature-list .feature-box:nth-child(odd) {
  background: #F7EFFF;
}

#top-contents .feature .feature-list .feature-box:nth-child(even) {
  background: #F3E6FF;
}

#top-contents .feature .feature-list .feature-box:nth-child(1)::before {
  background: url(../images/feature-icon01.svg) no-repeat;
  background-size: contain;
}

#top-contents .feature .feature-list .feature-box:nth-child(2)::before {
  background: url(../images/feature-icon02.svg) no-repeat;
  background-size: contain;
}

#top-contents .feature .feature-list .feature-box:nth-child(3)::before {
  background: url(../images/feature-icon03.svg) no-repeat;
  background-size: contain;
}

#top-contents .feature .feature-list .feature-box:nth-child(4)::before {
  background: url(../images/feature-icon04.svg) no-repeat;
  background-size: contain;
}

#top-contents .feature .feature-list .feature-box h3 {
  font-size: 2.1rem;
  text-align: center;
  color: #8959B4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: 24px 0 12px 0;
}

#top-contents .feature .feature-list .feature-box .feature-img img {
  width: 100%;
}

#top-contents .feature .feature-list .feature-box p {
  font-size: 1.5rem;
  margin-top: 12px;
}

#top-contents .treatment {
  background: url(../images/treatment-bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0;
  margin-top: 120px;
}

#top-contents .treatment .treatment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 80px 0;
}

#top-contents .treatment .treatment-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 100px 0;
}

#top-contents .treatment .treatment-list .treatment-box, #top-contents .treatment .treatment-list2 .treatment-box {
  position: relative;
  width: 18%;
  margin: 8px;
}

#top-contents .treatment .treatment-list .treatment-box::before, #top-contents .treatment .treatment-list2 .treatment-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  margin: auto;
  width: 49px;
  height: 55px;
  z-index: 1;
  pointer-events: none;
}

#top-contents .treatment .treatment-list .treatment-box:nth-child(1)::before {
  background: url(../images/icon-mushiba.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list .treatment-box:nth-child(2)::before {
  background: url(../images/icon-shishubyou.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list .treatment-box:nth-child(3)::before {
  background: url(../images/icon-shounika.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list .treatment-box:nth-child(4)::before {
  background: url(../images/icon-inpuranto.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list2 .treatment-box:nth-child(1)::before {
  background: url(../images/icon-shinbishika.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list2 .treatment-box:nth-child(2)::before {
  background: url(../images/icon-yoboushika.svg) no-repeat;
  background-size: contain;
  width: 60px;
}

#top-contents .treatment .treatment-list2 .treatment-box:nth-child(3)::before {
  background: url(../images/icon-teikikenshin.svg) no-repeat;
  background-size: contain;
}

#top-contents .treatment .treatment-list2 .treatment-box:nth-child(4)::before {
  background: url(../images/icon-kyousei.svg) no-repeat;
  background-size: contain;
  width: 60px;
}

#top-contents .treatment .treatment-list2 .treatment-box:nth-child(5)::before {
  background: url(../images/icon-mausugird.svg) no-repeat;
  background-size: contain;
  width: 60px;
}

#top-contents .treatment .treatment-list .treatment-box a, #top-contents .treatment .treatment-list2 .treatment-box a {
  background: url(../images/treatment-itembg.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  padding: 65% 0 0 0;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
  transition: all ease 0.5s;
}

#top-contents .treatment .treatment-list .treatment-box a:hover, #top-contents .treatment .treatment-list2 .treatment-box a:hover {
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.2));
}

#top-contents .treatment .treatment-list .treatment-box a h3, #top-contents .treatment .treatment-list2 .treatment-box a h3 {
  font-size: 2rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

#top-contents .recruit .banner-area {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

#top-contents .recruit .banner-area .banner-box {
  overflow: hidden;
  border: 2px solid #BA93DD;
  border-radius: 8px;
  position: relative;
}

#top-contents .recruit .banner-area .banner-box a {
  display: block;
  height: 250px;
  transition: all ease 0.5s;
}

#top-contents .recruit .banner-area .banner-box a:hover {
  transform: scale(1.2);
}

#top-contents .recruit .banner-area .banner-box h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  width: 270px;
  font-size: 2.4rem;
  text-align: center;
  background: url(../images/banner-titlebg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  padding: 6px 0 18px 0;
  left: 0;
  bottom: 16px;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

#top-contents .recruit .banner-area .banner-box h3 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  color: #996CC1;
  line-height: 1;
}

#top-contents .recruit .banner-area .banner-staff a {
  background: url(../images/banner-staffbg.jpg) no-repeat;
  background-size: cover;
}

#top-contents .recruit .banner-area .banner-recruit a {
  background: url(../images/banner-recruitbg.jpg) no-repeat center;
  background-size: cover;
}

#top-contents .recruit .instagram-area {
  display: flex;
  justify-content: space-between;
  background: #FBF6FF;
  border-radius: 8px;
  padding: 16px 16px 16px 0;
  margin-top: 40px;
}

#top-contents .recruit .instagram-area .insta-title {
  position: relative;
  display: grid;
  place-items: center;
  width: 25%;
}

#top-contents .recruit .instagram-area .insta-title h3 {
  font-size: 3.2rem;
  color: #996CC1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

#top-contents .recruit .instagram-area .insta-title .insta-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  border: 3px solid #BA93DD;
  border-radius: 50px;
  background: #fff;
  display: block;
  width: 80%;
  padding: 12px 0;
  line-height: 1;
}

#top-contents .recruit .instagram-area .insta-title .insta-btn::after {
  content: "";
  background: url(../images/insta-btn-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 6px;
  height: 11px;
  margin: auto;
}

#top-contents .recruit .instagram-area .insta-list {
  width: 75%;
  display: flex;
  justify-content: space-between;
}
#top-contents .recruit .instagram-area .insta-list img {
  width: 100%;
}

#top-contents .recruit .instagram-area .insta-list .sbi_photo {
  height: 250px;
}

#top-contents .infomation {
  background: #FBF6FF;
  padding: 80px 0;
  margin-top: 120px;
}

#top-contents .infomation .info-inner {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}

#top-contents .infomation .info-inner .info-left {
  width: 48%;
}

#top-contents .infomation .info-inner .info-left .info-list .info-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#top-contents .infomation .info-inner .info-left .info-list .info-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#top-contents .infomation .info-inner .info-left .info-list .info-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 500;
}

#top-contents .infomation .info-inner .info-left .info-list .info-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#top-contents .infomation .info-inner .info-left .info-img {
  margin-top: 16px;
  width: 100%;
}

#top-contents .infomation .info-inner .info-left .info-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#top-contents .infomation .info-inner .info-map {
  width: 48%;
}

#top-contents .infomation .info-inner .info-map iframe {
  width: 100%;
  height: 100%;
}

#information-contents .intro .intro-top {
  display: grid;
  place-items: center;
  padding: 120px 0 80px 0;
}

#information-contents .intro .intro-top .intro-top-txt {
  position: relative;
}

#information-contents .intro .intro-top .intro-top-txt::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  width: 285px;
  height: 307px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.15;
  z-index: -1;
}

#information-contents .intro .intro-top .intro-top-txt h2 {
  font-size: 3rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

#information-contents .intro .intro-top .intro-top-txt p {
  font-size: 1.6rem;
  width: 630px;
  margin: 32px auto 0 auto;
  line-height: 1.8;
}

#information-contents .intro .intro-img-list {
  display: flex;
  margin-top: 60px;
}

#information-contents .intro .intro-img-list .intro-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#information-contents .information {
  background: #F7EFFF;
  padding: 32px;
  margin-top: 60px;
}

#information-contents .information .information-inner {
  background: #fff;
  border-radius: 20px;
  padding: 40px 80px;
}

#information-contents .information .information-inner .info-list {
  margin-top: 32px;
}

#information-contents .information .information-inner .info-list .info-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#information-contents .information .information-inner .info-list .info-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#information-contents .information .information-inner .info-list .info-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 500;
}

#information-contents .information .information-inner .info-list .info-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#information-contents .information .information-inner .info-list .info-item dd .sub-info-list .sub-info-item {
  display: flex;
  align-items: center;
}

#information-contents .information .information-inner .info-list .info-item dd .sub-info-list .sub-info-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 12px 0 12px 0;
  font-weight: 500;
}

#information-contents .information .information-inner .info-list .info-item dd .sub-info-list .sub-info-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 12px 0;
}

#information-contents .information .information-inner .info-list .info-item dd .sub-info-list .sub-info-item dd .tyuui {
  color: #804BAF;
}

#information-contents .information .information-inner .staff {
  margin-top: 52px;
}

#information-contents .information .information-inner .staff .staff-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 24px;
  margin-top: 24px;
  padding: 0 32px;
}

#information-contents .information .information-inner .staff .staff-list .staff-box .staff-img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

#information-contents .information .information-inner .staff .staff-list .staff-box .staff-img img {
  width: 100%;
  border: 2px solid #BA93DD;
  border-radius: 50%;
}

#information-contents .information .information-inner .staff .staff-list .staff-box .staff-txt h4 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #996CC1;
  margin: 6px 0 2px 0;
}

#information-contents .information .information-inner .staff .staff-list .staff-box .staff-txt p {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
}

#information-contents .information .information-inner .yoyaku {
  margin-top: 52px;
}

#information-contents .information .information-inner .yoyaku p.yoyaku-txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 24px;
}

#information-contents .information .information-inner .yoyaku p.yoyaku-txt + p.yoyaku-txt {
  margin-top: 16px;
}

#information-contents .information .information-inner .yoyaku .yoyaku-area {
  border-radius: 8px;
  background-color: #F7EFFF;
  background-image: url(../images/sub-bg.png);
  background-repeat: repeat;
  padding: 32px 0 24px 0;
  margin-top: 40px;
}

#information-contents .information .information-inner .yoyaku .yoyaku-area p {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  text-align: center;
  color: #804BAF;
}

#information-contents .information .information-inner .yoyaku .yoyaku-area .tel-btn {
  background: #A3C902;
  border-radius: 50px;
  width: 294px;
  color: #fff !important;
  display: block;
  margin: 12px auto 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 12px 0 12px 24px;
  position: relative;
  transition: all ease 0.5s;
}

#information-contents .information .information-inner .yoyaku .yoyaku-area .tel-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto;
  background: url(../images/tel.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  left: 83px;
}

#information-contents .information .information-inner .yoyaku .yoyaku-area .tel-btn:hover {
  background: #88A800;
}

#information-contents .access-map .access-inner .access-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

#information-contents .access-map .access-inner .access-contents .access-list {
  width: 49%;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 500;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-img {
  width: 49%;
}

#information-contents .access-map .access-inner .access-contents .access-list .access-img img {
  width: 100%;
}

#information-contents .access-map .map {
  margin-top: 32px;
}

#information-contents .access-map .map iframe {
  width: 100%;
  height: 600px;
}

#information-contents .clinic-gallery {
  background: #FBF6FF;
  padding: 120px 0;
  margin-top: -5px;
}

#information-contents .clinic-gallery .gallery-inner .gallery-contets {
  padding: 80px 0 140px 0;
  position: relative;
}

#information-contents .clinic-gallery .gallery-inner .gallery-contets::before {
  content: "";
  background: url(../images/information/clinic-bg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 320px;
  height: 390px;
  z-index: 0;
}

#information-contents .clinic-gallery .gallery-inner .gallery-contets h3 {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
}

#information-contents .clinic-gallery .gallery-inner .gallery-contets p {
  font-size: 1.8rem;
  line-height: 1.8;
  width: 630px;
  margin: 24px auto 0 auto;
  position: relative;
  z-index: 1;
}

#information-contents .clinic-gallery .gallery-inner .gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 24px;
}

#information-contents .clinic-gallery .gallery-inner .gallery-list .gallery-box .gallery-img img {
  width: 100%;
  border-radius: 12px;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
}

#information-contents .clinic-gallery .gallery-inner .gallery-list .gallery-box h4 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

#concept-contents .intro {
  position: relative;
  width: 100%;
}

#concept-contents .intro::before {
  content: "";
  background: url(../images/concept/intro-img01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  margin: auto;
  width: 340px;
  height: 310px;
}

@media screen and (max-width: 1366px) {
  #concept-contents .intro::before {
    width: 270px;
    height: 240px;
    left: -32px;
  }
}
#concept-contents .intro::after {
  content: "";
  background: url(../images/concept/intro-img02.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  margin: auto;
  width: 340px;
  height: 310px;
}

@media screen and (max-width: 1366px) {
  #concept-contents .intro::after {
    width: 270px;
    height: 240px;
    right: -60px;
  }
}
#concept-contents .intro .intro-contents {
  position: relative;
  padding: 120px 0 180px 0;
}

#concept-contents .intro .intro-contents::after {
  content: "";
  background: url(../images/concept/intro-bg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 860px;
  height: 286px;
}

#concept-contents .intro .intro-contents h2 {
  font-size: 2.8rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

#concept-contents .intro .intro-contents p {
  font-size: 1.6rem;
  width: 600px;
  margin: 32px auto 0 auto;
  line-height: 1.8;
}

#concept-contents .medical {
  background: #FBF6FF;
  padding: 120px 0;
}

#concept-contents .medical .medical-inner .medical-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 24px;
}

#concept-contents .medical .medical-inner .medical-list .medical-box {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 60px 24px 24px 24px;
}

#concept-contents .medical .medical-inner .medical-list .medical-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

#concept-contents .medical .medical-inner .medical-list .medical-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .medical-list .medical-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .medical-list .medical-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .medical-list .medical-box:nth-child(4)::before {
  background: url(../images/count04.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .medical-list .medical-box h3 {
  font-size: 2.2rem;
  color: #8959B4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

#concept-contents .medical .medical-inner .medical-list .medical-box .medical-img {
  margin: 12px 0;
}

#concept-contents .medical .medical-inner .medical-list .medical-box .medical-img img {
  width: 100%;
}

#concept-contents .medical .medical-inner .medical-list .medical-box .medical-txt h4 {
  font-size: 1.6rem;
  font-weight: 500;
}

#concept-contents .medical .medical-inner .medical-list .medical-box .medical-txt p {
  font-size: 1.4rem;
  margin-top: 8px;
}

#concept-contents .medical .medical-inner .other {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-top: 60px;
}

#concept-contents .medical .medical-inner .other .tsurai .page-sub-title h3 br {
  display: none;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets {
  background: url(../images/concept/tsurai-bg.jpg) no-repeat right;
  background-size: cover;
  padding: 32px;
  position: relative;
  margin-top: 48px;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets::before {
  content: "＼こんなときは、治療中でも遠慮せず手を上げて合図してください／";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  margin: auto;
  color: #804BAF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list {
  width: 50%;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li {
  margin: 12px 0 12px 0;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 12px 0 12px 52px;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  width: 40px;
  height: 40px;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li:nth-child(1)::before {
  background: url(../images/concept/count01.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li:nth-child(2)::before {
  background: url(../images/concept/count02.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li:nth-child(3)::before {
  background: url(../images/concept/count03.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-contnets .tsurai-list li:nth-child(4)::before {
  background: url(../images/concept/count04.svg) no-repeat;
  background-size: contain;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-tyuui {
  background: #F8F8F8;
  border-radius: 8px;
  border: 1px solid #BA93DD;
  padding: 24px;
  margin-top: 24px;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-tyuui p {
  font-size: 1.4rem;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-tyuui p span {
  font-weight: bold;
  color: #804BAF;
  position: relative;
  z-index: 1;
}

#concept-contents .medical .medical-inner .other .tsurai .tsurai-tyuui p span::after {
  content: "";
  background: rgba(163, 201, 2, 0.4);
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}

#concept-contents .medical .medical-inner .other .point {
  margin-top: 40px;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box {
  margin-top: 24px;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-img {
  width: 38%;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-img img {
  width: 100%;
  border-radius: 8px;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-txt {
  width: 58%;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-txt h5 {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-txt p {
  font-size: 1.4rem;
  margin-top: 16px;
  line-height: 1.8;
}

#concept-contents .medical .medical-inner .other .point .point-list .point-box .point-contents .point-txt p span {
  color: #804BAF;
  font-weight: 700;
}

#staff-contents .message {
  display: flex;
  justify-content: space-between;
}

#staff-contents .message .message-img {
  width: 28%;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}

#staff-contents .message .message-img::before {
  content: "";
  background: url(../images/staff/staff-txt01.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 8px;
  right: -61px;
  width: 112px;
  height: 188px;
}

#staff-contents .message .message-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 14px 14px 0 rgba(186, 147, 221, 0.23);
}

#staff-contents .message .message-txt {
  width: 62%;
}

#staff-contents .message .message-txt h2 {
  font-size: 4rem;
  color: #996CC1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#staff-contents .message .message-txt h3 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: 24px 0 16px 0;
}

#staff-contents .message .message-txt .message-item-txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

#staff-contents .message .message-txt .message-item-txt + .message-item-txt {
  margin-top: 16px;
}

#staff-contents .message .message-txt .staff-detail {
  margin: 40px 0;
}

#staff-contents .message .message-txt .staff-detail .staff-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#staff-contents .message .message-txt .staff-detail .staff-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#staff-contents .message .message-txt .staff-detail .staff-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 700;
}

#staff-contents .message .message-txt .staff-detail .staff-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#staff-contents .staff-list {
  display: grid;
  gap: 52px 80px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 40px auto 120px;
}

#staff-contents .staff-list .staff-box:nth-child(1) .staff-img::before {
  background: url(../images/staff/staff-txt02.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(2) .staff-img::before {
  background: url(../images/staff/staff-txt03.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(3) .staff-img::before {
  background: url(../images/staff/staff-txt04.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(4) .staff-img::before {
  background: url(../images/staff/staff-txt07.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(5) .staff-img::before {
  background: url(../images/staff/staff-txt05.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(6) .staff-img::before {
  background: url(../images/staff/staff-txt06.svg) no-repeat;
  background-size: contain;
}

#staff-contents .staff-list .staff-box:nth-child(7) .staff-img::before {
  background: url(../images/staff/staff-txt08.svg) no-repeat;
  background-size: contain;
  right: -50px;
  width: 101px;
  height: 200px;
  bottom: 20px;
}
#staff-contents .staff-list .staff-box:nth-child(8) .staff-img::before {
  background: url(../images/staff/staff-txt09.svg) no-repeat;
  background-size: contain;
  right: -50px;
  width: 101px;
  height: 200px;
  bottom: 20px;
}

#staff-contents .staff-list .staff-box .staff-img {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}

#staff-contents .staff-list .staff-box .staff-img::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -35px;
  width: 73px;
  height: 158px;
}

#staff-contents .staff-list .staff-box .staff-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(186, 147, 221, 0.23);
}

#staff-contents .staff-list .staff-box .staff-detail {
  margin: 40px 0;
}

#staff-contents .staff-list .staff-box .staff-detail .staff-item {
  border-bottom: 1px dashed #BA93DD;
}

#staff-contents .staff-list .staff-box .staff-detail .staff-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#staff-contents .staff-list .staff-box .staff-detail .staff-item dt {
  width: 100%;
  font-size: 1.5rem;
  padding: 16px 0 0 0;
  font-weight: 700;
}

#staff-contents .staff-list .staff-box .staff-detail .staff-item dd {
  width: 100%;
  font-size: 1.4rem;
  padding: 0 0 16px 0;
}
#staff-contents .staff-list .staff-box .staff-detail .staff-item dd dl div {
  padding: 6px 0;
  display: flex;
}
#staff-contents .staff-list .staff-box .staff-detail .staff-item dd dl div dt {
  width: 80px;
}
#staff-contents .staff-list .staff-box .staff-detail .staff-item dd dl div dd {
  width: calc(100% - 80px);
}
#staff-contents .staff-list .staff-box .staff-detail .staff-item dd dl div dt, #staff-contents .staff-list .staff-box .staff-detail .staff-item dd dl div dd {
  font-size: 1.5rem;
  padding: 0;
  font-weight: normal;
}

#staff-contents .staff-bottom-img-area {
  display: flex;
}

#staff-contents .staff-bottom-img-area .staff-bottom-img {
  width: 33.3333333333%;
}

#staff-contents .staff-bottom-img-area .staff-bottom-img img {
  width: 100%;
}

#corporate-contents .intro .intro-top {
  display: grid;
  place-items: center;
  padding: 120px 0 80px 0;
}

#corporate-contents .intro .intro-top .intro-top-txt {
  position: relative;
}

#corporate-contents .intro .intro-top .intro-top-txt::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  width: 285px;
  height: 307px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.15;
  z-index: -1;
}

#corporate-contents .intro .intro-top .intro-top-txt h2 {
  font-size: 3rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

#corporate-contents .intro .intro-top .intro-top-txt p {
  font-size: 1.6rem;
  width: 630px;
  margin: 32px auto 0 auto;
  line-height: 1.8;
}

#corporate-contents .greeting {
  display: flex;
  justify-content: space-between;
}

#corporate-contents .greeting .greeting-img {
  width: 500px;
}

#corporate-contents .greeting .greeting-img img {
  width: 100%;
}

#corporate-contents .greeting .greeting-txt {
  width: calc(100% - 500px - 2%);
}

#corporate-contents .greeting .greeting-txt h2 {
  color: #996CC1;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}

#corporate-contents .greeting .greeting-txt .greeting-txt-item {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 1366px) {
  #corporate-contents .greeting .greeting-txt .greeting-txt-item br {
    display: none;
  }
}
#corporate-contents .greeting .greeting-txt .greeting-txt-item + .greeting-txt-item {
  margin-top: 16px;
}

#corporate-contents .greeting .greeting-txt .name {
  margin: 24px 0 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 1.7rem;
}

#corporate-contents .about {
  background: #FBF6FF;
  padding: 80px 0;
  position: relative;
  margin-top: 120px;
  overflow: hidden;
}

#corporate-contents .about::before {
  content: "";
  background: url(../images/corporate/about-bg-left.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 323px;
  height: 1571px;
}

#corporate-contents .about::after {
  content: "";
  background: url(../images/corporate/about-bg-right.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  width: 323px;
  height: 1571px;
}

#corporate-contents .about .about-img {
  width: 70%;
  max-width: 880px;
  margin: 24px auto 60px auto;
  position: relative;
  z-index: 1;
}

#corporate-contents .about .about-img img {
  width: 100%;
}

#corporate-contents .about .about-txt {
  background: #fff;
  padding: 24px 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

#corporate-contents .about .about-txt::before {
  content: "";
  background: url(../images/corporate/about-left-icon.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 58px;
  height: 58px;
}

#corporate-contents .about .about-txt::after {
  content: "";
  background: url(../images/corporate/about-icon-right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -24px;
  right: -24px;
  width: 58px;
  height: 58px;
}

#corporate-contents .about .about-txt h3 {
  font-size: 2.4rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#corporate-contents .about .about-txt p {
  font-size: 1.5rem;
  margin-top: 24px;
}

#corporate-contents .study .study-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

#corporate-contents .study .study-contents .study-box {
  border-radius: 28px;
  border: 1px solid #DFDFDF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  padding: 24px 16px;
  width: 49%;
}

#corporate-contents .study .study-contents .study-box h3 {
  text-align: center;
  font-size: 2.4rem;
  color: #996CC1;
  font-weight: 500;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#corporate-contents .study .study-contents .study-box .study-img {
  margin-top: 24px;
}

#corporate-contents .study .study-contents .study-box .study-img img {
  width: 100%;
}

#corporate-contents .study .study-contents .study-box .study-txt h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 12px 0;
}

#corporate-contents .study .study-contents .study-box .study-txt p {
  font-size: 1.4rem;
}

#corporate-contents .study .study-innai {
  border-radius: 28px;
  border: 1px solid #DFDFDF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  padding: 24px;
  margin-top: 24px;
}

#corporate-contents .study .study-innai .study-innai-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

#corporate-contents .study .study-innai .study-innai-contents .study-innai-img {
  width: 35%;
}

#corporate-contents .study .study-innai .study-innai-contents .study-innai-img img {
  width: 100%;
  border-radius: 8px;
}

#corporate-contents .study .study-innai .study-innai-contents .study-innai-txt {
  width: 60%;
}

#corporate-contents .study .study-innai .study-innai-contents .study-innai-txt h4 {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#corporate-contents .study .study-innai .study-innai-contents .study-innai-txt p {
  font-size: 1.4rem;
  margin-top: 16px;
}

#corporate-contents .info {
  background: #F7EFFF;
  border-radius: 16px;
  padding: 32px;
  margin: 120px auto;
}

#corporate-contents .info .info-inner {
  background: #fff;
  padding: 40px 100px;
}

#corporate-contents .info .info-inner .info-corporate .info-list, #corporate-contents .info .info-inner .history .info-list {
  margin: 40px 0;
}

#corporate-contents .info .info-inner .info-corporate .info-list .info-item, #corporate-contents .info .info-inner .history .info-list .info-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#corporate-contents .info .info-inner .info-corporate .info-list .info-item:first-child, #corporate-contents .info .info-inner .history .info-list .info-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#corporate-contents .info .info-inner .info-corporate .info-list .info-item dt, #corporate-contents .info .info-inner .history .info-list .info-item dt {
  width: 150px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 700;
}

#corporate-contents .info .info-inner .info-corporate .info-list .info-item dd, #corporate-contents .info .info-inner .history .info-list .info-item dd {
  width: calc(100% - 150px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#corporate-contents .info .info-inner .history {
  margin-top: 80px;
}

#treatment-contents .shika, #treatment-contents .shounika, #treatment-contents .implant, #treatment-contents .esthetic, #treatment-contents .yobou, #treatment-contents .ortho, #treatment-contents .sports {
  margin-bottom: 100px;
}

#treatment-contents .shika .shika-01, #treatment-contents .shika .shika-03, #treatment-contents .shika .shika-04, #treatment-contents .shounika .shika-01, #treatment-contents .shounika .shika-03, #treatment-contents .shounika .shika-04, #treatment-contents .implant .shika-01, #treatment-contents .implant .shika-03, #treatment-contents .implant .shika-04, #treatment-contents .esthetic .shika-01, #treatment-contents .esthetic .shika-03, #treatment-contents .esthetic .shika-04, #treatment-contents .yobou .shika-01, #treatment-contents .yobou .shika-03, #treatment-contents .yobou .shika-04, #treatment-contents .sports .shika-01, #treatment-contents .sports .shika-03, #treatment-contents .sports .shika-04 {
  margin-top: 60px;
}

#treatment-contents .shika .shika-01 .icon-title, #treatment-contents .shika .shika-03 .icon-title, #treatment-contents .shika .shika-04 .icon-title, #treatment-contents .shounika .shika-01 .icon-title, #treatment-contents .shounika .shika-03 .icon-title, #treatment-contents .shounika .shika-04 .icon-title, #treatment-contents .implant .shika-01 .icon-title, #treatment-contents .implant .shika-03 .icon-title, #treatment-contents .implant .shika-04 .icon-title, #treatment-contents .esthetic .shika-01 .icon-title, #treatment-contents .ortho .shika-01 .icon-title, #treatment-contents .esthetic .shika-03 .icon-title, #treatment-contents .esthetic .shika-04 .icon-title, #treatment-contents .yobou .shika-01 .icon-title, #treatment-contents .yobou .shika-03 .icon-title, #treatment-contents .yobou .shika-04 .icon-title, #treatment-contents .sports .shika-01 .icon-title, #treatment-contents .sports .shika-03 .icon-title, #treatment-contents .sports .shika-04 .icon-title {
  margin-top: 24px;
}

#treatment-contents .shika .shika-01 .shika-contents, #treatment-contents .shika .shika-03 .shika-contents, #treatment-contents .shika .shika-04 .shika-contents, #treatment-contents .shounika .shika-01 .shika-contents, #treatment-contents .shounika .shika-03 .shika-contents, #treatment-contents .shounika .shika-04 .shika-contents, #treatment-contents .implant .shika-01 .shika-contents, #treatment-contents .implant .shika-03 .shika-contents, #treatment-contents .implant .shika-04 .shika-contents, #treatment-contents .esthetic .shika-01 .shika-contents, #treatment-contents .ortho .shika-01 .shika-contents, #treatment-contents .esthetic .shika-03 .shika-contents, #treatment-contents .esthetic .shika-04 .shika-contents, #treatment-contents .yobou .shika-01 .shika-contents, #treatment-contents .yobou .shika-03 .shika-contents, #treatment-contents .yobou .shika-04 .shika-contents, #treatment-contents .sports .shika-01 .shika-contents, #treatment-contents .sports .shika-03 .shika-contents, #treatment-contents .sports .shika-04 .shika-contents {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 40px 0;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-img, #treatment-contents .shika .shika-03 .shika-contents .shika-img, #treatment-contents .shika .shika-04 .shika-contents .shika-img, #treatment-contents .shounika .shika-01 .shika-contents .shika-img, #treatment-contents .shounika .shika-03 .shika-contents .shika-img, #treatment-contents .shounika .shika-04 .shika-contents .shika-img, #treatment-contents .implant .shika-01 .shika-contents .shika-img, #treatment-contents .implant .shika-03 .shika-contents .shika-img, #treatment-contents .implant .shika-04 .shika-contents .shika-img, #treatment-contents .esthetic .shika-01 .shika-contents .shika-img, #treatment-contents .ortho .shika-01 .shika-contents .shika-img, #treatment-contents .esthetic .shika-03 .shika-contents .shika-img, #treatment-contents .esthetic .shika-04 .shika-contents .shika-img, #treatment-contents .yobou .shika-01 .shika-contents .shika-img, #treatment-contents .yobou .shika-03 .shika-contents .shika-img, #treatment-contents .yobou .shika-04 .shika-contents .shika-img, #treatment-contents .sports .shika-01 .shika-contents .shika-img, #treatment-contents .sports .shika-03 .shika-contents .shika-img, #treatment-contents .sports .shika-04 .shika-contents .shika-img {
  width: 30%;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-img img, #treatment-contents .shika .shika-03 .shika-contents .shika-img img, #treatment-contents .shika .shika-04 .shika-contents .shika-img img, #treatment-contents .shounika .shika-01 .shika-contents .shika-img img, #treatment-contents .shounika .shika-03 .shika-contents .shika-img img, #treatment-contents .shounika .shika-04 .shika-contents .shika-img img, #treatment-contents .implant .shika-01 .shika-contents .shika-img img, #treatment-contents .implant .shika-03 .shika-contents .shika-img img, #treatment-contents .implant .shika-04 .shika-contents .shika-img img, #treatment-contents .esthetic .shika-01 .shika-contents .shika-img img, #treatment-contents .ortho .shika-01 .shika-contents .shika-img img, #treatment-contents .esthetic .shika-03 .shika-contents .shika-img img, #treatment-contents .esthetic .shika-04 .shika-contents .shika-img img, #treatment-contents .yobou .shika-01 .shika-contents .shika-img img, #treatment-contents .yobou .shika-03 .shika-contents .shika-img img, #treatment-contents .yobou .shika-04 .shika-contents .shika-img img, #treatment-contents .sports .shika-01 .shika-contents .shika-img img, #treatment-contents .sports .shika-03 .shika-contents .shika-img img, #treatment-contents .sports .shika-04 .shika-contents .shika-img img {
  width: 100%;
  border-radius: 6px;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-img img + img, #treatment-contents .shika .shika-03 .shika-contents .shika-img img + img, #treatment-contents .shika .shika-04 .shika-contents .shika-img img + img, #treatment-contents .shounika .shika-01 .shika-contents .shika-img img + img, #treatment-contents .shounika .shika-03 .shika-contents .shika-img img + img, #treatment-contents .shounika .shika-04 .shika-contents .shika-img img + img, #treatment-contents .implant .shika-01 .shika-contents .shika-img img + img, #treatment-contents .implant .shika-03 .shika-contents .shika-img img + img, #treatment-contents .implant .shika-04 .shika-contents .shika-img img + img, #treatment-contents .esthetic .shika-01 .shika-contents .shika-img img + img,
#treatment-contents .ortho .shika-01 .shika-contents .shika-img img + img, #treatment-contents .esthetic .shika-03 .shika-contents .shika-img img + img, #treatment-contents .esthetic .shika-04 .shika-contents .shika-img img + img, #treatment-contents .yobou .shika-01 .shika-contents .shika-img img + img, #treatment-contents .yobou .shika-03 .shika-contents .shika-img img + img, #treatment-contents .yobou .shika-04 .shika-contents .shika-img img + img, #treatment-contents .sports .shika-01 .shika-contents .shika-img img + img, #treatment-contents .sports .shika-03 .shika-contents .shika-img img + img, #treatment-contents .sports .shika-04 .shika-contents .shika-img img + img {
  margin-top: 16px;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-txt, #treatment-contents .shika .shika-03 .shika-contents .shika-txt, #treatment-contents .shika .shika-04 .shika-contents .shika-txt, #treatment-contents .shounika .shika-01 .shika-contents .shika-txt, #treatment-contents .shounika .shika-03 .shika-contents .shika-txt, #treatment-contents .shounika .shika-04 .shika-contents .shika-txt, #treatment-contents .implant .shika-01 .shika-contents .shika-txt, #treatment-contents .implant .shika-03 .shika-contents .shika-txt, #treatment-contents .implant .shika-04 .shika-contents .shika-txt, #treatment-contents .esthetic .shika-01 .shika-contents .shika-txt, #treatment-contents .ortho .shika-01 .shika-contents .shika-txt, #treatment-contents .esthetic .shika-03 .shika-contents .shika-txt, #treatment-contents .esthetic .shika-04 .shika-contents .shika-txt, #treatment-contents .yobou .shika-01 .shika-contents .shika-txt, #treatment-contents .yobou .shika-03 .shika-contents .shika-txt, #treatment-contents .yobou .shika-04 .shika-contents .shika-txt, #treatment-contents .sports .shika-01 .shika-contents .shika-txt, #treatment-contents .sports .shika-03 .shika-contents .shika-txt, #treatment-contents .sports .shika-04 .shika-contents .shika-txt {
  width: 65%;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-txt h4, #treatment-contents .shika .shika-03 .shika-contents .shika-txt h4, #treatment-contents .shika .shika-04 .shika-contents .shika-txt h4, #treatment-contents .shounika .shika-01 .shika-contents .shika-txt h4, #treatment-contents .shounika .shika-03 .shika-contents .shika-txt h4, #treatment-contents .shounika .shika-04 .shika-contents .shika-txt h4, #treatment-contents .implant .shika-01 .shika-contents .shika-txt h4, #treatment-contents .implant .shika-03 .shika-contents .shika-txt h4, #treatment-contents .implant .shika-04 .shika-contents .shika-txt h4, #treatment-contents .esthetic .shika-01 .shika-contents .shika-txt h4, #treatment-contents .ortho .shika-01 .shika-contents .shika-txt h4, #treatment-contents .esthetic .shika-03 .shika-contents .shika-txt h4, #treatment-contents .esthetic .shika-04 .shika-contents .shika-txt h4, #treatment-contents .yobou .shika-01 .shika-contents .shika-txt h4, #treatment-contents .yobou .shika-03 .shika-contents .shika-txt h4, #treatment-contents .yobou .shika-04 .shika-contents .shika-txt h4, #treatment-contents .sports .shika-01 .shika-contents .shika-txt h4, #treatment-contents .sports .shika-03 .shika-contents .shika-txt h4, #treatment-contents .sports .shika-04 .shika-contents .shika-txt h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-txt p, #treatment-contents .shika .shika-03 .shika-contents .shika-txt p, #treatment-contents .shika .shika-04 .shika-contents .shika-txt p, #treatment-contents .shounika .shika-01 .shika-contents .shika-txt p, #treatment-contents .shounika .shika-03 .shika-contents .shika-txt p, #treatment-contents .shounika .shika-04 .shika-contents .shika-txt p, #treatment-contents .implant .shika-01 .shika-contents .shika-txt p, #treatment-contents .implant .shika-03 .shika-contents .shika-txt p, #treatment-contents .implant .shika-04 .shika-contents .shika-txt p, #treatment-contents .esthetic .shika-01 .shika-contents .shika-txt p, #treatment-contents .ortho .shika-01 .shika-contents .shika-txt p, #treatment-contents .esthetic .shika-03 .shika-contents .shika-txt p, #treatment-contents .esthetic .shika-04 .shika-contents .shika-txt p, #treatment-contents .yobou .shika-01 .shika-contents .shika-txt p, #treatment-contents .yobou .shika-03 .shika-contents .shika-txt p, #treatment-contents .yobou .shika-04 .shika-contents .shika-txt p, #treatment-contents .sports .shika-01 .shika-contents .shika-txt p, #treatment-contents .sports .shika-03 .shika-contents .shika-txt p, #treatment-contents .sports .shika-04 .shika-contents .shika-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #585858;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-txt p span, #treatment-contents .shika .shika-03 .shika-contents .shika-txt p span, #treatment-contents .shika .shika-04 .shika-contents .shika-txt p span, #treatment-contents .shounika .shika-01 .shika-contents .shika-txt p span, #treatment-contents .shounika .shika-03 .shika-contents .shika-txt p span, #treatment-contents .shounika .shika-04 .shika-contents .shika-txt p span, #treatment-contents .implant .shika-01 .shika-contents .shika-txt p span, #treatment-contents .implant .shika-03 .shika-contents .shika-txt p span, #treatment-contents .implant .shika-04 .shika-contents .shika-txt p span, #treatment-contents .esthetic .shika-01 .shika-contents .shika-txt p span,
#treatment-contents .ortho .shika-01 .shika-contents .shika-txt p span, #treatment-contents .esthetic .shika-03 .shika-contents .shika-txt p span, #treatment-contents .esthetic .shika-04 .shika-contents .shika-txt p span, #treatment-contents .yobou .shika-01 .shika-contents .shika-txt p span, #treatment-contents .yobou .shika-03 .shika-contents .shika-txt p span, #treatment-contents .yobou .shika-04 .shika-contents .shika-txt p span, #treatment-contents .sports .shika-01 .shika-contents .shika-txt p span, #treatment-contents .sports .shika-03 .shika-contents .shika-txt p span, #treatment-contents .sports .shika-04 .shika-contents .shika-txt p span {
  color: #996CC1;
  font-weight: 700;
}

#treatment-contents .shika .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .shika .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .shika .shika-04 .shika-contents .shika-txt p + p, #treatment-contents .shounika .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .shounika .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .shounika .shika-04 .shika-contents .shika-txt p + p, #treatment-contents .implant .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .implant .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .implant .shika-04 .shika-contents .shika-txt p + p, #treatment-contents .esthetic .shika-01 .shika-contents .shika-txt p + p,
#treatment-contents .ortho .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .esthetic .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .esthetic .shika-04 .shika-contents .shika-txt p + p, #treatment-contents .yobou .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .yobou .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .yobou .shika-04 .shika-contents .shika-txt p + p, #treatment-contents .sports .shika-01 .shika-contents .shika-txt p + p, #treatment-contents .sports .shika-03 .shika-contents .shika-txt p + p, #treatment-contents .sports .shika-04 .shika-contents .shika-txt p + p {
  margin-top: 16px;
}

#treatment-contents .shika .shika-01 .about-box, #treatment-contents .shika .shika-03 .about-box, #treatment-contents .shika .shika-04 .about-box, #treatment-contents .shounika .shika-01 .about-box, #treatment-contents .shounika .shika-03 .about-box, #treatment-contents .shounika .shika-04 .about-box, #treatment-contents .implant .shika-01 .about-box, #treatment-contents .implant .shika-03 .about-box, #treatment-contents .implant .shika-04 .about-box, #treatment-contents .esthetic .shika-01 .about-box, #treatment-contents .ortho.shika-01 .about-box, #treatment-contents .esthetic .shika-03 .about-box, #treatment-contents .esthetic .shika-04 .about-box, #treatment-contents .yobou .shika-01 .about-box, #treatment-contents .yobou .shika-03 .about-box, #treatment-contents .yobou .shika-04 .about-box, #treatment-contents .sports .shika-01 .about-box, #treatment-contents .sports .shika-03 .about-box, #treatment-contents .sports .shika-04 .about-box {
  background: #F8F8F8;
  border: 1px solid #BA93DD;
  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

#treatment-contents .shika .shika-01 .about-box h4, #treatment-contents .shika .shika-03 .about-box h4, #treatment-contents .shika .shika-04 .about-box h4, #treatment-contents .shounika .shika-01 .about-box h4, #treatment-contents .shounika .shika-03 .about-box h4, #treatment-contents .shounika .shika-04 .about-box h4, #treatment-contents .implant .shika-01 .about-box h4, #treatment-contents .implant .shika-03 .about-box h4, #treatment-contents .implant .shika-04 .about-box h4, #treatment-contents .esthetic .shika-01 .about-box h4, #treatment-contents .ortho .shika-01 .about-box h4, #treatment-contents .esthetic .shika-03 .about-box h4, #treatment-contents .esthetic .shika-04 .about-box h4, #treatment-contents .yobou .shika-01 .about-box h4, #treatment-contents .yobou .shika-03 .about-box h4, #treatment-contents .yobou .shika-04 .about-box h4, #treatment-contents .sports .shika-01 .about-box h4, #treatment-contents .sports .shika-03 .about-box h4, #treatment-contents .sports .shika-04 .about-box h4 {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

#treatment-contents .shika .shika-01 .about-box p, #treatment-contents .shika .shika-03 .about-box p, #treatment-contents .shika .shika-04 .about-box p, #treatment-contents .shounika .shika-01 .about-box p, #treatment-contents .shounika .shika-03 .about-box p, #treatment-contents .shounika .shika-04 .about-box p, #treatment-contents .implant .shika-01 .about-box p, #treatment-contents .implant .shika-03 .about-box p, #treatment-contents .implant .shika-04 .about-box p, #treatment-contents .esthetic .shika-01 .about-box p, #treatment-contents .esthetic .shika-03 .about-box p, #treatment-contents .esthetic .shika-04 .about-box p, #treatment-contents .yobou .shika-01 .about-box p, #treatment-contents .yobou .shika-03 .about-box p, #treatment-contents .yobou .shika-04 .about-box p, #treatment-contents .sports .shika-01 .about-box p, #treatment-contents .sports .shika-03 .about-box p, #treatment-contents .sports .shika-04 .about-box p {
  font-size: 1.5rem;
}

#treatment-contents .shika .shika-01 .about-box .tyuui, #treatment-contents .shika .shika-03 .about-box .tyuui, #treatment-contents .shika .shika-04 .about-box .tyuui, #treatment-contents .shounika .shika-01 .about-box .tyuui, #treatment-contents .shounika .shika-03 .about-box .tyuui, #treatment-contents .shounika .shika-04 .about-box .tyuui, #treatment-contents .implant .shika-01 .about-box .tyuui, #treatment-contents .implant .shika-03 .about-box .tyuui, #treatment-contents .implant .shika-04 .about-box .tyuui, #treatment-contents .esthetic .shika-01 .about-box .tyuui, #treatment-contents .esthetic .shika-03 .about-box .tyuui, #treatment-contents .esthetic .shika-04 .about-box .tyuui, #treatment-contents .yobou .shika-01 .about-box .tyuui, #treatment-contents .yobou .shika-03 .about-box .tyuui, #treatment-contents .yobou .shika-04 .about-box .tyuui, #treatment-contents .sports .shika-01 .about-box .tyuui, #treatment-contents .sports .shika-03 .about-box .tyuui, #treatment-contents .sports .shika-04 .about-box .tyuui {
  color: #FB5D5D;
}

#treatment-contents .shika .shika-02, #treatment-contents .shounika .shika-02, #treatment-contents .implant .shika-02, #treatment-contents .esthetic .shika-02, #treatment-contents .yobou .shika-02, #treatment-contents .sports .shika-02 {
  margin-top: 60px;
}

#treatment-contents .shika .shika-02 h4, #treatment-contents .shounika .shika-02 h4, #treatment-contents .implant .shika-02 h4, #treatment-contents .esthetic .shika-02 h4, #treatment-contents .yobou .shika-02 h4, #treatment-contents .sports .shika-02 h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

#treatment-contents .shika .shika-02 .shika-contents, #treatment-contents .shounika .shika-02 .shika-contents, #treatment-contents .implant .shika-02 .shika-contents, #treatment-contents .esthetic .shika-02 .shika-contents, #treatment-contents .yobou .shika-02 .shika-contents, #treatment-contents .sports .shika-02 .shika-contents {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 40px 0;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt, #treatment-contents .implant .shika-02 .shika-contents .shika-txt, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt, #treatment-contents .sports .shika-02 .shika-contents .shika-txt {
  width: 48%;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt h4, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt h4, #treatment-contents .implant .shika-02 .shika-contents .shika-txt h4, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt h4, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt h4, #treatment-contents .sports .shika-02 .shika-contents .shika-txt h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt p, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt p, #treatment-contents .implant .shika-02 .shika-contents .shika-txt p, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt p, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt p, #treatment-contents .sports .shika-02 .shika-contents .shika-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #585858;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt p span, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt p span, #treatment-contents .implant .shika-02 .shika-contents .shika-txt p span, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt p span, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt p span, #treatment-contents .sports .shika-02 .shika-contents .shika-txt p span {
  color: #996CC1;
  font-weight: 700;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt p a, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt p a, #treatment-contents .implant .shika-02 .shika-contents .shika-txt p a, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt p a, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt p a, #treatment-contents .sports .shika-02 .shika-contents .shika-txt p a {
  color: #804BAF;
  font-weight: 700;
  text-decoration: underline;
}

#treatment-contents .shika .shika-02 .shika-contents .shika-txt p + p, #treatment-contents .shounika .shika-02 .shika-contents .shika-txt p + p, #treatment-contents .implant .shika-02 .shika-contents .shika-txt p + p, #treatment-contents .esthetic .shika-02 .shika-contents .shika-txt p + p, #treatment-contents .yobou .shika-02 .shika-contents .shika-txt p + p, #treatment-contents .sports .shika-02 .shika-contents .shika-txt p + p {
  margin-top: 16px;
}

#treatment-contents .shika .shika-02 .shika-img-list, #treatment-contents .shounika .shika-02 .shika-img-list, #treatment-contents .implant .shika-02 .shika-img-list, #treatment-contents .esthetic .shika-02 .shika-img-list, #treatment-contents .yobou .shika-02 .shika-img-list, #treatment-contents .sports .shika-02 .shika-img-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  margin: 40px 0;
}

#treatment-contents .shika .shika-02 .shika-img-list .shika-img-box .shika-img img, #treatment-contents .shounika .shika-02 .shika-img-list .shika-img-box .shika-img img, #treatment-contents .implant .shika-02 .shika-img-list .shika-img-box .shika-img img, #treatment-contents .esthetic .shika-02 .shika-img-list .shika-img-box .shika-img img, #treatment-contents .yobou .shika-02 .shika-img-list .shika-img-box .shika-img img, #treatment-contents .sports .shika-02 .shika-img-list .shika-img-box .shika-img img {
  width: 100%;
}

#treatment-contents .shika .shika-02 .shika-img-list .shika-img-box .shika-img-title, #treatment-contents .shounika .shika-02 .shika-img-list .shika-img-box .shika-img-title, #treatment-contents .implant .shika-02 .shika-img-list .shika-img-box .shika-img-title, #treatment-contents .esthetic .shika-02 .shika-img-list .shika-img-box .shika-img-title, #treatment-contents .yobou .shika-02 .shika-img-list .shika-img-box .shika-img-title, #treatment-contents .sports .shika-02 .shika-img-list .shika-img-box .shika-img-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.4;
}

#treatment-contents .shika .shika-02 p, #treatment-contents .shounika .shika-02 p, #treatment-contents .implant .shika-02 p, #treatment-contents .esthetic .shika-02 p, #treatment-contents .yobou .shika-02 p, #treatment-contents .sports .shika-02 p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #585858;
}

#treatment-contents .shika .shika-02 p span, #treatment-contents .shounika .shika-02 p span, #treatment-contents .implant .shika-02 p span, #treatment-contents .esthetic .shika-02 p span, #treatment-contents .yobou .shika-02 p span, #treatment-contents .sports .shika-02 p span {
  color: #996CC1;
  font-weight: 700;
}

#treatment-contents .shika .shika-02 .detail-box, #treatment-contents .shounika .shika-02 .detail-box, #treatment-contents .implant .shika-02 .detail-box, #treatment-contents .esthetic .shika-02 .detail-box, #treatment-contents .yobou .shika-02 .detail-box, #treatment-contents .sports .shika-02 .detail-box {
  background: #F8F8F8;
  border: 1px solid #BA93DD;
  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

#treatment-contents .shika .shika-02 .detail-box .detail-txt, #treatment-contents .shounika .shika-02 .detail-box .detail-txt, #treatment-contents .implant .shika-02 .detail-box .detail-txt, #treatment-contents .esthetic .shika-02 .detail-box .detail-txt, #treatment-contents .yobou .shika-02 .detail-box .detail-txt, #treatment-contents .sports .shika-02 .detail-box .detail-txt {
  width: calc(100% - 340px - 5%);
}

#treatment-contents .shika .shika-02 .detail-box .detail-txt p, #treatment-contents .shounika .shika-02 .detail-box .detail-txt p, #treatment-contents .implant .shika-02 .detail-box .detail-txt p, #treatment-contents .esthetic .shika-02 .detail-box .detail-txt p, #treatment-contents .yobou .shika-02 .detail-box .detail-txt p, #treatment-contents .sports .shika-02 .detail-box .detail-txt p {
  font-size: 1.4rem;
}

#treatment-contents .shika .shika-02 .detail-box .detail-btn a, #treatment-contents .shounika .shika-02 .detail-box .detail-btn a, #treatment-contents .implant .shika-02 .detail-box .detail-btn a, #treatment-contents .esthetic .shika-02 .detail-box .detail-btn a, #treatment-contents .yobou .shika-02 .detail-box .detail-btn a, #treatment-contents .sports .shika-02 .detail-box .detail-btn a {
  margin-top: 0;
}

#treatment-contents .shika .shika-03 .about-box, #treatment-contents .shounika .shika-03 .about-box, #treatment-contents .implant .shika-03 .about-box, #treatment-contents .esthetic .shika-03 .about-box, #treatment-contents .yobou .shika-03 .about-box, #treatment-contents .sports .shika-03 .about-box {
  border: 1px solid #DFDFDF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  border-radius: 28px;
  padding: 24px 32px;
  margin: 40px 0;
  display: block;
  background: #fff;
}

#treatment-contents .shika .shika-03 .about-box .shika-contents, #treatment-contents .shounika .shika-03 .about-box .shika-contents, #treatment-contents .implant .shika-03 .about-box .shika-contents, #treatment-contents .esthetic .shika-03 .about-box .shika-contents, #treatment-contents .yobou .shika-03 .about-box .shika-contents, #treatment-contents .sports .shika-03 .about-box .shika-contents {
  margin: 12px 0 0 0;
}

#treatment-contents .shounika .shika-01 .about-box {
  display: block;
}

#treatment-contents .implant .btn, #treatment-contents .esthetic .btn, #treatment-contents .ortho .btn, #treatment-contents .sports .btn {
  margin: 24px auto 0 0;
}

#treatment-contents .price {
  margin: 100px auto;
}

#treatment-contents .price .intro {
  font-size: 1.5rem;
  margin: 24px 0;
}

#treatment-contents .price table {
  width: 100%;
}

#treatment-contents .price table tbody .bg-color {
  background: #F9F9F9;
}

#treatment-contents .price table tbody tr .top-title {
  background: #BA93DD;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  font-family: "Noto Sans JP";
}

#treatment-contents .price table tbody tr .sub-title {
  background: #EEEEEE;
  text-align: center;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP";
  border-bottom: 1px solid #D1D1D1;
}

#treatment-contents .price table tbody tr td {
  font-size: 1.4rem;
  padding: 12px;
  border-bottom: 1px solid #D1D1D1;
  vertical-align: middle;
  font-family: "Noto Sans JP";
}

#treatment-contents .price table tbody tr td:last-child {
  text-align: center;
}

#recruit-contents .merit {
  background: #FBF6FF;
  padding: 120px 0;
}

#recruit-contents .merit .merit-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 16px;
  margin-top: 60px;
}

#recruit-contents .merit .merit-list .merit-box {
  border-radius: 28px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  position: relative;
}

#recruit-contents .merit .merit-list .merit-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(4)::before {
  background: url(../images/count04.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(5)::before {
  background: url(../images/count05.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(6)::before {
  background: url(../images/count06.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(7)::before {
  background: url(../images/count07.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(8)::before {
  background: url(../images/count08.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box:nth-child(9)::before {
  background: url(../images/count09.svg) no-repeat;
  background-size: contain;
}

#recruit-contents .merit .merit-list .merit-box h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  height: 40px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#recruit-contents .merit .merit-list .merit-box h3 span {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}

#recruit-contents .merit .merit-list .merit-box .merit-img {
  margin: 12px 0;
}

#recruit-contents .merit .merit-list .merit-box .merit-img img {
  width: 100%;
}

#recruit-contents .merit .merit-list .merit-box p {
  font-size: 1.4rem;
  color: #585858;
}

#recruit-contents .flow .flow-area {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

#recruit-contents .flow .flow-area .flow-box {
  width: 48%;
  background: #FBF6FF;
}

#recruit-contents .flow .flow-area .flow-box h3 {
  text-align: center;
  padding: 12px 0;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  background: #BA93DD;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents {
  padding: 32px;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-list .flow-item {
  display: flex;
  align-items: center;
  border-left: 1px dashed #996CC1;
  padding: 12px 0;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-list .flow-item dt {
  font-size: 1.6rem;
  padding-left: 24px;
  position: relative;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-list .flow-item dt::before {
  content: "●";
  font-size: 1rem;
  color: #804BAF;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: -6px;
  margin: auto;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-list .flow-item dd {
  font-size: 1.8rem;
  font-weight: 700;
  color: #804BAF;
  margin-left: 24px;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-rest {
  background: #ECE3F3;
  border: 1px solid #BA93DD;
  padding: 16px;
  margin-top: 16px;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-rest .rest-time {
  font-size: 1.6rem;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-rest .rest-txt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #804BAF;
  margin-top: 4px;
}

#recruit-contents .flow .flow-area .flow-box .flow-contents .flow-rest .rest-txt span {
  font-size: 1.4rem;
  color: #804BAF;
}

.recruit-banner {
  margin: 120px 0;
}

.recruit-banner .banner-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 24px;
}

.recruit-banner .banner-list .banner-box {
  position: relative;
  overflow: hidden;
}

.recruit-banner .banner-list .banner-box h3 {
  background: rgba(186, 147, 221, 0.85);
  padding: 16px 0;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  width: 100%;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.recruit-banner .banner-list .banner-box:nth-child(1) a {
  background: url(../images/recruit/banner-img01.jpg) no-repeat center;
  background-size: cover;
}

.recruit-banner .banner-list .banner-box:nth-child(2) a {
  background: url(../images/recruit/banner-img02.jpg) no-repeat center;
  background-size: cover;
}

.recruit-banner .banner-list .banner-box:nth-child(3) a {
  background: url(../images/recruit/banner-img03.jpg) no-repeat center;
  background-size: cover;
}

.recruit-banner .banner-list .banner-box:nth-child(4) a {
  background: url(../images/recruit/banner-img04.jpg) no-repeat;
  background-size: cover;
}

.recruit-banner .banner-list .banner-box a {
  display: block;
  height: 380px;
  transition: all ease 0.5s;
}

.recruit-banner .banner-list .banner-box a:hover {
  transform: scale(1.2);
}

#covid-contents .intro .intro-top {
  display: grid;
  place-items: center;
  padding: 120px 0 80px 0;
}

#covid-contents .intro .intro-top .intro-top-txt {
  position: relative;
}

#covid-contents .intro .intro-top .intro-top-txt::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  width: 285px;
  height: 307px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.15;
  z-index: -1;
}

#covid-contents .intro .intro-top .intro-top-txt h2 {
  font-size: 3rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

#covid-contents .intro .intro-top .intro-top-txt p {
  font-size: 1.6rem;
  width: 630px;
  margin: 32px auto 0 auto;
  line-height: 1.8;
}

#covid-contents .covid-contents {
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #DFDFDF;
  margin: 24px auto 120px auto;
}

#covid-contents .covid-contents .covid-01 .covid-01-contents {
  background: url(../images/covid/covid-bg01.jpg) no-repeat right;
  padding: 24px 32px;
  margin-top: 24px;
}

#covid-contents .covid-contents .covid-01 .covid-01-contents .covid-01-list {
  width: 60%;
}

#covid-contents .covid-contents .covid-01 .covid-01-contents .covid-01-list li {
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.6em;
  margin: 12px 0;
}

#covid-contents .covid-contents .covid-01 .covid-01-contents .covid-01-list li::before {
  content: "●";
  color: #BA93DD;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

#covid-contents .covid-contents .covid-02 {
  margin-top: 60px;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box {
  padding: 16px;
  border-radius: 16px;
  position: relative;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box:nth-child(odd) {
  background: #F7EFFF;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box:nth-child(even) {
  background: #F3E6FF;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box h4 {
  font-size: 2rem;
  color: #8959B4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-top: 24px;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box .covid-02-img {
  margin: 12px 0;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box .covid-02-img img {
  width: 100%;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents .covid-02-list .covid-02-box p {
  font-size: 1.4rem;
}

#covid-contents .covid-contents .covid-02 .covid-02-contents p {
  font-size: 1.4rem;
  margin-top: 16px;
}

#covid-contents .covid-contents .covid-03 {
  margin-top: 60px;
}

#covid-contents .covid-contents .covid-03 .covid-03-contents {
  background: url(../images/covid/covid-bg02.jpg) no-repeat right;
  background-size: cover;
  padding: 24px 32px;
  margin-top: 24px;
}

#covid-contents .covid-contents .covid-03 .covid-03-contents .covid-03-list {
  width: 60%;
}

#covid-contents .covid-contents .covid-03 .covid-03-contents .covid-03-list li {
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.6em;
  margin: 12px 0;
}

#covid-contents .covid-contents .covid-03 .covid-03-contents .covid-03-list li::before {
  content: "●";
  color: #BA93DD;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

#covid-contents .covid-contents .covid-point {
  margin-top: 40px;
}

#covid-contents .covid-contents .covid-point .covid-point-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

#covid-contents .covid-contents .covid-point .covid-point-contents .covid-point-img {
  width: 35%;
}

#covid-contents .covid-contents .covid-point .covid-point-contents .covid-point-img img {
  width: 100%;
  border-radius: 16px;
}

#covid-contents .covid-contents .covid-point .covid-point-contents .covid-point-txt {
  width: 60%;
}

#covid-contents .covid-contents .covid-point .covid-point-contents .covid-point-txt h5 {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#covid-contents .covid-contents .covid-point .covid-point-contents .covid-point-txt p {
  font-size: 1.5rem;
  margin-top: 16px;
}

#news-contents {
  margin-bottom: 120px;
}

#news-contents .news-contents-list .news-list .news-item:first-child a {
  border-top: 1px dashed #BA93DD;
}

#news-contents .news-contents-list .news-list .news-item a {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#news-contents .news-contents-list .news-list .news-item a:hover h2 {
  color: #BA93DD;
}

#news-contents .news-contents-list .news-list .news-item a time {
  width: 140px;
  padding-left: 16px;
  font-size: 1.5rem;
}

#news-contents .news-contents-list .news-list .news-item a h2 {
  width: calc(100% - 140px - 5%);
  font-size: 1.6rem;
  padding: 16px 0;
  transition: all ease 0.5s;
}

#news-contents .news-detail {
  border: 1px solid #DFDFDF;
  border-radius: 28px;
  padding: 32px 80px;
}

#news-contents .news-detail .news-title time {
  font-size: 1.5rem;
}

#news-contents .news-detail .news-title h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 6px 0 12px 0;
}

#news-contents .news-detail .news-contents {
  border-top: 1px dashed #BA93DD;
  border-bottom: 1px dashed #BA93DD;
  padding: 40px 0;
}

#news-contents .news-detail .news-contents p,
#news-contents .news-detail .news-contents table td {
  font-size: 1.5rem;
  line-height: 1.8;
}

#news-contents .news-detail .news-contents p + p {
  margin-top: 16px;
}

#news-contents .news-detail .news-contents a {
  color: #BA93DD;
  text-decoration: underline;
}

.pagenation {
  border-radius: 7px;
  overflow: hidden;
}

.pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FBF6FF;
  padding: 32px 40px;
  margin: 80px 0;
  position: relative;
}

.pagenation ul li {
  margin-right: 2%;
}

.pagenation ul li:last-child {
  margin-right: 0;
}

.pagenation ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  height: 35px;
  font-size: 1.4em;
  width: 35px;
  transition: all ease 0.3s;
  background: #BA93DD;
}

@media screen and (max-width: 480px) {
  .pagenation ul li a {
    height: 28px;
    width: 28px;
  }
}
.pagenation ul li a:hover {
  opacity: 0.5;
}

.pagenation ul li a .pagenation > li:nth-child(n+2):nth-last-child(n+2) {
  border-radius: 0;
  color: #333;
}

.pagenation ul .next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 24px;
  height: -moz-fit-content;
  height: fit-content;
}

.pagenation ul .next a {
  background: none;
  color: #333;
}

.pagenation ul .prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 24px;
  height: -moz-fit-content;
  height: fit-content;
}

.pagenation ul .prev a {
  background: none;
  color: #333;
}

.pagenation ul .page-active {
  font-size: 1.4rem;
}

#privacy-contents {
  margin-bottom: 120px;
}

#privacy-contents .privacy-box {
  margin-bottom: 40px;
}

#privacy-contents .privacy-box .privacy-title {
  border-bottom: 1px solid #996CC1;
  margin-bottom: 8px;
}

#privacy-contents .privacy-box .privacy-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #804BAF;
  padding-bottom: 4px;
}

#privacy-contents .privacy-box .privacy-contents p {
  color: #585858;
  font-size: 1.5rem;
  line-height: 1.8;
}

#privacy-contents .privacy-box .privacy-contents .privacy-list {
  margin: 16px 0;
  padding-left: 16px;
}

#privacy-contents .privacy-box .privacy-contents .privacy-list li {
  margin: 6px 0;
  font-size: 1.5rem;
  color: #585858;
}

#privacy-contents .name {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: right;
}

.contact-intro .intro-top {
  display: grid;
  place-items: center;
  padding: 120px 0 80px 0;
}

.contact-intro .intro-top .intro-top-txt {
  position: relative;
}

.contact-intro .intro-top .intro-top-txt::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  width: 285px;
  height: 307px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.15;
  z-index: 0;
}

.contact-intro .intro-top .intro-top-txt h2 {
  font-size: 3rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}

.contact-intro .intro-top .intro-top-txt p {
  font-size: 1.6rem;
  width: 650px;
  margin: 32px auto 0 auto;
  line-height: 1.8;
}

.contact-intro .intro-top .intro-top-txt .tel-btn {
  background: #996CC1;
  border-radius: 50px;
  width: 294px;
  color: #fff !important;
  display: block;
  margin: 48px auto 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 12px 0 12px 24px;
  position: relative;
  transition: all ease 0.5s;
}

.contact-intro .intro-top .intro-top-txt .tel-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto;
  background: url(../images/tel.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  left: 83px;
}

.contact-intro .intro-top .intro-top-txt .tel-btn::after {
  content: "＼ お電話はこちら ／";
  font-size: 1.6rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  margin: auto;
}

.contact-intro .intro-top .intro-top-txt .tel-btn:hover {
  background: #804BAF;
}

.contact-form {
  margin-bottom: 120px;
}

.contact-form form {
  background: #F7EFFF;
  border-radius: 28px;
  padding: 40px 80px;
  margin-top: 24px;
  border: 1px solid #BA93DD;
}

.contact-form form dl div {
  padding: 12px 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .contact-form form dl div {
    padding: 8px 0;
  }
}
.contact-form form dl div dt {
  width: 240px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.contact-form form dl div dt span.hissu {
  color: #fff;
  background: #996CC1;
  line-height: 1;
  font-size: 1.2rem;
  padding: 1px 4px;
  margin-right: 6px;
  border-radius: 50px;
}

.contact-form form dl div dt br {
  display: none;
}

.contact-form form dl div dd {
  width: calc(100% - 240px);
}

.contact-form form dl div dd input, .contact-form form dl div dd textarea {
  font-size: 1.5rem;
  padding: 24px 16px;
  background: #FAFAF7;
  border: 1px solid #D4D0D0;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  font-weight: bold;
}

.contact-form form dl div dd input::-moz-placeholder, .contact-form form dl div dd textarea::-moz-placeholder {
  color: #B7B7B7;
  font-size: 1.5rem;
}

.contact-form form dl div dd input::placeholder, .contact-form form dl div dd textarea::placeholder {
  color: #B7B7B7;
  font-size: 1.5rem;
}

.contact-form form dl div .radio label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  font-size: 1.5rem;
  margin: 6px 24px 6px 0;
  display: inline-block;
  width: auto;
}

.contact-form form dl div .radio input {
  border-radius: 50px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #D4D0D0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  top: 1px;
  left: 0;
  accent-color: #996CC1;
}

.contact-form form dl div .radio .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.contact-form form .btn-group {
  text-align: center;
  margin-top: 24px;
}

.contact-form form .btn-group input[type=submit] {
  border: none;
  font-size: 1.6rem;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all ease 0.5s;
  padding: 16px 60px;
  background: #996CC1;
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
}

.contact-form form .btn-group input[type=submit]:hover {
  background: #804BAF;
}

.contact-form form .wpcf7-not-valid-tip {
  font-size: 1.3rem;
}

.contact-form form .wpcf7-response-output {
  border-color: #F7EFFF !important;
  font-size: 1.8rem;
  text-align: center;
  color: #dc3232;
  font-weight: bold;
}

.contact-form form .wpcf7-spinner {
  position: absolute !important;
}

#esthetic-contents .intro .intro-banner {
  background: url(../images/treatment/esthetic/esthetic-bg01.jpg) no-repeat right;
  background-size: cover;
  padding: 40px;
}

#esthetic-contents .intro .intro-banner .intro-txt {
  width: 58%;
}

#esthetic-contents .intro .intro-banner .intro-txt h2 {
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
  color: #804BAF;
}

#esthetic-contents .intro .intro-banner .intro-txt p {
  font-size: 1.8rem;
  line-height: 1.8;
}

#esthetic-contents .intro .intro-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#esthetic-contents .intro .intro-contents .intro-img {
  width: 35%;
}

#esthetic-contents .intro .intro-contents .intro-img img {
  width: 100%;
  border-radius: 16px;
}

#esthetic-contents .intro .intro-contents .intro-txt {
  width: 60%;
}

#esthetic-contents .intro .intro-contents .intro-txt h3 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
}

#esthetic-contents .intro .intro-contents .intro-txt p {
  font-size: 1.5rem;
  color: #585858;
  line-height: 1.8;
}

#esthetic-contents .intro .intro-contents .intro-txt p span {
  color: #996CC1;
  font-weight: 500;
}

#esthetic-contents .esthetic, #esthetic-contents .whitening {
  margin-top: 60px;
}

#esthetic-contents .esthetic .page-sub-title br, #esthetic-contents .whitening .page-sub-title br {
  display: none;
}

#esthetic-contents .esthetic .sozai, #esthetic-contents .whitening .sozai {
  margin-top: 24px;
}

#esthetic-contents .esthetic .sozai table, #esthetic-contents .whitening .sozai table {
  margin-top: 8px;
  width: 100%;
  border: 1px solid #D1D1D1;
}

#esthetic-contents .esthetic .sozai table tbody tr, #esthetic-contents .whitening .sozai table tbody tr {
  border-bottom: 1px solid #D1D1D1;
}

#esthetic-contents .esthetic .sozai table tbody tr:last-child, #esthetic-contents .whitening .sozai table tbody tr:last-child {
  border-bottom: none;
}

#esthetic-contents .esthetic .sozai table tbody tr th, #esthetic-contents .whitening .sozai table tbody tr th {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  background: #F2F2F2;
  width: 200px;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
}

#esthetic-contents .esthetic .sozai table tbody tr td, #esthetic-contents .whitening .sozai table tbody tr td {
  font-size: 1.4rem;
  padding: 12px;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
}

#esthetic-contents .esthetic .sozai table tbody tr td img, #esthetic-contents .whitening .sozai table tbody tr td img {
  width: 110px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

#esthetic-contents .esthetic .zairyou, #esthetic-contents .whitening .zairyou {
  margin-top: 40px;
}

#esthetic-contents .esthetic .zairyou p.intro, #esthetic-contents .whitening .zairyou p.intro {
  font-size: 1.5rem;
  margin: 12px 0;
}

#esthetic-contents .esthetic .zairyou .zairyou-list, #esthetic-contents .whitening .zairyou .zairyou-list {
  display: grid;
  gap: 16px 0;
  margin-top: 16px;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box {
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box:nth-child(odd), #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box:nth-child(odd) {
  background: #F7EFFF;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box:nth-child(even), #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box:nth-child(even) {
  background: #F3E6FF;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box:nth-child(1) h5::before, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box:nth-child(1) h5::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box:nth-child(2) h5::before, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box:nth-child(2) h5::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box:nth-child(3) h5::before, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box:nth-child(3) h5::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-title, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-title {
  width: 35%;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-title h5, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-title h5 {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  margin-top: 52px;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-title h5::before, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-title h5::before {
  content: "";
  width: 64px;
  height: 64px;
  position: absolute;
  left: 0;
  right: 0;
  top: -78px;
  margin: auto;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents {
  width: 62%;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents h6, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents h6 {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  background: #996CC1;
  line-height: 1;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents h6 span, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents h6 span {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents .zairyou-img, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents .zairyou-img {
  margin: 6px 0;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents .zairyou-img img, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents .zairyou-img img {
  width: 100%;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents p, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents p {
  font-size: 1.5rem;
  color: #585858;
  line-height: 1.8;
}

#esthetic-contents .esthetic .zairyou .zairyou-list .zairyou-box .zairyou-contents p span, #esthetic-contents .whitening .zairyou .zairyou-list .zairyou-box .zairyou-contents p span {
  color: #996CC1;
  font-weight: 700;
}

#esthetic-contents .whitening .whitening-point {
  background: url(../images/treatment/esthetic/esthetic-bg02.jpg) no-repeat right;
  background-size: cover;
  padding: 32px;
  margin-top: 24px;
}

#esthetic-contents .whitening .whitening-point .whitening-list {
  width: 50%;
}

#esthetic-contents .whitening .whitening-point .whitening-list li {
  margin: 12px 0 12px 0;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 12px 0 12px 52px;
}

#esthetic-contents .whitening .whitening-point .whitening-list li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  width: 40px;
  height: 40px;
}

#esthetic-contents .whitening .whitening-point .whitening-list li:nth-child(1)::before {
  background: url(../images/concept/count01.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .whitening .whitening-point .whitening-list li:nth-child(2)::before {
  background: url(../images/concept/count02.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .whitening .whitening-point .whitening-list li:nth-child(3)::before {
  background: url(../images/concept/count03.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .whitening .whitening-point .whitening-list li:nth-child(4)::before {
  background: url(../images/concept/count04.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .whitening .whitening-point .whitening-list li:nth-child(5)::before {
  background: url(../images/concept/count05.svg) no-repeat;
  background-size: contain;
}

#esthetic-contents .whitening .whitening-tyuui {
  position: relative;
  margin-top: 60px;
  background: #F8F8F8;
  border: 1px solid #BA93DD;
  border-radius: 16px;
  padding: 40px 60px;
}

#esthetic-contents .whitening .whitening-tyuui h4 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -20px;
  font-size: 2rem;
  color: #fff;
  background: #996CC1;
  padding: 6px 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}

#esthetic-contents .whitening .whitening-tyuui .title {
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#esthetic-contents .whitening .whitening-tyuui .whitening-list-box {
  background: #fff;
  padding: 24px;
  margin-top: 24px;
}

#esthetic-contents .whitening .whitening-tyuui .whitening-list-box h5 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #804BAF;
}

#esthetic-contents .whitening .whitening-tyuui .whitening-list-box .whitening-list {
  margin-top: 16px;
}

#esthetic-contents .whitening .whitening-tyuui .whitening-list-box .whitening-list li {
  font-size: 1.5rem;
  padding-left: 1.6em;
  position: relative;
}

#esthetic-contents .whitening .whitening-tyuui .whitening-list-box .whitening-list li::before {
  content: "●";
  font-size: 1.5rem;
  color: #996CC1;
  position: absolute;
  top: 0;
  left: 0;
}

#esthetic-contents .whitening .whitening-tyuui p {
  font-size: 1.5rem;
  margin-top: 12px;
}

#esthetic-contents .price {
  margin: 120px auto;
}

#esthetic-contents .price .intro {
  font-size: 1.5rem;
  margin: 24px 0 12px 0;
}

#esthetic-contents .price .btn {
  margin: 24px auto 0 0;
}

#implant-contents .intro {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#implant-contents .intro .intro-txt {
  width: 70%;
}

#implant-contents .intro .intro-txt h2 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 24px;
}

#implant-contents .intro .intro-txt p {
  font-size: 1.5rem;
  color: #585858;
  line-height: 1.8;
}

#implant-contents .intro .intro-txt p span {
  color: #996CC1;
  font-weight: 500;
}

#implant-contents .intro .intro-img {
  width: 25%;
}

#implant-contents .intro .intro-img img {
  width: 100%;
  border-radius: 16px;
}

#implant-contents .price {
  margin: 120px auto;
}

#implant-contents .price .intro {
  font-size: 1.5rem;
  margin: 24px 0 12px 0;
}

#implant-contents .price .btn {
  margin: 24px auto 0 0;
}

#sports-contents .sports {
  margin-top: 40px;
}

#sports-contents .sports:first-child {
  margin-top: 0;
}

#sports-contents .sports h3 br {
  display: none;
}

#sports-contents .sports .sports-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

#sports-contents .sports .sports-contents .sports-img {
  width: 30%;
}

#sports-contents .sports .sports-contents .sports-img img {
  width: 100%;
}

#sports-contents .sports .sports-contents .sports-txt {
  width: 65%;
}

#sports-contents .sports .sports-contents .sports-txt h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 24px;
}

#sports-contents .sports .sports-contents .sports-txt p {
  font-size: 1.5rem;
  color: #585858;
  line-height: 1.8;
}

#sports-contents .sports .sports-contents .sports-txt p span {
  color: #000;
  font-weight: 500;
}

#sports-contents .sports .sports-contents .sports-txt .sports-box {
  border: 1px solid #BA93DD;
  border-radius: 16px;
  background: #F8F8F8;
  padding: 0 24px 24px 24px;
  margin-top: 24px;
}

#sports-contents .sports .sports-contents .sports-txt .sports-box .sports-sub-box {
  margin-top: 24px;
}

#sports-contents .sports .sports-contents .sports-txt .sports-box .sports-sub-box h4 {
  font-size: 1.8rem;
  text-align: center;
  background: #996CC1;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  padding: 6px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px auto;
}

#sports-contents .sports .sports-contents .sports-txt .sports-box .sports-sub-box .sports-detail {
  background: #fff;
  padding: 12px;
}

#sports-contents .sports .sports-contents .sports-txt .sports-box .sports-sub-box .sports-detail p {
  font-size: 1.4rem;
}

#sports-contents .sports .sports-contents .sports-txt .tyuui {
  font-size: 1.4rem;
  margin-top: 8px;
}

#sports-contents .sports-flow {
  margin-top: 60px;
}

#sports-contents .sports-flow .flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}

#sports-contents .sports-flow .flow-list .flow-box {
  padding: 16px;
  border-radius: 16px;
  position: relative;
}

#sports-contents .sports-flow .flow-list .flow-box:nth-child(odd) {
  background: #F7EFFF;
}

#sports-contents .sports-flow .flow-list .flow-box:nth-child(even) {
  background: #F3E6FF;
}

#sports-contents .sports-flow .flow-list .flow-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

#sports-contents .sports-flow .flow-list .flow-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#sports-contents .sports-flow .flow-list .flow-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#sports-contents .sports-flow .flow-list .flow-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#sports-contents .sports-flow .flow-list .flow-box h4 {
  font-size: 2rem;
  color: #8959B4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-top: 24px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sports-contents .sports-flow .flow-list .flow-box .flow-img {
  margin: 12px 0;
}

#sports-contents .sports-flow .flow-list .flow-box .flow-img img {
  width: 100%;
}

#sports-contents .sports-flow .flow-list .flow-box p {
  font-size: 1.4rem;
}

#sports-contents .sports-flow .flow-list .flow-box p span {
  font-weight: 500;
}

#sports-contents .sports-color {
  margin-top: 60px;
}

#sports-contents .sports-color .intro {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 24px 0 16px 0;
}

#sports-contents .sports-color .color-box {
  background: #F8F8F8;
  border-radius: 16px;
  border: 1px solid #BA93DD;
  padding: 32px;
  position: relative;
  margin-top: 52px;
}

#sports-contents .sports-color .color-box h4 {
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  margin: auto;
  color: #fff;
  background: #996CC1;
  padding: 6px 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}

#sports-contents .sports-color .color-box .color-txt {
  font-size: 1.5rem;
}

#sports-contents .sports-color .color-box .color-txt strong {
  font-weight: 500;
}

#sports-contents .sports-color .color-box .color-txt span {
  color: #996CC1;
}

#sports-contents .sports-color .color-box .color-list, #sports-contents .sports-color .color-box .color-list2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 24px 16px;
  margin-top: 16px;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(1) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(1) .color-bg {
  background: #fff;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(2) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(2) .color-bg {
  background: #FFF101;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(3) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(3) .color-bg {
  background: #4E772F;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(4) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(4) .color-bg {
  background: #000;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(5) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(5) .color-bg {
  background: #EF4623;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(6) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(6) .color-bg {
  background: #7EC44C;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(7) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(7) .color-bg {
  background: #781053;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(8) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(8) .color-bg {
  background: #0169B6;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(9) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(9) .color-bg {
  background: #048DF5;
}

#sports-contents .sports-color .color-box .color-list .color-item:nth-child(10) .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(10) .color-bg {
  background: #F38AA9;
}

#sports-contents .sports-color .color-box .color-list .color-item .color-bg, #sports-contents .sports-color .color-box .color-list2 .color-item .color-bg {
  height: 6vw;
  border-radius: 8px;
}

#sports-contents .sports-color .color-box .color-list .color-item .color-title, #sports-contents .sports-color .color-box .color-list2 .color-item .color-title {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 4px;
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(1) .color-bg {
  background: linear-gradient(90deg, #EE1B29 0%, #EE1B29 50%, #fff 50%, #fff 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(2) .color-bg {
  background: linear-gradient(90deg, #EE1B29 0%, #EE1B29 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(3) .color-bg {
  background: linear-gradient(90deg, #EF4623 0%, #EF4623 50%, #fff 50%, #fff 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(4) .color-bg {
  background: linear-gradient(90deg, #4E772F 0%, #4E772F 50%, #fff 50%, #fff 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(5) .color-bg {
  background: linear-gradient(90deg, #4E772F 0%, #4E772F 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(6) .color-bg {
  background: linear-gradient(90deg, #4E772F 0%, #4E772F 50%, #0169B6 50%, #0169B6 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(7) .color-bg {
  background: linear-gradient(90deg, #0169B6 0%, #0169B6 50%, #fff 50%, #fff 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(8) .color-bg {
  background: linear-gradient(90deg, #0169B6 0%, #0169B6 50%, #EE1B29 50%, #EE1B29 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(9) .color-bg {
  background: linear-gradient(90deg, #0169B6 0%, #0169B6 50%, #EF4623 50%, #EF4623 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(10) .color-bg {
  background: linear-gradient(90deg, #0169B6 0%, #0169B6 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(11) .color-bg {
  background: linear-gradient(90deg, #781053 0%, #781053 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(12) .color-bg {
  background: linear-gradient(90deg, #BD7962 0%, #BD7962 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(13) .color-bg {
  background: linear-gradient(90deg, #000 0%, #000 50%, #fff 50%, #fff 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(14) .color-bg {
  background: linear-gradient(90deg, #000 0%, #000 50%, #EE1B29 50%, #EE1B29 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(15) .color-bg {
  background: linear-gradient(90deg, #000 0%, #000 50%, #FFF101 50%, #FFF101 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(16) .color-bg {
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #781053 50%, #781053 100%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(17) .color-bg {
  background-image: linear-gradient(to right, #EE1B29 33%, #fff 33%, #fff 66%, #EE1B29 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(18) .color-bg {
  background-image: linear-gradient(to right, #EF4623 33%, #000 33%, #000 66%, #EF4623 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(19) .color-bg {
  background-image: linear-gradient(to right, #FFF101 33%, #fff 33%, #fff 66%, #FFF101 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(20) .color-bg {
  background-image: linear-gradient(to right, #FFF101 33%, #EE1B29 33%, #EE1B29 66%, #FFF101 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(21) .color-bg {
  background-image: linear-gradient(to right, #4E772F 33%, #fff 33%, #fff 66%, #4E772F 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(22) .color-bg {
  background-image: linear-gradient(to right, #0169B6 33%, #fff 33%, #fff 66%, #0169B6 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(23) .color-bg {
  background-image: linear-gradient(to right, #0169B6 33%, #FFF101 33%, #FFF101 66%, #0169B6 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(24) .color-bg {
  background-image: linear-gradient(to right, #EE1B29 33%, #FFF101 33%, #FFF101 66%, #4E772F 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(25) .color-bg {
  background-image: linear-gradient(to right, #EE1B29 33%, #fff 33%, #fff 66%, #0169B6 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(26) .color-bg {
  background-image: linear-gradient(to right, #EF4623 33%, #fff 33%, #fff 66%, #000 66%);
}

#sports-contents .sports-color .color-box .color-list2 .color-item:nth-child(27) .color-bg {
  background-image: linear-gradient(to right, #fff 33%, #4E772F 33%, #4E772F 66%, #000 66%);
}

#sports-contents .sports-color .color-box .contents-3d {
  display: flex;
  margin-top: 24px;
}

#sports-contents .sports-color .color-box .contents-3d .left-3d {
  width: 25%;
}

#sports-contents .sports-color .color-box .contents-3d .left-3d img {
  width: 100%;
  border-radius: 8px;
}

#sports-contents .sports-color .color-box .contents-3d .right-3d {
  width: 50%;
  margin-left: 24px;
}

#sports-contents .sports-color .color-box .contents-3d .right-3d img {
  width: 100%;
}

#sports-contents .price {
  margin: 120px auto;
}

#sports-contents .price .intro {
  font-size: 1.5rem;
  margin: 24px 0 12px 0;
}

#sports-contents .price .btn {
  margin: 24px auto 0 0;
}

#ortho-contents {
  margin: 24px auto 120px auto;
}
#ortho-contents .ortho .ortho-contents {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
#ortho-contents .ortho .ortho-contents .ortho-img {
  width: 30%;
}
#ortho-contents .ortho .ortho-contents .ortho-img img {
  width: 100%;
}
#ortho-contents .ortho .ortho-contents .ortho-txt {
  width: 65%;
}
#ortho-contents .ortho .ortho-contents .ortho-txt p {
  font-size: 1.5rem;
  color: #585858;
  line-height: 1.8;
}
#ortho-contents .ortho .ortho-list-wrap {
  background: url(../images/treatment/ortho/ortho-bg.jpg) no-repeat right;
  background-size: cover;
  padding: 32px;
  margin-top: 24px;
}
#ortho-contents .ortho .ortho-list-wrap .ortho-list {
  width: 60%;
}
#ortho-contents .ortho .ortho-list-wrap .ortho-list li {
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.6em;
  margin: 12px 0;
}
#ortho-contents .ortho .ortho-list-wrap .ortho-list li::before {
  content: "●";
  color: #BA93DD;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
#ortho-contents .ortho .ortho-flow {
  margin-top: 60px;
}
#ortho-contents .ortho .ortho-flow .flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 16px;
  margin-top: 52px;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box {
  padding: 16px 32px 32px 32px;
  border-radius: 16px;
  position: relative;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(odd) {
  background: #F7EFFF;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(even) {
  background: #F3E6FF;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(4)::before {
  background: url(../images/count04.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(5)::before {
  background: url(../images/count05.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box:nth-child(6)::before {
  background: url(../images/count06.svg) no-repeat;
  background-size: contain;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box h4 {
  font-size: 2rem;
  color: #8959B4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-top: 24px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box .flow-img {
  margin: 12px 0;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box .flow-img img {
  width: 100%;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box p {
  font-size: 1.4rem;
}
#ortho-contents .ortho .ortho-flow .flow-list .flow-box p span {
  font-weight: 500;
}

#doctor-contents .intro {
  background: url(../images/recruit/doctor/intro-bg.jpg) no-repeat top;
  background-size: cover;
  padding: 32px;
  position: relative;
  height: 40vw;
  max-height: 520px;
}

#doctor-contents .intro .intro-txt {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
}

#doctor-contents .intro .intro-txt h3 {
  font-size: 2.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 16px;
}

#doctor-contents .intro .intro-txt p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
}

#doctor-contents .intro .intro-txt p br {
  display: none;
}

#doctor-contents .voice .staff-list {
  margin-top: 24px;
}

#doctor-contents .voice .staff-list .staff-box {
  position: relative;
  margin-top: 32px;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) h3 {
  background: #996CC1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) .staff-top-txt a {
  color: #996CC1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) .toggle_title {
  color: #996CC1;
  border-bottom: 2px solid #996CC1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) .toggle_title::after {
  color: #996CC1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) .voice-title {
  border-top: 1px dashed #BA93DD;
  border-bottom: 1px dashed #BA93DD;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(-n+2) .voice-title h4 {
  color: #804BAF;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) h3 {
  background: #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) .staff-top-txt a {
  color: #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) .toggle_title {
  color: #6C80C1;
  border-bottom: 2px solid #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) .toggle_title::after {
  color: #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) .voice-title {
  border-top: 1px dashed #6C80C1;
  border-bottom: 1px dashed #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box:nth-child(n+2) .voice-title h4 {
  color: #6C80C1;
}

#doctor-contents .voice .staff-list .staff-box .staff-top {
  display: flex;
  justify-content: space-between;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-img {
  width: 186px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-img img {
  width: 100%;
  border-radius: 8px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt {
  width: calc(100% - 186px - 3%);
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 {
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 12px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
  padding-right: 6px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  color: #fff;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 12px;
  position: absolute;
  top: 48px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt a {
  text-decoration: underline;
  margin-left: 8px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title {
  box-sizing: border-box;
  width: 150px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 108px;
  position: relative;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title::after {
  content: "〉";
  font-size: 1.2rem;
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 0;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans {
  margin: 0;
  padding: 20px 0;
  display: none;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list {
  display: grid;
  gap: 24px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title {
  padding: 6px 0;
  margin-bottom: 12px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title h4 {
  font-size: 2rem;
  font-weight: 500;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents {
  display: flex;
  justify-content: space-between;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img {
  width: 30%;
  margin-right: 24px;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img img {
  width: 100%;
}

#doctor-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents p {
  font-size: 1.5rem;
  color: #585858;
}

#doctor-contents .about {
  background: #FBF6FF;
  position: relative;
  padding: 80px 0;
  margin-top: 120px;
}

#doctor-contents .about::before {
  content: "";
  background: url(../images/logo-icon.svg) no-repeat;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  bottom: -20px;
  left: -5vw;
  width: 524px;
  height: 576px;
}

#doctor-contents .about .abbout-inner .about-txt {
  width: 65%;
}

#doctor-contents .about .abbout-inner .about-txt h3 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 24px;
}

#doctor-contents .about .abbout-inner .about-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
}

#doctor-contents .about .abbout-inner .about-txt p + p {
  margin-top: 24px;
}

#doctor-contents .about .about-img {
  position: absolute;
  top: 0;
  right: 0;
  right: 0;
  width: 30vw;
  height: 50%;
  margin: auto;
}

#doctor-contents .about .about-img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

#doctor-contents .info table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #D1D1D1;
}

#doctor-contents .info table tr {
  border-bottom: 1px solid #D1D1D1;
}

#doctor-contents .info table tr:last-child {
  border-bottom: none;
}

#doctor-contents .info table tr:nth-child(even) {
  background: #F9F9F9;
}

#doctor-contents .info table tr th {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  width: 220px;
  background: #EEEEEE;
  padding: 16px 0;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

#doctor-contents .info table tr td {
  font-size: 1.5rem;
  padding: 16px 12px;
  font-family: "Noto Sans JP", sans-serif;
}

#doctor-contents .info table tr td a {
  color: #996CC1;
}

#doctor-contents .contact {
  background: #FBF6FF;
  padding: 80px 0 20px 0;
  margin-top: 120px;
}

#doctor-contents .contact .intro-top {
  padding: 60px 0 60px 0;
}

#hygienist-contents .intro, #assistant-contents .intro {
  background: url(../images/recruit/hygienist/intro-bg.jpg) no-repeat top;
  background-size: cover;
  padding: 32px;
  position: relative;
  height: 40vw;
  max-height: 520px;
}

#hygienist-contents .intro .intro-txt, #assistant-contents .intro .intro-txt {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}

#hygienist-contents .intro .intro-txt h3, #assistant-contents .intro .intro-txt h3 {
  font-size: 2.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 16px;
}

#hygienist-contents .intro .intro-txt p, #assistant-contents .intro .intro-txt p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
}

#hygienist-contents .intro .intro-txt p br, #assistant-contents .intro .intro-txt p br {
  display: none;
}

#hygienist-contents .voice .staff-list, #assistant-contents .voice .staff-list {
  margin-top: 24px;
}

#hygienist-contents .voice .staff-list .staff-box, #assistant-contents .voice .staff-list .staff-box {
  position: relative;
  margin-top: 32px;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) h3, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) h3 {
  background: #996CC1;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) .staff-top-txt a, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) .staff-top-txt a {
  color: #996CC1;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) .toggle_title, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) .toggle_title {
  color: #996CC1;
  border-bottom: 2px solid #996CC1;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) .toggle_title::after, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) .toggle_title::after {
  color: #996CC1;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) .voice-title, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) .voice-title {
  border-top: 1px dashed #BA93DD;
  border-bottom: 1px dashed #BA93DD;
}

#hygienist-contents .voice .staff-list .staff-box:nth-child(-n+4) .voice-title h4, #assistant-contents .voice .staff-list .staff-box:nth-child(-n+4) .voice-title h4 {
  color: #804BAF;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top, #assistant-contents .voice .staff-list .staff-box .staff-top {
  display: flex;
  justify-content: space-between;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-img, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-img {
  width: 186px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-img img, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-img img {
  width: 100%;
  border-radius: 8px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt {
  width: calc(100% - 186px - 3%);
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt h3, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 {
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 12px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 span, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
  padding-right: 6px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 strong, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt h3 strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  color: #fff;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 12px;
  position: absolute;
  top: 48px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt a, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .staff-top-txt a {
  text-decoration: underline;
  margin-left: 8px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title {
  box-sizing: border-box;
  width: 150px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 108px;
  position: relative;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title::after, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_title::after {
  content: "〉";
  font-size: 1.2rem;
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 0;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans {
  margin: 0;
  padding: 20px 0;
  display: none;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list {
  display: grid;
  gap: 24px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title {
  padding: 6px 0;
  margin-bottom: 12px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title h4, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-title h4 {
  font-size: 2rem;
  font-weight: 500;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents {
  display: flex;
  justify-content: space-between;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img {
  width: 30%;
  margin-right: 24px;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img img, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents .voice-img img {
  width: 100%;
}

#hygienist-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents p, #assistant-contents .voice .staff-list .staff-box .staff-top .staff-txt .staff-txt-contents .toggle_ans .voice-list .voice-box .voice-contents p {
  font-size: 1.5rem;
  color: #585858;
}

#hygienist-contents .work, #assistant-contents .work {
  background: #FBF6FF;
  padding: 80px 0;
  margin-top: 120px;
}

#hygienist-contents .work .work-inner .work-intro, #assistant-contents .work .work-inner .work-intro {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#hygienist-contents .work .work-inner .work-intro .intro-img, #assistant-contents .work .work-inner .work-intro .intro-img {
  width: 35%;
}

#hygienist-contents .work .work-inner .work-intro .intro-img img, #assistant-contents .work .work-inner .work-intro .intro-img img {
  width: 100%;
  border-radius: 8px;
}

#hygienist-contents .work .work-inner .work-intro .intro-txt, #assistant-contents .work .work-inner .work-intro .intro-txt {
  width: 60%;
}

#hygienist-contents .work .work-inner .work-intro .intro-txt h3, #assistant-contents .work .work-inner .work-intro .intro-txt h3 {
  font-size: 2.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 16px;
}

#hygienist-contents .work .work-inner .work-intro .intro-txt .intro-list, #assistant-contents .work .work-inner .work-intro .intro-txt .intro-list {
  display: grid;
  gap: 8px;
}

#hygienist-contents .work .work-inner .work-intro .intro-txt .intro-list li, #assistant-contents .work .work-inner .work-intro .intro-txt .intro-list li {
  font-size: 1.5rem;
  padding-left: 1.5em;
  position: relative;
}

#hygienist-contents .work .work-inner .work-intro .intro-txt .intro-list li::before, #assistant-contents .work .work-inner .work-intro .intro-txt .intro-list li::before {
  content: "●";
  font-size: 1.5rem;
  color: #996CC1;
  position: absolute;
  top: 0;
  left: 0;
}

#hygienist-contents .work .work-inner .point, #assistant-contents .work .work-inner .point {
  margin-top: 60px;
}

#hygienist-contents .work .work-inner .point .page-sub-title h3, #assistant-contents .work .work-inner .point .page-sub-title h3 {
  background: #FBF6FF;
}

#hygienist-contents .work .work-inner .point .point-list, #assistant-contents .work .work-inner .point .point-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#hygienist-contents .work .work-inner .point .point-list .point-box, #assistant-contents .work .work-inner .point .point-list .point-box {
  width: 32%;
  margin-right: 2%;
  margin-top: 60px;
  border-radius: 28px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  position: relative;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(3), #hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(5), #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(3), #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(5) {
  margin-right: 0;
}

#hygienist-contents .work .work-inner .point .point-list .point-box::before, #assistant-contents .work .work-inner .point .point-list .point-box::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(1)::before, #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(1)::before {
  background: url(../images/count01.svg) no-repeat;
  background-size: contain;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(2)::before, #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(2)::before {
  background: url(../images/count02.svg) no-repeat;
  background-size: contain;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(3)::before, #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(3)::before {
  background: url(../images/count03.svg) no-repeat;
  background-size: contain;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(4)::before, #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(4)::before {
  background: url(../images/count04.svg) no-repeat;
  background-size: contain;
}

#hygienist-contents .work .work-inner .point .point-list .point-box:nth-child(5)::before, #assistant-contents .work .work-inner .point .point-list .point-box:nth-child(5)::before {
  background: url(../images/count05.svg) no-repeat;
  background-size: contain;
}

#hygienist-contents .work .work-inner .point .point-list .point-box h3, #assistant-contents .work .work-inner .point .point-list .point-box h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  height: 40px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hygienist-contents .work .work-inner .point .point-list .point-box .point-img, #assistant-contents .work .work-inner .point .point-list .point-box .point-img {
  margin: 12px 0;
}

#hygienist-contents .work .work-inner .point .point-list .point-box .point-img img, #assistant-contents .work .work-inner .point .point-list .point-box .point-img img {
  width: 100%;
}

#hygienist-contents .work .work-inner .point .point-list .point-box p, #assistant-contents .work .work-inner .point .point-list .point-box p {
  font-size: 1.4rem;
  color: #585858;
}

#hygienist-contents .work .work-inner .other .study, #assistant-contents .work .work-inner .other .study {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

#hygienist-contents .work .work-inner .other .study .study-txt, #assistant-contents .work .work-inner .other .study .study-txt {
  width: 65%;
}

#hygienist-contents .work .work-inner .other .study .study-txt h3, #assistant-contents .work .work-inner .other .study .study-txt h3 {
  font-size: 2.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 16px;
}

#hygienist-contents .work .work-inner .other .study .study-txt p, #assistant-contents .work .work-inner .other .study .study-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
}

#hygienist-contents .work .work-inner .other .study .study-txt p span, #assistant-contents .work .work-inner .other .study .study-txt p span {
  font-weight: 500;
}

#hygienist-contents .work .work-inner .other .study .study-img, #assistant-contents .work .work-inner .other .study .study-img {
  width: 30%;
}

#hygienist-contents .work .work-inner .other .study .study-img img, #assistant-contents .work .work-inner .other .study .study-img img {
  width: 100%;
  border-radius: 8px;
}

#hygienist-contents .work .work-inner .other .event, #assistant-contents .work .work-inner .other .event {
  margin-top: 60px;
}

#hygienist-contents .work .work-inner .other .event .event-txt h3, #assistant-contents .work .work-inner .other .event .event-txt h3 {
  font-size: 2.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #804BAF;
  margin-bottom: 16px;
}

#hygienist-contents .work .work-inner .other .event .event-txt p, #assistant-contents .work .work-inner .other .event .event-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
}

#hygienist-contents .work .work-inner .other .event .event-img, #assistant-contents .work .work-inner .other .event .event-img {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

#hygienist-contents .work .work-inner .other .event .event-img img, #assistant-contents .work .work-inner .other .event .event-img img {
  width: 49%;
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
}

#hygienist-contents .info table, #assistant-contents .info table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #D1D1D1;
}

#hygienist-contents .info table tr, #assistant-contents .info table tr {
  border-bottom: 1px solid #D1D1D1;
}

#hygienist-contents .info table tr:last-child, #assistant-contents .info table tr:last-child {
  border-bottom: none;
}

#hygienist-contents .info table tr:nth-child(even), #assistant-contents .info table tr:nth-child(even) {
  background: #F9F9F9;
}

#hygienist-contents .info table tr th, #assistant-contents .info table tr th {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  width: 220px;
  background: #EEEEEE;
  padding: 16px 0;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

#hygienist-contents .info table tr td, #assistant-contents .info table tr td {
  font-size: 1.5rem;
  padding: 16px 12px;
  font-family: "Noto Sans JP", sans-serif;
}

#hygienist-contents .info table tr td a, #assistant-contents .info table tr td a {
  color: #996CC1;
}

#hygienist-contents .contact, #assistant-contents .contact {
  background: #FBF6FF;
  padding: 80px 0 20px 0;
  margin-top: 120px;
}

#hygienist-contents .contact .intro-top, #assistant-contents .contact .intro-top {
  padding: 60px 0 60px 0;
}

#parttimer-contents .no-application p,
#assistant-contents .no-application p  {
  text-align: center;
  font-size: 1.8rem;
}

#parttimer-contents .no-application p .sp {
  display: none;
}

#global-footer .footer-access {
  display: flex;
  justify-content: space-between;
}

#global-footer .footer-access .access-map {
  width: 50%;
}

#global-footer .footer-access .access-map iframe {
  width: 100%;
  height: 100%;
}

#global-footer .footer-access .access-txt {
  background: url(../images/footer-accessbg.jpg) no-repeat;
  background-size: cover;
  padding: 40px 60px;
  width: 50%;
}

#global-footer .footer-access .access-txt .access-list {
  margin: 40px 0;
}

#global-footer .footer-access .access-txt .access-list .access-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #BA93DD;
}

#global-footer .footer-access .access-txt .access-list .access-item:first-child {
  border-top: 1px dashed #BA93DD;
}

#global-footer .footer-access .access-txt .access-list .access-item dt {
  width: 120px;
  font-size: 1.5rem;
  padding: 16px 0 16px 16px;
  font-weight: 500;
}

#global-footer .footer-access .access-txt .access-list .access-item dd {
  width: calc(100% - 120px);
  font-size: 1.5rem;
  padding: 16px 0;
}

#global-footer .footer-access .access-txt .btn {
  margin: 0 auto 0 0;
}

#global-footer .footer-contact {
  background: #E8DCF3;
  position: relative;
  padding: 80px 0 200px 0;
  overflow: hidden;
}

#global-footer .footer-contact::after {
  content: "";
  background: url(../images/footer-bg.svg) no-repeat;
  background-size: contain;
  width: 100vw;
  height: 7vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
}

#global-footer .footer-contact .contact-inner {
  display: flex;
  justify-content: space-between;
}

#global-footer .footer-contact .contact-inner .contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#global-footer .footer-contact .contact-inner .contact-left .page-header-center h2 {
  text-align: left;
}

#global-footer .footer-contact .contact-inner .contact-left .page-header-center h2 span {
  text-align: left;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li:first-child {
  position: relative;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li:first-child::before {
  content: "＼ お電話はこちら ／";
  font-size: 1.6rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  margin: auto;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li a {
  border-radius: 50px;
  width: 294px;
  color: #fff !important;
  display: block;
  margin: 12px auto 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  padding: .75rem 1.5rem;
  position: relative;
  transition: all ease 0.5s;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li a::after {
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 6px;
  height: 11px;
  margin: auto;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li a::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left:10px;
  margin: auto;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .tel-btn {
  background: #996CC1;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .tel-btn::before {
  background: url(../images/tel.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  left: 83px;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .tel-btn:hover {
  background: #804BAF;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .contact-btn {
  background: #A3C902;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .contact-btn::before {
  background: url(../images/mail.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 12px;
  left: 1.5rem;
}

#global-footer .footer-contact .contact-inner .contact-left .btn-area li .contact-btn:hover {
  background: #88A800;
}

#global-footer .footer-contact .contact-inner .contact-right table tr {
  border-bottom: 1px solid #996CC1;
}

#global-footer .footer-contact .contact-inner .contact-right table tr th {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: 500;
  padding: 16px 0;
}

#global-footer .footer-contact .contact-inner .contact-right table tr td {
  font-size: 1.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  padding: 16px 0;
}

#global-footer .footer-contact .contact-inner .contact-right table tr .title {
  width: 150px;
}

#global-footer .footer-contact .contact-inner .contact-right table tr .last {
  width: 130px;
}

#global-footer .footer-contact .contact-inner .contact-right table tr .maru {
  position: relative;
}

#global-footer .footer-contact .contact-inner .contact-right table tr .maru::before {
  content: "●";
  color: #804BAF;
  font-size: 2.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
}

#global-footer .footer-contact .contact-inner .contact-right .tyuui {
  font-size: 1.5rem;
  color: #804BAF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-top: 4px;
}

#global-footer .footer-contents {
  background: #fff;
  padding: 20px 0 120px 0;
  position: relative;
}

#global-footer .footer-contents .footer-contents-inner .footer-logo {
  width: 380px;
  margin: 0 auto;
}

#global-footer .footer-contents .footer-contents-inner .footer-logo img {
  width: 100%;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu {
  border-top: 1px solid #CFCFCF;
  border-bottom: 1px solid #CFCFCF;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu .footer-list li a {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 8px 0;
  display: block;
  font-weight: 500;
  transition: all ease 0.5s;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu .footer-list li a:hover {
  color: #804BAF;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu .footer-list .submenu {
  border-left: 1px solid #DDC8F1;
  padding-left: 12px;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu .footer-list .submenu li a {
  color: #7E7E7E;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 4px 0;
  display: block;
  transition: all ease 0.5s;
}

#global-footer .footer-contents .footer-contents-inner .footer-menu .footer-list .submenu li a:hover {
  color: #804BAF;
}

#global-footer .footer-contents p.copy_small {
  font-size: 1.2rem;
  text-align: center;
  color: #979797;
  position: absolute;
  bottom: 82px;
  left: 0;
  right: 0;
  margin: auto;
} 
table.schedule td {
  font-size: 1.5rem;
  padding: 0 0.25rem;
}

.color-bg._bgcolor-purple {
  background-color: #520f2a !important;
}

.color-bg._bgcolor-red {
  background-color: #9a1919 !important;
}

.color-bg._bgcolor-orange {
  background-color: #ca4b22 !important;
}

.color-bg._bgcolor-yellow {
  background-color: #e6a32f !important;
}

.color-bg._bgcolor-green {
  background-color: #035b20 !important;
}

.color-bg._bgcolor-blue {
  background-color: #00285a !important;
}

.color-bg._bgcolor-black {
  background-color: #000000 !important;
}

.color-bg._bgcolor-white {
  background-color: #FFFFFF !important;
}

._bgcolor-red-white-green {
  background-image: linear-gradient(to right, #EE1B29 33%, #FFFFFF 33%, #FFFFFF 66%, #4E772F 66%) !important;
}

._bgcolor-white-red-white {
  background-image: linear-gradient(to right, #FFFFFF 33%, #EE1B29 33%, #EE1B29 66%, #FFFFFF 66%) !important;
}

._a_fbox {
  display: flex;
  flex-flow: row wrap;
  letter-spacing: -0.4em;
}

._a_fbox > div {
  letter-spacing: normal;
}

._w50 {
  width: 50%;
}

@media screen and (max-width: 760px) {
  ._sp_w100 {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */

/*20240229*/
._mt24{margin-top: 24px;}
._mb8{margin-bottom: 8px;}._mb24{margin-bottom: 24px;}._mb60{margin-bottom: 60px;}
section.ortho-2 strong,section.ortho-2 table th{font-weight: bold;}
section.ortho-2{
  padding: 20px 0;
  word-break: break-all;
}
section.ortho-2,section.ortho-2 *{color: #585858 ;}
section.ortho-2 h4 {color: #804BAF;margin-top: 3rem;}
section.ortho-2 p,section.ortho-2 th,section.ortho-2 td,section.ortho-2 li{font-size: 1.5rem;}
section.ortho-2 p{line-height: 1.8;margin-bottom: 1rem;}
section.ortho-2 .price-contents table{width: auto;}
section.ortho-2 .price-contents table th,
section.ortho-2 .price-contents table td{
  text-align: left;
  padding: 1rem;
  border-top: 1px dashed #BA93DD;
  border-bottom: 1px dashed #BA93DD;
}
section.ortho-2 .post_custom_content{
  background: #F8F8F8;
  border-radius: 8px;
  border: 1px solid #BA93DD;
  padding: 24px;
  margin-top: 24px;
}
section.ortho-2 .post_custom_content li{font-size: 1.4rem;}
.btn02 {margin: 20px 0;}
.btn02 a {
  color: #fff;
  background: #A3C902;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.8rem;
  display: inline-block;
  padding: 12px 5rem 12px 3rem ;
  position: relative;
  transition: all ease 0.5s;
}
.btn02 a:link,.btn02 a:visited,.btn02 a:hover,.btn02 a:active{color: #FFF;}
.btn02 a::after {
  content: "";
  background: url(https://unicus-yoshikawadc.com/wp-content/themes/unicus-yoshikawadc/images/btn-arrow.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 6px;
  height: 11px;
  margin: auto;
}
ul.List li{position: relative;padding: 0 0 0.25em 1.5em;}
ul.List li .coron{position: absolute;top:0;left:0;}

@media screen and (max-width:850px) {
  section.ortho-2 .price-contents table{width: 100%;table-layout: fixed;}
  .sp_hide{display: none ;}
}
@media screen and (min-width:1020px) {
  .btn02 a:hover{background-color: #88A800;}
}
._txtc{text-align: center;}
._fz18{font-size: 18px;}
._mt30{margin-top: 30px;}._mt50{margin-top: 50px;}
._mb30{margin-bottom: 30px;}
._txt-deco-underline,a._txt-deco-underline:link,a._txt-deco-underline:visited {text-decoration: underline; }
a._txt-deco-underline:hover{text-decoration: none;}
._fz12{font-size: 12px;}