@charset "UTF-8";

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  min-width: 0;
  border-width: 0;
  border-style: solid;
}

html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  clear: both;
  height: 0;
  margin: 0;
  border-top-width: 1px;
  color: inherit;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: 700;
  text-align: left;
}

:root {
  --main-color: #daa8ab;
  --sub-color: #b2adc5;
  --line-color: #eeeeee;
  --text-color: #444444;
  --bg-color: #fef5f5;
  --bg-gray: #fafafa;
  --selection-color: rgba(137, 137, 137, 0.1);
}

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
@media print {
  html {
    print-color-adjust: exact;
  }

  body {
    zoom: 80%;
  }

  .fixed {
    position: inherit !important;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  position: relative;
  min-width: 1500px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--text-color);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.1em;
  word-break: break-all;
  word-wrap: break-word;
}

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

a {
  color: var(--main-color);
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

a:hover {
  color: var(--sub-color);
}

a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  background-color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-color);
}

strong {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
}

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

iframe {
  max-width: 100%;
  vertical-align: top;
}

.maincolor {
  color: var(--main-color);
}

.subcolor {
  color: var(--sub-color);
}

/* ==================================================================================================================================

  *表示切り替え

================================================================================================================================== */
/* --------------------------------------------------
PC
-------------------------------------------------- */
.u-pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

/* --------------------------------------------------
SP
-------------------------------------------------- */
.u-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}

.u-sp--640 {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp--640 {
    display: block !important;
  }
}

/* --------------------------------------------------
解除系
-------------------------------------------------- */
.u-clear {
  clear: both !important;
}

.u-clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* ==================================================================================================================================

  *書式

================================================================================================================================== */
.u-bold {
  font-weight: 700 !important;
}

.u-left {
  text-align: left !important;
}

.u-center {
  text-align: center !important;
}

.u-right {
  text-align: right !important;
}

.u-maincolor {
  color: var(--main-color);
}

.u-subcolor {
  color: var(--sub-color);
}

.u-caution {
  color: #c52b2b;
}

.u-indent {
  position: relative;
  display: flex;
  font-size: 100%;
}

.u-indent__sign {
  flex-shrink: 0;
}

.u-yellowline {
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.175em;
}

/* ==================================================================================================================================

  *Margin

================================================================================================================================== */
.u-u-mtem {
  margin-top: 2em !important;
}

.u-u-mbem {
  margin-bottom: 1em !important;
}

.u-mt00 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 5pc !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr00 {
  margin-right: 0 !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr80 {
  margin-right: 5pc !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb00 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 5pc !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml00 {
  margin-left: 0 !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml80 {
  margin-left: 5pc !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

/* ==================================================================================================================================

  *Padding

================================================================================================================================== */
.u-pt00 {
  padding-top: 0 !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 5pc !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pr80 {
  padding-right: 5pc !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb00 {
  padding-bottom: 0 !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb80 {
  padding-bottom: 5pc !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl00 {
  padding-left: 0 !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pl80 {
  padding-left: 5px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* ==================================================================================================================================

  *header

================================================================================================================================== */
.l-header {
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}

.l-header__container {
  width: 100%;
  padding: 40px 50px 50px;
}

@media screen and (max-width: 1600px) {
  .l-header__container {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__container {
    position: fixed;
    z-index: 1;
    gap: 0;
    padding: 0;
  }
}

.l-header__box {
  position: relative;
  z-index: 2;
}

.l-header__box--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__box--under {
  width: 100%;
  margin: 30px 5px 0 auto;
}

/* --------------------------------------------------
ロゴ
-------------------------------------------------- */
.l-header__logo a {
  display: inline-block;
  width: 100%;
  max-width: 330px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    display: none;
  }
}

.l-logo--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-logo--sp {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: block;
    width: calc(100% - 110px);
    height: 55px;
    padding: 10px 5px;
    background: #ffffff;
    text-align: center;
  }

  .l-logo--sp a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .l-logo--sp img {
    width: 85%;
    max-width: 260px;
    height: auto;
  }
}

/* --------------------------------------------------
クリニック情報
-------------------------------------------------- */
.l-header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .l-header-info {
    display: none;
  }
}

/* ----- 電話 ----- */
.l-header-tel {
  position: relative;
  top: 3px;
  line-height: 1;
}

.l-header-tel__number {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: 0.15em;
}

.l-header-tel__number::before {
  content: "TEL.";
  display: inline-block;
  margin-right: 3px;
  color: #b47b7e;
  font-size: 22px;
  letter-spacing: 0.1em;
}

/* ----- ボタン ----- */
.l-header-buttons {
  display: flex;
  gap: 10px;
}

.l-header-buttons__link {
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 50px;
  padding: 9px 23px 11px 32px;
  background: linear-gradient(to right, #daa8ab, #c9888c);
  border-radius: 300px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

.l-header-buttons__link--line {
  background: linear-gradient(to right, #42d980, #06c755);
}

.l-header-buttons__link--instagram {
  padding: 11px 22px 9px 33px;
  background: linear-gradient(110deg, #efd75c, #e96e58 50%, #eb6588 70%, #a861eb);
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.3em;
}

.l-header-buttons__link--recruit {
  background: linear-gradient(to right, #b2adc5, #9692aa);
}

.l-header-buttons__link:hover {
  color: #ffffff;
  opacity: 0.7;
}

.l-header-buttons__text {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

/* --------------------------------------------------
ナビゲーション
-------------------------------------------------- */
.l-header-nav__list {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  width: 100%;
}

/* --------------------------------------------------
ナビゲーションアイテム
-------------------------------------------------- */
.l-header-nav__item {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------
ナビゲーションリンク
-------------------------------------------------- */
.l-header-nav__link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: 100%;
  color: var(--text-color) !important;
  font-size: 16px;
  text-align: center;
}

.l-header-nav__link--en {
  color: var(--main-color);
  font-size: 10px;
}

/* --------------------------------------------------
プルダウン
-------------------------------------------------- */
.js-nav-pulldown {
  position: relative;
  z-index: 2;
}

.js-nav-pulldown--mega {
  position: static;
}

.js-nav-pulldown__box {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  z-index: 1;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  width: 400px;
  padding: 10px;
  background: rgb(255, 255, 255);
  transform: translateX(-50%);
}

.js-nav-pulldown__box--500 {
  width: 500px;
}

.js-nav-pulldown__box--600 {
  width: 600px;
}

.js-nav-pulldown__box--mega {
  grid-template-columns: repeat(4, 1fr);
  width: 80svw;
}

.js-nav-pulldown__box::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 30px;
}

.js-nav-pulldown__link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--bg-gray);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 90%;
}

.js-nav-pulldown__link:hover {
  background: var(--bg-color);
  color: var(--main-color);
}

/* ==================================================================================================================================

  *メニュー

================================================================================================================================== */
.l-menu {
  position: fixed;
  top: 35px;
  right: 120px;
  z-index: 1000;
  display: none;
}

@media screen and (max-width: 768px) {
  .l-menu {
    top: 0;
    right: 55px;
    z-index: 10000;
    display: block !important;
  }
}

.l-menu-tel {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-menu-tel {
    display: block;
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .l-menu-tel__link {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    padding: 8px;
    background: linear-gradient(to right, #daa8ab, #c9888c);
    font-family: "canto-pen", serif;
    font-style: normal;
    font-weight: 300;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
  }

  .l-menu-tel__link:hover {
    color: #ffffff;
  }

  .l-menu-tel__link i {
    font-size: 90%;
  }
}

.l-menu-buttons {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .l-menu-buttons {
    display: none !important;
  }
}

.l-menu-buttons__link {
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 50px;
  padding: 9px 23px 11px 32px;
  background: linear-gradient(to right, #daa8ab, #c9888c);
  border-radius: 300px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

.l-menu-buttons__link--line {
  background: linear-gradient(to right, #42d980, #06c755);
}

.l-menu-buttons__link--instagram {
  padding: 11px 22px 9px 33px;
  background: linear-gradient(110deg, #efd75c, #e96e58 50%, #eb6588 70%, #a861eb);
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.3em;
}

.l-menu-buttons__link--recruit {
  background: linear-gradient(to right, #b2adc5, #9692aa);
}

.l-menu-buttons__link:hover {
  color: #ffffff;
  opacity: 0.7;
}

.l-menu-buttons__text {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

/* ==================================================================================================================================

  *hamburger

================================================================================================================================== */
/* --------------------------------------------------
ハンバーガーボタン
-------------------------------------------------- */
.js-hamburger {
  position: fixed;
  top: 25px;
  right: 30px;
  z-index: 10000;
  display: none;
}

@media screen and (max-width: 768px) {
  .js-hamburger {
    top: 0;
    right: 0;
  }
}

.js-hamburger__inner {
  display: flex;
  flex-flow: column;
  width: 70px;
  min-width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  border-radius: 12px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .js-hamburger__inner {
    width: 55px;
    min-width: 55px;
    height: 55px;
    border-radius: 0;
  }
}

/* --------------------------------------------------
ボランのライン
-------------------------------------------------- */
.js-hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  width: 35px;
  height: 2px;
  margin: auto;
  background: #ffffff;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
}

.js-hamburger__line:nth-of-type(1) {
  top: 30px;
}

.js-hamburger__line:nth-of-type(2) {
  top: 38px;
}

@media screen and (max-width: 768px) {
  .js-hamburger__line {
    width: 30px;
    height: 2px;
  }

  .js-hamburger__line:nth-of-type(1) {
    top: 21px;
  }

  .js-hamburger__line:nth-of-type(2) {
    top: 28px;
  }
}

/* ----- 展開時 ----- */
.is-active .js-hamburger__line:nth-of-type(1) {
  top: 33px;
  transform: rotate(205deg);
}

.is-active .js-hamburger__line:nth-of-type(2) {
  top: 33px;
  transform: rotate(-205deg);
}

@media screen and (max-width: 768px) {
  /* ----- 展開時 ----- */
  .is-active .js-hamburger__line:nth-of-type(1) {
    top: 25px;
  }

  .is-active .js-hamburger__line:nth-of-type(2) {
    top: 25px;
  }
}

/* --------------------------------------------------
ボタンラベル
-------------------------------------------------- */
.js-hamburger__text {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: auto;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.js-hamburger__text--open {
  opacity: 1;
}

.js-hamburger__text--close {
  opacity: 0;
}

/* ----- 展開時 ----- */
.is-active .js-hamburger__text--open {
  opacity: 0;
}

.is-active .js-hamburger__text--close {
  opacity: 1;
}

/* ==================================================================================================================================

  *nav

================================================================================================================================== */
body.is-active {
  overflow: hidden;
}

.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
}

/* --------------------------------------------------
ナビゲーションコンテナー
-------------------------------------------------- */
.l-nav__container {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  min-width: 100px;
  height: 100%;
  overflow: auto;
}

.l-nav__container::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 30%;
  height: 100%;
  background: url(../images/common/nav-img.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .l-nav__container {
    display: flex;
    flex-flow: column;
    margin-top: 55px;
  }

  .l-nav__container::before {
    display: none;
  }
}

/* --------------------------------------------------
ナビゲーションインナー
-------------------------------------------------- */
.l-nav__inner {
  order: 2;
  padding: 30px 130px 50px 60px;
  overflow: auto;
}

@media screen and (max-width: 768px) {
  .l-nav__inner {
    padding: 0 20px 100px;
    overflow: visible;
  }
}

.l-nav__list {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .l-nav__list {
    gap: 0px;
  }
}

/* --------------------------------------------------
ナビゲーションアイテム
-------------------------------------------------- */
.l-nav__item {
  position: relative;
  z-index: 1;
  width: calc(50% - 15px);
  height: fit-content;
  padding: 25px 10px;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

@media screen and (max-width: 1100px) {
  .l-nav__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav__item {
    position: relative;
    z-index: 1;
    padding: 25px 10px;
  }

  .l-nav__item:not(first-child) {
    border-top: none;
  }
}

/* --------------------------------------------------
ナビゲーションリンク
-------------------------------------------------- */
.l-nav__link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: fit-content;
  color: var(--text-color);
  font-size: 16px;
  text-align: start;
}

/* --------------------------------------------------
アコーディオン
-------------------------------------------------- */
.js-nav-accordion {
  position: relative;
  z-index: 3;
  transform: translateZ(0); /* Safariでの挙動制御のためこちらは削除しないでください */
}

.js-nav-accordion__link {
  margin-right: 30px;
}

.js-nav-accordion__container {
  display: none;
}

.js-nav-accordion__box {
  display: flex;
  flex-flow: wrap;
  gap: 13px 10px;
  padding: 25px 0 20px;
}

@media screen and (max-width: 768px) {
  .js-nav-accordion__box {
    gap: 10px;
    padding: 15px 0 10px;
  }
}

/* ------ 開閉ボタン------ */
.js-nav-accordion__button {
  position: absolute;
  top: 29px;
  right: 10px;
  left: auto;
  z-index: 2;
  display: inline-block !important;
  width: 25px;
  height: 25px;
  background: var(--main-color);
  border-radius: 5px;
  cursor: pointer;
  transform: translateX(0);
}

.js-nav-accordion__button::before, .js-nav-accordion__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 1px;
  background: #ffffff;
  transition: transform 0.3s;
}

.js-nav-accordion__button::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.js-nav-accordion__button::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.js-nav-accordion__button.is-active::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.js-nav-accordion__button.is-active::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.js-nav-accordion__item {
  display: flex;
  align-items: center;
  width: calc(50% - 5px);
  padding: 10px 15px 10px 18px;
  background: #fef5f5;
  border-left: 3px solid var(--main-color);
  color: var(--text-color) !important;
  font-size: 14px;
  line-height: 1.5;
  text-align: start;
  transition: border 0.3s, background 0.3s;
}

.js-nav-accordion__item:hover {
  background: #f2f0f8;
  border-left: 3px solid var(--sub-color);
}

@media screen and (max-width: 1200px) {
  .js-nav-accordion__item {
    width: 100%;
  }
}

/* --------------------------------------------------
予約ボタン
-------------------------------------------------- */
.l-nav-button {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 1300px) {
  .l-nav-button {
    gap: 10px;
  }
}

.l-nav-button__item {
  width: calc(50% - 10px);
}

@media screen and (max-width: 1300px) {
  .l-nav-button__item {
    width: 100%;
  }
}

.l-nav-button__link {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  height: 100%;
  padding: 20px 15px;
  background: linear-gradient(to right, #daa8ab, #c9888c);
  color: #ffffff !important;
  font-size: 24px;
  line-height: 1.65;
  transition: opacity 0.3s;
}

.l-nav-button__link:hover {
  opacity: 0.7;
}

.l-nav-button__link--tel {
  background: linear-gradient(to right, #b2adc5, #9692aa);
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.l-nav-button__text {
  display: block;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.l-nav-button__text--tel {
  margin-bottom: 6px;
}

/* --------------------------------------------------
診療時間
-------------------------------------------------- */
.l-nav-hours {
  margin-top: 50px;
}

/* --------------------------------------------------
バナー
-------------------------------------------------- */
.l-nav-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 40px auto 0;
}

@media screen and (max-width: 1300px) {
  .l-nav-banner {
    grid-template-columns: repeat(1, 1fr);
  }
}

.l-nav-banner__link {
  display: block;
  width: 100%;
  height: 100%;
}

.l-nav-banner__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 20px 15px;
  background-color: var(--bg-gray);
  color: #a2a2a2;
  text-align: center;
  pointer-events: none;
  transition: background 0.2s;
}

.l-nav-banner__link:hover span {
  background-color: var(--bg-color);
  color: var(--main-color);
}

.l-nav-banner__link img {
  pointer-events: none;
  transition: opacity 0.2s;
}

.l-nav-banner__link:hover img {
  opacity: 0.8;
}
.f-banner__wrapper-bottom{
	margin-top:20px;
}
.f-banner__wrapper-bottom a{
	display:inline-block;
	width:100%;
	
}
.f-banner__wrapper-bottom a:hover{
	opacity:0.5;
}
/* ==================================================================================================================================

  *固定ボタン

================================================================================================================================== */
/* --------------------------------------------------
ボタン（SP）
-------------------------------------------------- */
.l-fixed-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-fixed-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: block;
    display: flex;
    gap: 3px;
    width: 100%;
    height: auto;
    min-height: 55px;
    padding: 3px;
    background: #ffffff;
  }
}

.l-fixed-sp__buttons {
  display: flex;
  gap: 3px;
  width: 50%;
}

/* ----- リンク ----- */
.l-fixed-sp__button {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  background: var(--main-color);
  color: #ffffff !important;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-fixed-sp__button:hover {
  opacity: 0.6;
}

.l-fixed-sp__button--instagram {
  background: linear-gradient(110deg, #efd75c, #e96e58 50%, #eb6588 70%, #a861eb);
}

.l-fixed-sp__icons {
  display: flex;
  gap: 3px;
  width: 50%;
}

.l-fixed-sp__icon {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  width: 100%;
  height: 100%;
  padding: 4px 0 0;
  background: #f5eded;
  color: var(--text-color);
  font-size: 11px;
}

.l-fixed-sp__icon:hover {
  color: var(--text-color);
  opacity: 0.6;
}

.l-fixed-sp__icon i {
  color: var(--main-color);
  font-size: 13px;
}

.l-fixed-sp__icon:nth-child(even) {
  background: #f4f3f9;
}

.l-fixed-sp__icon:nth-child(even) i {
  color: var(--sub-color);
  font-size: 13px;
}

/* ==================================================================================================================================

  *レイアウト

================================================================================================================================== */
.l-container {
  display: flex;
}

/* --------------------------------------------------
セクション
-------------------------------------------------- */
.l-section {
  margin-bottom: 100px;
}

/* --------------------------------------------------
インナー
-------------------------------------------------- */
.l-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.l-inner--1300 {
  max-width: 1400px;
}

.l-inner--1400 {
  max-width: 1500px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
テキストマージン
-------------------------------------------------- */
.l-text > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

.l-text > *:not(h1, h2, h3, h4, h5):last-child {
  margin: 0;
}

/* --------------------------------------------------
h1
-------------------------------------------------- */
.l-heading-h1 {
  z-index: 2;
  width: fit-content;
  margin: 20px 0 20px auto;
  padding: 0 50px;
  font-size: 10px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-heading-h1 {
    width: 100%;
    margin: 0;
    padding: 20px;
    font-size: 10px;
    text-align: center;
  }
}

/* ==================================================================================================================================

  *ページトップ

================================================================================================================================== */
.js-pagetop {
  position: fixed;
  right: 50px;
  bottom: 40px;
  z-index: 50;
  display: none;
}

@media screen and (max-width: 768px) {
  .js-pagetop {
    right: 15px;
    bottom: 60px;
  }
}

/* --------------------------------------------------
インナー
-------------------------------------------------- */
.js-pagetop_inner {
  line-height: 1;
  text-align: center;
  cursor: pointer;
  filter: drop-shadow(0 0 3px rgb(255, 255, 255)) drop-shadow(0 0 3px rgb(255, 255, 255));
  transition: background 0.2s, color 0.2s;
}

@media screen and (max-width: 768px) {
  .js-pagetop_inner {
    width: 50px;
    height: 50px;
    margin: auto;
    padding: 0 0 1px;
  }
}

/* --------------------------------------------------
テキスト
-------------------------------------------------- */
.js-pagetop__text {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
}

.js-pagetop__text::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 auto 10px;
  background: var(--text-color);
  transition: transform 0.3s, background 0.3s;
}

@media screen and (max-width: 768px) {
  .js-pagetop__text {
    font-size: 18px;
  }

  .js-pagetop__text::before {
    width: 1px;
    height: 17px;
    margin: 0 auto 7px;
  }
}

.js-pagetop:hover .js-pagetop__text::before {
  background: var(--main-color);
  transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
  .js-pagetop:hover .js-pagetop__text::before {
    transform: translateY(-3px);
  }
}

/* ==================================================================================================================================

  *footer

================================================================================================================================== */
.l-footer {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-footer::before {
    height: 350px;
  }
}

.l-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 50px 60px;
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-flow: column;
    padding: 50px 20px;
  }
}

/* --------------------------------------------------
サービス
-------------------------------------------------- */
.l-contact {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 640px;
  background: url(../images/common/contact-bg.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .l-contact {
    flex-flow: column;
    height: auto;
  }
}

.l-contact-item {
  flex: 1;
  width: 100%;
  height: 100%;
}

.l-contact-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .l-contact-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .l-contact-item {
    flex: none;
  }
}

.l-contact-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 50px;
  color: #ffffff !important;
}

.l-contact-item__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgb(88, 65, 66);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.l-contact-item__link:hover::before {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .l-contact-item__link {
    flex-flow: row;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 20px 50px 40px;
  }
}

.l-contact-item__icon {
  position: absolute;
  top: 48%;
  font-size: 60px;
  line-height: 1;
  opacity: 0.3;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

@media screen and (max-width: 768px) {
  .l-contact-item__icon {
    position: static;
    font-size: 30px;
    transform: translate(0, 0);
  }
}

.l-contact-item__link:hover .l-contact-item__icon {
  opacity: 1;
}

.l-contact-item__text {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-contact-item__text {
    width: fit-content;
    font-size: 11px;
  }
}

.l-contact-item__title {
  display: block;
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .l-contact-item__title {
    font-size: 16px;
  }
}

/* --------------------------------------------------
クリニック情報
-------------------------------------------------- */
.l-footer-info {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .l-footer-info {
    flex-flow: column;
    width: 100%;
  }
}

/* ----- ロゴ ----- */
.l-footer-info__logo {
  flex-shrink: 0;
  width: 250px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-footer-info__logo {
    width: 60%;
    max-width: 350px;
    margin: 0 auto 40px;
  }
}

/* ----- クリニック情報 ----- */
.l-footer-address {
  flex-shrink: 0;
  margin: 0 0 0 80px;
}

.l-footer-address dl {
  display: flex;
  gap: 70px;
}

.l-footer-address dl:not(:last-child) {
  margin-bottom: 30px;
}

.l-footer-address dt, .l-footer-address dd {
  display: flex;
  flex-shrink: 0;
}

.l-footer-address dt {
  flex-shrink: 0;
  justify-content: flex-start;
  min-width: 70px;
  color: #c99a9d;
  font-size: 17px;
}

.l-footer-address dd {
  flex-flow: column;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .l-footer-address {
    width: 100%;
    margin: 0;
  }

  .l-footer-address dl {
    flex-flow: column;
    gap: 15px;
  }

  .l-footer-address dl:not(:last-child) {
    margin-bottom: 30px;
  }

  .l-footer-address dt {
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 0 5px 8px;
    border-bottom: 1px dashed var(--line-color);
    font-size: 15px;
  }

  .l-footer-address dd {
    align-items: center;
    font-size: 14px;
  }
}

/* ----- 電話番号 ----- */
.l-footer-address__number {
  position: relative;
  top: 3px;
}

.l-footer-address__number a {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--text-color);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .l-footer-address__number a {
    font-size: 30px;
  }
}

/* ----- 診療時間 ----- */
.l-footer-hours {
  width: 100%;
  margin-left: 120px;
}

@media screen and (max-width: 768px) {
  .l-footer-hours {
    width: 100%;
    margin: 40px auto 0;
  }
}

/* ----- SNS ----- */
.l-footer-sns {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.l-footer-sns__list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.l-footer-sns__item a {
  display: block;
  color: var(--main-color);
  font-size: 26px;
  line-height: 1;
}

.l-footer-sns__item a:hover {
  opacity: 0.5;
}

/* ==================================================================================================================================

  *連携病院

================================================================================================================================== */
.l-affiliations__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 0 auto;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .l-affiliations__inner {
    flex-flow: column;
    padding: 50px 20px;
  }
}

.l-affiliations__title {
  flex-shrink: 0;
}

.l-affiliations__title--en {
  display: block;
  color: var(--main-color);
  font-size: 130%;
}

.l-affiliations__title--jp {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 200%;
}

.l-affiliations__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-affiliations__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.l-affiliations__item {
  width: 100%;
}

.l-affiliations__link {
  display: block;
  width: 100%;
  height: 100%;
}

.l-affiliations__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 15px;
  background-color: var(--bg-color);
  border: 1px solid var(--line-color);
  text-align: center;
  pointer-events: none;
  transition: background 0.2s;
}

.l-affiliations__link:hover span {
  background-color: #ffffff;
}

.l-affiliations__link img {
  pointer-events: none;
  transition: opacity 0.2s;
}

.l-affiliations__link:hover img {
  opacity: 0.8;
}

/* ==================================================================================================================================

  *バナー

================================================================================================================================== */
.l-banner {
  background: #ffffff;
}

.l-banner__inner {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px 100px;
}

@media screen and (max-width: 768px) {
  .l-banner__inner {
    flex-flow: column;
    padding: 0px 20px 70px;
  }
}

.l-banner__title {
  flex-shrink: 0;
}

.l-banner__title--en {
  display: block;
  color: var(--main-color);
  font-size: 130%;
}

.l-banner__title--jp {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 200%;
}

.l-banner__list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-banner__list {
    flex-flow: column;
    gap: 15px;
  }
}

.l-banner__item {
  width: calc(25% - 22.5px);
}

@media screen and (max-width: 768px) {
  .l-banner__item {
    width: calc(100% - 40px);
    max-width: 400px;
    margin: 0 auto;
  }
}

.l-banner__link {
  display: block;
  width: 100%;
  height: 100%;
}

.l-banner__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 20px 15px;
  background-color: var(--bg-gray);
  color: #a2a2a2;
  text-align: center;
  pointer-events: none;
  transition: background 0.2s;
}

.l-banner__link:hover span {
  background-color: var(--bg-color);
  color: var(--main-color);
}

.l-banner__link img {
  pointer-events: none;
  transition: opacity 0.2s;
}

.l-banner__link:hover img {
  opacity: 0.8;
}

/* ==================================================================================================================================

  *Google Map　・　イラストマップ　・　カレンダー

================================================================================================================================== */
.l-footer__maps {
  width: 100%;
  height: 500px;
}

.l-footer__maps iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .l-footer__maps {
    height: 300px;
  }
}

.l-footer__calendar-text {
  margin-top: 20px;
}

/* ==================================================================================================================================

  *コピーライト

================================================================================================================================== */
.l-footer-copy {
  padding: 20px 20px;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  text-align: center;
}

.l-footer-copy small {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .l-footer-copy {
    padding: 30px 20px 90px;
  }

  .l-footer-copy small {
    font-size: 11px;
  }
}

/* ==================================================================================================================================

  *テーブル

================================================================================================================================== */
/* --------------------------------------------------
基本設定
-------------------------------------------------- */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

table th, table td {
  width: auto;
  padding: 10px;
  border: 1px solid var(--line-color);
  text-align: center;
  vertical-align: middle;
}

table th {
  background: var(--bg-color);
}

.c-table__title {
  margin-bottom: 15px !important;
  padding: 10px;
  background: var(--bg-gray);
  text-align: center;
}

/* --------------------------------------------------
Scrollhint
-------------------------------------------------- */
.scrolltable {
  overflow: visible !important;
}

@media screen and (max-width: 768px) {
  .scrolltable {
    overflow: auto !important;
  }

  .scrolltable > table {
    min-width: 800px;
    min-height: 170px;
    background: none !important;
  }

  .scroll-hint-icon {
    top: 50% !important;
    left: 50% !important;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 135px !important;
    height: 100px !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* --------------------------------------------------
診療時間
-------------------------------------------------- */
.c-office-hour__title {
  width: 100%;
  margin: 0 0 10px;
  padding: 10px;
  background: var(--bg-color);
  text-align: center;
}

.c-office-hour__table {
  width: 100%;
}

.c-office-hour__table th, .c-office-hour__table td {
  padding: 25px 5px;
  background: none;
  border: none;
  font-weight: normal;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.75;
}

.c-office-hour__table th {
  width: 150px;
  padding-left: 15px !important;
}

.c-office-hour__table th span {
  display: block;
  color: #aeaeae;
  font-size: 12px;
}

.c-office-hour__table td {
  text-align: center;
}

.c-office-hour__table tr:nth-child(1) th, .c-office-hour__table tr:nth-child(1) td {
  padding: 25px 5px 0;
  border-top: 1px solid var(--line-color);
  font-size: 18px;
}

.c-office-hour__table tr:nth-child(1) th::after, .c-office-hour__table tr:nth-child(1) td::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  margin: 15px auto 0;
  background: var(--main-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.c-office-hour__table tr:nth-child(1) td {
  color: var(--text-color);
}

.c-office-hour__table tr:nth-child(2) th, .c-office-hour__table tr:nth-child(2) td {
  padding: 25px 5px 7.5px;
}

.c-office-hour__table tr:last-child th, .c-office-hour__table tr:last-child td {
  padding: 7.5px 5px 25px;
  border-bottom: 1px solid var(--line-color);
}

@media screen and (max-width: 768px) {
  .c-office-hour__table {
    width: 100%;
  }

  .c-office-hour__table th, .c-office-hour__table td {
    padding: 20px 5px;
    font-size: 14px;
  }

  .c-office-hour__table th {
    width: 110px;
    padding-left: 5px !important;
  }

  .c-office-hour__table tr:nth-child(1) th, .c-office-hour__table tr:nth-child(1) td {
    padding: 15px 5px 0;
    font-size: 15px;
  }

  .c-office-hour__table tr:nth-child(1) th::after, .c-office-hour__table tr:nth-child(1) td::after {
    width: 8px;
    height: 5px;
    margin: 12.5px auto 0;
  }

  .c-office-hour__table tr:nth-child(2) th, .c-office-hour__table tr:nth-child(2) td {
    padding: 15px 5px 5px;
    font-size: 90%;
  }

  .c-office-hour__table tr:last-child th, .c-office-hour__table tr:last-child td {
    padding: 5px 5px 15px;
    font-size: 90%;
  }
}

.c-office-hour__note {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
}

.c-office-hour__container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.c-office-hour__text {
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .c-office-hour__note {
    font-size: 12px;
  }
}

.c-office-hour__closed {
  color: #ae777b;
}

.c-office-hour__caution {
  margin-top: 10px;
  font-size: 13px;
}

/* ==================================================================================================================================

  *メインボタン

================================================================================================================================== */
/* --------------------------------------------------
ボタンラッパー
-------------------------------------------------- */
.c-buttun__wrapper {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.c-buttun__wrapper--center {
  justify-content: center;
}

/* --------------------------------------------------
メインボタン
-------------------------------------------------- */
.c-main-button--center {
  text-align: center;
}

.c-main-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 250px;
  padding: 15px 45px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 1000px;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.c-main-button a:hover {
  background: #ffffff;
  color: var(--main-color);
}

.c-main-button a::before {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
  transition: right 0.2s;
}

.c-main-button a:hover::before {
  right: 17px;
}

.c-main-button--coming {
  pointer-events: none;
}

.c-main-button--coming a::after {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 1000px;
  color: white;
  font-size: 90%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .c-main-button--center {
    text-align: center;
  }

  .c-main-button a {
    min-width: 220px;
    padding: 12px 30px;
  }
}

/* ==================================================================================================================================

  *検索フォーム

================================================================================================================================== */
.c-search__form {
  z-index: 2;
  display: block;
}

.c-search__form label {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  background: var(--bg-gray);
  border-radius: 300px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-search__form--header label {
  background: rgba(255, 255, 255, 0.2);
}

.c-search__form--nav label {
  background: #ffffff;
}

.c-search__text {
  width: 100%;
  padding: 14px 20px 15px 45px;
  border-radius: 300px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.c-search__text--header {
  padding: 9px 20px 10px 45px;
  color: #ffffff;
}

.c-search__text--header::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.c-search__btn {
  position: absolute;
  top: 49%;
  left: 20px;
  font-size: 13px;
  transform: translateY(-50%);
}

.c-search__btn--header {
  color: rgba(255, 255, 255, 0.7);
}
@charset "UTF-8";

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
.front {
  overflow: hidden;
}

.f-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .f-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
タイトル
-------------------------------------------------- */
.f-title {
  margin: 0 auto 60px;
}

.f-title__eng {
  width: fit-content;
  margin-bottom: 0px;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.f-title__jp {
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .f-title {
    margin: 0 auto 40px;
  }

  .f-title__eng {
    font-size: 40px;
  }

  .f-title__jp {
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0.15em;
  }
}

.f-title-line__eng {
  flex-shrink: 0;
  align-items: center;
  width: fit-content;
  margin: 0 auto 15px;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.f-title-line__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.f-title-line__container::before, .f-title-line__container::after {
  content: "";
  position: relative;
  top: -5px;
  display: block;
  width: 39px;
  height: 21px;
  background: url(../images/front/title-kazari.svg) no-repeat center/cover;
}

.f-title-line__wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.f-title-line__wrapper::before, .f-title-line__wrapper::after {
  content: "";
  position: relative;
  top: -5px;
  display: block;
  width: 100%;
  height: 2px;
  background: #e6e6e6;
}

.f-title-line__jp {
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.15em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .f-title-line__eng {
    font-family: "canto-pen", serif;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
  }

  .f-title-line__container {
    gap: 0px;
  }

  .f-title-line__container::before, .f-title-line__container::after {
    display: none;
  }

  .f-title-line__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .f-title-line__wrapper::before, .f-title-line__wrapper::after {
    content: "";
    top: -6px;
    height: 1px;
  }

  .f-title-line__jp {
    font-size: 18px;
  }
}

/* --------------------------------------------------
ボタン
-------------------------------------------------- */
.f-button a {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-items: center;
  width: fit-content;
  min-width: 300px;
  padding: 12px 80px 15px 35px;
  background: linear-gradient(to right, #daa8ab, #b2adc5);
  border-radius: 1000px;
  color: #ffffff;
  font-size: 18px;
  transition: filter 0.2s;
}

.f-button a:hover {
  filter: brightness(1.1);
}

.f-button a::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0px 0px 1px 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 11px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.f-button a:hover::after {
  transform: translateY(-50%) rotate(360deg);
}

/* --------------------------------------------------
テキストスクロール
-------------------------------------------------- */
.f-infinity-scroll {
  display: flex;
  gap: 100px;
  width: 100%;
  overflow: hidden;
}

.f-infinity-scroll p {
  flex-shrink: 0;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: #b2adc5;
  font-size: 170px;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0.3;
  animation: infinity-scroll 100s linear infinite;
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll p {
    font-size: 60px;
  }
}
@keyframes infinity-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* --------------------------------------------------
MVのアニメーション
-------------------------------------------------- */
@keyframes fadeVertical {
  0% {
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }

  100% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes moveActive {
  0% {
    left: calc(50% - 30px);
  }

  100% {
    left: calc(50% - 60px);
  }
}
@keyframes moveNext {
  0% {
    left: 50%;
  }

  100% {
    left: calc(50% - 30px);
  }
}

.f-mainvisual-img__item.is-active {
  z-index: 3;
  animation: fadeVertical 1s ease-in-out forwards 6s;
}

.f-mainvisual-img__item.is-active picture {
  animation: moveActive 7s linear infinite;
}

.f-mainvisual-img__item.is-next picture {
  z-index: 2;
  animation: moveNext 7s linear infinite;
}

/* --------------------------------------------------
MVのベース
-------------------------------------------------- */
.f-mainvisual {
  position: relative;
  z-index: 1;
  height: 1000px;
  min-height: 700px;
  padding: 190px 50px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .f-mainvisual {
    height: 700px;
    min-height: auto;
    padding: 180px 20px 0;
  }
}

.f-mainvisual__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .f-mainvisual__inner {
    padding: 85px 20px 0;
  }
}

/* --------------------------------------------------
キャッチコピー
-------------------------------------------------- */
/* ----- 日本語 ----- */
.f-mainvisual__catch--jp {
  position: absolute;
  top: 30px;
  right: 0;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 30px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #6c6684;
  font-size: 25px;
  white-space: nowrap;
}

.f-mainvisual__catch--jp::after {
  content: "";
  display: block;
  width: calc(100svw - (100svw - 100px));
  height: 1px;
  background: var(--line-color);
}

@media screen and (max-width: 1700px) {
  .f-mainvisual__catch--jp {
    top: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .f-mainvisual__catch--jp {
    position: static;
    justify-content: flex-end;
    gap: 15px;
    margin: 0 -20px 0 auto;
    font-size: 14px;
  }

  .f-mainvisual__catch--jp::after {
    content: "";
    display: block;
    width: calc(100svw - (100svw - 55px));
    height: 1px;
    background: var(--line-color);
  }
}

/* ----- 英語 ----- */
.f-mainvisual__catch--eng {
  position: absolute;
  top: 0;
  left: 120px;
  width: fit-content;
  background: linear-gradient(120deg, var(--main-color) 20%, var(--sub-color));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0);
  font-size: 120px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  animation: colorChange 3s;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 1700px) {
  .f-mainvisual__catch--eng {
    top: 30px;
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .f-mainvisual__catch--eng {
    position: static;
    margin: 25px auto 0 20px;
    font-size: 24px;
    letter-spacing: 0.075em;
  }
}
@keyframes colorChange {
  from {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  to {
    background-position: 0% 0%;
  }
}

/* --------------------------------------------------
MVの画像
-------------------------------------------------- */
.f-mainvisual-img {
  position: relative;
  z-index: -1;
  display: flex;
  width: 100%;
  height: 100%;
}

.f-mainvisual-img__list {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-mainvisual-img__item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.f-mainvisual-img__item picture {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  transform: translate(-50%, -50%);
}

.f-mainvisual-img__item picture img {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.f-mainvisual__office-hours {
  position: absolute;
  bottom: 60px;
  left: 120px;
  width: 600px;
  padding: 25px 20px 20px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .f-mainvisual__office-hours {
    display: none;
  }
}

/* ==================================================================================================================================

  *お知らせ

================================================================================================================================== */
.f-news {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .f-news {
    bottom: 10px;
    width: 100%;
  }
}

.f-news__list {
  width: 570px;
}

@media screen and (max-width: 768px) {
  .f-news__list {
    width: calc(100% - 60px);
    margin: 0 0 0 auto;
  }
}

.f-news-item {
  margin: 0 0 0 auto;
}

.f-news-item:first-child .f-news-item__link::before {
  content: "NEWS";
  position: absolute;
  top: -15px;
  left: 27px;
  z-index: 2;
  display: inline-block;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.f-news-item:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .f-news-item:not(:last-child) {
    margin-bottom: 7px;
  }
}

.f-news-item:first-child .f-news-item__link::before {
  top: -12px;
  left: 12px;
  font-size: 20px;
}

.f-news-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: rgba(197, 144, 147, 0.9);
  color: #ffffff !important;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.f-news-item__link:hover {
  background: rgba(178, 173, 197, 0.9);
}

@media screen and (max-width: 768px) {
  .f-news-item__link {
    display: block;
    padding: 13px 10px 7px 13px;
    font-size: 11.5px;
  }
}

.f-news-item__info {
  display: flex;
  flex-flow: wrap;
  flex-shrink: 0;
  align-items: center;
}

.f-news-item__date {
  flex-shrink: 0;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .f-news-item__date {
    margin: 0;
    padding: 0;
    border: none;
  }
}

.f-news-item__term {
  display: flex;
  flex-shrink: 0;
  gap: 5px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
  line-height: 1;
}

.f-news-item__taxonomy {
  display: inline-block;
}

.f-news-item__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.f-news-button {
  margin-top: 15px;
  padding-right: 70px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .f-news-button {
    padding-right: 35px;
  }
}

.f-news-button__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 0;
  color: #ffffff;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.f-news-button__link:hover {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .f-news-button__link {
    font-size: 12px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  }

  .f-news-button__link:hover {
    color: #ffffff;
  }
}

.f-news-button__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: 0 0 0 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.f-news-button__link:hover .f-news-button__arrow {
  background: rgb(255, 255, 255);
  color: var(--main-color);
  transform: rotate(360deg);
}

/* ==================================================================================================================================

  *バナーエリア

================================================================================================================================== */
.f-banner {
  position: relative;
  z-index: 1;
}

.f-banner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: calc(100% - (100% - 1500px) / 2 + 40px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
}

.f-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc((100% - 1500px) / 2 - 40px);
  height: 56%;
  background: url(../images/common/dot.png) repeat center/15px 2px;
}

.f-banner__inner {
  max-width: 1400px;
  padding: 70px 50px 140px;
}

@media screen and (max-width: 768px) {
  .f-banner__inner {
    padding: 50px 20px 70px;
  }
}

.f-banner__wrapper {
  display: flex;
  gap: 20px;
	
}

@media screen and (max-width: 768px) {
  .f-banner__wrapper {
    flex-flow: column;
    gap: 15px;
  }
}

.f-banner__list {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .f-banner__list {
    gap: 10px;
  }
}

.f-banner__link:hover {
  opacity: 0.5;
}
.f-banner__wrapper-bottom{
	margin-top:20px;
}
/* ==================================================================================================================================

  *インスタグラム

================================================================================================================================== */
.f-instagram {
  position: relative;
  z-index: 1;
}

.f-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

.f-instagram::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

@media screen and (max-width: 768px) {
  .f-instagram::before {
    display: none;
  }

  .f-instagram::after {
    display: none;
  }
}

.f-instagram__inner {
  max-width: 1400px;
  padding: 120px 50px 140px;
}

.f-instagram__inner::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% + 790px);
  height: 56%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

@media screen and (max-width: 768px) {
  .f-instagram__inner {
    padding: 60px 20px 70px;
  }

  .f-instagram__inner::after {
    width: 100%;
    height: 70%;
  }
}

.f-title__instagram {
  margin-bottom: 20px;
}

/* --------------------------------------------------
ダミーリンク
-------------------------------------------------- */
.f-instagram__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.f-instagram__list li {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .f-instagram__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------
バナー
-------------------------------------------------- */
.f-first-banner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 300px;
  margin-top: 60px;
  overflow: hidden;
}

.f-first-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/front/first-banner-bg.jpg) no-repeat center/cover;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}

.f-first-banner:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}

.f-first-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(218, 168, 171), rgb(178, 173, 197));
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

.f-first-banner:hover::after {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .f-first-banner {
    height: auto;
    margin-top: 30px;
  }
}

.f-first-banner__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 160px 60px 90px;
  color: #ffffff !important;
  font-size: 30px;
  line-height: 1;
  overflow: hidden;
}

.f-first-banner__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .f-first-banner__link {
    padding: 75px 90px 80px 30px;
    font-size: 20px;
  }

  .f-first-banner__link::after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}

.f-first-banner:hover::before {
  transform: translate(-50%, -50%) scale(1.075);
}

.f-first-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.f-first-banner__arrow {
  position: absolute;
  top: 50%;
  right: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0 0 1px 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 16px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

@media screen and (max-width: 768px) {
  .f-first-banner__arrow {
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

.f-first-banner:hover .f-first-banner__arrow {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) rotate(360deg);
}

/* ==================================================================================================================================

  *診療案内

================================================================================================================================== */
.f-medical {
  position: relative;
  z-index: 1;
}

.f-medical__inner {
  max-width: 1600px;
  padding: 140px 50px 80px;
}

@media screen and (max-width: 768px) {
  .f-medical__inner {
    padding: 70px 20px;
  }
}

.f-medical__top {
  display: flex;
  gap: 90px;
}

@media screen and (max-width: 768px) {
  .f-medical__top {
    flex-flow: wrap;
    gap: 90px;
  }
}

.f-medical__text > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.f-medical__list {
  margin-top: 60px;
}

.f-medical-item {
  border-top: 1px solid var(--line-color);
}

.f-medical-item:last-child {
  border-bottom: 1px solid var(--line-color);
}

.f-medical-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 100px 10px 30px;
  color: var(--text-color);
}

@media screen and (max-width: 768px) {
  .f-medical-item__link {
    padding: 10px 70px 10px 20px;
  }
}

.f-medical-item__icon {
  width: 80px;
  min-width: 80px;
  height: auto;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .f-medical-item__icon {
    width: 50px;
    min-width: 50px;
    margin-right: 20px;
  }
}

.f-medical-item__title {
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-medical-item__title {
    font-size: 18px;
  }
}

.f-medical-item__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 1px 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

.f-medical-item:hover .f-medical-item__arrow {
  background: var(--sub-color);
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-medical-item__arrow {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}

.f-medical-img {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  width: 810px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .f-medical-img {
    gap: 15px;
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
  }
}

.f-medical-img__item {
  height: fit-content;
}

.f-medical-img__item:nth-child(2n) {
  margin-top: auto;
}

.f-medical-img__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-medical__under {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .f-medical__under {
    flex-flow: column;
    gap: 20px;
    margin-top: 50px;
  }
}

.f-medical-pulldown {
  width: calc(50% - 20px);
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown {
    width: 100%;
  }
}

.f-medical-pulldown-item {
  border: 1px solid var(--line-color);
}

.f-medical-pulldown-item__header {
  position: relative;
  z-index: 1;
  padding: 36px 90px 36px 50px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown-item__header {
    position: relative;
    z-index: 1;
    padding: 17px 50px 17px 25px;
    cursor: pointer;
  }
}

.f-medical-pulldown__title {
  position: relative;
  z-index: 1;
  padding-left: 35px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

.f-medical-pulldown__title::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  display: block;
  width: 7px;
  height: 7px;
  background: var(--main-color);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown__title {
    position: relative;
    z-index: 1;
    padding-left: 22px;
    font-family: "fot-klee-pro", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
  }

  .f-medical-pulldown__title::before {
    top: 17px;
    width: 5px;
    height: 5px;
  }
}

.f-medical-pulldown-item__button {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 1;
  display: block;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
}

.f-medical-pulldown-item__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  display: block;
  width: 3px;
  height: 100%;
  background: var(--main-color);
  border-radius: 300px;
  transition: transform 0.3s, opacity 0.3s;
}

.f-medical-pulldown-item__button.is-active::before {
  opacity: 0;
  transform: rotate(-90deg);
}

.f-medical-pulldown-item__button::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0%;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--main-color);
  border-radius: 300px;
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown-item__button {
    position: absolute;
    top: 50%;
    right: 25px;
    z-index: 1;
    display: block;
    width: 13px;
    height: 13px;
  }
}

.f-medical-pulldown-item__contents {
  display: none;
}

.f-medical-pulldown-item__inner {
  padding: 0 30px 50px;
}

.f-medical-pulldown-item__inner::before {
  content: "";
  display: block;
  margin: 0 auto 40px;
  border-top: solid var(--line-color);
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown-item__inner {
    padding: 0 20px 20px;
  }

  .f-medical-pulldown-item__inner::before {
    content: "";
    display: block;
    margin: 0 auto 20px;
    border-top: solid var(--line-color);
  }
}

.f-medical-pulldown__list {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.f-medical-pulldown__list li a {
  display: inline-block;
  padding: 5px 20px;
  background: var(--bg-gray);
  border-radius: 300px;
  color: var(--text-color);
  font-size: 90%;
}

.f-medical-pulldown__list li a:hover {
  background: var(--bg-color);
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .f-medical-pulldown__list {
    gap: 20px;
    padding: 0 10px;
    font-size: 90%;
  }

  .f-medical-pulldown__list li a {
    display: inline-block;
    padding: 5px 20px;
    background: var(--bg-color);
    border-radius: 300px;
    font-size: 90%;
  }

  .f-medical-pulldown__list li a:hover {
    background: #f2f0f8;
    color: var(--sub-color);
  }
}

/* ==================================================================================================================================

  *日帰り手術

================================================================================================================================== */
.f-surgery {
  position: relative;
  z-index: 1;
}

.f-surgery::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 150px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
}

@media screen and (max-width: 768px) {
  .f-surgery::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 80%;
    height: 30%;
    background: url(../images/common/marble-beige.jpg) repeat center/500px 500px;
  }
}

.f-surgery__inner {
  display: flex;
  gap: 150px;
  max-width: 1600px;
  padding: 80px 50px 100px;
}

@media screen and (max-width: 768px) {
  .f-surgery__inner {
    flex-flow: column;
    gap: 50px;
    padding: 0px 20px 100px;
  }
}
@media screen and (max-width: 768px) {
  .f-surgery__contents {
    order: 1;
  }
}

.f-tittle--surgery {
  text-align: center;
}

.f-title__eng--surgery {
  margin: 0 auto 20px;
}

.f-surgery__text > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.f-surgery__list {
  margin-top: 60px;
}

.f-surgery-item {
  border-top: 1px solid var(--line-color);
}

.f-surgery-item:last-child {
  border-bottom: 1px solid var(--line-color);
}

.f-surgery-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 100px 10px 30px;
  color: var(--text-color);
}

.f-surgery-item__link:hover {
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .f-surgery-item__link {
    padding: 10px 70px 10px 20px;
  }
}

.f-surgery-item__icon {
  width: 80px;
  min-width: 80px;
  height: auto;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .f-surgery-item__icon {
    width: 50px;
    min-width: 50px;
    margin-right: 20px;
  }
}

.f-surgery-item__title {
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-surgery-item__title {
    font-size: 18px;
  }
}

.f-surgery-item__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 1px 2px;
  background: var(--sub-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transform: translateY(-50%);
  transition: transform 0.4s, background 0.4s;
}

.f-surgery-item:hover .f-surgery-item__arrow {
  background: var(--main-color);
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-surgery-item__arrow {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}

.f-surgery-img {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  width: 750px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .f-surgery-img {
    order: 2;
    width: 100%;
  }
}

.f-surgery-img__item {
  height: fit-content;
}

.f-surgery-img__item:nth-child(2n) {
  margin-top: auto;
}

.f-surgery-img__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================================================================================================

  *無限スライダ

================================================================================================================================== */
.f-infinity-slider {
  margin: 150px 0;
}

.f-infinity-slider .splide__slide {
  width: 500px !important;
}

@media screen and (max-width: 768px) {
  .f-infinity-slider {
    margin: 70px 0;
  }

  .f-infinity-slider .splide__slide {
    width: 280px !important;
  }
}

/* ==================================================================================================================================

  *よく相談をいただくお悩み

================================================================================================================================== */
.f-worry {
  position: relative;
  z-index: 1;
}

.f-worry__inner {
  max-width: 1600px;
  padding: 0 50px 80px;
}

@media screen and (max-width: 768px) {
  .f-worry__inner {
    max-width: 1600px;
    padding: 0 20px 70px;
  }
}

.f-worry__list {
  display: flex;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .f-worry__list {
    flex-flow: column;
    margin-top: 60px;
  }
}

.f-worry-item {
  flex: 1;
  border-left: 1px solid var(--line-color);
}

.f-worry-item:last-child {
  border-right: 1px solid var(--line-color);
}

@media screen and (max-width: 768px) {
  .f-worry-item {
    flex: auto;
    border-top: 1px solid var(--line-color);
    border-left: none;
  }

  .f-worry-item:last-child {
    border-right: none;
    border-bottom: 1px solid var(--line-color);
  }
}

.f-worry-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px 10px;
  color: var(--text-color) !important;
}

@media screen and (max-width: 768px) {
  .f-worry-item__link {
    flex-flow: wrap;
    justify-content: flex-start;
    padding: 20px 60px 20px 20px;
  }
}

.f-worry-item__number {
  margin-bottom: 35px;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 50px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .f-worry-item__number {
    position: relative;
    top: 2px;
    flex-shrink: 0;
    margin: 0 20px 0 0;
    font-size: 30px;
  }
}

.f-worry-item__title {
  margin-bottom: 80px;
  font-family: "fot-klee-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .f-worry-item__title {
    margin-bottom: 0;
    font-size: 18px;
    writing-mode: horizontal-tb;
  }
}

.f-worry-item__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: auto 0 0;
  padding: 0 0 1px 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  transition: transform 0.4s, background 0.4s;
}

@media screen and (max-width: 768px) {
  .f-worry-item__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 12px;
    transform: translateY(-50%);
  }
}

.f-worry-item:hover .f-worry-item__arrow {
  background: var(--sub-color);
  transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-worry-item:hover .f-worry-item__arrow {
    transform: translateY(-50%) rotate(360deg);
  }
}

.f-worry-item:nth-child(even) .f-worry-item__number {
  color: var(--sub-color);
}

.f-worry-item:nth-child(even) .f-worry-item__arrow {
  background: var(--sub-color);
}

.f-worry-item:nth-child(even) .f-worry-item__link:hover .f-worry-item__arrow {
  background: var(--main-color);
}

/* ==================================================================================================================================

  *美容機器から探す

================================================================================================================================== */
.f-equipment {
  position: relative;
  z-index: 1;
}

.f-equipment::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 165px);
  height: 100%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

.f-title--equipment {
  max-width: 1600px;
  margin: 80px auto 100px;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .f-title--equipment {
    margin: 0px auto 40px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .f-title__eng--equipment {
    font-size: 36px;
  }
}

.f-equipment__inner {
  max-width: 1920px;
  margin: auto;
  padding: 0 85px 100px;
}

@media screen and (max-width: 768px) {
  .f-equipment__inner {
    max-width: 1920px;
    margin: auto;
    padding: 0 0 50px;
  }
}

.f-equipment__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media screen and (max-width: 768px) {
  .f-equipment__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.f-equipment-item__link {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff !important;
}

.f-equipment-item__img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.f-equipment-item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: #584142;
  opacity: 55%;
  transition: opacity 0.3s;
}

.f-equipment-item__img img {
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  .f-equipment-item__img {
    min-height: 230px;
  }
}

.f-equipment-item__link:hover .f-equipment-item__img::before {
  opacity: 25%;
}

.f-equipment-item__link:hover .f-equipment-item__img img {
  transform: scale(1.05);
}

.f-equipment-item__number {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 2;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .f-equipment-item__number {
    top: 15px;
    left: 17px;
    font-size: 30px;
  }
}

.f-equipment-item__contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px 0 80px;
}

@media screen and (max-width: 768px) {
  .f-equipment-item__contents {
    padding: 50px 20px;
  }
}

.f-equipment-item-title {
  text-align: center;
}

.f-equipment-item-title__jp {
  font-size: 20px;
}

.f-equipment-item-title__eng {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .f-equipment-item-title {
    text-align: center;
  }

  .f-equipment-item-title__jp {
    font-size: 18px;
  }

  .f-equipment-item-title__eng {
    font-family: "canto-pen", serif;
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
  }
}

.f-equipment-freearea {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 85px;
}

.f-equipment-freearea__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
  margin: 0 0 0 auto;
  padding: 0 0 100px 50px;
}

@media screen and (max-width: 768px) {
  .f-equipment-freearea {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .f-equipment-freearea__inner {
    flex-flow: column;
    gap: 40px;
    margin: 0 auto;
    padding: 0 0 60px;
  }
}

.f-equipment-freearea_text {
  flex-shrink: 0;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .f-equipment-freearea_text {
    font-size: 100%;
    text-align: center;
  }
}

.f-equipment-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .f-equipment-buttons {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.f-equipment-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-equipment-button .f-equipment-button__link {
  box-shadow: 0 0 10px rgba(218, 168, 171, 0.4);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 5px 100px 9px 50px;
  background: #ffffff;
  border-radius: 1000px;
  color: var(--main-color);
  font-size: 24px;
}

.f-equipment-button .f-equipment-button__link:hover {
  background: var(--main-color);
  color: #ffffff;
}

.f-equipment-button .f-equipment-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0px 0px 1px 2px;
  background: #fcf4f5;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  font-size: 14px;
  transform: translateY(-50%);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.f-equipment-button .f-equipment-button__link:hover::after {
  background: #ffffff;
  color: var(--main-color);
  transform: translateY(-50%) rotate(360deg);
}

.f-equipment-button .f-equipment-button__link--subcolor {
  box-shadow: 0 0 10px rgba(178, 173, 197, 0.4);
  color: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor:hover {
  background: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor::after {
  background: #f3f1f9;
  color: var(--sub-color);
}

.f-equipment-button .f-equipment-button__link--subcolor:hover::after {
  color: var(--sub-color);
}

@media screen and (max-width: 768px) {
  .f-equipment-button {
    width: 90%;
    margin: 0 auto;
  }

  .f-equipment-button .f-equipment-button__link {
    min-height: auto;
    padding: 15px 50px 15px 30px;
    font-size: 18px;
  }

  .f-equipment-button .f-equipment-button__link::after {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ==================================================================================================================================

  *メッセージ

================================================================================================================================== */
.f-message {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .f-message {
    margin-top: 70px;
  }
}

/* ----- パララックス ----- */
.f-message__parallax {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.f-message__parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.f-message__parallax video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.f-message__contants {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 250px 0 275px;
}

@media screen and (max-width: 768px) {
  .f-message__contants {
    padding: 70px 0;
  }
}

.f-message__inner {
  width: 100%;
  margin: 0 auto;
}

.f-message__title {
  color: #ffffff;
  font-size: 38px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .f-message__title {
    font-size: 20px;
  }
}

.f-message-buttons {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .f-message-buttons {
    flex-flow: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
  }
}

.f-message-button {
  width: calc(33.3333333333% - 20px);
}

.f-message-button .f-message-button__link {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 300px;
  padding: 20px 80px 23px 50px;
  background: linear-gradient(to right, #daa8ab, #b2adc5);
  border-radius: 1000px;
  color: #ffffff;
  font-size: 20px;
  transition: filter 0.2s;
}

.f-message-button .f-message-button__link:hover {
  filter: brightness(1.1);
}

.f-message-button .f-message-button__link::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0px 0px 1px 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.f-message-button .f-message-button__link:hover::after {
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-message-button {
    width: 100%;
  }

  .f-message-button .f-message-button__link {
    min-width: auto;
    padding: 12px 66px 15px 35px;
    color: #ffffff;
    font-size: 16px;
  }

  .f-message-button .f-message-button__link:hover {
    filter: brightness(1.1);
  }

  .f-message-button .f-message-button__link::after {
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin: auto 0px 0px;
    padding: 0px 0px 1px 2px;
    font-size: 12px;
    transform: translateY(-50%);
    transition: transform 0.3s;
  }

  .f-message-button .f-message-button__link:hover::after {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ==================================================================================================================================

  *特徴

================================================================================================================================== */
.f-feature {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
}

.f-feature::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 450px);
  height: 56%;
  background: url(../images/common/marble-beige.jpg) center center/500px 500px repeat;
}

@media screen and (max-width: 768px) {
  .f-feature {
    padding: 70px 0 0;
  }
}

.f-feature__inner {
  position: relative;
  z-index: 1;
}

.f-title-line--feature {
  margin: 0 auto 85px;
}

@media screen and (max-width: 768px) {
  .f-title-line--feature {
    margin: 0 auto 45px;
  }
}

.f-feature__container {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 140px;
}

.f-feature__container::before {
  content: "";
  position: absolute;
  right: 100px;
  bottom: 55px;
  z-index: -1;
  display: block;
  width: 546px;
  height: 576px;
  background: url(../images/common/logo.svg) no-repeat center/contain;
  opacity: 5%;
}

@media screen and (max-width: 768px) {
  .f-feature__container {
    padding: 0 0 70px;
  }

  .f-feature__container::before {
    right: -100px;
    bottom: 50px;
    width: 300px;
    height: 316px;
    opacity: 5%;
  }
}

.f-feature-slider {
  display: flex;
  max-width: 1760px;
  margin: 0 0 0 auto;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .f-feature-slider {
    flex-flow: column;
    padding-left: 0;
  }
}

.f-feature__left {
  display: flex;
}

@media screen and (max-width: 768px) {
  .f-feature__left {
    flex-flow: column;
    order: 2;
  }
}

#f-feature-slider--contents {
  padding: 0 80px;
}

@media screen and (max-width: 768px) {
  #f-feature-slider--contents {
    padding: 30px 20px 0;
  }
}

.f-feature-item-title {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .f-feature-item-title {
    gap: 15px;
  }
}

.f-feature-item-title__number {
  flex-shrink: 0;
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  color: var(--main-color);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .f-feature-item-title__number {
    font-size: 40px;
  }
}

.f-feature-item-title__jp {
  display: flex;
  align-items: center;
  height: auto;
  padding-bottom: 10px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .f-feature-item-title__jp {
    padding: 0;
    font-size: 20px;
    line-height: 1.65;
  }
}

.f-feature-item__text {
  margin-top: 30px;
}

.f-feature-item__button-container {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .f-feature-item__button-container {
    justify-content: center;
    margin-top: 50px;
  }
}

.f-feature-item--button__link {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 270px;
  padding: 0 60px 15px 15px;
  border-bottom: solid 1px var(--line-color);
  color: var(--text-color);
  font-size: 18px;
}

.f-feature-item--button__link:hover {
  color: var(--main-color);
}

.f-feature-item--button__link::after {
  content: "\f061";
  position: absolute;
  top: 1px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0px 0px 0px 2px;
  background: var(--sub-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 10px;
  transition: transform 0.3s, background 0.3s;
}

.f-feature-item--button__link:hover::after {
  background: var(--main-color);
  transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
  .f-feature-item--button__link {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 250px;
    padding: 0 50px 15px 15px;
    border-bottom: solid 1px var(--line-color);
    color: var(--text-color);
    font-size: 18px;
  }

  .f-feature-item--button__link:hover {
    color: var(--main-color);
  }

  .f-feature-item--button__link::after {
    content: "\f061";
    position: absolute;
    top: 3px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0px 0px 0px 2px;
    background: var(--sub-color);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 10px;
    transition: transform 0.3s, background 0.3s;
  }

  .f-feature-item--button__link:hover::after {
    background: var(--main-color);
    transform: rotate(360deg);
  }
}

#f-feature-slider--images {
  max-width: 700px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  #f-feature-slider--images {
    width: 100%;
    max-width: none;
  }
}

/* ----- スライダーのArrowボタン ----- */
#f-feature-slider--thum {
  max-width: 280px;
}

#f-feature-slider--thum .f-feature-slider-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin-top: 20px;
}

#f-feature-slider--thum .f-feature-slider-information__number {
  font-family: "canto-pen", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 1;
}

#f-feature-slider--thum .f-feature-slider-progress {
  flex-shrink: 0;
  width: 70%;
  background: var(--line-color);
}

#f-feature-slider--thum .f-feature-slider-progress__bar {
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 400ms ease;
}

#f-feature-slider--thum .splide__arrows {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#f-feature-slider--thum .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: filter 0.2s;
}

#f-feature-slider--thum .splide__arrow:hover {
  filter: brightness(1.15);
}

@media screen and (max-width: 768px) {
  #f-feature-slider--thum {
    display: flex;
    align-items: center;
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0 auto 30px;
  }

  #f-feature-slider--thum .splide__track {
    display: none !important;
  }

  #f-feature-slider--thum .f-feature-slider-information {
    width: 80%;
    margin: 0 0 0 auto;
    padding: 0 20px;
  }

  #f-feature-slider--thum .splide__arrows {
    flex-shrink: 0;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
    padding: 0 20px;
  }

  #f-feature-slider--thum .splide__arrow {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
}

/* ==================================================================================================================================

  *ご挨拶

================================================================================================================================== */
.f-doctor {
  position: relative;
  z-index: 1;
}

.f-doctor::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  display: block;
  width: calc(50% - 790px);
  height: 100%;
  background: url(../images/common/dot.png) center center/15px 2px repeat;
}

.f-doctor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: calc(50% - 300px);
  height: 30%;
  background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
}

@media screen and (max-width: 768px) {
  .f-doctor::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    display: block;
    width: 20%;
    height: 30%;
    background: url(../images/common/marble-silver.jpg) center center/500px 500px repeat;
  }
}

.f-inner--doctor {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .f-inner--doctor {
    padding: 30px 0 0;
  }
}

.f-doctor__box {
  max-width: 1760px;
  margin: 0 0 0 auto;
  padding: 0 0 0 50px;
}

.f-doctor__box--flex {
  display: flex;
  align-items: flex-start;
  gap: 130px;
}

@media screen and (max-width: 768px) {
  .f-doctor__box {
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
  }

  .f-doctor__box--flex {
    display: flex;
    flex-flow: column;
    gap: 0px;
  }
}

.f-title__eng {
  margin-bottom: 10px;
}

.f-doctor__left {
  width: 100%;
}

.f-doctor__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .f-doctor__wrapper {
    justify-content: center;
    margin-top: 50px;
  }
}

.f-title--doctor {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .f-title--doctor {
    margin: 0 auto 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .f-doctor__left {
    order: 2;
  }
}

.f-doctor__text > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.f-doctor__profile {
  font-size: 20px;
}

.f-doctor__profile .--name {
  font-size: 26px;
}

.f-doctor__profile .--name span {
  font-size: 75%;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .f-doctor__profile {
    font-size: 18px;
    text-align: center;
  }

  .f-doctor__profile .--name {
    font-size: 24px;
  }

  .f-doctor__profile .--name span {
    font-size: 75%;
    letter-spacing: 0.2em;
  }
}

.f-doctor__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 50px;
}

.f-doctor__right::after {
  content: "";
  display: block;
  width: 350px;
  height: 605px;
  background: url(../images/front/doctor-img-02.jpg) no-repeat bottom 0 left 0/350px 280px, url(../images/front/doctor-img-01.jpg) no-repeat top 0 left 0/350px 280px;
}

@media screen and (max-width: 768px) {
  .f-doctor__right {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .f-doctor__right::after {
    display: none;
  }
}

.f-doctor__img {
  width: 510px;
}

@media screen and (max-width: 768px) {
  .f-doctor__img {
    width: 90%;
    margin: 0 auto;
  }
}

.f-button--doctor {
  max-width: 1760px;
  margin: 70px 0 0 auto;
  padding: 0 0 0 50px;
}

@media screen and (max-width: 768px) {
  .f-button--doctor {
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;
    text-align: center;
  }
}

.f-doctor-career {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 100px;
}

.f-doctor-career__title {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 25px;
  margin: 0 0 30px;
  color: var(--main-color);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.f-doctor-career__title::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main-color);
}

.f-doctor-career__box {
  display: flex;
  flex-flow: column;
}

.f-doctor-career__inner {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  height: 100%;
  padding: 25px 40px 45px;
  background: #ffffff;
}

.f-doctor-career__definition {
  display: flex;
  gap: 45px;
  padding: 20px;
  border-bottom: 1px solid var(--line-color);
}

.f-doctor-career__definition dt {
  flex-shrink: 0;
}

.f-doctor-career__list li {
  padding: 20px;
  border-bottom: 1px solid var(--line-color);
}

.f-infinity-scroll--doctor {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: -1;
  width: calc(50% + 350px);
}

@media screen and (max-width: 768px) {
  .f-infinity-scroll--doctor {
    position: static;
    width: 100%;
    margin: 50px auto;
  }
}
