@charset "UTF-8";

/* =========================
  Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;

  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #333;
  background: #faf4ff;
}

a { text-decoration: none; color: inherit; }

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}

@keyframes cta-sway {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

:root {
  --main_color: #ec7788;
  --sub_color1: #8973c2;
  --sub_color2: #feecec;
  --text-main_color: #333;
}

/* =========================
  Layout
========================= */
.l-shell { min-height: 100vh; }

.l-side { display: none; }

.l-center {
  width: 100%;
  display: block;
  position: relative;
  z-index: 10;
  background: #fff;
}

.site {
  width: 100%;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  position: relative;
  z-index: 10;
}

/* =========================
  Header
========================= */
#header {
  position: fixed;
  top: 0;
  height: 50px;
  background: #fff;
  box-shadow: 0 8px 8px -6px rgba(0,0,0,.15);
  z-index: 1000;
  width: 100%;
}

#header .body {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}

#header .inner {
  height: 100%;
  padding-left: 12px;
  padding-right: 0;
}

#header .box {
  height: 100%;
  justify-content: space-between;
}

#header .logo {
  max-width: 200px;
}

#header .btns {
  margin-right: 50px;
}

#header .btn {
  max-width: 70px;
}

#header .btn img {
  height: 50px;
  object-fit: contain;
}

.drawer .icon {
  position: absolute;
  top: 0;
  right: 0;
  background: #808080;
  cursor: pointer;
  z-index: 1000;
}

.drawer .icon__bars {
  width: 50px;
  height: 50px;
  transition: 0.3s ease-in-out;
}

.drawer .icon__bar1,
.drawer .icon__bar2,
.drawer .icon__bar3 {
  position: absolute;
  width: 28px;
  height: 2px;
  left: 11px;
  background: #fff;
  transition: ease 0.5s;
}

.drawer .icon__bar1 { top: 12px; }
.drawer .icon__bar2 { top: 20px; }
.drawer .icon__bar3 { top: 28px; }

.drawer .icon.is-active .icon__bar1 {
  top: calc(50% - 5px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer .icon.is-active .icon__bar2 {
  display: none;
}

.drawer .icon.is-active .icon__bar3 {
  top: calc(50% - 5px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon__text {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
}

.drawer .content {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background: #fff;
  padding: 58px 28px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  display: none;
  overflow-y: scroll;
  z-index: 250;
}

.drawer .content.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.drawer .content__logo {
  max-width: 51.28vw;
  margin-inline: auto;
}

.drawer .content__items {
  margin-top: 35px;
}

.drawer .content__item a {
  width: 100%;
  justify-content: space-between;
  text-align: left;
  transition: 0.3s ease-in-out;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding: 5.13vw 2.56vw;
}

.drawer .content__item-text {
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 4.62vw;
  padding-left: 4.36vw;
}

.drawer .content__item-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--main_color);
  border-radius: 50%;
  width: 1.79vw;
  height: 1.79vw;
}

.drawer .content__item-category {
  font-size: 0.7em;
}

.drawer .content__item-arrow {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  transform-origin: center center;
  border-right: 2px solid var(--main_color);
  border-bottom: 2px solid var(--main_color);
}

/* =========================
  FV
========================= */
.fv {
  padding-top: 50px;
  background: url(../images/fv_back.jpg) no-repeat center top / 100% auto;
}

.fv__imageWrap { width: 100%; }

.fv__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: top;
}

.fv__btnWrap {
  padding: 0 5.13% 5.13%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv__btn {
  display: block;
  transition: opacity 0.2s;
}

.fv__btn:hover {
  opacity: 0.85;
}

.fv__btnImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* =========================
  Index Section
========================= */
.index-section__imageWrap {
  width: 100%;
}

.index-section__image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.index-section--02 { background-color: #ffeee3; padding-bottom: 40px; }
.index-section--03 { background-color: #ffe6f0; padding-bottom: 40px; }
.index-section--04 { background-color: #dae8f7; }
.index-section--05 { background-color: #feecec; }
.index-section--06 { background-color: #fdecec; padding-bottom: 40px;}
.index-section--07 { background-color: #dae8f7; }
.index-section--08 { background-color: #ebfcfa; }

/* =========================
  Index Section アコーディオン
========================= */
.index-acc {
  margin: 0;
  padding: 0;
}

.index-acc .clinic-acc__trigger {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  display: block;
  cursor: pointer;
}

.index-acc__triggerImageWrap {
  display: block;
  width: 100%;
}

.index-acc__triggerImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.index-acc__icon {
  position: absolute;
  right: 5.13%;
  top: 64%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3a7e94;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #3a7e94;
  font-weight: 400;
  pointer-events: none;
}

.index-acc__icon::before {
  content: "+";
  display: block;
  margin-top: 1px;
}

.index-acc.is-open .index-acc__icon::before {
  content: "−";
  margin-top: -1px;
}

.index-acc .clinic-acc__panel {
  padding: 0;
  background: transparent;
}

/* =========================
  注意・特記事項 アコーディオン
========================= */
.index-section--notes {
  padding: 24px 5.13% 32px;
  background-color: #fff;
}

.notes-acc {
  margin: 0;
  padding: 0;
}

.notes-acc .clinic-acc__trigger {
  position: relative;
  width: 100%;
  border: 1px solid #333;
  background: #fff;
  color: #333;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.notes-acc .clinic-acc__chev {
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -5px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}

.notes-acc .clinic-acc__panel {
  padding: 16px 0 0;
  background: transparent;
}

.notes-acc__body {
  font-size: 12px;
  line-height: 1.85;
  color: #333;
}

.notes-acc__subheading {
  font-weight: 700;
  margin: 18px 0 8px;
}

.notes-acc__subheading:first-of-type {
  margin-top: 0;
}

.notes-acc__list {
  margin: 0 0 10px;
  padding-left: 1.2em;
}

.notes-acc__list li {
  margin-bottom: 4px;
}

.notes-acc__text {
  margin: 0 0 8px;
}

.notes-acc__text:last-child {
  margin-bottom: 0;
}

/* =========================
  料金表
========================= */
.index-section--price {
  background-color: #f2f2f2;
  padding: 30px 5.13% 32px;
}

#section6.index-section--price {
  padding: 50px 5.13% 32px;
}

.index-section__priceTitle {
  margin: 0 0 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #333;
}

.index-section__priceList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.index-section__priceItem {
  width: 100%;
}

.index-section__priceImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.fv__bottom {
  padding: 12px 12px 16px;
  text-align: center;
}

.fv__note2 {
  font-family: "Noto Serif JP", serif;
  font-size: 16pt;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 22px 0 0;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  max-width: 320px;
}

.fv__note2 span {
  color: var(--main_color);
}

.fv__note2::before,
.fv__note2::after {
  content: "＼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--main_color);
}

.fv__note2::after {
  content: "／";
}

.fv__note2::before {
  left: -15px;
  rotate: 10deg;
}

.fv__note2::after {
  right: -15px;
  rotate: -10deg;
}

.section__imageWrap { width: 100%; }

.section__image2 {
  margin: 0;
  width: 100%;
}

/* =========================
  Utility
========================= */
.u-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta_area {
  padding: 0 16px;
}

.cta_area-inner {
  padding: 13px 10px 8px;
  text-align: center;
  border-radius: 15px;
}

.cta_area-inner .fv__note2 {
  margin-top: 0;
}

.cta {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.cta img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: cta-sway 2.8s ease-in-out infinite;
  transition: transform 0.3s ease;
  will-change: transform;
}

@media (hover: hover) {
  .cta:hover img {
    animation-play-state: paused;
    transform: scale(2.5);
  }
}

/* =========================
  アコーディオン共通
========================= */
.clinic-acc {
  margin-top: 0;
  padding: 0 0 20px;
}

.clinic-acc__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  cursor: pointer;
  font-size: 14.5px;
}

.clinic-acc__label {
  line-height: 1;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

.clinic-acc__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.clinic-acc__panel {
  padding: 18px 14px 20px;
  overflow: hidden;
}

.clinic-acc__panel[hidden] {
  display: none !important;
}

.clinic-acc.is-open .clinic-acc__chev {
  transform: rotate(-135deg);
}

/* =========================
  Footer / Clinic
========================= */
#footer {
  position: relative;
  color: #fff;
  background: var(--main_color);
  padding: 12px 0 8px;
  text-align: center;
}

#footer .copyright {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#footer .text {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 10px;
  margin-top: 7px;
}

#clinic {
  background: #f2f2f2;
  padding: 30px 0;
}

.clinic-title {
  width: 90%;
  max-width: 610px;
  margin: 0 auto;
  padding-top: 25px;
}

#clinic .media {
  width: 100%;
  margin-inline: auto;
  max-width: 84.62vw;
  gap: 2.56vw;
  margin-top: 7.69vw;
}

#clinic .media__image {
  flex: 0 0 29.23vw;
}

#clinic .media__text {
  flex: 1;
  font-size: 3.33vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.77;
}

/* =========================
  PC：3カラム + 左右FIX
========================= */
@media (min-width: 1080px) {
  :root {
    --centerW: 30.02vw;
    --centerMin: 400px;
  }

  .l-shell {
    display: grid;
    grid-template-columns: 1fr var(--centerW) 1fr;
    background: #faf4ff;
  }

  .l-side {
    display: block;
    background: #faf4ff;
  }

  .site {
    width: 100%;
    overflow: hidden;
  }

  #header {
    width: var(--centerW);
    transform: none;
  }

  #header .inner {
    padding-left: 20px;
  }

  #header .body {
    max-width: 100%;
  }

  .l-side__inner {
    position: fixed;
    top: 0;
    height: 100vh;
    padding: 28px 22px;
    overflow: auto;
    background: #faf4ff;
  }

  .l-side--left .l-side__inner {
    left: 0;
    width: calc((100vw - max(var(--centerMin), var(--centerW))) / 2);
  }

  .l-side--left .l-side__inner .pc-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-top: calc(50vh - 125px);
  }

  .l-side--right .l-side__inner {
    right: 0;
    width: calc((100vw - max(var(--centerMin), var(--centerW))) / 2);
  }

  .pc-menu {
    margin: calc(50vh - 410px) 20px 0;
  }

  .l-side--right .content__item-category {
    font-size: 0.7em;
  }

  #header .btns {
    margin-right: 0;
  }

  #header .drawer {
    display: none;
  }

  .drawer .content__logo {
    width: 100%;
    max-width: 385px;
    margin-inline: auto;
  }

  .drawer .content__items {
    margin-top: 35px;
  }

  .drawer .content__item a {
    padding: 20px;
  }

  .drawer .content__item-text {
    font-size: 20px;
    font-weight: 500;
    padding-left: 30px;
  }

  .drawer .content__item-text::before {
    width: 13px;
    height: 13px;
  }

  #clinic .media {
    width: 92%;
    max-width: 405px;
    margin-inline: auto;
    gap: 18px;
    margin: 20px auto 0;
  }

  #clinic .media__image {
    flex: 0 0 220px;
    max-width: 130px;
  }

  #clinic .media__text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.77;
  }
}

/* =========================
  Header Logo Fix
========================= */
#header .logo {
  height: 50px;
}

#header .logo a {
  height: 100%;
  display: flex;
  align-items: center;
}

#header .logo img {
  width: auto;
  height: 100%;
  max-height: 50px;
  object-fit: contain;
}



/*==================================================
症例スライダー
==================================================*/

.case-slider{
    position:relative;
    margin:40px 20px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.case-slider__head{
    background:#f49d4e;
    color:#fff;
    text-align:center;
    font-size:20px;
    font-weight:700;
    letter-spacing:.15em;
    padding:14px;
	font-family: 'Noto Serif JP';
}

.index-section--03 .case-slider__head{
	background: #d5848c;
}

.index-section--06 .case-slider__head{
	background: #c7606a;
}


.case-slider__viewport{
    overflow:hidden;
}

.case-slider__track{
    display:flex;
    transition:transform .45s cubic-bezier(.25,.8,.25,1);
    will-change:transform;
}

.case-card{
    flex:0 0 100%;
}

.case-card__image{
    overflow:hidden;
    background:#f7f7f7;
}

.case-card__image img{
    width:100%;
    height:auto;
    display:block;
    transition:.5s;
}

.case-card:hover .case-card__image img{
    transform:scale(1.03);
}

.case-card__body{
    padding: 20px 20px 0;
}

.case-card__body h3{
    font-size:20px;
    font-weight:600;
    color:#333;
    margin-bottom:10px;
    text-align:center;
}

.case-card p{
	font-size: 16px;
}


/*=========================
矢印
=========================*/

.case-slider__prev,
.case-slider__next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    box-shadow:0 4px 12px rgba(0,0,0,.15);
    cursor:pointer;
    transition:.25s;
    z-index:5;
}

.case-slider__prev{
    left:14px;
}

.case-slider__next{
    right:14px;
}

.case-slider__prev:hover,
.case-slider__next:hover{
    transform:translateY(-50%) scale(1.08);
}

.case-slider__prev::before{
    content:"";
    display:block;
    width:10px;
    height:10px;
    border-left:3px solid #ec7788;
    border-bottom:3px solid #ec7788;
    transform:rotate(45deg);
    margin:auto;
}

.case-slider__next::before{
    content:"";
    display:block;
    width:10px;
    height:10px;
    border-right:3px solid #ec7788;
    border-bottom:3px solid #ec7788;
    transform:rotate(-45deg);
    margin:auto;
}


/*=========================
ページネーション
=========================*/

.case-slider__pagination{
    display:flex;
    justify-content:center;
    gap:10px;
    padding:20px;
}

.case-slider__dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d6d6d6;
    cursor:pointer;
    transition:.3s;
}

.case-slider__dot.active{
    width:34px;
    border-radius:100px;
    background:#ec7788;
}


/*=========================
SP
=========================*/

@media(max-width:768px){

.case-slider{
    margin:30px 14px;
}

.case-card__body h3{
    font-size:22px;
}

.case-card dl{
    grid-template-columns:95px 1fr;
    font-size:13px;
}

.case-card dt{
    font-size:12px;
    padding:6px 8px;
}

.case-slider__prev,
.case-slider__next{
    width:40px;
    height:40px;
}
}


/*=========================
PC
=========================*/

@media(min-width:1080px){

.case-slider{
    margin:55px 28px;
}

.case-card{
}
}

.case-slider{
    margin:0px 20px 0px;
	padding-bottom: 30px;
}

.case-slider .splide__track{
    overflow:hidden;
	padding-bottom: 20px;
}

.case-slider .splide__pagination{
    bottom:20px;
}

.case-slider .splide__pagination__page{
    width:12px;
    height:12px;
    background:#d8d8d8;
    opacity:1;
    transition:.3s;
}

.case-slider .splide__pagination__page.is-active{
    background:#f49d4e;
    transform:scale(1.3);
}

.index-section--03 .case-slider .splide__pagination__page.is-active{
	background: #d5848c;
}

.index-section--06 .case-slider .splide__pagination__page.is-active{
	background: #c7606a;
}


.case-slider .splide__arrow{
    width:35px;
    height:35px;
    background:#fff;
    opacity:.8;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
}

.splide__arrow--next {
    right: 0.5em;
}

.splide__arrow--prev{
	left: 0.5em;
}

.case-slider .splide__arrow svg{
    fill:#f49d4e;
}


.index-section--03 .case-slider .splide__arrow svg{
	fill: #d5848c;
}

.index-section--06 .case-slider .splide__arrow svg{
	fill: #c7606a;
}

/*.case-slider .splide__arrow:hover{
    transform:scale(1.08);
}*/