@charset "UTF-8";

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

	common

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

:root {
  --bg-pink01: #FFF6F4;
  --bg-pink02: #F5E8E5;
  --bg-pink03: #FFFCFA;
  --bg-pink04: #E1A0A0;
  --main-pink01: #E09D9D;
  --point-pink01: #E57C87;
  --text-pink01: #E55E6C;
  --swiper-navigation-size: 44px;
}

body {
  margin-right: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-base);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

figure {
  display: block;
  margin: 0;
  filter: drop-shadow(5px 5px 5px #dadada);
}

main {
  z-index: 5;
  position: relative
}

header, footer {
  margin: 0 auto;
  background: #655D49;
}

footer p {
  margin: 0 auto;
  color: #fff;
}

.wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  box-shadow: 6px 0px 5px -5px rgb(28 10 0 / 10%), -6px 0px 5px -5px rgb(28 10 0 / 10%);
  background: var(--bg-pink01);
}

h1, h2, h3, h4 {
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #635150;
  font-weight: 600;
  font-size: 30px;
  width: 90%;
  margin: 0 auto;
}

p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #745050;
  font-size: 18px;
}

p.note {
  font-size: 0.5em;
}

sup {
  vertical-align: super !important;
  font-size: x-small;
}

.logo {
  width: 70%;
  margin: 10px auto 10px auto;
}


.inner-box {
  width: 90%;
  margin: 0 auto;
}

.inner-box p {
  padding: 20px 0 10px 0;
  line-height: 30px;
}

.inner-box p span {
  color: var(--text-pink01);
  font-weight: bold;
}

.inner-box02 {
  width: 87%;
  margin: 0 auto;
  padding: 10px 0 15px 0;
}

.inner-box02 p {
  padding: 20px 0;
  line-height: 30px;
}


.inner-box02 p span {
  color: #D64E53;
  font-weight: bold;
}


@media screen and (min-width: 650px) {

  h1, h2, h3, h4 {
    font-size: 30px;
  }


  .inner-box p {
    font-size: 1.5rem;
    padding: 40px 0;
    line-height: 40px;
  }

  .inner-box02 p {
    line-height: 1.9em;
    font-size: 1.3em;
  }

  p.note {
    font-size: 1.0em;
  }

}

@media screen and (min-width: 992px) {
  body {
    z-index: 0;
    position: relative
  }
}

@media screen and (min-width: 1680px) {
  body::before, body::after {
    width: 84px;
  }
}

@media screen and (min-width: 1450px) {
  body::before, body::after {
    display: inline-block;
    position: fixed;
    top: 0;
    width: 50px;
    height: 100%;
    background: url(.webp) repeat-y center;
    background-size: contain;
    content: ""
  }

  body::before {
    left: 0
  }

  body::after {
    right: 0
  }
}


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

	アニメーション

==================================*/
.fade {
  opacity: 0;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.fade.move {
  opacity: 1;
}

.fadebottom {
  opacity: 0;
  transform: translateY(20px);
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

.fadebottom.move {
  opacity: 1;
  transform: translateY(0);
}

.fadeleft {
  opacity: 0;
  transform: translateX(-50px);
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

.fadeleft.move {
  opacity: 1;
  transform: translateX(0);
}

.faderight {
  opacity: 0;
  transform: translateX(50px);
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

.faderight.move {
  opacity: 1;
  transform: translateX(0);
}

.pull {
  transform: scale(0);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.4, 0.8, 0.6, 1.2),
    opacity 0.6s ease-out;
}

.pull.move {
  transform: scale(1);
  opacity: 1;
}

.push {
  transform: scale(1.3);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.4, 0.91, 0.63, 1.2),
    opacity 0.5s ease-out;
}

.push.move {
  transform: scale(1);
  opacity: 1;
}

.mocchiri {
  animation: mocchiri 3s infinite;
}

@keyframes mocchiri {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}



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

	PC背景

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

.l-contents__bg {
  position: absolute;
  /* ← fixedをやめる */
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  will-change: transform;
  /* 念のため */
  pointer-events: none !important;
}

.p-header {
  display: block;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 36px);
  margin: 0 auto;
}

.p-header__logo {
  display: grid;
  position: relative;
}

.p-header__logo img {
  width: 150%;
}

.p-header__content {
  display: block;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.p-header__nav.-pc {
  display: none
}

.p-header__nav.-pc .inner {
  position: relative
}

.buy-button {
  display: block;
  width: 348px;
}

.p-header__nav.-pc .buy-button:nth-of-type(1) {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
}

.p-header__nav.-pc .buy-button:nth-of-type(2) {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
}

.p-header__nav.-pc .buy-button:nth-of-type(3) {
  position: absolute;
  bottom: 19%;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
}

@media screen and (min-width: 992px) {

  .l-contents__bg {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: url(../images/pc_bg.webp) no-repeat center;
    background-size: cover;
  }

  .p-header__inner {
    align-items: flex-start;
    width: 90%;
    max-width: 920px;
  }

  .p-header__logo {
    top: 8px;
    width: 100%;
    max-width: 120px
  }

  .p-header__button {
    display: block;
    border-radius: 50px;
    background-color: #1b1b1d;
    text-decoration: none;
    cursor: pointer;
  }

  .p-header__button span {
    bottom: -54px;
    left: 50%;
    padding: 4px 24px 4px 29px;
    transform: translateX(-50%);
    font-size: 18px;
    letter-spacing: .1rem;
  }

  .p-header__button {
    position: relative;
    width: 102px;
    height: 102px;
    border-radius: 50%;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__nav.-pc {
    display: grid;
    place-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
  }

  .p-header__nav.-pc * {
    pointer-events: auto;
  }


  .p-header__contentInner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 920px;
    height: inherit;
    margin: 0 auto;
    text-align: center;
  }

  .p-header__contentInner>* {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
  }
}

@media screen and (min-width: 1200px) {
  .p-header__inner {
    max-width: 1180px;
  }

  .p-header__contentInner {
    max-width: 1350px;
  }

}

@media screen and (min-width: 1450px) {

  .p-header__inner {
    max-width: 1430px;
  }

  .p-header__logo {
    max-width: 178px;
  }

  .p-header__contentInner {
    max-width: 1600px;
  }

  .p-header__contentInner>* {
    width: 35%;
    max-width: 352px;
  }
}

@media screen and (max-width: 992px) {
  .p-header {
    display: none !important;
  }

  .p-header__content {
    display: none !important;
  }
}



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

	アコーディオン

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

.accordion {
  width: 100%;
}

.accordion-hidden {
  display: none;
}

.accordion-open {
  display: block;
  padding: 12px 50px 10px 15px;
  background: #e0e0e0;
  cursor: pointer;
  margin: 3px 0;
  position: relative;
}

.accordion-open::before, .accordion-open::after {
  content: '';
  width: 15px;
  height: 1px;
  background: #414141;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0 10px;
  opacity: 0;
  transition: 0.5s;
  cursor: pointer;
}

.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px;
}

.accordion-container {
  margin: 12px auto 0;
}

.accordion-list {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

.accordion-title {
  padding: 20px 10px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  color: #CF9D41;
  padding: 10px;
  text-align: center;
}

.accordion-title p {
  color: #4EA0CC;
  font-size: 12px;
  background: #655D49;
}


.accordion-title:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-color: #655D49;
  color: #fff;
  text-align: center;
  line-height: 23px;
  content: "+";
  border: 1px solid #655D49;
}

.accordion-text {
  padding: 0 20px 25px 20px;
  border: 2px solid #655D49;
}

.accordion-title.open::after {
  content: "−";
  background-color: unset;
  color: #fff;
  /*border: 1px solid #e0e0e0;*/
}

.accordion-list:not(:first-child) {
  margin-top: 10px;
}

.accordion-title.open {
  /* border-bottom: 1px solid #e0e0e0;*/
}


@media screen and (min-width: 650px) {

  .accordion-title {
    padding: 16px 50px 16px 0px;
    font-size: 20px;
    padding: 15px;
  }

}


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

	footer

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

footer {
  padding: 5vw 0 5vw 0;
  text-align: center;
}

footer .ft_logo img {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

footer p {
  font-size: 15px;
  width: 100%;
  color: #fff;
}

@media screen and (max-width: 649px) {

  footer {
    padding: 12vw 0 30vw 0;
  }

  footer p {
    font-size: 2.4vw;
  }

}


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

	header

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

.header {
  width: 100%;
  height: 7%;
  display: block;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header img {
  width: 68%;
  margin: 0 auto;
  text-align: center;
  padding: 3% 0 2% 3%;
}




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

	floating

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

.mv .slide-media img {
  -webkit-transition: transform 7s 1s linear;
  transition: transform 7s 1s linear;
  -webkit-transform: translateX(0) scale(1.1);
  transform: translateX(0) scale(1.1);
}

.mv .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition: transform 7s 0s linear;
  transition: transform 7s 0s linear;
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
}

.slide {
  position: relative;
}

.slide .slide-media {
  position: relative;
}

.slide-media {
  aspect-ratio: 750 / 1327;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.slide .slide-title1, .slide .slide-title2, .slide .slide-title3 {
  position: absolute;
  top: 0;
  left: 0;
}

.slide .slide-title1, .slide .slide-title2, .slide .slide-title3 {
  z-index: 10;
}

.slide .slide-media img {
  width: 100%;
  height: auto;
  z-index: 1;
  object-fit: cover;
}

.mv .swiper-slide.anm-started .top-slide1 .slide-title1, .mv .swiper-slide.anm-started .top-slide5 .slide-title1 {
  -webkit-animation-name: mv-blurIn;
  animation-name: mv-blurIn;
}

.mv .swiper-slide.anm-finished .top-slide1 .slide-title1, .mv .swiper-slide.anm-finished .top-slide5 .slide-title1 {
  -webkit-animation-name: mv-blurOut;
  animation-name: mv-blurOut;
}

.mv .slide-title1 {
  opacity: 1;
  width: 70%;
  top: 6%;
  text-align: center;
  position: absolute;
  left: 53%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}

.mv .slide-title2 {
  opacity: 1;
  top: 10%;
  position: absolute;
  left: 0;
  right: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 10px;
  background: linear-gradient(90deg, #6e4b1e 0%, #98682b 40%, #6e4b1e 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 0.5em rgba(255, 255, 255, 0.8));
  text-align: center;
}

.mv .slide-title2 span {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
  color: #D4A3A2;
}

.mv .slide-title3 {
  opacity: 1;
  top: 17%;
  position: absolute;
  left: 0;
  right: 0;
  font-size: 10px;
  color: #655D49;
  line-height: 50em;
  text-align: center;
}

.mv .slide-title4 {
  opacity: 1;
  top: 47%;
  position: absolute;
  right: 3%;
  font-weight: bold;
  width: 36%;
}

.mv .slide-title4 p {
  padding: 0 0 5px 0;
  color: #B9A696;
  font-size: 10px;
  text-shadow: 1px 1px 2px #fff;
}

.slide-point-flbox {
  display: flex;
  top: 34%;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  width: 85%;
  text-align: center;
  margin: 0 auto;
}


.mv .slide-point1 {
  padding: 0 5px 0 5px;
}

.mv .slide-point2 {
  padding: 0 5px 0 5px;
}

.mv .slide-point3 {
  padding: 0 5px 0 5px;
}

.mv .slide-cta {
  opacity: 1;
  top: 82%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  z-index: 9999;
}



/*//////////////////

sec_case

////////////////*/


.case-wrap {
  padding: 1em;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

p.case-title {
  font-weight: bold;
  font-size: 1.3em;
  padding: 0 0 10px 0;
}

.case-title span.case {
  font-size: 0.8em;
  color: #fff;
  background: #D69F9E;
  border-radius: 30px;
  padding: 5px 15px;
  margin: 0 10px 0 0;
}

.swiper-p {
  line-height: 1.4em;
  width: 100%;
  margin: 0 auto;
  margin-top: 1.3em;
  color: #643c26;
}

.swiper-p p {
  font-size: 0.9em;
  margin-top: 0;
  padding: 5px 0 15px 0;
  line-height: 1.8em;
}

.treatment {
  font-weight: 600;
  margin-top: 10px;
}

.swiper-p p.note {
  font-size: 0.7em;
  text-align: right;
  margin: 0 0 10px 0;
}

/* slider */

.slider-wrap {
  /*background-image: url(../img/intro-bg.jpg);*/
  background-size: cover;
  margin-bottom: 70px;
}

.slick-list {
  padding: 0 !important;
  background: #fff;
  border-radius: 20px;
  padding: 1em;
}

.slider-inner {
  padding: 0 calc(50 / 750 * 100%);
}

.swiper {
  margin-bottom: 10px;
}



@media (min-width: 751px) {

  .case-wrap img.case {
    width: 95%;
    margin: 0 auto;
  }

  p.case-title {
    font-size: 1.9em;
    padding: 10px 0 20px 0;
    text-align: center;
  }

  .case-title span.case {
    padding: 10px 25px;
    margin: 0 20px 0 0;
  }

  .swiper-p {
    line-height: 1.4em;
    width: 100%;
    margin: 0 auto;
    margin-top: 1.3em;
    color: #643c26;
  }

  .swiper-p p {
    font-size: 1.4em;
    margin-top: 10px;
    padding: 5px 0 15px 0;
    line-height: 1.8em;
  }

  .swiper {
    padding: 0 0 0 0;
    margin-bottom: 10px;
  }

  .swiper-p {
    width: 90%;
  }

  .slick-list img {
    width: 90%;
    padding: 20px 0 40px 0;
    margin: 0 auto;
  }

}


.swiper {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  z-index: 1;
  display: block;
  width: 100%;
  position: relative;
  padding: 10px 0 0 0;
  margin: 0 0 20px 0;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,
      initial);
  box-sizing: content-box;
  transform: translate3d(0px, 0, 0);
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  margin-bottom: 30px;
  padding: 0;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-slide img.banner {
  width: 90%;
  margin: 0 auto;
}

.swiper-slide img.clinic-img {
  width: 100%;
  margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
  place-content: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: min(calc(100 / 750 * 100vw), 100px);
  font-size: 0;
  width: 30px;
  height: 30px;
  top: 60%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent !important;
  z-index: 1000;
}

.swiper-button-prev {
  background-image: url("../images/slide-prev.svg");
  right: min(calc(-10/750*100vw), 35px);
  left: var(--swiper-navigation-sides-offset, 1.5%);
  background-repeat: no-repeat;
  left: 0 !important;
  right: auto;
}

.swiper-button-next {
  background-image: url("../images/slide-next.svg");
  background-repeat: no-repeat;
  right: 0 !important;
  left: auto;
}

.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  font-size: 0;
}

.swiper-button-prev::after, .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none;
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, -5px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  background: var(--point-pink01) !important;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
  background: var(--main-pink01);
}

@media screen and (min-width: 650px) {

  .swiper {
    padding: 20px 0 0 0;
    margin: 0 0 30px 0;
  }

  .swiper-slide img.banner {
    width: 90%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
    top: 62%;
  }

}

/* タブ（②） */
.tabs {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tabs .tab {
  padding: 0.6em 1.2em;
  margin: 0 0.5em;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
}

.tabs .tab.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs button {
  padding: 0;
  background: none;
  border: none;
  border-radius: none;
  cursor: pointer;
  opacity: 0.8;
  width: 31%;
}

.tabs button.active {
  width: 37%;
  opacity: 1.0;
}


/* タブ（③） */
.tab {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab__item {
  padding: 0.6em 1.2em;
  cursor: pointer;
  background: #eee;
  border-radius: 5px;
}

.tab__item--active {
  background: #333;
  color: #fff;
}

/* スワイパーの表示切替 */
.main-slider {
  display: none;
}

.main-slider--active {
  display: block;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs button {
  padding: 0;
  background: none;
  border: none;
  border-radius: none;
  cursor: pointer;
  opacity: 0.8;
}

.tabs button.active {
  width: 37%;
  opacity: 1.0;
}





/*fv背景////////////////*/

.slider {
  width: 100%;
  height: 600px;
  /*overflow: hidden;*/
  position: relative;
  max-width: 100%;
}


@media (max-width: 375px) {
  .slider {
    height: 550px;
  }
}

@media (min-width: 650px) {
  .slider {
    height: 950px;
  }
}


/* 背景画像用 */
.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade 10s infinite ease-in-out;
}


/* 背景画像の設定とアニメーションディレイ */
.bg1 {
  background-image: url("../images/fv-bg01.webp");
  animation-delay: 0s;
}

.bg2 {
  background-image: url("../images/fv-bg02.webp");
  animation-delay: 5s;
  /* 半分ずらすことで交互に表示 */
}

/* クロスフェードアニメーション */
@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}










/*fv要素////////////////*/

.mv {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
  height: auto;
  background: var(--bg-pink01);
}

.slider-batch-flbox {
  display: flex;
  position: absolute;
  left: 5%;
  width: 56%;
  z-index: 9999;
}

.mv .slider-batch {
  padding: 0 3px 0 3px;
}

.mv .slider-title {
  top: 17.5%;
  position: absolute;
  left: 3%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2.6em;
  background: linear-gradient(90deg, #6e4b1e 0%, #98682b 40%, #6e4b1e 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 0.5em rgba(255, 255, 255, 5));
  text-align: left;
  z-index: 9999;
  width: 80%;
}

.mv .slider-title span.small {
  font-size: 0.7em;
}

.mv .slider-title span.middle {
  font-size: 0.9em;
}

.mv h1.mv {
  line-height: 1.0em;
  background: linear-gradient(90deg, #6e4b1e 0%, #98682b 40%, #6e4b1e 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 0.5em rgba(255, 255, 255, 0.8));
  font-size: 40px;
}

.slider-point-flbox {
  display: flex;
  top: 42%;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  width: 89%;
  text-align: center;
  margin: 0 auto;
  z-index: 9999;
}

.mv .slider-point {
  padding: 0 3px 0 3px;
}

.mv .slider-price {
  z-index: 9999;
  top: 63%;
  position: absolute;
  left: 0;
  right: 0;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 0 6px;
}

.mv .slider-cta {
  opacity: 1;
  top: 93%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  z-index: 9999;
}

.mv p.note {
  padding: 10px 0 5px 0;
  color: #333;
  font-size: 0.1em;
  text-shadow: 1px 1px 2px #fff;
  z-index: 9999;
  position: absolute;
  top: 101%;
  text-align: left;
  left: 0;
  right: 0;
  width: 85%;
  margin: 0 auto;
}

@media screen and (min-width: 650px) {

  .mv h1.mv {
    font-size: 65px;
  }

  .mv .slider-title {
    font-size: 4.4em;
    top: 18%;
  }

  .mv .slider-title span.small {
    font-size: 0.7em;
  }

  .mv .slider-title span.middle {
    font-size: 0.9em;
  }

  .mv .slider-point {
    padding: 0 5px 0 5px;
  }

  .mv .slider-price {
    top: 64%;
  }

  .mv .slider-cta {
    top: 93%;
  }

  .mv p.note {
    padding: 23px 0 5px 0;
    font-size: 0.8em;
    top: 100%;
    text-align: center;
  }

}



/*/////////////////////
キャンペーン
//////////////////////*/


.sec-campaign {
  margin: 0 auto;
  padding: 23% 0 10% 0;
  background: var(--bg-pink01);
}

.sec-campaign h2 {
  position: relative;
  text-align: center;
  padding: 5px 0 30px 0;
  font-size: 28px;
}

.sec-campaign h2::before {
  top: -50%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-campaign h2::after {
  top: 60%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 85%;
  height: 100px;
  background: url(../images/line-title.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}


.sec-campaign h2 p.top {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  line-height: 1.8em;
  font-size: 30px;
}

.sec-campaign h2 p.top strong {
  font-size: 1.5em;
  color: #fff;
}

.sec-campaign h2 p.top::before {
  background-color: #fff;
  border-radius: 10px;
  bottom: 80px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: scaleY(0.5) translateX(-50%);
  width: 300px;
}

.sec-campaign h2 p.bottom {
  font-size: 30px;
  color: #fff;
  padding: 25px 0 0 0;
}

.sec-campaign h2 div p {
  margin-bottom: 0.2rem;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #9F7426;
}

.sec-campaign h2 div.title {
  padding: 20px 0 0 0;
}


.campaign_swich_ank_top {
  padding: 20px 0 10px 0;
}

.banner-box {
  margin: 0 auto;
  padding: 10px 0 10px 0;
  width: 92%;
}

.guarantee {
  padding: 20px 0 0 0;
}

@media screen and (min-width: 650px) {

  .sec-campaign {
    padding: 200px 0 100px 0;
  }

  .sec-campaign h2 {
    position: relative;
    text-align: center;
    padding: 5px 0 50px 0;
    font-size: 50px;
  }

  .sec-campaign h2::before {
    width: 60px;
    height: 60px;
  }

}


/*////////////////////////
sec-topcase
////////////////////////*/

.sec-topcase {
  padding: 20px 0 20px 0;
  background: var(--bg-pink01);
}

.sec-topcase h2 {
  /*padding: 0 0 20px 0;*/
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  line-height: 1.3em;
  font-size: 28px;
}

.sec-topcase h2 span.big {
  font-size: 2.2em;
}

.sec-topcase h2 span.small {
  font-size: 0.7em;
}

.sec-topcase p.balloon {
  position: relative;
  width: fit-content;
  padding: 3px 15px;
  /* margin: 0 auto; */
  border-radius: 4px;
  font-size: 0.7em;
  color: #fff;
  background-color: var(--main-pink01);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 0 0 10px 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.sec-topcase p.balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: var(--main-pink01);
  rotate: 135deg;
  translate: -50%;
}


@media screen and (min-width: 650px) {
  .sec-topcase h2 {
    /*padding: 0 0 20px 0;*/
    font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-align: center;
    line-height: 1.3em;
    font-size: 48px;
  }

  .sec-topcase h2 span.big {
    font-size: 2.2em;
  }

  .sec-topcase h2 span.small {
    font-size: 0.7em;
  }

  .sec-topcase p.balloon {
    border-radius: 8px;
    font-size: 30px;
    padding: 10px 30px;
  }

  .sec-topcase p.balloon::before {
    width: 25px;
    height: 25px;

  }

}

/*/////////////////////
sec-comparison
//////////////////////*/

.sec-comparison {
  text-align: center;
  margin: 0 auto;
  background: var(--bg-pink01);
  background-image: url(../images/bg-comparison.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 0 0 90px 0;
}

.sec-comparison h2 {
  position: relative;
  text-align: center;
  padding: 5px 0 10px 0;
  font-size: 28px;
}

.sec-comparison h2 span {
  color: var(--text-pink01);
  font-size: 0.7em;
}

.sec-comparison h2 strong {
  font-size: 1.3em;
  font-weight: 600;
}

.bt-text {
  font-size: 21px;
  position: relative;
  text-align: center;
  padding: 5px 0 10px 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding: 30px 0 0 0;
  font-weight: 600;
  color: #635150;
}

.band {
  font-size: 0.9em;
  padding: 5px 0 5px 0;
  margin: 10px 0 10px 0;
  color: #fff;
  background-image: linear-gradient(to right, #FFFCFA 0%, var(--main-pink01) 15%, var(--main-pink01) 85%, #FFFCFA 100%);
}

.band span.big {
  font-size: 1.1em;
}

.bt-text span.big {
  font-size: 1.5em;
}

@media screen and (min-width: 650px) {

  .sec-comparison {
    padding: 0 0 150px 0;
  }

  .sec-comparison h2 {
    padding: 15px 0 10px 0;
    font-size: 50px;
  }

  .bt-text {
    padding: 50px 0 0 0;
    font-size: 35px;
  }

  .band {
    margin: 10px 0 25px 0;
  }

}


/*/////////////////////
CTA
//////////////////////*/


.sec-cta {
  text-align: center;
  margin: 0 auto;
  background: var(--bg-pink02);
  padding: 50px 0 100px 0;
}

.ctabg01 {
  background-image: url(../images/bg-cta01.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.ctabg02 {
  background-image: url(../images/bg-cta02.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.ctabg03 {
  background-image: url(../images/bg-cta03.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

s section.sec-cta:nth-of-type(2) {
  text-align: center;
  margin: 0 auto;
  background: var(--bg-pink02);
  background-image: url(../images/bg-cta01.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 30px 0 100px 0;
}

.sec-cta div.logo {
  width: 80%;
  padding: 0 0 10px 3px;
}

.sec-cta h2 {
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  line-height: 1.4em;
  font-size: 28px;
}

.sec-cta h2 span {
  font-size: 1.2em;
}

.cta-point-flbox {
  display: flex;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 20px 0;
}

.cta-point {
  padding: 0 3px 0 3px;
}

.cta-btn {
  width: 90%;
  margin: 0 auto;
}


@media screen and (min-width: 650px) {
  .sec-cta {
    padding: 80px 0 150px 0;
  }

  .sec-cta h2 {
    font-size: 50px;

  }

  .sec-cta div.logo {
    width: 80%;
    padding: 0 0 20px 0;
  }

  .cta-point-flbox {
    padding: 30px 0 30px 0;
  }

}


/*/////////////////////
医学的こんきょのある治療
//////////////////////*/



.sec-will-basis {
  position: relative;
  background-size: 100%;
  padding: 20px 0 30px 0;
  background: var(--bg-pink03);
  background-image: url(../images/bg-will-basis.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.sec-will-basis h2 {
  padding: 0 0 30px 0;
  line-height: 1.8em;
  font-size: 22px;
  text-align: center;
}

.sec-will-basis h2 span {
  font-size: 1.2em;
}

.sec-will-basis h2 strong {
  font-size: 1.3em;
  font-weight: 600;
}

.sec-will-basis h2 .band {
  padding: 0;
  margin: 10px 0 15px 0;
}


.will-basis-text {
  padding: 20px 0 80px 0;
  position: relative;
  background-image: url(../images/bg-will-basis-arrow.png);
  background-size: 15%;
  background-repeat: no-repeat;
  background-position: 50% 30%;
}

.will-basis-text p {
  line-height: 2.0em;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  font-weight: 600;
  font-size: 36px;
}

.will-basis-text p strong {
  font-size: 1.9em;
}

.will-basis-text p.pinkline {
  background: linear-gradient(to right, #FFFCFA 0%, var(--main-pink01) 25%, var(--main-pink01) 75%, #FFFCFA 100%);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 85% 10%;
}

.will-basis-text p.note {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  padding: 10px 0 0 0;
  font-weight: 500;
  color: #333;
}

.will-basis-box {
  background: var(--bg-pink03);
  padding: 30px 0 20px 0;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
  border-radius: 10px;
}

.will-basis-box p {
  padding: 0;
}

.will-basis-box p.price-text {
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  /*padding-bottom: 10px;*/
  padding: 10px 0;
}

.will-basis-box p.price-text span.big {
  color: #d69f9e;
  font-size: 2.5em;
}

.will-basis-box p.price-text span.small {
  color: #d69f9e;
  font-size: 1.5em;
}

.basis-img:nth-of-type(1) {
  width: 98%;
  margin-right: auto;
  padding: 0 0 20px 0;
}

.basis-img:nth-of-type(2) {
  width: 98%;
  margin-left: auto;
  padding: 0 0 20px 0;
}

.basis-img:nth-of-type(3) {
  width: 98%;
  margin-right: auto;
  padding: 0 0 0 0;
}

@media screen and (min-width: 650px) {

  .sec-will-basis h2 {
    font-size: 40px;
  }

  .basis-img:nth-of-type(1) {
    width: 97%;
    padding: 0 0 40px 0;
  }

  .basis-img:nth-of-type(2) {
    width: 97%;
    padding: 0 0 40px 0;
  }

  .basis-img:nth-of-type(3) {
    width: 97%;
    padding: 0 0 0 0;
  }

  .will-basis-text {
    padding: 20px 0 170px 0;
  }

  .will-basis-text p {
    font-size: 60px;
    line-height: 2.3em;
  }

  .will-basis-text p.pinkline {
    background-size: 85% 8%;
  }

  .will-basis-text p.note {
    font-size: 15px;
    padding: 15px 0 0 0;
  }

}


/*/////////////////////
FAGAのサイン
//////////////////////*/


.sec-fagasign {
  position: relative;
  padding: 10px 0 0 0;
  background-image: url(../images/nayami_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background: var(--bg-pink02);
}

.sec-fagasign h2 {
  padding: 30px 0 20px 0;
  font-size: 28px;
  line-height: 1.7em;
  position: relative;
  text-align: center;
}

.sec-fagasign h2::before {
  top: -15%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/fagasign-icon.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-fagasign h2 span {
  font-size: 1.2em;
}

.sec-fagasign h2 strong {
  font-size: 1.6em;
}

.sec-.sec-fagasign h2 span {
  font-size: 1.5em;
}

img.fagasign-img {
  width: 95%;
  margin: 0 auto;
}

.medical-only {
  padding: 30px 0 0 0;
}

.medical-only div.balloon {
  position: relative;
  width: 80%;
  padding: 15px 5px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6em;
  font-size: 15px;
  background-color: #E2D0CD;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin: 0 0 10px 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #745050;
  top: 40px;
}

.medical-only div.balloon strong {
  font-size: 1.2em;
}

.medical-only div.balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #E2D0CD;
  rotate: 135deg;
  translate: -50%;
}

.medical-only div.balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border-color: #E2D0CD #E2D0CD transparent transparent;
  rotate: 135deg;
  translate: -50%;
}

.sec-fagasign .medical-only h2 {
  background-image: url(../images/medical-only-titlebg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 58%;
  margin: 0 auto;
  font-size: 24px;
  text-align: center;
}

.sec-fagasign .medical-only h2::before {
  background: 0;
  top: 0;
}

.fagasign-bottom {
  position: relative;
  background: #D4A3A2;
  background-image: url(../images/fagasign-bottom.webp);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: right 0% top 10px;
}

.fagasign-bottom p {
  color: #fff;
  text-align: left;
  font-size: 20px;
  line-height: 40px;
  padding: 35px 0 35px 10px;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}

.fagasign-bottom p::after {
  top: 75%;
  left: 38%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 70%;
  height: 100px;
  background: url(../images/line-title-white.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.fagasign-bottom p span {
  font-size: 26px;
}

.fagasign-bottom p span strong {
  font-size: 1.5em;
}



@media screen and (min-width: 650px) {

  .sec-fagasign h2 {
    padding: 30px 0 20px 0;
    font-size: 50px;
    line-height: 1.7em;
  }

  .sec-fagasign h2::before {
    width: 60px;
    height: 60px;
    top: -22%;
  }

  img.fagasign-img {
    width: 92%;
  }

  .medical-only div.balloon {
    width: 80%;
    font-size: 30px;
    background-color: #E2D0CD;
    margin: 30px 0 10px 0;
    padding: 20px 25px;
  }

  .medical-only div.balloon::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    background-color: #E2D0CD;
    rotate: 135deg;
    translate: -50%;
  }

  .medical-only div.balloon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    border-color: #E2D0CD #E2D0CD transparent transparent;
    rotate: 135deg;
    translate: -50%;
  }

  .sec-fagasign .medical-only h2 {
    margin: 0 auto 20px auto;
    font-size: 40px;
  }

  .fagasign-bottom p {
    font-size: 40px;
    line-height: 1.5em;
    padding: 60px 0 80px 30px;
  }

  .fagasign-bottom p span {
    font-size: 43px;
  }

}



/*/////////////////////
LHDVで解決
//////////////////////*/


.sec-case {
  padding: 80px 0 0 0;
}

.sec-case h2 {
  padding: 0 0 15px 0;
  font-size: 40px;
  line-height: 1.3em;
  position: relative;
  text-align: center;
}

.sec-case h2::before {
  top: -40%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
}

.sec-case h2 span {
  color: var(--text-pink01);
  font-size: 0.5em;
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}


.case-swiper button {
  background: none;
  border: none;
}

.case-swiper button img {
  width: 105px;
  padding: 5px 0;
}

.case-swiper-content {
  width: 90%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin: 10px 0 10px 0;
  font-size: 1.3em;
  position: relative;
  text-align: center;
  padding: 0 0 20px 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #635150;
  line-height: 1.4em;
}

.case-swiper-content h3 {
  border-radius: 10px 10px 0 0;
  padding: 10px 0 5px 0;
  font-size: 19px;
  font-weight: bold;
  background: var(--main-pink01);
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  width: 100%;
}

.case-swiper-content span {
  background: #fff;
  color: var(--main-pink01);
  border-radius: 5px;
  font-size: 12px;
  padding: 2px 5px 2px 5px;
  margin: 0 5px 0 10px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-swiper-content img {
  width: 100%;
  padding: 0 0 15px 0;
}

.case-swiper-content h4 {
  background: #635150;
  color: #fff;
  border-radius: 5px;
  width: 30%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  margin: 0 10px 0 0;
  padding: 0;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-swiper-content p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  line-height: 1.3em;
  text-align: left;
  padding: 0;
}


@media screen and (min-width: 650px) {
  .sec-case h2 {
    padding: 0 0 15px 0;
    font-size: 70px;
    line-height: 1.3em;
  }

  .sec-case h2::before {
    top: -30%;
    width: 60px;
    height: 60px;
  }

  .case-swiper button img {
    width: 180px;
    padding: 5px 0;
  }

  .case-swiper-content span {
    font-size: 20px;
    padding: 5px 10px;
    margin: 0 10px 0 20px;
  }

  .case-swiper-content h3 {
    padding: 20px 0 15px 0;
    font-size: 35px;
  }

  .case-swiper-content img {
    padding: 0 0 20px 0;
  }

  .case-swiper-content h4 {
    width: 30%;
    font-size: 20px;
    padding: 10px 0;
    margin: 0 10px 0 0;
  }

  .case-swiper-content p {
    font-size: 25px;
  }

}



/*//////////////////////
.sec-merit
/////////////////////////*/


.sec-merit {
  padding: 90px 0 10px 0;
  background: var(--bg-pink01);
}

.sec-merit h2 {
  font-size: 24px;
  position: relative;
  text-align: center;
  padding: 5px 0 10px 0;
}

.sec-merit h2 strong {
  font-size: 1.3em;
  font-weight: 600;
}

.sec-merit h2::before {
  top: -50%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-merit ul {
  list-style: none;
  padding: 20px 0;
}

.sec-merit ul div.fl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.sec-merit ul div.fl-box li {
  border-radius: 10px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin: 20px 0 20px 0;
  font-size: 19px;
  position: relative;
  text-align: center;
  padding: 0 0 20px 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #635150;
  line-height: 1.4em;
  width: 48%;
}

.sec-merit li {
  border-radius: 10px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin: 10px 0 10px 0;
  font-size: 20px;
  position: relative;
  text-align: center;
  padding: 0 0 20px 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #635150;
  line-height: 1.4em;
  font-weight: 600;
}

.sec-merit li strong {
  font-size: 1.2em;
  font-weight: 600;
}

.sec-merit li p.balloon {
  position: relative;
  width: fit-content;
  padding: 4px 12px;
  /* margin: 0 auto; */
  border-radius: 4px;
  font-size: 18px;
  color: #fff;
  background-color: var(--main-pink01);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 0 0 10px 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  top: 5px;
}

.sec-merit li p.small {
  font-size: 0.6em;
}

.sec-merit li p.balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: var(--main-pink01);
  rotate: 135deg;
  translate: -50%;
}

.sec-merit li p.note {
  padding: 0;
  color: #333;
  font-weight: 500;
}


@media screen and (min-width: 650px) {

  .sec-merit {
    padding: 150px 0 10px 0;
  }

  .sec-merit h2 {
    font-size: 42px;
    position: relative;
    text-align: center;
    padding: 5px 0 40px 0;
  }

  .sec-merit h2::before {
    top: -40%;
    width: 60px;
    height: 60px;
  }

  .inner-box div.fl-box {
    margin: 0 0 30px 0;
  }

  .sec-merit li {
    margin: 10px 0 30px 0;
    font-size: 32px;
    padding: 0 0 30px 0;
    line-height: 1.5em;
  }

  .sec-merit li p.balloon {
    padding: 5px 20px;
    font-size: 30px;
    top: 5px;
  }

  .sec-merit li p.small {
    font-size: 0.7em;
  }

  .sec-merit li p.balloon::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: var(--main-pink01);
    rotate: 135deg;
    translate: -50%;
  }


  .sec-merit ul div.fl-box li {
    font-size: 32px;
  }

  .sec-merit li p.note {
    font-size: 15px;
  }

}




/*//////////////
.sec-evidence
/////////////////*/

.sec-evidence {
  background: var(--bg-pink03);
}

.nayami {
  position: relative;
  background-image: url(../images/bg-nayami.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0 0 25% 0;
}

.sec-evidence h2 {
  color: #fff;
  font-size: 30px;
  padding: 50px 0 20px 0;
  text-align: center;
}

.sec-evidence h2 strong {
  font-size: 1.2em;
}

img.nayami-item {
  width: 85%;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

img.nayami-lady {
  width: 23%;
  padding: 10px 10px;
}

.nayami-text p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding: 0 0 0 10px;
  font-weight: 600;
}

.sec-evidence h3 {
  font-size: 21px;
  padding: 5px 0 5px 0;
  margin: 10px 0 10px 0;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  background-image: linear-gradient(to right, #FFFCFA 0%, #8A797C 15%, #8A797C 85%, #FFFCFA 100%);
}

div.graph {
  position: relative;
  width: 320px;
  margin: 0 auto;
  padding: 20px 0 30px 0;
}

div.graph p {
  line-height: 1.5em;
  font-size: 15px;
}

.evidence-text01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 41%);
  padding: 0;
  margin: 0;
  width: 85%;
}

.evidence-text02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 0;
  margin: 0;
  width: 83%;
}

.evidence-bottom-text {
  background-image: url(../images/evidence-bg.png);
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: 50% 58%;
  font-size: 28px;
  position: relative;
  text-align: center;
  padding: 20px 0 70px 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}

.evidence-bottom {
  position: relative;
  background: #D4A3A2;
  background-image: url(../images/evidence-bottom-img01.webp);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: left 0% top 10px;
  padding: 20px 0 20px 0;
  margin: 8% 0 0 0;
}

.evidence-bottom div.top {
  width: 85%;
  margin: 0 0 0 auto;
  padding: 0 10px 0 0;
}

.evidence-bottom div.top p {
  color: #fff;
  text-align: right;
  font-size: 5.5vw;
  line-height: 1.8em;
  padding: 0 10px 0 0;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}

.evidence-bottom div.bottom {
  width: 75%;
  margin: 10px 0 0 auto;
  background-image: url(../images/laurel-bg.svg);
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: 50% 58%;
}

.evidence-bottom div.bottom p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.9em;
  padding: 10px 10px 10px 10px;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.evidence-bottom div.bottom p strong {
  font-size: 38px;
}

.evidence-bottom div.top p:after {
  top: 25%;
  left: 28%;
  position: absolute;
  /* transform: translateX(-70%); */
  content: "";
  display: inline-block;
  width: 68%;
  height: 100px;
  background: url(../images/line-title-white.svg) no-repeat right top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}


@media screen and (min-width: 650px) {

  .sec-evidence h2 {
    font-size: 50px;
    padding: 100px 0 10px 0;
  }

  .nayami-text {
    padding: 10px 0 0 0;
  }

  .nayami-text p {
    font-size: 35px;
  }

  .sec-evidence h3 {
    font-size: 40px;
  }

  div.graph {
    width: 500px;
    padding: 50px 0 50px 0;
  }

  div.graph p {
    font-size: 22px;
    padding: 35px 0;
  }

  .evidence-bottom-text {
    background-size: 110%;
    background-position: 50% 0;
    font-size: 50px;
    padding: 10px 0 200px 0;
  }

  .evidence-bottom div.top p {
    font-size: 38px;
  }

  .evidence-bottom div.top p:after {
    left: 24%;
    top: 28%;
  }

  .evidence-bottom {
    padding: 40px 0 30px 0;
  }

  .evidence-bottom div.bottom p {
    font-size: 35px;
  }

  .evidence-bottom div.bottom p strong {
    font-size: 65px;
  }


}



/*/////////////////////
ウィルの治療
//////////////////////*/

.sec-will-treatment {
  position: relative;
  background: var(--bg-pink01);
  padding: 80px 0 30px 0;
  margin: 0 0 0 0;
}

.sec-will-treatment h2 {
  font-size: 28px;
  position: relative;
  text-align: center;
  padding: 5px 0 30px 0;
  line-height: 1.8em;
}

.sec-will-treatment h2 strong {
  font-size: 1.5em;
  font-weight: 600;
}

.sec-will-treatment h2::before {
  top: -30%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.point-bubble {
  position: relative;
  border-radius: 30px;
  line-height: 1.2em;
  background: #9A8B7F;
  width: 240px;
  margin: 0 auto;
  text-align: center;
}

.point-bubble::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 18px;
  width: 3px;
  background-color: #9A8B7F;
  content: "";
}

.point-bubble p {
  font-size: 0.8em;
  padding: 8px 0;
  color: #fff;
}

.video-box {
  width: 100%;
}

.sec-will-treatment video {
  width: 100%;
}

.sec-will-treatment p.title {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  padding: 20px 0;
}

.will-treatment-box {
  box-sizing: border-box;
  margin: 15px 0 40px 0;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 20px 15px 30px 15px;
}

.will-treatment-box-arrow {
  width: 40px;
  height: 45px;
  background: var(--main-pink01);
  clip-path: polygon(0 63.2%, 50% 63.2%, 50% 0, 50% 0, 50% 63.2%, 100% 63.2%, 50% 100%);
  margin: -10px auto 20px auto;
  text-align: center;
}

.will-treatment-box h3.top {
  box-sizing: border-box;
  margin: 10px 0 20px 0;
  text-align: center;
  color: #fff;
  font-size: 23px;
  position: relative;
  padding: 3px 0;
  line-height: 1.5em;
  background-image: linear-gradient(to right, #FFFCFA 0%, var(--main-pink01) 15%, var(--main-pink01) 85%, #FFFCFA 100%);
}

.will-treatment-box h3.bottom {
  font-size: 6.6vw;
  position: relative;
  text-align: center;
  padding: 10px 0 40px 0;
  line-height: 1.3em;
}

.will-treatment-box h3.bottom::after {
  top: 60%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 90%;
  height: 100px;
  background: url(../images/line-title.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.will-treatment-box-bottom {
  background: linear-gradient(to right, #FFFCFA 0%, var(--main-pink01) 25%, var(--main-pink01) 75%, #FFFCFA 100%);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 85% 7%;
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #635150;
  font-size: 28px;
  text-align: center;
  padding: 0 0 0 0;
  font-weight: 600;
}

.will-treatment-box-bottom strong {
  font-size: 2.2em;
  font-weight: 600;
}

.will-treatment-box h3 div.line01 {
  margin: 0 0 0 100px;
}

.will-treatment-box h3 div.line02 {
  margin: 0 0 40px 100px;
  padding: 20px 0 0 0;
}

.will-treatment-box h3 div.line01::before {
  background-color: #655D49;
  border-radius: 10px;
  bottom: -20px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: scaleY(0.5) translateX(-50%);
  width: 300px;
}

.will-treatment-box h3 div.line02::before {
  background-color: #655D49;
  border-radius: 10px;
  bottom: -35px;
  content: "";
  height: 1.5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 300px;
}

.will-treatment-box h4.common {
  box-sizing: border-box;
  color: #FFFFFF;
  background: var(--main-pink01);
  font-size: 18px;
  border-radius: 30px;
  padding: 5px;
  width: 90%;
  margin: 20px auto 20px auto;
  text-align: center;
  font-weight: 600;
}

.will-treatment-box .secondary-box p {
  color: #655D49;
  font-size: 0.9em;
  padding: 10px 0;
  font-size: 16px;
  width: 90%;
  margin: 0 auto;
  line-height: 1.8em;
}

.will-treatment-box img {
  width: 95%;
  margin: 0 auto;
}

.will-treatment-box img.bhs-img {
  width: 60%;
  margin: 0 auto;
}


.will-treatment-box .secondary-box img {
  width: 85%;
  margin: 0 auto;
}

.will-treatment-box .local-box p {
  background: #F6E6E5;
  font-size: 0.9em;
  padding: 20px 15px 20px 15px;
  margin: 25px auto 0 auto;
}

.will-treatment-box p.note {
  font-size: 0.5em;
  text-align: left;
  padding: 10px 0 0 0;
  line-height: 15px;
  width: 90%;
  margin: 0 auto;
  color: #333;
}

@media screen and (min-width: 650px) {

  .sec-will-treatment h2 {
    font-size: 50px;
    padding: 20px 0 10px 0;
  }

  .sec-will-treatment h2::before {
    top: -20%;
    width: 60px;
    height: 60px;
  }

  .sec-will-treatment p {
    width: 90%;
    margin: 0 auto;
    font-size: 25px;
  }

  .sec-will-treatment p.inner-box {
    font-size: 25px;
    padding: 0 0 20px 0;
    width: 80%;
  }

  .will-treatment-box {
    padding: 30px 15px 70px 15px;
  }

  .will-treatment-box h3.top {
    font-size: 40px;
  }

  .will-treatment-box h3.bottom {
    font-size: 40px;
    padding: 10px 0 80px 0;
  }

  .will-treatment-box img {
    width: 95%;
    padding: 10px 0 0 0;
  }

  .will-treatment-box img.bhs-img {
    width: 55%;
  }

  .will-treatment-box-arrow {
    width: 45px;
    height: 50px;
    margin: 0 auto 40px auto;
  }

  .will-treatment-box h4.common {
    font-size: 30px;
    width: 80%;
  }

  .will-treatment-box .secondary-box p {
    font-size: 20px;
    line-height: 1.8em;
    padding: 20px 0 10px 0;
  }

  .will-treatment-box-bottom {
    font-size: 50px;
    font-weight: 600;
  }

  .will-treatment-box p.note {
    font-size: 15px;
    text-align: center;
    padding: 20px 0 0 0;
  }

}


/*/////////////////
ウィル3つの理由
///////////////////*/


.sec-will-3reason {
  background: var(--bg-pink01);
  padding: 50px 0 0 0;
}

.sec-will-3reason h2 {
  font-size: 28px;
  position: relative;
  text-align: center;
  padding: 5px 0 40px 0;
  line-height: 1.5em;
}

.sec-will-3reason h2::before {
  top: -30%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}


.sec-will-3reason h2::after {
  top: 68%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 75%;
  height: 100px;
  background: url(../images/line-title.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-will-3reason h2 strong {
  font-size: 1.7em;
}

.will-3reason-inner-box {
  box-sizing: border-box;
  margin: 30px 0 70px 0;
  background: #fff;
  padding: 0 0 10px 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}

.will-3reason-inner-box img {
  margin: 0 auto;
}

.will-3reason-inner-box div.inner-box02 div.fl-box {
  flex-wrap: wrap;
  /* これを指定する */
  justify-content: space-between;
}

.will-3reason-inner-box div.inner-box02 div.fl-box img {
  width: 48%;
  padding: 0 2.5px 10px 2.5px;
}

.will-3reason-title {
  position: relative;
  background: #D4A3A2;
  background-image: url("../images/solution-top-bg.webp");
  background-size: 105%;
  background-repeat: no-repeat;
  background-position: right 50% top 65px;
}

.main-bubble {
  position: relative;
  border-radius: 30px;
  line-height: 1.2em;
  background: #9A8B7F;
  width: 230px;
  margin: 0 auto;
  text-align: center;
}

.main-bubble::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 18px;
  width: 3px;
  background-color: #9A8B7F;
  content: "";
}

.main-bubble p {
  font-size: 0.7em;
  padding: 3px 0;
  color: #fff;
}

.main-text {
  text-align: center;
  line-height: 1.3em;
  margin: 0 auto;
  padding: 30px 30px 30px 0;
  display: grid;
  justify-content: right;
}

.main-text span {
  text-align: center;
  line-height: 1.3em;
  margin: 0 auto;
}

.will-3reason-title h2 {
  font-size: 30px;
  line-height: 2.0em;
  color: #fff;
  margin: 0 0 0 0;
  padding: 20px 0 0 0;
}

.will-3reason-title h2 span {
  font-size: 1.6em;
}


.will-3reason-box-icon {
  width: 65%;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0 10px 0;
}


img.will-3reason-box-img01 {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  padding: 5px 0 10px 0;
}

.will-3reason-box p.note {
  font-size: 10px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.9em;
  color: #333;
}

.will-3reason-box h3 {
  padding: 45px 0 15px 0;
  box-sizing: border-box;
  text-align: center;
  color: #655D49;
  font-size: 7.5vw;
  width: 90%;
  margin: 0 auto;
  line-height: 1.6em;
}

.will-3reason-box h3.last {
  padding: 50px 0 0px 0;
  line-height: 1.5em;
}

.will-3reason-box h3 span {
  color: #fff;
  font-size: 1.3em;
  background: #d69f9e;
  padding: 5px 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin-right: 8px;
}


.will-3reason-box h3 div {
  padding: 20px 0 20px 0;
  text-align: center;
  line-height: 1.5em;
  border-bottom: solid 1.5px #655D49;
  width: 90%;
  margin: 0 auto;
}


br.wide {
  /*    display: block;
    content: "";
    margin: 8px 0;*/
}

.will-3reason-inner-box:nth-of-type(1) h3::before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 120px;
  background: url(../images/will-3reason-box-h-icon01.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.will-3reason-inner-box:nth-of-type(2) h3::before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 120px;
  background: url(../images/will-3reason-box-h-icon02.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.will-3reason-inner-box:nth-of-type(3) h3::before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 120px;
  background: url(../images/will-3reason-box-h-icon03.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}




@media screen and (min-width: 650px) {
  .sec-will-3reason h2 {
    font-size: 50px;
    padding: 5px 0 40px 0;
    line-height: 1.7em;
    margin: 70px auto;
  }

  .sec-will-3reason h2::before {
    top: -30%;
    width: 60px;
    height: 60px;
  }

  .sec-will-3reason h2::after {
    top: 70%;
  }

  .will-3reason-box h3 {
    padding: 70px 0 20px 0;
    font-size: 45px;
  }

  .will-3reason-box h3.last {
    padding: 80px 0 0px 0;
  }

  .will-3reason-inner-box:nth-of-type(1) h3::before {
    width: 200px;
    top: 40px;
  }

  .will-3reason-inner-box:nth-of-type(2) h3::before {
    width: 200px;
    top: 40px;
  }

  .will-3reason-inner-box:nth-of-type(3) h3::before {
    width: 200px;
    top: 40px;
  }

  .will-3reason-inner-box p {
    padding: 40px 0 50px 0;
    font-size: 25px;
    line-height: 1.7em;
  }

  .will-3reason-inner-box div.inner-box02 div.fl-box img {
    width: 270px;
    padding: 0 0 30px 0;
  }

  .will-3reason-box p.note {
    font-size: 15px;
    text-align: left;
    line-height: 1.7em;
  }

}



/*/////////////////////
治療費一覧
//////////////////////*/

.sec-price {
  margin: 0 auto;
  padding: 20px 0 50px 0;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--bg-pink01);
}

.sec-price p.main {
  color: #655D49;
  padding: 20px 0 0 0;
  line-height: 1.8em;
  font-size: 1.1em;
}


.sec-price h2 {
  color: #655D49;
  font-size: 35px;
  text-align: center;
  margin: 10% 0 8% 0;
}

.sec-price h2::before {
  top: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.png) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}


.sec-price img.top-img {
  position: absolute;
  top: -50px;
  place-self: center;
  width: 35%;
}

.top-logo {
  border-bottom: solid 1.5px #655D49;
  width: 85%;
  margin: 0 auto;
}

.sec-price-box {
  background: #fcf9f8;
  border-top: 3px solid #9A8B7F;
  border-bottom: 3px solid #9A8B7F;
  margin: 50px 0 20px 0;
  width: 100%;
  padding: 20px 15px 30px 15px;
}

.sec-price-box h3 {
  color: #655D49;
  font-size: 1.8em;
  text-align: center;
  padding: 5px 0 20px 0;
}

.sec-price-box h3::before {
  background-color: #655D49;
  border-radius: 10px;
  top: 80px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
}

.top-price-box-text {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.top-price-box-text p {
  margin: 0 auto;
  text-align: center;
}

.top-price-box-text p.top-price-text {
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding: 0;
  font-size: 1.2em;
  padding: 0 0 0 0;
}

.top-price-box-text p.top-price-text span.big {
  font-size: 2.5em;
  color: #D64E53;
}

.top-price-box-text p.top-price-text span.small {
  font-size: 1.7em;
  color: #D64E53;
}

.top-price-box-text p.top-price-text span.pink-bg {
  font-size: 1.0em;
  color: #fff;
  background: #D4A3A2;
  padding: 5px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  vertical-align: text-top;
}

.top-price-box-text p.note {
  font-size: 0.6em;
  padding: 0 0 10px 0;
}

.price-case-box {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 20px 15px 30px 15px;
  width: 90%;
  border-radius: 15px;
  margin: 0 auto 30px auto;
}


.price-case-box div.case {
  border-bottom: solid 1.5px #655D49;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
  font-family: "Akshar", sans-serif;
  font-size: 1.2em;
}


.sec-price :nth-of-type(1) h3 {
  color: #655D49;
  font-size: 25px;
  text-align: center;
  padding: 0 0 8px 40px;
  border-bottom: solid 1.0px #655D49;
}

.sec-price :nth-of-type(2) h3 {
  color: #655D49;
  font-size: 4.8vw;
  text-align: center;
  padding: 5px 0 10px 40px;
  border-bottom: solid 1.0px #655D49;
}

.sec-price :nth-of-type(3) h3 {
  color: #655D49;
  font-size: 5.3vw;
  text-align: center;
  padding: 0 0 8px 40px;
  border-bottom: solid 1.0px #655D49;
}

.sec-price :nth-of-type(1) h3::before {
  top: 5%;
  left: 22%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/price-title-icon01.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-price :nth-of-type(2) h3::before {
  top: 5%;
  left: 12.5%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/price-title-icon02.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-price :nth-of-type(3) h3::before {
  top: 5%;
  left: 13%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/price-title-icon03.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.price-box-text {
  margin: 0 auto;
  text-align: center;
  align-items: center;
  width: 90%;
  padding: 0 0;
  color: var(--text-pink01);
  margin: 10px auto 0 auto;
}

.price-box-text p {
  margin: 0 auto;
  text-align: center;
}

.price-box-text p.price-text {
  font-family: "sans-serif", "源雲明朝", "Noto Serif", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding: 0;
  font-size: 5vw;
  text-align: center;
  height: 60px;
  line-height: 60px;
  color: var(--text-pink01);
  font-weight: 600;
}

.price-box-text p.price-text span.big {
  font-size: 2.5em;
  color: #D64E53;
}

.price-box-text p.price-text span.small {
  font-size: 1.7em;
  color: var(--text-pink01);
}

.price-box-text p.note {
  padding: 5px 0 0 0;
  line-height: 2.0em;
  text-align: left;
  width: 90%;
  margin: 0 auto;
  color: #333;
}

.price-box-text p.price-text-note {
  padding: 0 0 10px 0;
  font-size: 17px;
  color: #333;
}

.free-price {
  padding: 0.5rem 0;
  margin: 20px 0 10px 0;
  color: #fff;
  background: #D4A3A2;
  font-size: 1.0em;
  text-align: center;
}


.fl-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-point-red {
  width: 120px;
  margin: 0 5px 0 5px;
  text-align: center;
  padding: 5px 0;
  color: #fff;
  background-color: #DE626B;
}

.case-point-brown {
  width: 120px;
  margin: 0 5px 0 5px;
  text-align: center;
  padding: 5px 0;
  color: #fff;
  background-color: #9A8B7F;
}

.case-box-img01 {
  width: 45%;
  padding: 25px 0 15px 0;
  margin: 0 auto;
}

.case-box-img02 {
  width: 90%;
  padding: 20px 0 10px 0;
  margin: 0 auto;
}

.price-campaign {
  border-radius: 30px;
  margin: 10px auto 10px auto;
  max-width: 230px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  width: 75%;
  background: var(--point-pink01);
  text-align: center;
  font-size: 15px;
}

.sec-price p.note {
  padding: 10px 0 0 0;
  line-height: 1.6em;
  text-align: left;
  width: 90%;
  font-size: 10px;
  color: #333;
  margin: 0 auto;
}


@media screen and (min-width: 650px) {

  .sec-price {
    padding: 80px 0 100px 0;
  }

  .sec-price p {
    font-size: 1.3em;
  }

  .sec-price h2 {
    font-size: 55px;
    margin: 20px 0 30px 0;
  }

  .sec-price h2::before {
    top: 30px;
    width: 60px;
    height: 60px;
  }

  .sec-price p.main {
    padding: 0 0 0 0;
    font-size: 1.5em;
  }

  .sec-price img.top-img {
    position: absolute;
    top: -50px;
    place-self: center;
    width: 35%;
  }

  .sec-price-box {
    margin: 40px 0 10px 0;
    padding: 20px 15px 40px 15px;
  }

  .sec-price-box h3 {
    font-size: 2.5em;
    padding: 20px 0 35px 0;
  }

  .sec-price-box h3::before {
    top: 120px;
    width: 150px;
  }

  .price-box-text {
    padding: 20px 0 10px 0;
  }

  .price-box-text p.price-text {
    padding: 30px 0 0 0;
    font-size: 30px;
  }

  .price-box-text p.price-text-note {
    padding: 30px 0 0 0;
    font-size: 30px;
  }

  .price-case-box {
    margin: 30px 0 25px 0;
  }

  .sec-price :nth-of-type(1) h3 {
    font-size: 40px;
    padding: 0 0 15px 40px;
  }

  .sec-price :nth-of-type(2) h3 {
    font-size: 30px;
    padding: 5px 0 15px 50px;
  }

  .sec-price :nth-of-type(3) h3 {
    font-size: 38px;
    padding: 0 0 15px 50px;
  }

  .sec-price :nth-of-type(1) h3::before {
    top: 3.5%;
    left: 22%;
    width: 55px;
    height: 55px;
  }

  .sec-price :nth-of-type(2) h3::before {
    top: 3.5%;
    left: 11%;
    width: 55px;
    height: 55px;
  }

  .sec-price :nth-of-type(3) h3::before {
    top: 3.5%;
    left: 12%;
    width: 55px;
    height: 55px;
  }

  .price-case-box div.case {
    padding: 8px 0;
    font-size: 1.5em;
  }

  .top-price-box-text p.top-price-text {
    font-size: 1.8em;
    padding: 0 0 20px 0;
  }

  .top-price-box-text p.top-price-text span.big {
    font-size: 2.5em;
  }

  .top-price-box-text p.top-price-text span.small {
    font-size: 1.7em;
  }

  .top-price-box-text p.top-price-text span.pink-bg {
    font-size: 1.0em;
    padding: 5px;
  }

  p.price-text {
    font-size: 1.8em;
    line-height: 1.8em;
  }

  p.price-text span {
    font-size: 2.5em;
  }

  .price-box-text p.note {
    font-size: 0.9em;
    padding: 10px 0 10px 0;
  }

  .free-price {
    padding: 0.8rem 0;
    margin: 0.7em 0;
    font-size: 1.5em;
  }

  .case-point-red {
    width: 150px;
    font-size: 1.5em;
    padding: 5px 20px;
  }

  .case-point-brown {
    width: 150px;
    font-size: 1.5em;
    padding: 5px 20px;
  }

  .menu-name-box {
    padding: 0 0 20px 0;
  }

  .menu-name-box .menu-name-icon {
    padding: 5px 0;
    font-size: 2.0em;
  }

  .price-menu-name {
    width: 80%;
    padding: 10px 0;
    font-size: 1.5em;
  }

  .case-box-img01 {
    width: 40%;
    padding: 30px 0 20px 0;
  }

  .case-box-img02 {
    width: 90%;
    padding: 40px 0 10px 0;
  }



  .price-campaign {
    margin: 15px auto;
    max-width: 400px;
    padding: 10px 25px;
    width: 90%;
    font-size: 28px;
  }

  .sec-price p.note {
    padding: 10px 0 20px 0;
    line-height: 1.5em;
    font-size: 15px;
  }

  .top-logo {
    padding: 30px 0 20px 0;
  }

}


/*/////////////////////

治療の流れ

//////////////////////*/

.sec-flow {
  margin: 0 auto;
  padding: 40px 0 70px 0;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--bg-pink04);
}

.sec-flow h2 {
  color: #fff;
  font-size: 38px;
  text-align: center;
  margin: 30px 0 20px 0;
}

.sec-flow h2::before {
  top: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo-wh.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

.sec-flow img.top-img {
  position: absolute;
  top: -50px;
  place-self: center;
  width: 35%;
}


.flow-box {
  background: #FBF5F5;
  padding: 10px 0 30px 0;
}

.flow-box .inner-box p {
  padding: 10px 8px 20px 8px;
  line-height: 25px;
  font-size: 15px;
}

.flow-box h3 {
  font-size: 6.5vw;
}

.flow-box h3 div {
  padding: 15px 0 0 105px;
}

.flow-box:nth-of-type(1) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon01.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 29px;
  position: absolute;
}

.flow-box:nth-of-type(2) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon02.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 29px;
  position: absolute;
}

.flow-box:nth-of-type(3) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon03.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 30px;
  position: absolute;
}

.flow-box:nth-of-type(4) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon04.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 29px;
  position: absolute;
}

.flow-box:nth-of-type(5) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon05.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 29px;
  position: absolute;
}

.flow-box:nth-of-type(6) h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 70px;
  background: url(../images/flow-icon06.svg) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 20px;
  top: 29px;
  position: absolute;
}

.step-box p {
  padding: 5px 0 10px 0;
}

.step-box-arrow-box {
  text-align: center;
  padding: 15px 0 20px 0;
  color: #fff;
}

.step-box-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.3em;
  height: 1.3em;
  border: 0.2em solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.step-attention-box {
  box-sizing: border-box;
  margin: 40px 0 0 0;
  background: #F6E6E5;
  padding: 10px;
}


.step-attention-box h4 {
  padding: 10px 0 0 20px;
  box-sizing: border-box;
  color: #D64E53;
  font-size: 1.2em;
  position: relative;
  margin: 0 auto;
}

.step-attention-box h4 div {
  padding: 0 0 0 40px;
  font-size: 4.8vw;
}

.step-attention-box h4::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  background: url(../images/attention-box-icon.webp) no-repeat left top;
  background-size: contain;
  vertical-align: middle;
  padding-left: 30px;
  left: 5px;
  top: 15px;
  position: absolute;
}

.step-attention-box p {
  box-sizing: border-box;
  padding: 0 10px 10px 10px;
  font-size: 17px;
  line-height: 1.8em;
}



@media screen and (min-width: 650px) {

  .sec-flow {
    padding: 100px 0 100px 0;
  }

  .sec-flow h2 {
    font-size: 54px;
    padding: 20px 0 40px 0;
  }

  .sec-flow h2::before {
    top: 90px;
    width: 55px;
    height: 55px;
}

  .flow-box .inner-box p {
    padding: 30px 0 30px 0;
    line-height: 40px;
    font-size: 25px;
  }

  .flow-box h3 {
    font-size: 4.0em;
  }

  .step-box h3 {
    padding: 20px 30px;
    margin: 20px 0 20px 20px;
    font-size: 1.8em;
  }

  .step-box h3 div {
    padding: 0 0 0 100px;
    font-size: 1.2em;
  }


  .step-box:nth-of-type(1) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .step-box:nth-of-type(2) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .step-box:nth-of-type(3) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .step-box:nth-of-type(4) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .step-box:nth-of-type(5) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .step-box:nth-of-type(6) h3::before {
    width: 120px;
    height: 120px;
    top: -20px;
  }


  .step-box p {
    padding: 10px 0 20px 0;
  }

  .step-box-arrow-box {
    text-align: center;
    padding: 25px 0 30px 0;
  }

  .step-box-arrow {
    width: 1.5em;
    height: 1.5em;
  }

  .step-attention-box {
    margin: 50px 0 0 0;
    padding: 30px;
  }


  .step-attention-box h4 {
    padding: 20px 0 0 10px;
    font-size: 30px;
  }

  .step-attention-box h4 div {
    padding: 0 0 0 100px;
    font-size: 30px;
  }

  .step-attention-box h4::before {
    width: 70px;
    height: 70px;
    padding-left: 30px;
    left: 10px;
    top: 20px;
  }

  .step-attention-box p {
    padding: 0 20px 20px 20px;
    font-size: 1.2em;
  }

  .flow-box h3 div {
    padding: 22px 0 0 180px;
    font-size: 0.6em;
  }

  .flow-box:nth-of-type(1) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

  .flow-box:nth-of-type(2) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

  .flow-box:nth-of-type(3) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

  .flow-box:nth-of-type(4) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

  .flow-box:nth-of-type(5) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

  .flow-box:nth-of-type(6) h3::before {
    width: 140px;
    height: 140px;
    left: 30px;
    top: 35px;
  }

}



/* SE以下 */
@media screen and (max-width: 375px) {
  .step-attention-box h4 {
    font-size: 4.4vw;
    padding: 10px 10px;
  }

  .step-attention-box h4::before {
    left: -3px;
  }

  .step-attention-box h4 div {
    padding: 0 0 0 40px;
  }

  .flow-box h3 div {
    padding: 15px 0 0 87px;
  }

  .flow-box:nth-of-type(1) h3::before {
    width: 46px;
  }

  .flow-box:nth-of-type(2) h3::before {
    width: 46px;
  }

  .flow-box:nth-of-type(3) h3::before {
    width: 46px;
  }

  .flow-box:nth-of-type(4) h3::before {
    width: 46px;
  }

  .flow-box:nth-of-type(5) h3::before {
    width: 46px;
  }

  .flow-box:nth-of-type(6) h3::before {
    width: 46px;
  }

}



/*/////////////////////
FAQ
//////////////////////*/

#faq {
  margin: 0 auto;
  padding: 40px 0 0 0;
  margin: 0 auto;

}

#faq h2.main {
  color: #655D49;
  font-size: 32px;
  text-align: center;
  margin: 15% auto 8%;
  position: relative;
}

#faq h2.main::before {
  top: -45px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
}

#faq img.top-img {
  place-self: center;
  width: 35%;
}


.container-wb2 {
  width: 100%;
  margin: 0px auto;
  padding: 0px auto;
  padding-top: 0px;
}

.container-wb2 h2.titpc {
  display: none;
}

.box_qa {
  max-width: 800px;
  margin-top: 0px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 16px !important;
  color: #655D49;
}

.box_qa h2 {
  border-bottom: solid 1px #906f3d;
  font-size: 30px;
  margin: 0 0 30px 0;
}

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

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
  color: #655D49;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */

.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2.8em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.cp_qa .cp_actab label::before {
  font-family: serif;
  font-size: 1.3em;
  margin-left: -2em;
  padding-right: 0.5em;
  content: 'Q';
  color: #D64E53;
}

.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #906c35;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
  color: #D4A3A2;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  font-size: 90%;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  background: #fff;
}

.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: 'A';
  color: #D64E53;
}

.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
  line-height: 1.8em;
  font-size: 15px;
}

/* 質問を開いた時の仕様 */



/* --答えの高さ */

.cp_qa .cp_actab input:checked~.cp_actab-content {
  max-height: 40em;
  border: 2px solid;
  border-color: #f0e3cf;
  background: #fff;
}

/* 質問をクリックした時のアイコンの動き */

.cp_qa .cp_actab input:checked~label {
  color: #906c35;
}

/* 質問をクリックした時の+の動き */

.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}


@media screen and (min-width: 650px) {

  #faq h2.main {
    font-size: 50px;
    margin: 18% auto 10% auto;
  }

  #faq h2.main::before {
    top: -60px;
    width: 55px;
    height: 55px;
}

  .cp_qa .cp_actab label {
    font-size: 1.5em;
  }

  .cp_qa .cp_actab .cp_actab-content::before {
    font-size: 2.5em;
    margin: 0.4em 0 0 -1em;
    padding: 0;
  }

  .cp_qa .cp_actab .cp_actab-content {
    padding: 0 0 0 3.5em;
  }

}

/*/////////////////////
クリニック一覧 20240514
//////////////////////*/

#clinic {
  margin: 0 auto;
  padding: 80px 0 50px 0;
  margin: 0 auto;
  background: #fff;
}

#clinic h2 {
  color: #655D49;
  font-size: 32px;
  text-align: center;
  margin: 10% auto 8%;
  position: relative;
}

#clinic h2::before {
  top: -45px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/icon-logo.svg) no-repeat center top;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
}

#clinic img.top-img {
  place-self: center;
  width: 35%;
}


/*テーブル*/

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  margin-bottom: 20px;

}

table tr {
  border-bottom: solid 2px white;
}

table tr:last-child {
  border-bottom: none;
}

table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #D4A3A2;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #D4A3A2;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td {
  text-align: left;
  width: 70%;
  background-color: #F6EFED;
  padding: 10px 20px 10px 20px;
  color: #655D49;
}

table td p {
  line-height: 1.2;
  font-size: 15px;
  margin: 10px 0 10px 20px;
}

.clinic h3 {
  font-size: 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin-bottom: 8px;
}

.clinic_list h2 {
  background-color: #f6f3ed;
  text-align: center;
  padding: 12px;
  color: #9f8453;
  font-size: 30px;
  border-bottom: unset;
  position: relative;
}

.clinic-acd-container {
  margin: 24px;
}

.clinic-acd-title {
  cursor: pointer;
  background-color: #F6EFED;
  text-align: center;
  padding: 12px;
  color: #655D49;
  border-bottom: unset;
  position: relative;
  font-size: 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin-bottom: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}

.clinic-acd-title.open {
  border-bottom: 1px solid var(--gray-color);
}

.clinic-acd-title:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background-color: var(--black-color);
  color: #a18656;
  text-align: center;
  line-height: 22px;
  content: "＋";
  border: 1px solid var(--black-color);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

}

.clinic-acd-title.open:after {
  content: "ー";
  background-color: unset;
  border: 1px solid var(--gray-color);
  color: #a18656;
  font-size: 14px;
  ;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.clinic-acd-text {
  display: none;
  font-weight: 400;
  position: relative;
}

.clinic-acd-text .clinic {
  margin-top: 20px;
  font-size: 15px;
}

.clinic_area {
  margin: 40px 0;
}

.doctor_guide {
  margin-bottom: -5px;
}

.reservation03 {
  background-color: #f6f3ed;
  padding: 24px 24px 0 24px;
}

.clinic_title {
  background-color: #f6f3ed;
  padding: 24px;
  margin-bottom: 40px;
}

/*横並び２カラム_04カウンセリング画像*/
.clinic-acd-col2 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.clinic-acd-col2>div {
  width: 100%;
  font-size: 14px;
  margin: 0px;
  margin-bottom: px;
  padding: 0px;
  margin-bottom: 10px;
}


@media screen and (min-width: 650px) {

  #clinic h2 {
    font-size: 50px;
    margin: 15% auto 8% auto;
  }

  #clinic h2::before {
    top: -70px;
    width: 60px;
    height: 60px;
  }

  .clinic-acd-title {
    font-size: 28px;
  }

  .clinic h3 {
    font-size: 30px;
  }

  .clinic_list h2 {
    background-color: #f6f3ed;
    text-align: center;
    padding: 12px;
    color: #9f8453;
    border-bottom: unset;
    position: relative;
    font-size: 20px;
  }

  table {
    font-size: 1.2em;

  }

}


@media screen and (max-width: 768px) {

  .clinic-acd-col2>div {
    width: 100%;
    font-size: 14px;
    margin: 0px;
    margin-bottom: px;
    padding: 0px;
    margin-bottom: 10px;
  }


}




/*/////////////////////
移転お知らせ用 20240514
//////////////////////*/

.transfer-box {
  background-color: #F8F8F8;
  border-radius: 4px;
  padding: 24px;
  margin: 0 auto;
}

.transfer-box h4 {
  background-color: #DE6E6E;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-weight: bold;
  margin: -24px -24px 16px;
}

.transfer-box h4 img {
  max-width: fit-content;
  position: relative;
  top: 4px;

}

.transfer-box h4 span {
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.transfer-box p {
  font-size: 14px;
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 0 auto;
}

.transfer-box p strong {
  color: #DE6E6E;
  font-weight: bold;
  text-align: center;
  display: block;
}

.transfer-add {
  display: flex;
  border-top: 1px solid #E8E8E8;
  padding: 16px 0px 0 0px;
  /*gap: 40px;*/
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 14px;
}

.transfer-add p strong {
  color: #655D49;
  text-align: left;
  margin-bottom: 4px;
}


@media screen and (max-width: 768px) {
  .transfer-add p strong {
    text-align: left;
    margin-bottom: 4px;
  }

  .transfer-box {
    padding: 16px;
    width: auto;

  }

  .transfer-add {
    padding: 16px 0px 0 0px;
  }

  .transfer-box h4 {
    margin: -16px -16px 16px;
  }
}


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

新固定バナー　20220330

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

.fixed_footer {
  z-index: 9999;
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffffe4;
  margin: 0 auto;
  overflow: hidden;
}

.fixed_footer ul {
  display: flex;
  gap: 4px;
  margin: 0 auto;
  padding: 0 1.5%;
}

.fixed_footer ul li {
  padding: 1.5% 0;
  margin: 0 auto;
}

.fixed_footer ul li:nth-child(1) {
  width: 55%;
}

.fixed_footer ul li:nth-child(2) {
  width: 25%;
}

.fixed_footer ul li:nth-child(3) {
  width: 25%;
}

img.fix_icon {
  max-width: 100%;
  margin: 0 auto;
}

.is_active {
  z-index: 9999;
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media screen and (min-width: 650px) {

  .fixed_footer {
    display: none;
  }
}



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

キャンペーン

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

#specialcam {
  background: #FFF;
}

#specialcam div {
  width: 90%;
  padding: 5em 0;
  line-height: 1.8em;
  font-size: .8em;
  color: #555555;
  font-family: Noto Sans JP, sans-serif;
  margin: 0 auto;
}

.code {
  font-size: 1.5em !important;
}




/* スワイパー共通スタイル */
.swiper {
  width: 100%;
  position: relative;
  padding: 10px 0 0 0;
  margin: 0 0 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-slide img.banner {
  width: 90%;
  margin: 0 auto;
}

.swiper-slide img.clinic-img {
  width: 100%;
  margin: 0 auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* ナビゲーションボタン */

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}


@media screen and (min-width: 650px) {

  .swiper {
    padding: 20px 0 0 0;
    margin: 0 0 30px 0;
  }

  .swiper-slide img.banner {
    width: 90%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
    top: 62%;
  }

}


/* タブ（②） */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tabs .tab {
  padding: 0.6em 1.2em;
  margin: 0 0.5em;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
}

.tabs .tab.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs button {
  padding: 0;
  background: none;
  border: none;
  border-radius: none;
  cursor: pointer;
  opacity: 0.8;
  width: 31%;
}

.tabs button.active {
  width: 37%;
  opacity: 1.0;
}

.medical-only-sw {
  box-sizing: border-box;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 20px 15px 25px 15px;
  width: 90%;
  border-radius: 15px;
  margin: 0 auto 30px auto;
}

.medical-only-sw h3 {
  width: 60%;
  text-align: left;
  font-size: 21px;
  padding: 10px 0 10px 5px;
}

.medical-only-sw img {
  width: 40%;
}

.medical-only-sw p {
  text-align: left;
  font-size: 16px;
  padding: 10px 5px 0 5px;
}

.medical-only-sw p span {
  color: var(--text-pink01);
  font-weight: bold;
}


@media screen and (min-width: 650px) {

  .medical-only-sw {
    padding: 30px 30px;
  }

  .medical-only-sw h3 {
    font-size: 42px;
    padding: 10px 0 10px 0;
    line-height: 1.3em;
    margin: 0;
  }

  .medical-only-sw p {
    font-size: 1.3em;
    padding: 30px 5px 0 5px;
    line-height: 1.5em;
  }

}

/* タブ（③） */
.tab {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab__item {
  padding: 0.6em 1.2em;
  cursor: pointer;
  background: #eee;
  border-radius: 5px;
}

.tab__item--active {
  background: #333;
  color: #fff;
}

/* スワイパーの表示切替 */
.main-slider {
  display: none;
}

.main-slider--active {
  display: block;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs button {
  padding: 0;
  background: none;
  border: none;
  border-radius: none;
  cursor: pointer;
  opacity: 0.8;
}

.tabs button.active {
  width: 37%;
  opacity: 1.0;
}

/* ナビゲーション矢印 */
.tab-slide .swiper-button-prev,
.tab-slide .swiper-button-next {
  color: #333;
}