@charset "UTF-8";
/*
## 全体
使用箇所：フォント
内容：
*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
}

a {
  font-family: sans-serif;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.br__pc {
  display: block;
}
@media (max-width: 768px) {
  .br__pc {
    display: none;
  }
}

.br__sp {
  display: none;
}
@media (max-width: 768px) {
  .br__sp {
    display: block;
  }
}

.tsukushi {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.shuei {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.neue-kabel {
  font-family: neue-kabel, sans-serif;
  font-style: normal;
  font-weight: 100;
}

.rift {
  font-family: "rift", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*
## wrapper
使用箇所：
内容：
*/
.wrapper {
  background: url(../../assets/img/pc/main__bg.webp) no-repeat 0 46.5vw/contain;
  width: calc(100vw - 15px);
  padding-top: 50px;
  margin-top: -50px;
}
@media (max-width: 768px) {
  .wrapper {
    background: url(../../assets/img/sp/main__bg.webp) no-repeat 0 181.66vw/contain;
    width: 100%;
    overflow: hidden;
  }
}

/*
## nav
使用箇所：メニュー
内容：
*/
.header {
  position: sticky;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header__inner {
    position: fixed;
    top: 11px;
    right: 0px;
  }
}

/* ハンバーガーボタン*/
.drawer__button {
  position: relative;
  width: clamp(50px, 5.71vw, 80px);
  height: clamp(50px, 5.71vw, 80px);
  background-color: transparent;
  cursor: pointer;
  z-index: 999;
  margin: 2.71vw 4.78vw;
  margin-left: auto;
  border: none;
  border-radius: 50%;
  background-color: #000;
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.7vw;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .drawer__button > span {
    width: clamp(15px, 2.9vw, 20px);
  }
}

.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.6vw));
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.8vw));
  }
}

.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.6vw));
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.8vw));
  }
}

/* 展開時*/
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* メニュー*/
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__inner {
  position: relative;
  width: 35.71vw;
  max-width: 500px;
  height: 100%;
  background-color: #F7F7F7;
  padding: 5rem 1.7rem 2rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .drawer__nav__inner {
    width: 100%;
    max-width: 100%;
  }
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__item .btn-information {
  margin-top: 1.14vw;
}
@media (max-width: 768px) {
  .drawer__nav__item .btn-information {
    margin-top: 4vw;
  }
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 2.85vw 1.78vw;
  border-bottom: 1px solid #CCCCCC;
  font-size: clamp(1.42vw, 1.42vw, 20px);
}
@media (max-width: 768px) {
  .drawer__nav__link {
    padding: 5.85vw 1.78vw;
    font-size: clamp(14px, 2.4vw, 20px);
  }
}
@media (min-width: 1400px) {
  .drawer__nav__link {
    padding: 36px 20px;
  }
}
.drawer__nav__link a:hover {
  color: #F79486;
}

/*
## kv
使用箇所：キービジュアル
内容：
*/
#header {
  width: calc(100vw - 15px);
  padding-bottom: 19vw;
}
@media (max-width: 768px) {
  #header {
    width: 100%;
    padding-top: 26vw;
    padding-bottom: 10vw;
  }
}
#header__bg {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  #header__bg {
    padding-top: 18.66vw;
  }
}
#header__bg img {
  width: 100%;
  height: auto;
}
#header__h1 {
  position: absolute;
  top: 3.93vw;
  left: 10.71vw;
  width: 27vw;
  font-size: clamp(14px, 1.07vw, 20px);
  text-align: center;
  line-height: 1.86em;
}
@media (max-width: 768px) {
  #header__h1 {
    top: 6vw;
    left: 7.71vw;
    text-align: left;
    font-size: clamp(3.46vw, 3.46vw, 13px);
    width: 85vw;
  }
}
#header__h1 span {
  display: inline-block;
  margin: 0 auto 20px;
  text-align: left;
}
#header__h1 img {
  width: 100%;
  height: auto;
}
#header .mv_cc {
  position: absolute;
  top: 36.42vw;
  left: 24.28vw;
  font-size: 3.59vw;
  color: #fff;
  font-weight: 700;
  background-color: #F79486;
  padding: 10px 18px;
}
@media (max-width: 768px) {
  #header .mv_cc {
    left: 0;
    top: 75.42vw;
    font-size: clamp(4.39vw, 4.39vw, 33px);
    padding: 7px 15px;
  }
}
#header .mv_cc__sub {
  font-size: clamp(9px, 1.28vw, 22px);
  line-height: 1.77em;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  #header .mv_cc__sub {
    position: inherit;
    font-size: clamp(3.59vw, 3.59vw, 14px);
    padding: 0 8vw;
    line-height: 1.55em;
  }
}
#header .mv_cc__sub p {
  position: absolute;
  top: -12vw;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 768px) {
  #header .mv_cc__sub p {
    position: inherit;
    left: 0;
    transform: translateX(0);
  }
}

/*
## information .section_1
使用箇所：医院概要
内容：
*/
.section_1 {
  margin: 0 auto 30px;
  max-width: 1040px;
  padding: 0 20px;
}

.btn-information {
  text-align: center;
}
.btn-information a {
  padding: 1.78vw 8.14vw;
  background: linear-gradient(to right, #EE8C9E 0%, #FAE25C 51%, #feb666 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  border-radius: 100px;
  font-size: clamp(16px, 1.71vw, 24px);
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin: 5vw 0;
  letter-spacing: 0.1em;
  box-shadow: 0 1.07vw 0.85vw #F7E9E2;
}
@media (max-width: 768px) {
  .btn-information a {
    padding: 4vw 19.33vw;
    font-size: 3.73vw;
    box-shadow: 0 2vw 1.6vw #F7E9E2;
  }
}
@media (min-width: 1400px) {
  .btn-information a {
    padding: 25px 114px;
  }
}
.btn-information a:hover {
  background-position: 99% 50%;
}

.top-information {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-information {
    display: block;
  }
}
.top-information .information-left {
  width: 50%;
}
@media (max-width: 768px) {
  .top-information .information-left {
    width: 100%;
  }
}
.top-information .information-left p {
  line-height: 2em;
  padding-left: 10px;
  letter-spacing: 1px;
  margin: 25px 0;
}
@media (max-width: 768px) {
  .top-information .information-left p {
    margin: 4.66vw 0 5vw;
  }
}
.top-information .information-right {
  position: relative;
  width: 50%;
  overflow: hidden;
  height: 0;
  padding-top: calc(50% - 5.17vw);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .top-information .information-right {
    width: 90%;
    padding-left: 0;
    padding-top: calc(100% - 5.17vw);
    margin: 2.66vw auto;
  }
}
.top-information .information-right iframe {
  position: absolute;
  bottom: 0;
  left: 5.71vw;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .top-information .information-right iframe {
    left: 0;
  }
}
.top-information .info__annotation {
  font-size: clamp(1.14vw, 1.14vw, 16px);
}
@media (max-width: 768px) {
  .top-information .info__annotation {
    font-size: 3.59vw;
  }
}
.top-information .info__add {
  font-size: clamp(13px, 1.28vw, 20px);
  text-indent: -2em;
  padding-left: 2.5em;
}
@media (max-width: 768px) {
  .top-information .info__add {
    font-size: 3.73vw;
  }
}
.top-information .info__add:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 34px;
  background-image: url(../../assets/img/icon_map-pin.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .top-information .info__add:before {
    margin-top: 3vw;
    width: 4.39vw;
    height: 6vw;
    margin-top: 0;
  }
}
.top-information .info__tel {
  padding-left: 0.5em;
  line-height: 40px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top-information .info__tel {
    margin-top: 3vw;
  }
}
.top-information .info__tel:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../../assets/img/icon_phone.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -16px;
}
@media (max-width: 768px) {
  .top-information .info__tel:before {
    margin-top: -2vw;
    width: 5.33vw;
    height: 5.33vw;
  }
}
.top-information .info__tel a {
  font-size: clamp(2.71vw, 2.71vw, 38px);
  color: #F79486;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .top-information .info__tel a {
    font-size: 6.4vw;
  }
}
@media (min-width: 769px) {
  .top-information .info__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*
## .table
使用箇所：
内容：
*/
.table_01 {
  width: 100%;
  position: relative;
  border-collapse: collapse;
  font-size: clamp(12px, 1.28vw, 20px);
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.table_01 thead {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.table_01 thead tr {
  padding-bottom: 15px;
  text-align: center;
}
.table_01 thead th {
  padding-bottom: 15px;
  text-align: center;
  line-height: normal;
  font-size: clamp(12px, 1.28vw, 20px);
}
@media (max-width: 769px) {
  .table_01 thead th {
    padding-bottom: 2.93vw;
  }
}
.table_01 thead th:first-child {
  text-align: left;
  padding-left: 10px;
}
.table_01 tbody {
  text-align: center;
}
.table_01 tbody th {
  padding-top: 25px;
  text-align: left;
  padding-bottom: 0;
  padding-left: 10px;
  width: 25%;
}
@media (max-width: 769px) {
  .table_01 tbody th {
    padding-top: 3.93vw;
    width: 30%;
  }
}
.table_01 tbody tr:last-of-type th, .table_01 tbody tr:last-of-type td {
  padding-bottom: 20px;
}
@media (max-width: 769px) {
  .table_01 tbody tr:last-of-type th, .table_01 tbody tr:last-of-type td {
    padding-bottom: 3.66vw;
  }
}
.table_01 td {
  color: #F79486;
  font-size: 25px;
  vertical-align: middle;
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 769px) {
  .table_01 td {
    font-size: 4.6vw;
    padding-top: 3.66vw;
  }
}
.table_01 td:last-child {
  position: relative;
}
.table_01 td:last-child::after {
  position: absolute;
  top: 32px;
  left: 20%;
  content: "";
  width: 35px;
  height: 2px;
  background: #F79486;
  transform: rotate(315deg);
}
@media (max-width: 769px) {
  .table_01 td:last-child::after {
    top: 5.9vw;
    width: 5.66vw;
    height: 1px;
  }
}

/*
## .section
使用箇所：
内容：
*/
.section_2 {
  margin: 5.71vw auto 7.71vw;
  position: relative;
  padding-top: 20vw;
}
@media (max-width: 768px) {
  .section_2 {
    padding-top: 40vw;
  }
}

.section_3 {
  margin: 1.57vw auto;
  position: relative;
}

.section_4 {
  padding: 16.57vw 0 6vw;
  margin-top: -8vw;
}

/*
## header
使用箇所：
内容：見出し
*/
.section_header {
  max-width: 1320px;
  margin: 20px auto;
  position: absolute;
  padding: 0 1.42vw 40px 6.42vw;
  top: 0;
  left: 4.28vw;
}
@media (max-width: 768px) {
  .section_header {
    padding: 0 1.42vw 40px 11.42vw;
  }
}
.section_header__h2 {
  font-size: clamp(24px, 3.71vw, 52px);
  letter-spacing: 0.1em;
  color: #F79486;
}
@media (max-width: 768px) {
  .section_header__h2 {
    font-size: 8.53vw;
  }
}
.section_header__h2 span {
  display: block;
  font-size: clamp(16px, 1.57vw, 22px);
  color: #000;
  margin: 1.6vw 0;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  .section_header__h2 span {
    font-size: 3.2vw;
    margin: 2.5vw 0;
  }
}
.section_header span.en {
  writing-mode: vertical-rl;
  position: absolute;
  left: 2.66vw;
  top: 0;
  margin: 7px 0;
  letter-spacing: 0.15em;
  font-size: clamp(7px, 1.42vw, 20px);
}
@media (max-width: 768px) {
  .section_header span.en {
    font-size: 2.66vw;
    margin-top: 0.93vw;
  }
}
.section_header span.en:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 5.33vw;
  background-image: url(../../assets/img/ttl__border.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
}
.section_header .ttl__sub {
  font-size: clamp(13px, 1.92vw, 27px);
  margin-top: 0.71vw;
  padding: 1.05vw 1.07vw;
  background-color: #F79486;
  display: inline-block;
  color: #fff;
  letter-spacing: inherit;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section_header .ttl__sub {
    font-size: 3.59vw;
    margin-top: 2.6vw;
    padding: 1.6vw 2vw;
  }
}
.section_header .ttl_nn {
  margin: 1.5vw 0 3.5vw;
  font-size: clamp(7px, 1.14vw, 16px);
  line-height: 1.87em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
@media (max-width: 768px) {
  .section_header .ttl_nn {
    margin: 3.5vw 0 7.5vw;
    font-size: 3.59vw;
    padding-right: 6vw;
  }
}

/*
## .div
使用箇所：.div_1（当院について list）, .div_2（料金 list）
内容：
*/
.div_1 {
  background: url(../../assets/img/section_2__bg.webp) no-repeat top left/cover;
}
@media (max-width: 768px) {
  .div_1 {
    background: url(../../assets/img/section_2__bg__sp.webp) no-repeat top left/cover;
    margin-top: 10px;
  }
}

.div_2 {
  width: 57.14vw;
  margin: 0 0 0 auto;
  padding: 30px 10.71vw 30px 0;
  background: url(../../assets/img/price__bg.png) no-repeat top right/34.42vw 39.78vw;
}
@media (max-width: 768px) {
  .div_2 {
    width: 100%;
    padding: 43vw 25px 4vw;
    box-sizing: border-box;
    background: url(../../assets/img/price__bg__sp.png) no-repeat 100% 6vw/43.6vw 57.99vw;
  }
}

/*
## .list
使用箇所：.div_1（当院について）
内容：
*/
.div_1 .lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1040px;
  counter-reset: listnum;
  list-style: none;
  margin: 0 auto;
  padding: 2.5vw 0;
}
@media (max-width: 768px) {
  .div_1 .lists {
    display: block;
  }
}
.div_1 .lists .list {
  padding: clamp(20px, 10vw, 146px) clamp(20px, 4.85vw, 68px) 7.14vw;
  background-color: #fff;
  border-radius: 50%;
  margin: 20px;
  width: 32.85vw;
  height: 32.85vw;
  max-width: 460px;
  max-height: 460px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  .div_1 .lists .list {
    width: 80vw;
    height: 80vw;
    margin: 20px auto;
    padding: 23.8vw 8.3vw 7.14vw;
    max-width: inherit;
    max-height: inherit;
  }
}
.div_1 .lists .list::before {
  counter-increment: listnum;
  content: "0" counter(listnum);
  width: 74px;
  display: block;
  background: url(../../assets/img/ttl_after.png) bottom center/contain no-repeat;
  font-family: neue-kabel, sans-serif;
  font-style: italic;
  color: #F79486;
  font-size: clamp(24px, 3.57vw, 50px);
  text-align: center;
  padding-bottom: 15px;
  position: absolute;
  top: 3.2vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media (max-width: 768px) {
  .div_1 .lists .list::before {
    top: 7.66vw;
    font-size: clamp(8.66vw, 8.66vw, 33px);
    width: 48px;
    padding-bottom: 10px;
  }
}
.div_1 .lists .list__tti {
  color: #F79486;
  font-size: clamp(14px, 1.85vw, 26px);
  text-align: center;
  font-weight: bold;
  line-height: 1.46em;
}
@media (max-width: 768px) {
  .div_1 .lists .list__tti {
    font-size: clamp(4.26vw, 4.26vw, 16px);
  }
}
.div_1 .lists .list p {
  line-height: 1.87em;
  margin-top: 1.8vw;
  font-size: clamp(8px, 1.14vw, 16px);
  text-align: center;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .div_1 .lists .list p {
    line-height: 1.44em;
    margin-top: 2.8vw;
    font-size: clamp(3.2vw, 3.2vw, 13px);
  }
}

/*
## .list
使用箇所：.div_2（料金）
内容：
*/
.div_2 .menu__lists {
  display: block;
  counter-reset: listnum;
}
.div_2 .menu__lists .list {
  position: relative;
  padding: 1.14vw 0 0.14vw;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list {
    padding: 3.7vw 0 3.14vw;
  }
}
.div_2 .menu__lists .list::before {
  position: absolute;
  top: 0;
  left: 10px;
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: neue-kabel, sans-serif;
  font-style: italic;
  color: #EAEAEA;
  font-size: clamp(24px, 3.57vw, 50px);
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list::before {
    top: 1vw;
    font-size: 8.66vw;
  }
}
.div_2 .menu__lists .list__ttl {
  font-size: clamp(12px, 1.85vw, 26px);
  color: #F79486;
  font-weight: bold;
  padding-left: 6.42vw;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list__ttl {
    font-size: 4.26vw;
    padding-left: 15.33vw;
  }
}
.div_2 .menu__lists .list__ttl:after {
  background: linear-gradient(to right, #EE8C9E, #FAE25C);
  border-radius: 5px;
  content: "";
  display: block;
  height: 3px;
  margin-left: -6.42vw;
  margin-top: 2.14vw;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list__ttl:after {
    height: 2px;
    margin-top: 4.14vw;
    margin-left: -14.22vw;
  }
}
.div_2 .menu__lists .list__content {
  font-size: clamp(12px, 1.42vw, 20px);
  padding: 2.14vw 10px 0;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list__content {
    font-size: 3.59vw;
    padding: 6.14vw 10px 0;
  }
}
.div_2 .menu__lists .list__type {
  margin: 0.5vw 0 2.5vw;
  padding: 0.71vw;
  background-color: #F79486;
  color: #fff;
  font-size: clamp(14px, 1.57vw, 22px);
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list__type {
    margin: 1vw 0 4.5vw;
    padding: 2vw 2.5vw;
    font-size: 3.59vw;
  }
}
.div_2 .menu__lists .list__price {
  line-height: 1.55em;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}
.div_2 .menu__lists .list__sup {
  margin: 1.5vw 0 3.5vw;
  font-size: clamp(7px, 1.14vw, 16px);
  line-height: 1.87em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
@media (max-width: 768px) {
  .div_2 .menu__lists .list__sup {
    margin: 3.5vw 0 7.5vw;
    font-size: 3.59vw;
  }
}

/*
## #gallary / .slide
使用箇所：スライダー写真
内容：
*/
#gallary {
  position: relative;
  background: url(../../assets/img/slider__bg.png) no-repeat top left/37.85vw 37.42vw;
}

.slide {
  width: clamp(250px, 55.35vw, 775px);
}
@media (max-width: 768px) {
  .slide {
    width: 76.53vw;
  }
}
.slide img {
  transform: scale(0.8);
  transition: transform 0.3s;
  border-radius: 2.85vw;
  width: 100%;
  height: auto;
}
.slide.slick-center img {
  transform: scale(1);
}

.slick-dots {
  bottom: clamp(-50px, -3.57vw, -20px);
  left: 50%;
  margin-left: clamp(-380px, -27.07vw, -130px);
  text-align: inherit;
}
@media (max-width: 768px) {
  .slick-dots {
    bottom: -7vw;
    left: 50%;
    transform: translateX(-50%);
    text-align: inherit;
    width: 78.66vw;
    margin-left: 0;
  }
}
.slick-dots li {
  margin: 0;
  width: 20px;
}
@media (max-width: 768px) {
  .slick-dots li {
    width: 15px;
  }
}
@media (max-width: 768px) {
  .slick-dots li button {
    width: clamp(11px, 2.66vw, 2.66vw);
    height: clamp(11px, 2.66vw, 2.66vw);
  }
}
.slick-dots li button:before {
  font-size: 12px;
  opacity: 0.15;
  content: "●";
}
@media (max-width: 768px) {
  .slick-dots li button:before {
    font-size: 10px;
  }
}

.slick-arrow {
  z-index: 2 !important;
  width: clamp(15px, 2.14vw, 30px) !important;
  height: clamp(15px, 2.14vw, 30px) !important;
  top: inherit;
  bottom: clamp(-77px, -5.5vw, -25px);
}
@media (max-width: 768px) {
  .slick-arrow {
    bottom: -10vw;
    width: 5% !important;
    height: 10% !important;
  }
}
.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.slick-arrow.slick-next {
  right: 50% !important;
  margin-right: clamp(-351px, -25.07vw, -10px);
}
@media (max-width: 768px) {
  .slick-arrow.slick-next {
    right: 37vw !important;
  }
}
.slick-arrow.slick-next:before {
  background: url(../../assets/img/arrow_next.png) 0 0/30px 30px no-repeat !important;
  background-size: contain !important;
}
.slick-arrow.slick-prev {
  left: 50% !important;
  margin-left: clamp(10px, 18vw, 252px);
}
@media (max-width: 768px) {
  .slick-arrow.slick-prev {
    margin-left: 0;
    left: inherit !important;
    right: 22vw;
  }
}
.slick-arrow.slick-prev:before {
  background: url(../../assets/img/arrow_prev.png) 0 0/30px 30px no-repeat !important;
  background-size: contain !important;
}

/*
## .section_5
使用箇所：ドクター紹介
内容：
*/
.section_5 {
  background: url(../../assets/img/main__bg.webp) no-repeat 0 30vw/contain;
  position: relative;
  padding-top: 15vw;
  padding-bottom: 12.64vw;
}
@media (max-width: 768px) {
  .section_5 {
    background: url(../../assets/img/sp/main__bg.png) no-repeat 0 91vw/contain;
  }
}
.section_5__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section_5__1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: clamp(60vw, 60vw, 840px);
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .section_5__1 {
    display: block;
    width: 82vw;
    margin: 25px auto;
    padding: 0 0 5vw;
  }
}
.section_5__2 {
  display: flex;
  justify-content: space-between;
  padding: 7.14vw 2.5vw 0;
}
@media (max-width: 768px) {
  .section_5__2 {
    display: block;
    padding: 3.14vw 0 0;
    width: 82vw;
    margin: 0 auto;
  }
}
.section_5__2 .doctor__intro {
  padding: 0 2.4vw;
}
@media (max-width: 768px) {
  .section_5__2 .doctor__intro {
    padding: 0 0 12vw;
  }
}

.doctor__intro {
  padding-top: 0;
  width: clamp(29.71vw, 29.71vw, 416px);
}
@media (max-width: 768px) {
  .doctor__intro {
    width: 100%;
  }
}
.is__2 .doctor__intro {
  order: 1;
  padding-left: 2.85vw;
  width: clamp(29.71vw, 31.42vw, 440px);
}
@media (max-width: 768px) {
  .is__2 .doctor__intro {
    padding-left: 0;
    width: 100%;
  }
}
.doctor__posish {
  font-size: clamp(1.71vw, 1.71vw, 24px);
  color: #F79486;
  font-weight: bold;
}
@media (max-width: 768px) {
  .doctor__posish {
    font-size: 4.53vw;
  }
}
.doctor__name {
  margin-top: 1.42vw;
  font-size: clamp(2.28vw, 2.28vw, 32px);
}
@media (max-width: 768px) {
  .doctor__name {
    font-size: 6.13vw;
    margin-top: 5.33vw;
  }
}
.doctor__name_en {
  display: block;
  margin-top: 1.07vw;
  font-size: clamp(1.57vw, 1.57vw, 22px);
}
@media (max-width: 768px) {
  .doctor__name_en {
    font-size: 4.13vw;
    margin-top: 4vw;
  }
}
.doctor__detail {
  padding-top: 4.28vw;
  line-height: 1.66em;
  font-size: clamp(1.28vw, 1.28vw, 18px);
}
@media (max-width: 768px) {
  .doctor__detail {
    font-size: 3.59vw;
    padding-top: 7vw;
  }
}
.doctor__detail a {
  color: #F79486;
}
.doctor__img {
  width: clamp(27.5vw, 27.5vw, 385px);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .doctor__img {
    width: 55.33vw;
    margin: 0 auto;
  }
}
.doctor__img img {
  width: 100%;
  height: auto;
}
.is__2 .doctor__img img {
  position: absolute;
  top: clamp(-80px, -5.71vw, -5.71vw);
  right: 0;
  max-width: 335px;
}
@media (max-width: 768px) {
  .is__2 .doctor__img img {
    top: 10.66vw;
    position: inherit;
  }
}
.doctor__img.is__1 {
  padding-right: 3.57vw;
}
@media (max-width: 768px) {
  .doctor__img.is__1 {
    padding-right: 0;
  }
}
.doctor__img.is__2 {
  order: 2;
  position: relative;
  padding-left: 3.57vw;
}
@media (max-width: 768px) {
  .doctor__img.is__2 {
    position: inherit;
    padding-left: 0;
  }
}

/*
## .pagetop
使用箇所：ページトップ
内容：
*/
.pagetop {
  text-align: right;
  writing-mode: vertical-rl;
  margin: 7px 5vw 7px auto;
  letter-spacing: 0.15em;
  font-size: clamp(7px, 1.42vw, 20px);
}
@media (max-width: 768px) {
  .pagetop {
    font-size: 4.39vw;
  }
}

.pagetop__btn {
  display: inline-block;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: #000;
}
.pagetop__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  right: 13px;
  width: 3px;
  height: 41px;
  border: none;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  transform: skew(0deg, 45deg);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .pagetop__btn::after {
    right: 9px;
  }
}
.pagetop__btn:hover::after {
  height: 51px;
  top: -60px;
}

/*
## #footer
使用箇所：フッター
内容：
*/
.footer {
  margin-top: 2.85vw;
  border-top: solid 1px #D6D6D6;
}
.footer__container {
  padding: 0 5vw 3.21vw;
}
.footer__content {
  position: relative;
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .footer__content {
    display: block;
    padding-top: 18vw;
  }
}
.footer__content img.clinic_img {
  position: absolute;
  top: -3.57vw;
  left: 0;
  width: 50%;
  padding-right: 2.14vw;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer__content img.clinic_img {
    top: -29.57vw;
    height: auto;
    width: 67.73vw;
    padding-right: 0;
  }
}
.footer__main {
  display: flex;
  padding-top: 4.28vw;
  width: 50%;
}
@media (max-width: 768px) {
  .footer__main {
    width: 100%;
  }
}
.footer__nav {
  display: flex;
  justify-content: start;
  width: 12.35vw;
  padding-right: 50px;
  margin-top: 0.71vw;
}
@media (max-width: 768px) {
  .footer__nav {
    order: 2;
    width: 45vw;
    padding-right: 1.33vw;
  }
}
.footer__nav li {
  margin-bottom: clamp(2.14vw, 2.14vw, 30px);
}
@media (max-width: 768px) {
  .footer__nav li {
    margin-bottom: 5.66vw;
  }
}
.footer__nav a {
  padding-left: 45px;
  position: relative;
  font-size: clamp(1.28px, 1.28vw, 18px);
  color: #000;
  font-family: neue-kabel, sans-serif;
}
@media (max-width: 768px) {
  .footer__nav a {
    font-size: 3.86vw;
    padding-left: 6vw;
  }
}
.footer__nav a:hover::before {
  position: absolute;
  left: 10px;
  top: -1px;
  content: "";
  display: inline-block;
  width: 26px;
  height: 23px;
  background-image: url(../../assets/img/f__nav_icon.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .footer__nav a:hover::before {
    left: 0;
    width: 5.73vw;
    height: 5.06vw;
    top: 0.26vw;
  }
}
.footer__info {
  width: 17.85vw;
}
@media (max-width: 768px) {
  .footer__info {
    width: 55vw;
  }
}
.footer__info img {
  width: clamp(13.57vw, 13.57vw, 190px);
  height: auto;
  margin-bottom: 2.14vw;
}
@media (max-width: 768px) {
  .footer__info img {
    width: 29.46vw;
    margin-bottom: 3.5vw;
  }
}
.footer__info p {
  line-height: 1.68em;
  font-size: clamp(1.14vw, 1.14vw, 16px);
}
@media (max-width: 768px) {
  .footer__info p {
    font-size: 3.2vw;
  }
}
.footer__info a {
  color: #000;
  display: inline-block;
  margin-top: 1.42vw;
}
@media (max-width: 768px) {
  .footer__info a {
    font-size: 3.73vw;
    margin-top: 3.42vw;
  }
}
@media (min-width: 769px) {
  .footer__info a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.footer__copyright {
  display: flex;
  justify-content: flex-end;
  padding: 5.71vw 7.14vw 0;
  color: #ACACAC;
  font-size: clamp(1vw, 1vw, 14px);
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 3.33vw;
    justify-content: center;
  }
}

/*
## 
使用箇所：メインビジュアル
内容：フェードイン
*/
.fadeIn_up {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(50px);
}
.fadeIn_up.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fadeIn_bg {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn_left {
  animation: floating-left 1.2s ease-in 1.5s 1 forwards normal;
  opacity: 0;
}

@keyframes floating-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*
## 
使用箇所：各所
内容：漂う鉱石等の動き
*/
.fuwafuwa-wrap {
  display: block;
  position: absolute;
  height: auto;
}

.fuwafuwa {
  display: block;
  width: 100%;
  height: auto;
}

.fuwafuwa-wrap {
  opacity: 0;
}

.fuwafuwa-wrap01 {
  top: 2.79vw;
  right: 21.35vw;
  width: 12.07vw;
  height: 11.78vw;
  max-width: 220px;
  animation: floating-x 9s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap01 {
    top: 36.73vw;
    right: 12.53vw;
    width: 16.4vw;
    height: 15.86vw;
    max-width: 123px;
  }
}

.fuwafuwa-wrap02 {
  top: 12vw;
  right: 9.42vw;
  width: 8.21vw;
  height: 8vw;
  max-width: 220px;
  animation: floating-x 4s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 3s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap02 {
    top: 85.66vw;
    left: 7.53vw;
    width: 11.2vw;
    height: 10.83vw;
    max-width: 84px;
  }
}

.fuwafuwa-wrap03 {
  top: 26.21vw;
  left: 13.42vw;
  width: 12.14vw;
  height: 11.85vw;
  max-width: 240px;
  animation: floating-x 3.4s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 2s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap03 {
    top: 44.8vw;
    left: 4.66vw;
    width: 16.66vw;
    height: 17.06vw;
    max-width: 125px;
  }
}

.fuwafuwa-wrap04 {
  top: 43.85vw;
  left: 40.71vw;
  width: 7.85vw;
  height: 11.85vw;
  max-width: 220px;
  animation: floating-x 6.2s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 2.8s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap04 {
    top: 94.13vw;
    left: 19.46vw;
    width: 10.53vw;
    height: 11.2vw;
    max-width: 79px;
  }
}

.fuwafuwa-wrap05 {
  top: 62.78vw;
  right: 19.92vw;
  width: 6.14vw;
  height: 7.071vw;
  max-width: 220px;
  animation: floating-x 5s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 3.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap05 {
    top: 112.66vw;
    right: 24.13vw;
    width: 8.26vw;
    height: 11.2vw;
    max-width: 62px;
  }
}

.fuwafuwa-wrap06 {
  top: 63.57vw;
  left: 4.71vw;
  width: 7.92vw;
  height: 9.14vw;
  max-width: 260px;
  animation: floating-x 3.6s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 3.2s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap06 {
    top: 141.66vw;
    left: 3.33vw;
    width: 13.33vw;
    height: 12.8vw;
    max-width: 100px;
  }
}

.fuwafuwa-wrap07 {
  top: 83.57vw;
  left: 8.65vw;
  width: 8.5vw;
  height: 8.071vw;
  max-width: 220px;
  animation: floating-x 2.9s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap07 {
    top: 175.66vw;
    left: 2vw;
    width: 10.93vw;
    height: 12.53vw;
    max-width: 82px;
  }
}

.fuwafuwa-wrap08 {
  top: 86.85vw;
  right: 4.14vw;
  width: 14.14vw;
  height: 14.14vw;
  max-width: 230px;
  animation: floating-x 2.1s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 2s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap08 {
    top: 132vw;
    right: 4.79vw;
    width: 26.4vw;
    height: 26.4vw;
    max-width: 198px;
  }
}

.fuwafuwa-wrap11 {
  top: 14.35vw;
  right: 10.71vw;
  width: clamp(13.57vw, 13.57vw, 190px);
  height: 8vw;
  animation: floating-x 4s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap11 {
    top: 34.53vw;
    right: 1.86vw;
    width: 20.4vw;
    height: 20vw;
    max-width: 153px;
  }
}

.fuwafuwa-wrap12 {
  top: 27.5vw;
  left: 5.71vw;
  width: clamp(12.14vw, 12.14vw, 170px);
  height: 11.78vw;
  animation: floating-x 3s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap12 {
    top: 61.33vw;
    left: 3.73vw;
    width: 18.2vw;
    height: 17.73vw;
    max-width: 137px;
  }
}

.fuwafuwa-wrap13 {
  top: 50.42vw;
  right: 7.42vw;
  width: clamp(7.92vw, 7.92vw, 111px);
  height: 11.78vw;
  animation: floating-x 3s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap13 {
    top: 112.93vw;
    right: 11.33vw;
    width: 11.86vw;
    height: 13.73vw;
    max-width: 89px;
  }
}

.fuwafuwa-wrap14 {
  bottom: 5.28vw;
  left: 12.21vw;
  width: clamp(14.14vw, 14.14vw, 198px);
  height: 14.14vw;
  animation: floating-x 3s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap14 {
    left: auto;
    top: 287.86vw;
    right: 10.4vw;
    width: 26.4vw;
    height: 26.4vw;
    max-width: 198px;
  }
}

.fuwafuwa-wrap15 {
  bottom: 0;
  left: 28.92vw;
  width: clamp(6.14vw, 6.14vw, 86px);
  height: 7.07vw;
  animation: floating-x 3.5s ease-in-out infinite alternate-reverse, fadeIn01 1.5s ease-in 1.5s 1 forwards normal;
}
@media (max-width: 768px) {
  .fuwafuwa-wrap15 {
    top: 208vw;
    left: 11.33vw;
    width: 11.86vw;
    height: 11.46vw;
    max-width: 86px;
  }
}

.fuwafuwa01 {
  animation: floating-y 2.8s ease-in-out infinite alternate-reverse;
}

.fuwafuwa02 {
  animation: floating-y 3.5s ease-in-out infinite alternate-reverse;
}

.fuwafuwa03 {
  animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.fuwafuwa04 {
  animation: floating-y 4s ease-in-out infinite alternate-reverse;
}

.fuwafuwa05 {
  animation: floating-y 3s ease-in-out infinite alternate-reverse;
}

.fuwafuwa06 {
  animation: floating-y 3.6s ease-in-out infinite alternate-reverse;
}

.fuwafuwa07 {
  animation: floating-y 2.8s ease-in-out infinite alternate-reverse;
}

.fuwafuwa08 {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

.fuwafuwa11 {
  animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
}

.fuwafuwa12 {
  animation: floating-y 3.7s ease-in-out infinite alternate-reverse;
}

.fuwafuwa13 {
  animation: floating-y 2.1s ease-in-out infinite alternate-reverse;
}

.fuwafuwa14 {
  animation: floating-y 2.1s ease-in-out infinite alternate-reverse;
}

.fuwafuwa15 {
  animation: floating-y 4.1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-x {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
@keyframes fadeIn01 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=home.css.map */