@charset "UTF-8";
/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */

.chk-section .text {
  margin-block: clamp(30px, 4vw, 60px);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.chk-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.chk__item {
  padding: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
  background-color: #fffaf8;
  border-radius: 10px;
}
.chk__item .inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chk__item p {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.6;
}
.f-contents {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.f-sec {
  padding: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
  background-color: #fffaf8;
  border-radius: 10px;
  box-sizing: border-box;
}

.f-dl dt {
  margin-block-start: 40px;
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  color: var(--accent-color);
}
.f-dl dt:first-child {
  margin-block-start: 0;
}
.f-dl dd {
  margin-block-start: 10px;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}

.f-container {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.f-container.active {
  display: flex;
  opacity: 1;
  max-height: 2000px;
}
@media screen and (min-width: 992px) {
  .f-container {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
  }
}

.f-container.-peeling {
  flex-direction: column;
}

.f-wrap-top {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
@media screen and (min-width: 992px) {
  .f-wrap-top {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
  }
}

.f-wrap-top.-peeling {
  justify-content: space-between;
  width: 100%;
}
.f-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
  background-color: #fffaf8;
  border-radius: 10px;
  box-sizing: border-box;
  flex: 1;
}
.f-image {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  align-self: flex-start;
}
@media screen and (min-width: 992px) {
  .f-image {
    align-self: flex-start;
    margin-top: 0;
  }
}
.f-image img {
  width: 100%;
  height: auto;
  display: block;
}
.f-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.f-inner .title {
  margin-block-end: 5px;
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  color: var(--accent-color);
}
.f-inner .title span {
  display: inline-block;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 500;
  color: var(--text-color);
}
.f-inner .button {
  margin-block-start: 20px;
}
.f-inner .button .c-button {
  width: auto;
  height: 48px;
  padding-inline-start: 20px;
  padding-inline-end: 10px;
  gap: 20px;
  background-color: transparent;
  border: 1px solid #707070;
  border-radius: 24px;
  font-size: 0.75rem;
  color: var(--text-color);
}
.f-inner .button .c-button .icon {
  width: 32px;
  aspect-ratio: 1/1;
  border: 1px solid #707070;
  border-radius: 50%;
  box-sizing: border-box;
}
.f-inner .button .c-button .icon svg {
  width: 12px;
  fill: var(--text-color);
}
.f-inner .button .c-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.f-list {
  width: 100%;
  padding: 0;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
}
.f-list li {
  position: relative;
  padding-block: 10px;
  display: flex;
  flex-direction: column;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.f-list li.-pc-only .name {
  max-width: 845px;
}
.f-list li .name b {
  color: var(--accent-color);
}
.f-txtlist dt,
.f-txtlist dd {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.f-txtlist dt {
  font-weight: 600;
}
.f-notice {
  margin-block-start: 5px;
  padding: 0;
  list-style: none;
}
.f-notice li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
.f-notice li:before {
  content: "※";
}
@media screen and (min-width: 992px) {
  .f-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.imagelist {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(20px, 3vw, 30px);
  row-gap: clamp(30px, 4vw, 60px);
  list-style: none;
}
.imagelist li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.imagelist li .image {
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0.1);
}
.imagelist li p {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
}
@media screen and (min-width: 992px) {
  .imagelist {
    grid-template-columns: repeat(3, 1fr);
  }
}
.indent-list {
  text-indent: -6em;
  padding-left: 6.5em;
  line-height: 1.8;
}
.indent-list-type2 {
  text-indent: -9em;
  padding-left: 9em;
  line-height: 1.8;
}

.name {
  width: 100%;
}

.line-wrap {
  position: absolute;
  right: -32px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  cursor: pointer;
}

.line-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.line-1,
.line-2 {
  position: absolute;
  width: 24px;
  height: 4px;
  background: var(--accent-color);
}

.line-1 {
  top: 50%;
  transform: translateY(-50%);
}

.line-2 {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 992px) {
  .name {
    width: 75%;
  }
}
/* ボタン横並び */
.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 0px;
}

@media screen and (max-width: 560px) {
  .button-group {
    flex-direction: column;
    gap: 0px;
  }
}

@media screen and (max-width: 991px) {
  .line-wrap {
    right: 0;
  }
}
.bold {
  font-weight: 700;
}

.cellnew-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 4vw, 60px);
}

@media screen and (min-width: 992px) {
  .cellnew-inner {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 3vw, 30px);
  }
}

.cellnew-inner .image {
  width: 100%;
  max-width: 366.66px;
}

.l-wrapper .item {
  padding-block: clamp(60px, 5vw, 80px);
  padding-inline: min(5vw, 140px);
  background-color: #fffaf8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 60px);
}
.l-wrapper .item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.l-wrapper .item .inner .title {
  width: 100%;
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-color);
}
.l-wrappers .item .img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
}
.l-wrapper .item .image img {
  margin-inline: auto;
}
.dep-symptoms {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 3vw, 40px);
  list-style: none;
}
.dep-symptoms li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  line-height: 1.4;
}
.dep-symptoms li:before {
  content: "⚫︎";
  color: var(--accent-color);
}
.dep-symptoms.dermatology {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* 施術の種類テーブル */
.treatment-type-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: clamp(30px, 4vw, 60px);
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.treatment-type-table thead tr {
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}
.treatment-type-table thead th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
}
.treatment-type-table thead th:last-child {
  color: var(--accent-color);
}
.treatment-type-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.treatment-type-table tbody td {
  padding: 16px;
  vertical-align: middle;
  line-height: 1.7;
}
.treatment-type-table td.trouble {
  text-align: center;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.treatment-type-table td.ipl-cell {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  vertical-align: middle;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 560px) {
  .treatment-type-table thead th,
  .treatment-type-table tbody td {
    padding: 10px 8px;
    font-size: 0.8125rem;
  }
}

/* 施術後の経過 */
.progress-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.progress-label {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1.5;
}
.progress-source {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: 0.75rem;
  color: #aaa;
  text-align: right;
}

/* 料金 */
.ipl-price-wrap {
  margin-block: clamp(30px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ipl-price-category {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  font-weight: 600;
  padding-block: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}
.ipl-price-list {
  margin: 0;
}
.ipl-price-list li {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.ipl-price-list .price {
  font-weight: 600;
  white-space: nowrap;
}
li.ipl-price-first .name,
li.ipl-price-first .price {
  color: var(--accent-color);
  font-weight: 700;
}
.ipl-price-note {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  color: #888;
  padding-block: 6px 12px;
  line-height: 1.7;
}
.ipl-price-coupon {
  margin-top: 20px;
  padding: clamp(16px, 2vw, 24px);
  background-color: #fffaf8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ipl-price-coupon p {
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  line-height: 1.8;
}

/* 起こり得る副作用 */
.side-effect-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-block-start: clamp(20px, 3vw, 40px);
}
.side-effect-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.side-effect-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.side-effect-check {
  flex: 0 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--accent-color);
  opacity: 0.6;
}
.side-effect-list li:nth-child(1) .side-effect-check { color: #7abb9e; opacity: 1; }
.side-effect-list li:nth-child(2) .side-effect-check { color: #d9919b; opacity: 1; }
.side-effect-list li:nth-child(3) .side-effect-check { color: #9b8ec4; opacity: 1; }
.side-effect-list li:nth-child(4) .side-effect-check { color: #7abb9e; opacity: 1; }
.side-effect-list li:nth-child(5) .side-effect-check { color: #d9919b; opacity: 1; }
.side-effect-list li:nth-child(6) .side-effect-check { color: #9b8ec4; opacity: 1; }
.side-effect-list li:nth-child(7) .side-effect-check { color: #7aafd9; opacity: 1; }
.side-effect-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-effect-title {
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}
.side-effect-desc {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
  color: #888;
}

/* 施術後の注意点 */
.caution-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  margin-block: clamp(30px, 4vw, 60px);
}
.caution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.caution-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.caution-list li::before {
  content: "•";
  flex: 0 0 auto;
  font-size: 1.2em;
  color: var(--accent-color);
  line-height: 1.6;
}
.caution-text {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
}
.caution-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 施術の流れ */
.flow-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-block: clamp(30px, 4vw, 60px);
}
.flow-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 36px);
  padding-block: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.flow-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.flow-num {
  flex: 0 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.5;
  min-width: 2ch;
  text-align: center;
}
.flow-item:nth-child(1) .flow-num { color: #7abb9e; opacity: 1; }
.flow-item:nth-child(2) .flow-num { color: #d9919b; opacity: 1; }
.flow-item:nth-child(3) .flow-num { color: #9b8ec4; opacity: 1; }
.flow-item:nth-child(4) .flow-num { color: #7aafd9; opacity: 1; }
.flow-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
}
.flow-title {
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}
.flow-desc {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
  color: #888;
}

/* フォトフェイシャルのメカニズム */
.mechanism-list {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 50px);
  margin-block: clamp(30px, 4vw, 60px);
}
.mechanism-item {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.mechanism-image {
  flex: 0 0 auto;
  width: clamp(140px, 20vw, 200px);
  border-radius: 6px;
  overflow: hidden;
}
.mechanism-image img {
  width: 100%;
  height: auto;
  display: block;
}
.mechanism-text {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
}
@media screen and (max-width: 560px) {
  .mechanism-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .mechanism-image {
    width: 100%;
    max-width: 200px;
  }
}

/* レーザー治療との違い比較表 */
@media screen and (max-width: 991px) {
  .comparison-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-scroll .treatment-type-table {
    min-width: 600px;
  }
}
.comparison-table thead th:last-child {
  color: var(--accent-color);
}
.comparison-table tbody td:last-child {
  text-align: center;
}
/* ページ内ナビゲーション */
.page-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 5vw, 80px);
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
}

.page-anchor-nav .c-button {
  width: auto;
  flex: 1 1 auto;
  min-width: 200px;
}

.page-anchor-nav .c-button .arrow {
  transform: rotate(90deg);
}
.imgbox {
padding: 40px 0;
}
.imgbox .inner {
  width: calc(100% - min(5vw, 140px) * 2);
  margin-inline: auto;
}

/* 使用機器 */
.device-block {
  margin-block: clamp(30px, 4vw, 60px);
}
.device-subtitle {
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 600;
  color: var(--accent-color);
  margin-block-end: clamp(20px, 3vw, 30px);
}
.device-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}
.device-text {
  flex: 1;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
}
.device-image {
  flex: 0 0 auto;
  width: clamp(160px, 25vw, 280px);
}
.device-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .device-inner {
    flex-direction: column;
  }
  .device-image {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
}
.device-wave {
  margin-block-start: clamp(30px, 4vw, 50px);
}
.device-wave-list {
  padding-inline-start: 1.5em;
  margin-block-end: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.device-wave-list li {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
}
.device-wave-image img {
  width: 100%;
  height: auto;
  display: block;
}
.chk-price {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
    
}