@charset "UTF-8";

/* リキッドレイアウト対応のための設定 */
body {
  color: #484541;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*PCのみ表示*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*(md)px以下で表示*/
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  display: block;
}

img {
  object-fit: cover;
  height: 100%;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a[href^="tel:"] {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    transition: opacity, 0.5s 0s ease;
  }

  a:hover {
    opacity: 0.8;
  }
}

/* 画像のはみ出しを管理 */
main {
  overflow: hidden;
}

/* addressタグ リセット */
address {
  font-style: normal;
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    /* クリックやタップを無効化 */
  }
}

/* 横スクロール防止 */
html,
body {
  overflow-x: clip;
}

.anker-link {
  scroll-margin-top: 5.625rem;
}

/* `<fieldset>` の枠を非表示にする */
fieldset {
  border: none;
  /* ボーダー（枠線）を非表示にする */
  padding: 0;
  /* 不要な余白を削除 */
  margin: 0;
  /* 不要なマージンを削除 */
}

/* `<legend>` のテキストを非表示にする */
legend {
  display: none;
  /* テキスト自体を非表示にする */
}

button {
  padding: 0;
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}

@media (max-width: 600px) {
  html {
    font-size: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*インナー幅用の基本CSS*/
.inner {
  width: 100%;
  max-width: 630px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}

body {
  max-width: 46.875rem;
  padding-inline: 0;
  margin-inline: auto;
  box-shadow: -10px 0px 10px 0px rgba(0, 0, 0, 0.05),
    10px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
/* CTAボタン
=========================================*/
.first-cta-area {
  position: relative;
}

.only-cta-area {
  position: relative;
  background: url(../images/only-cta-area-bg.jpg) center center / cover
    no-repeat;
  padding: 6.935% 0;
}

.only-cta-area .cta__btn-area {
  position: initial;
  transform: none;
  margin: 0 auto;
}

.only-cta-area .cta__btn-area .cta-btn {
  margin-bottom: 0;
}

.off__btn-area {
  width: 270px;
  height: auto;
  position: absolute;
  top: 33%;
  right: 1%;
  z-index: 20;
  animation: pop-bounce 3s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@media screen and (max-width: 767px) {
  .off__btn-area {
    width: 140px;
    top: 33%;
    right: 1%;
  }
}
.top-off__btn-area {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .top-off__btn-area {
    top: 65%;
  }
}
@keyframes pop-bounce {
  0% {
    transform: scale(1) translateY(0);
    filter: brightness(1);
  }
  10% {
    transform: scale(1.12) translateY(-8px);
    filter: brightness(1.08);
  }
  25% {
    transform: scale(0.96) translateY(3px);
  }
  40% {
    transform: scale(1.06) translateY(-5px);
  }
  60% {
    transform: scale(1) translateY(0);
  }
  75% {
    filter: brightness(1.1); /* きらっと強調 */
  }
  100% {
    transform: scale(1) translateY(0);
    filter: brightness(1);
  }
}
.cta__btn-area {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity, 0.5s 0s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cta__btn-area {
    bottom: 4%;
  }
}
.cta__btn-area:hover {
  width: 86%;
  opacity: 1;
}

/*キラッと光る*/
.cta__btn-area::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 30%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

/*キラッと光る移動のアニメーション*/
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* mid CTAボタン
=======================================*/

.mid-cta-area {
  position: relative;
}
.mid-cta-area .cta__btn-area {
  bottom: 27%;
}

/* sns btn
=======================================*/
.sns__btn-area {
  width: 64%;
  max-width: 476px;
  height: auto;
  position: absolute;
  bottom: 27%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity, 0.5s 0s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sns__btn-area {
    width: 80%;
    max-width: 550px;
  }
}
.sns__btn-area:hover {
  width: 70%;
  opacity: 1;
  max-width: 550px;
}

/*キラッと光る*/
.sns__btn-area::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 30%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}
/* line book btn
=======================================*/
.line-book__btn-area {
  width: 52%;
  max-width: 384px;
  height: auto;
  position: absolute;
  top: 15%;
  left: 63%;
  transform: translateX(-50%);
  transition: opacity, 0.5s 0s ease;
  cursor: pointer;
}

.line-book__btn-area:hover {
  width: 60%;
  opacity: 1;
  max-width: 400px;
}

/*キラッと光る*/
.line-book__btn-area::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 30%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}
/* 共通事項
=======================================*/
/* header
=======================================*/
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 46.875rem;
  width: 100%;
  z-index: 100;
  background-color: #c4a258;
  height: clamp(3.75rem, 2.355rem + 6.98vw, 5.625rem);
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.header__logo {
  max-width: 280px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 180px;
  }
}

.header__nav-btn {
  padding: 0;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
}

/* ハンバーガーラインのスタイル */
.hamburger-line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーメニューがアクティブ時のアニメーション */
.header__nav-btn.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9.2px, 3px);
}

.header__nav-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__nav-btn.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9.2px, -3px);
}

/* header__nav(ハンバーガーメニュー)
=======================================*/
.header__nav {
  position: absolute;
  right: 0;
  width: 76%;
  background-color: rgb(242, 242, 244);
  padding: 4%;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s linear;
  top: clamp(3.75rem, 2.355rem + 6.98vw, 5.625rem);
}

@media screen and (max-width: 663px) {
  .header__nav {
    width: 90%;
    padding: 4% 0 4% 4%;
  }
}

/* is-activeクラスが付くと表示される */
.header__nav.is-active {
  visibility: visible;
  opacity: 1;
}

body.is-active {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header__nav-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #3d4681;
  padding-bottom: 15px;
}

.header__nav-list-item a {
  color: #3d4681;
}

.header__nav-info {
  margin-top: 15px;
  font-size: 16px;
  color: #3d4681;
}

.header__nav-tel {
  color: #3d4681;
}

/* fv
=======================================*/
.fv {
  margin-top: clamp(3.75rem, 2.355rem + 6.98vw, 5.625rem);
  background: #fff;
  position: relative;
}

/* case
=======================================*/
.case {
  width: 100%;
}

.case__title {
  width: 100%;
  height: auto;
}

.case__inner {
  background: url(../images/case-bg.jpg) center center / cover no-repeat;
  padding: 75px 0 40px;
}

.case__inner-box {
  border: 5px solid #bbe1fb;
  padding: 5%;
  background: #fff;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.case__inner-box::before,
.case__inner-box::after {
  content: "";
  position: absolute;
  top: -7%;
  left: 13%;
  width: 27.068%;
  height: auto;
  z-index: 10;
  aspect-ratio: 180 / 60;
}

.case__inner-box::before {
  background: url(../images/case-before-text.png) center center / contain
    no-repeat;
}

.case__inner-box::after {
  background: url(../images/case-after-text.png) center center / contain
    no-repeat;
  left: initial;
  right: 13%;
}

/* ケーススライダーのスタイル */
.case-swiper {
  width: 100%;
  position: initial;
}

.case-swiper .swiper-slide {
  text-align: center;
}

.case-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左右ナビゲーションボタン */
.case-swiper-button-next,
.case-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.case-swiper-button-next {
  right: -2.5%;
}

.case-swiper-button-prev {
  left: -2.5%;
}

/* プログレスバー */
.case-swiper-progress {
  width: 100%;
  height: 10px;
  background-color: #d8d8d8;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.case-swiper-progress-bar {
  height: 100%;
  background-color: #da4984;
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 33.333%;
  transform: translateX(0%);
}

/* worry
=======================================*/
.nayami {
  position: relative;
}

.worry-btn {
  position: absolute;
  top: 80.3%;
  right: 5%;
  width: 63%;
}

.worry-btn:hover {
  opacity: 1;
}

/* introduce
=======================================*/
.introduce {
  background: url(../images/introduce-bg.jpg) center center / cover no-repeat;
  aspect-ratio: 750 / 1200;
  position: relative;
}

.introduce__video {
  position: absolute;
  right: 10.7%;
  bottom: 7%;
  width: 41.6%;
  border-radius: 40px;
}

@media screen and (max-width: 767px) {
  .introduce__video {
    border-radius: 30px;
  }
}

@media screen and (max-width: 470px) {
  .introduce__video {
    border-radius: 20px;
  }
}

/* meet
=======================================*/
.meet__inner {
  position: relative;
}
.meet__img-right {
  position: absolute;
  top: 15%;
  right: 40px;
  width: 43%;
  height: auto;
  /* アニメーション追加 */
  animation: pop-scale 3.4s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

@keyframes pop-scale {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/* ouenn
=======================================*/
.ouenn {
  background: url("../images/ouenn-bg.png") 0 0 no-repeat;
  padding-bottom: 14.926%;
}
.ouenn__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.ouenn__inner-1,
.ouenn__inner-2,
.ouenn__inner-3 {
  position: relative;
  width: 100%;
  margin: 0 auto 14.926%;
}
.ouenn__inner-3 {
  margin-bottom: 0;
}

/* doctor
=======================================*/
.doctor {
  background: url("../images/doc-bg.png") 50% 50% / cover no-repeat;
}
.profile-box {
  background-color: #fffefc;
  border: 2px solid #c4a258;

  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 2px;
  max-width: 94%;
  margin: 0 auto 50px;
  padding: 50px 40px 50px;
  position: relative;
}

.profile-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .profile-box {
    padding: 30px 20px 30px;
  }
}

.profile-title {
  font-family: "noto serif jp", serif;
  font-size: clamp(22px, 6vw, 40px);
  font-weight: 400;
  text-align: center;
  border-bottom: 2px solid #3a4b8b;
  color: #3a4b8b;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  padding-bottom: 5px;
  margin-bottom: 10px;
  position: relative;
}

.profile-toggle {
  display: none;
}

.profile-toggle2 {
  display: none;
}

.profile-title span {
  font-size: 0.6em;
  font-weight: 400;
  color: #3a4b8b;
  display: block;
  text-align: center;
}

.profile-list {
  list-style: none;
  padding: 0;
  padding-left: 20px;
  max-height: none;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .profile-list {
    padding-left: 0;
  }
}
.profile-list li {
  font-size: clamp(16px, 4vw, 30px);
  margin-bottom: 20px;
  color: #3a4b8b;
  line-height: 1.7;
}
.profile-year {
  font-weight: bold;
  color: #3a4b8b;
  font-size: clamp(16px, 4vw, 30px);
}

.profile-list--sub {
  margin-top: 0;
}
.profile-list--sub li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #23316a;
  font-size: clamp(16px, 4vw, 30px);
}
.magazine {
  position: relative;
}
.mid-video {
  background: url("../images/movie-bg.png") 50% 50% / cover no-repeat;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 16/9;
  padding: 8px;
}
.program {
  position: relative;
}
/* information クリニック詳細
=======================================*/
.information {
  position: relative;
}

.information__image {
  aspect-ratio: 750/410;
  max-width: 46.875rem;
  width: 100%;
  position: relative;
}

.information__image img {
  height: 100%;
}

.information__title {
  aspect-ratio: 500/200;
  width: 66.667%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.information__container {
  padding-top: 19.067%;
  padding-inline: clamp(0.625rem, -1.328rem + 9.77vw, 3.25rem);
}

.information__container {
  background-image: url(../images/information/information-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 750/790;
  width: 100%;
  padding-bottom: 4.267%;
}

.information__list {
  color: #fff;
  font-size: clamp(0.75rem, 0.192rem + 2.79vw, 1.5rem);
  line-height: 1.4583333333;
  font-weight: 400;
}

.information__item {
  display: flex;
  gap: 6.8111%;
  border-bottom: 1px solid #fff;
  padding-block: 3.096%;
  padding-left: 2.6315%;
}

.information__item:last-child {
  border-bottom: inherit;
}

.information__item-label {
  max-width: 6rem;
  width: 100%;
  text-align: center;
}

/* footer
=======================================*/
.footer {
  background-color: #f6f3eb;
  padding-top: 6.8%;
  padding-bottom: 2.667%;
}

.footer__copy {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(12px, 5vw, 20px);
  font-weight: 400;
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
.peeling-injection__inner,
.laser__inner {
  width: 100%;
  height: fit-content;
  padding: 40px 40px 100px;
  background: #23316a;
  background: url("../images/peeling-accordion-bg.jpg") 0% 0% repeat-y;
  background-size: 100% auto;
  @media screen and (max-width: 767px) {
    padding: 20px 20px 60px;
  }
}
.peeling-accordion__item,
.laser-accordion__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 40px;
  box-shadow: 6px 6px 20px rgba(18, 32, 83, 0.2);
  transition: background 0.3s linear;
  @media screen and (max-width: 767px) {
    padding: 20px 20px;
  }
}
.laser-accordion__item {
  padding: 40px 33px;
}
.peeling-accordion__item:nth-child(1) {
  background: url("../images/peeling-item1-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.peeling-accordion__item:nth-child(2) {
  background: url("../images/peeling-item2-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.peeling-accordion__item:nth-child(3) {
  background: url("../images/peeling-item3-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.laser-accordion__item:nth-child(1) {
  background: url("../images/laser-item1-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.laser-accordion__item:nth-child(2) {
  background: url("../images/laser-item2-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.laser-accordion__item:nth-child(3) {
  background: url("../images/laser-item3-bg.png") 0% 100% no-repeat, #fff;
  background-size: 100% auto;
}
.laser-accordion__item.is-bg-none,
.peeling-accordion__item.is-bg-none {
  background: #fff !important; /* 閉じた時の背景 */
}
.peeling-accordion__item:not(:last-child),
.laser-accordion__item:not(:last-child) {
  margin-bottom: 50px;
}

.peeling-accordion__header,
.laser-accordion__header {
  margin-bottom: 36px;
  height: 50px;
  width: auto;
  @media screen and (max-width: 767px) {
    height: 32px;
    width: 100%;
  }
}
.peeling-accordion__header > img,
.laser-accordion__header > img {
  height: 100%;
  width: auto;
}

.peeling-accordion__body,
.laser-accordion__body {
  display: block; /* jQueryのslideToggleで勝手に変化するのでOK */
  overflow: hidden;
}

.peeling-accordion__body p,
.laser-accordion__body p {
  font-family: "noto sans jp", sans-serif;
  font-size: clamp(16px, 5vw, 28px);
  line-height: 1.6;
  color: #3a4b8b;
  text-align: justify;
}
.peeling-accordion__body p:not(:last-child),
.laser-accordion__body p:not(:last-child) {
  margin-bottom: 40px;
}
.peeling-accordion__btn,
.laser-accordion__btn {
  width: 400px;
  height: 80px;
  background: #ffffff55;
  border-radius: 40px;
  border: 2px solid #3a4b8b;
  font-family: "noto sans jp", sans-serif;
  font-size: clamp(24px, 6vw, 28px);
  line-height: 1;
  color: #3a4b8b;
  margin: 40px auto 0;
  display: block;
  @media screen and (max-width: 767px) {
    width: 90%;
    height: 60px;
    font-size: clamp(20px, 5vw, 24px);
  }
}
.about {
  background-color: #f6f3eb;
  padding: 0px 0px 80px;
}
.about__inner {
  padding: 0 30px;
  @media screen and (max-width: 767px) {
    padding: 0 14px;
  }
}
.about__inner p {
  background-color: #fff;
  border: 10px solid #cdaf8a;
  padding: 40px 6px;
  margin-top: 40px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: #484541;
  letter-spacing: -0.02em;
}
.about__inner p span {
  color: #e96273;
}
.merit {
  background-color: #f6f3eb;
}

.cta-block {
  text-align: center;
  background: #faf7f0;
  padding: 60px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.cta-btn {
  width: 90%;
  max-width: 670px;
  display: block;
  margin: 0 auto 30px;
}
.cta-desc {
  font-size: 32px;
  font-size: clamp(18px, 5vw, 28px);
  color: #3d3d3d;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 10px;
}
.cta-desc-big {
  font-size: clamp(16px, 5vw, 40px);
  color: #3d3d3d;
  font-weight: 700;
}
.cta-desc__box {
  display: inline-block;
  border: 2px solid #9d7c57;
  color: #9d7c57;
  font-size: clamp(1.25rem, 0.692rem + 2.79vw, 2rem);
  font-weight: 700;
  padding: 0.12em 0.7em 0.12em 0.7em;
  margin: 0 5px 0 5px;
  background: #fff;
  @media screen and (max-width: 767px) {
    margin-bottom: 10px;
  }
}

.laser-accordion__body,
.peeling-accordion__body {
  /* slideToggle用の初期値 */
  display: block;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: fit-content; /* 全開時に十分大きな値 */
  mask-image: none;
  -webkit-mask-image: none;
  transition: all 0.4s, -webkit-mask-image 0.4s;
  position: relative;
}
.laser-accordion__item.is-partially-closed,
.peeling-accordion__item.is-partially-closed {
  background-image: none;
}
.laser-accordion__item.is-partially-closed .laser-accordion__body,
.peeling-accordion__item.is-partially-closed .peeling-accordion__body {
  max-height: 120px; /* ←見せたい高さに調整 */
  -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
}
.laser-accordion__item.is-partially-closed .laser-accordion__body::after,
.peeling-accordion__item.is-partially-closed .peeling-accordion__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px; /* フェード高さ調整 */
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 2;
}

/* フローティングバナー
=======================================*/
.floating-btn {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 21;
  pointer-events: none;
}

.floating-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.floating-trigger {
  width: 187px;
  z-index: 3;
}

.floating-content {
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  /* トランスフォームをスムーズに */
}

.floating-content > img {
  object-fit: cover;
  object-position: 100% 50%;
}

.floating-content.active {
  width: 255px;
  margin-left: -4px;
}

@media screen and (max-width: 750px) {
  .floating-btn {
    right: 10px;
    width: 92%;
    bottom: 0;
  }

  .floating-trigger {
    width: 48%;
    z-index: 3;
  }

  .floating-content {
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    /* トランスフォームをスムーズに */
  }

  .floating-content > img {
    object-fit: cover;
    object-position: 100% 50%;
  }

  .floating-content.active {
    width: 65.6%;
    margin-left: 0;
  }
}
