@charset "UTF-8";
@font-face {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../fonts/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/noto-sans-jp-bold.woff2") format("woff2"), url("../fonts/noto-sans-jp-bold.woff") format("woff");
  font-display: swap;
}
:root {
  --color-main: #BF5A66;
}

.font-serif {
  font-family: "Noto Serif JP", serif;
}

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

.template-text {
  font-size: 1.125em;
}

strong {
  font-weight: bold;
}
strong.color-main {
  color: var(--color-main);
}
strong.line {
  background: linear-gradient(transparent 60%, #FCEDEF 60%);
}

.template-bg-gray {
  background: #F7F7F7;
  padding: 2em;
}

.youtube__block {
  background: #F8F5F0 url(../img/acne/bg-box__logo.svg) no-repeat right bottom;
  background-size: 20% auto;
  padding: 3em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.youtube__block__figure {
  width: 60%;
  aspect-ratio: 16/9;
  margin-inline: auto;
  position: relative;
}
.youtube__block__figure:not(.changed)::after {
  content: "";
  width: 20%;
  aspect-ratio: 1/1;
  background: url(../img/acne/icon-youtube-play.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youtube__block__figure iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.youtube__block .youtube__thumbnail {
  cursor: pointer;
  width: 100%;
  height: auto;
  display: block;
}
.youtube__block__caption {
  font-size: 1.375em;
  color: #BF5A66;
  margin-top: 1.5em;
  text-align: center;
}
.youtube__block__thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1.5em 1.5em;
  border-radius: 0.25em;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s;
}
.button.lg {
  padding: 1.2em 1.5em;
  font-size: 1.25em;
  width: 480px;
  max-width: 100%;
}
.button.sm {
  padding: 1em 1em;
  font-size: 0.875em;
}
.button__text {
  flex: 1;
}
.button__arrow {
  background: url(../img/acne/icon-arrow02_white.svg) no-repeat center center/contain;
  width: 0.8em;
  height: 0.8em;
}

.button-primary {
  background-color: var(--color-main);
  color: #fff;
}
.button-primary:hover {
  background-color: rgb(165.7205240175, 64.2794759825, 76.3318777293);
}

.button-secondary {
  background-color: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
.button-secondary .button__arrow {
  background-image: url(../img/acne/icon-arrow02.svg);
}
.button-secondary:hover {
  background-color: var(--color-main);
  color: #fff;
}
.button-secondary:hover .button__arrow {
  background-image: url(../img/acne/icon-arrow02_white.svg);
}

.reserve-btn {
  display: inline-flex;
  justify-content: center;
  position: relative;
  align-items: center;
  gap: 1em;
  padding: 2em 4em;
  background-color: #BF5A66;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25em;
  font-size: 1.125em;
  transition: background-color 0.3s;
  max-width: 480px;
  width: 100%;
}
.reserve-btn::after {
  content: "";
  border: 1px solid #fff;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 0.15em;
}
.reserve-btn:hover {
  background-color: rgb(165.7205240175, 64.2794759825, 76.3318777293);
}
.reserve-btn__icon {
  font-size: 1.25em;
}
.reserve-btn__icon-img {
  display: block;
}
.reserve-btn__arrow {
  text-align: right;
  width: 2em;
  position: absolute;
  right: 1.5em;
}
.reserve-btn__arrow-img {
  display: block;
  margin-left: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #353535;
  line-height: 1.6;
  background-color: #fff;
}

img {
  max-width: 100%;
}

.template-wrapper {
  font-size: 16px;
  padding-bottom: 5em;
}

.template-header {
  width: 100%;
}
.template-header__kv {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #EAE1D3;
}
.template-header__inner {
  display: flex;
  width: 100%;
  min-height: 18em;
}
.template-header__text-area {
  flex: 0 0 33.333%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2em 3em;
  text-align: center;
}
.template-header__image-area {
  flex: 0 0 66.666%;
  position: relative;
}
.template-header__image-area img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
}
.template-header__title {
  font-size: 3em;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #353535;
  margin-bottom: 0.5em;
}
.template-header__subtitle {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-main);
  margin-bottom: 0;
}
.template-header__description {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.6;
  color: #353535;
}

.template-container {
  display: flex;
  max-width: 1400px;
  margin-inline: auto;
  padding: 1.5em 1.5em;
  gap: 3em;
}

.template-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 1.5em;
  height: fit-content;
}
.template-sidebar__inner {
  width: 100%;
}
.template-sidebar__title {
  font-size: 1.25em;
  font-family: "Noto Serif JP", serif;
  color: var(--color-main);
  margin-bottom: 1.5em;
}
.template-sidebar__banner {
  width: 100%;
  aspect-ratio: 300/80;
  max-width: 480px;
  background-image: url("../img/acne/sidebar-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 1.5em;
  border-radius: 0.25em;
  overflow: hidden;
}
.template-sidebar__banner.sp-show {
  margin-bottom: 0;
}
.template-sidebar__banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.5em;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.template-sidebar__banner-text {
  color: #fff;
  margin-right: 0.5em;
}
.template-sidebar__banner-arrow {
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  background: url("../img/acne/icon-arrow_white.svg") no-repeat center center/contain;
  width: 0.8em;
  height: 0.8em;
}
.template-sidebar__divider {
  width: 100%;
  height: 1px;
  background-color: #BF5A66;
  margin: 1.5em 0;
}
.template-sidebar__main-nav-list {
  list-style: none;
}
.template-sidebar__main-nav-item {
  margin-bottom: 0.5em;
}
.template-sidebar__main-nav-link {
  display: flex;
  color: #353535;
  text-decoration: none;
  font-size: 0.875em;
  line-height: 1.6;
  transition: color 0.3s;
}
.template-sidebar__main-nav-link:hover {
  color: #BF5A66;
}
.template-sidebar__main-nav-link .button__arrow {
  align-self: center;
  margin-left: 0.5em;
  transform: rotate(90deg);
  background-image: url("../img/acne/icon-arrow02.svg");
}
.template-sidebar__main-nav-arrow {
  color: #BF5A66;
  margin-right: 0.5em;
  flex-shrink: 0;
  background: url("../img/acne/icon-arrow.svg") no-repeat center center/contain;
  width: 0.8em;
  height: 0.8em;
  margin-top: 0.4em;
}
.template-sidebar__main-nav-number {
  color: #353535;
  margin-right: 0.5em;
  flex-shrink: 0;
}
.template-sidebar__sub-nav-list {
  list-style: none;
  margin-top: 0.5em;
  margin-left: 1.5em;
}
.template-sidebar__sub-nav-item {
  margin-bottom: 0.5em;
}
.template-sidebar__sub-nav-link {
  display: flex;
  align-items: flex-start;
  color: #707070;
  text-decoration: none;
  font-size: 0.8125em;
  line-height: 1.6;
  transition: color 0.3s;
}
.template-sidebar__sub-nav-link:hover {
  color: #BF5A66;
}
.template-sidebar__sub-nav-dash {
  color: #BF5A66;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.template-main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.template-main__content {
  width: 100%;
}

.template-section {
  margin-bottom: 4em;
}
.template-section:last-child {
  margin-bottom: 0;
}
.template-section > *:not(:first-child) {
  margin-top: 3em;
}
.template-section__h2-01 {
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
  line-height: 140%;
  font-size: 2.5em;
  font-weight: normal;
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 0.5em;
  position: relative;
}
.template-section__h2-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1px;
  background-color: var(--color-main);
}
.template-section__h2-01 + * {
  margin-top: 3em !important;
}
.template-section__h3-01 {
  color: var(--color-main);
  line-height: 140%;
  margin-top: 1em;
  position: relative;
  padding: 0.5em 0;
  font-size: 1.5em;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}
.template-section__h3-01 + * {
  margin-top: 1.5em !important;
}

.template-section-btn__area {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
}
.template-section-btn__area > * {
  margin-bottom: 0 !important;
}
.template-section-btn__area > *:nth-child(n+2) {
  margin-top: 1em;
}

.template-table-01 {
  width: 100%;
  border: 1px solid var(--color-main);
  border-collapse: collapse;
  background-color: #fff;
}
.template-table-01 th,
.template-table-01 td {
  padding: 0.5em;
  border: 1px solid #BF5A66;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  font-size: 0.875em;
}
.template-table-01 th {
  background-color: var(--color-main);
  color: #fff;
}
.template-table-01 tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}
.template-table-01 td {
  color: #353535;
  line-height: 1.6;
}
.template-table-01__note {
  font-size: 0.625em;
  color: #707070;
}

.template-table-02 {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.template-table-02 th,
.template-table-02 td {
  border: 1px solid #EBCCD0;
  padding: 1em;
}
.template-table-02 th {
  background: #F9EEEF;
}
.template-table-02 thead th {
  color: var(--color-main);
  text-align: left;
}

.template-breadcrumb {
  padding: 1em 2em;
  font-size: 0.875em;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1400px;
  margin-inline: auto;
}
.template-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.template-breadcrumb__item {
  display: flex;
  align-items: center;
}
.template-breadcrumb__link {
  color: #666666;
  text-decoration: none;
  font-size: 0.875em;
  transition: color 0.3s;
}
.template-breadcrumb__link:hover {
  color: var(--color-main);
  text-decoration: underline;
}
.template-breadcrumb__separator {
  color: #666666;
  font-size: 0.875em;
  margin: 0 0.5em;
}
.template-breadcrumb__current {
  color: #707070;
  font-size: 0.875em;
}

.section-banner-area {
  max-width: 800px;
  margin-inline: auto;
}

.template-two-column {
  display: flex;
  gap: 4%;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.template-two-column.align-items_unset {
  align-items: unset;
}
.template-two-column.reverse > *:first-child {
  order: 2;
}
.template-two-column.reverse > *:last-child {
  order: 1;
}

.template-two-column > * {
  width: 50%;
  order: 2;
}

.template-concerns {
  width: 100%;
  background-color: #f5f5f5;
  padding: 2em;
  position: relative;
  margin-bottom: 1.5em;
}
.template-concerns::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #E6E6E6;
  top: 4px;
  left: 4px;
  pointer-events: none;
}
.template-concerns::after {
  content: "";
  width: 1.5em;
  aspect-ratio: 1/1;
  background: url("../img/acne/icon-fukidashi_point.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 1em;
  right: 1em;
}
.template-concerns__inner {
  display: flex;
  justify-content: space-around;
  gap: 3em;
  max-width: 1200px;
  margin-inline: auto;
}
.template-concerns__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.template-concerns__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.template-concerns__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-top: 2px;
}
.template-concerns__text {
  line-height: 1.6;
  color: #353535;
}

.template-achievement {
  width: 100%;
  margin-bottom: 1.5em;
}
.template-achievement__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.template-reasons {
  width: 100%;
}
.template-reasons__item-image {
  order: 1;
}
.template-reasons__before-after {
  display: flex;
  align-items: center;
  gap: 2%;
}
.template-reasons__item-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
.template-reasons__point {
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 0.875em;
  color: #DFACB2;
  letter-spacing: 0em;
  flex-shrink: 0;
}
.template-reasons__item-title {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.4;
  color: #353535;
  flex: 1;
  color: var(--color-main);
}
.template-reasons__item-text {
  line-height: 1.8;
  color: #353535;
}
.template-reasons__item-text p {
  margin-bottom: 1em;
}
.template-reasons__item-text p:last-child {
  margin-bottom: 0;
}
.template-reasons__before-after-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}
.template-reasons__before-after-label {
  padding: 0.2em 1em;
  border-radius: 100px;
  font-size: 1.25em;
  color: #fff;
  display: block;
  width: 90%;
  max-width: 180px;
  text-align: center;
}
.template-reasons__before-after-label--before {
  background-color: #707070;
}
.template-reasons__before-after-label--after {
  background-color: #BF5A66;
}
.template-reasons__before-after-arrow {
  width: 2.5em;
  aspect-ratio: 2.5/1.7;
  background: url(../img/acne/icon-arrow-lg.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.template-reasons__cta {
  text-align: center;
  margin: 2em 0 0;
}
.template-reasons__treatment-info .template-table-01 th {
  width: 6em;
}

.template-restore {
  width: 100%;
}
.template-restore__copy {
  font-size: 2.5em;
  font-weight: normal;
  color: #BF5A66;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  padding: 0.5em 0;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
.template-restore__copy + .template-section__h2-01 {
  margin-top: 2em;
}
.template-restore__main {
  width: 100%;
}
.template-restore__text {
  line-height: 1.8;
  color: #353535;
}
.template-restore__text p {
  margin-bottom: 1.5em;
  font-size: 1.125em;
}
.template-restore__text p:last-child {
  margin-bottom: 0;
}

.template-callout {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  border-top: 2px solid #BF5A66;
  background-color: #F9F9F9;
  padding: 2em;
}
.template-callout__title {
  font-size: 1.5em;
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.template-callout__icon {
  width: 1.2em;
  aspect-ratio: 1/1;
  background: url("../img/acne/icon-caution.svg") center center no-repeat;
  background-size: contain;
}
.template-callout__text {
  line-height: 1.8;
  color: #353535;
}
.template-callout__text p {
  margin-bottom: 1.5em;
}
.template-callout__text p:last-child {
  margin-bottom: 0;
}
.template-callout__cta {
  margin-top: 1.5em;
}
.template-callout__button {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  padding: 2em 3em;
  background-color: #fff;
  color: var(--color-main);
  text-decoration: none;
  border: 2px solid var(--color-main);
  border-radius: 1em;
  font-size: 1.125em;
  transition: all 0.3s;
}
.template-callout__button:hover {
  background-color: var(--color-main);
  color: #fff;
}
.template-callout__button:hover .template-callout__button-arrow {
  color: #fff;
}
.template-callout__button-arrow {
  font-size: 1.25em;
  color: var(--color-main);
  transition: color 0.3s;
}

.template-video {
  width: 100%;
}

.template-acne-types {
  width: 100%;
}
.template-acne-types__detail-box {
  background-color: #fff;
  padding: 2em;
  position: relative;
}
.template-acne-types__detail-icon {
  width: 5em;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}
.template-acne-types__detail-title {
  font-size: 1.5em;
  color: var(--color-main);
  margin-bottom: 0.5em;
  text-align: center;
  text-decoration: underline;
}
.template-acne-types__detail-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5em;
}
.template-acne-types__detail-text {
  line-height: 1.8;
  color: #353535;
}

.template-acne-comparison {
  width: 100%;
}
.template-acne-comparison__intro {
  line-height: 1.8;
  color: #353535;
}
.template-acne-comparison__intro p {
  margin-bottom: 1.5em;
}
.template-acne-comparison__intro p:last-child {
  margin-bottom: 0;
}
.template-acne-comparison__panel {
  background-color: #f9f9f9;
  padding: 3em;
  border-radius: 1em;
}
.template-acne-comparison__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
  border-radius: 0.25em;
}
.template-acne-comparison__text {
  font-size: 0.875em;
  line-height: 1.8;
  color: #353535;
}
.template-acne-comparison__text p {
  margin-bottom: 1em;
}
.template-acne-comparison__text p:last-child {
  margin-bottom: 0;
}
.template-acne-comparison__table-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
}
.template-acne-comparison__cta {
  margin-top: 4em;
}

.template-treatment-difference {
  width: 100%;
}
.template-treatment-difference__text {
  line-height: 1.8;
  color: #353535;
}
.template-treatment-difference__text p {
  margin-bottom: 2em;
}
.template-treatment-difference__text p:last-child {
  margin-bottom: 0;
}
.template-treatment-difference__images {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.template-treatment-difference__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25em;
}
.template-treatment-difference .template-two-column > div:first-child {
  width: 70%;
}

.template-program-intro {
  width: 100%;
}
.template-program-intro__content {
  display: flex;
  flex-direction: column;
}
.template-program-intro__text {
  line-height: 1.8;
  color: #353535;
}
.template-program-intro__cta {
  margin-top: 2em;
}

.template-acne-treatment {
  width: 100%;
}
.template-acne-treatment__intro {
  line-height: 1.8;
  color: #353535;
}
.template-acne-treatment__intro p {
  margin-bottom: 2em;
}
.template-acne-treatment__intro p:last-child {
  margin-bottom: 0;
}
.template-acne-treatment__item {
  margin-bottom: 4em;
}
.template-acne-treatment__item:last-child {
  margin-bottom: 0;
}
.template-acne-treatment__item h2.template-section__h2-01 {
  margin-bottom: 3em;
}
.template-acne-treatment__text {
  line-height: 1.8;
  color: #353535;
}
.template-acne-treatment__text p {
  margin-bottom: 2em;
}
.template-acne-treatment__text p:last-child {
  margin-bottom: 0;
}
.template-acne-treatment__text strong {
  font-weight: 600;
}

.template-treatment-stages {
  width: 100%;
}
.template-treatment-stages__intro {
  line-height: 1.8;
  color: #353535;
}
.template-treatment-stages__panel {
  border: 1px solid var(--color-main);
  padding: 2em;
}
.template-treatment-stages__panel + * {
  margin-top: 1.5em;
}
.template-treatment-stages__panel:last-child {
  margin-bottom: 0;
}
.template-treatment-stages__panel .template-two-column > div:first-child {
  width: 25%;
  align-self: center;
}
.template-treatment-stages__panel .template-two-column > div:last-child {
  flex: 1;
}
.template-treatment-stages__panel .template-two-column > div.separator {
  width: 1px;
  background: var(--color-main);
}
.template-treatment-stages__panel .template-section__h3-01 {
  padding: 0;
  border: 0;
  margin-top: 0;
  text-align: center;
  font-size: 1.125em;
  display: flex;
  justify-content: space-between;
}
.template-treatment-stages__panel .template-section__h3-01 > * {
  width: 50%;
}
.template-treatment-stages__panel .template-section__h3-01 .separator {
  width: 1px;
  height: 1em;
  background: #000;
  display: block;
  align-self: center;
}
.template-treatment-stages__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 2em;
  border-radius: 0.25em;
}
.template-treatment-stages__content {
  line-height: 1.8;
  color: #353535;
  gap: 1.5em;
  display: flex;
  flex-direction: column;
}
.template-treatment-stages__treatment-list {
  background-color: #f5f5f5;
  list-style: none;
  padding: 0.5em;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
.template-treatment-stages__treatment-list li {
  padding-left: 1em;
  position: relative;
}
.template-treatment-stages__treatment-list li:last-child {
  margin-bottom: 0;
}
.template-treatment-stages__treatment-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #353535;
}

.template-treatment-menu {
  width: 100%;
}
.template-treatment-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em 2%;
}
.template-treatment-menu__card {
  background-color: #F7F7F7;
  border-top: 2px solid var(--color-main);
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.template-treatment-menu__card .template-section__h3-01 {
  margin: 0;
  padding: 0;
  border: none;
}
.template-treatment-menu__card .buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.template-treatment-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
  margin: 0 !important;
}
.template-treatment-menu__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.template-treatment-menu__tag {
  display: flex;
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 0.25em;
  font-size: 0.75em;
  color: var(--color-main);
  text-align: center;
  white-space: nowrap;
}
.template-treatment-menu__content {
  display: flex;
  flex: 1;
}
.template-treatment-menu__image {
  width: 44%;
  aspect-ratio: 11/7.5;
  object-fit: cover;
  flex-shrink: 0;
}
.template-treatment-menu__text {
  flex: 1;
  line-height: 1.8;
  color: #353535;
}
.template-treatment-menu__text p {
  margin: 0;
}
.template-treatment-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: auto;
}

.swiper-pagination {
  position: relative !important;
}
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: #D5D6D6 !important;
  opacity: 1 !important;
  transition: background-color 0.3s !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-main) !important;
}

.template-swiper-nav-button {
  font-size: 1em !important;
  width: 8% !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-top: 0;
  color: transparent;
}
.template-swiper-nav-button::after {
  font-size: 1em !important;
  content: "" !important;
  width: 1.25em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/acne/icon-arrow.svg") center center no-repeat;
  background-size: contain;
  display: block;
}
.template-swiper-nav-button:hover {
  background: var(--color-main);
}
.template-swiper-nav-button:hover::after {
  filter: brightness(0) invert(1);
}
.template-swiper-nav-button--prev {
  left: 3% !important;
}
.template-swiper-nav-button--prev::after {
  transform: rotate(180deg);
}
.template-swiper-nav-button--next {
  right: 3% !important;
}
.template-swiper-nav-button.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.template-case-photos {
  width: 100%;
}
.template-case-photos .template-bg-gray {
  padding: 4em 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.template-case-photos__swiper {
  width: 70%;
  margin-inline: auto;
  padding-bottom: 3em;
}
.template-case-photos__item .template-reasons__before-after {
  justify-content: center;
}
.template-case-photos__item > *:not(:first-child) {
  margin-top: 2em;
}
.template-case-photos__image {
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.template-case-photos__info {
  border: 1px solid #e0e0e0;
  border-radius: 1em;
  padding: 0;
  margin-bottom: 3em;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  max-width: 100%;
}
.template-case-photos__info-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.template-case-photos__info-row:last-child {
  border-bottom: none;
}
.template-case-photos__info-label {
  background-color: var(--color-main);
  color: #fff;
  padding: 2em;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.template-case-photos__info-content {
  background-color: #fff;
  padding: 2em;
  flex: 1;
  font-size: 0.875em;
  line-height: 1.8;
  color: #353535;
}
.template-case-photos__info-content p {
  margin-bottom: 1.5em;
}
.template-case-photos__info-content p:last-child {
  margin-bottom: 0;
}
.template-case-photos__treatment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.template-case-photos__treatment-list li {
  padding-left: 1em;
  position: relative;
}
.template-case-photos__treatment-list li:last-child {
  margin-bottom: 0;
}
.template-case-photos__treatment-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #353535;
}
.template-case-photos__cta {
  text-align: center;
}

.template-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.template-accordion.open {
  max-height: 5000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.template-accordion__trigger.open + .template-accordion {
  max-height: 5000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.template-accordion__trigger {
  cursor: pointer;
  user-select: none;
  position: relative;
  display: block;
  text-decoration: none;
}
.template-accordion__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0.8em;
  height: 0.8em;
  background: url(../img/acne/icon-arrow02.svg) center center no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.template-accordion__trigger.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.template-faq {
  width: 100%;
}
.template-faq__list {
  margin-bottom: 3em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.template-faq__item {
  border-radius: 0.375rem;
  background: #F8F5F0;
  overflow: hidden;
  padding: 1.5em;
}
.template-faq__item:last-child {
  margin-bottom: 0;
}
.template-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5em;
  border: none;
  text-align: left;
  cursor: pointer;
  background: none;
  font-size: 1em;
}
.template-faq__prefix {
  color: #B99D6E;
  font-size: 1.5em;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1;
}
.template-faq__question-text {
  flex: 1;
  font-size: 1.125em;
  font-weight: bold;
  color: #353535;
  transform: translateY(0.1em);
}
.template-faq__icon {
  display: inline-block;
  width: 1.125em;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: url("../img/acne/icon-acc-plus.svg") center center no-repeat;
  background-size: contain;
  transition: background-image 0.3s;
}
.template-faq__item.open .template-faq__icon {
  background-image: url("../img/acne/icon-acc-minus.svg");
}
.template-faq__answer {
  display: none;
  padding: 1.5em;
  background: #fff;
  margin-top: 1.5em;
  border-radius: 0.25em;
}
.template-faq__answer-text {
  flex: 1;
  font-size: 0.875em;
  line-height: 1.8;
  color: #353535;
}
.template-faq__answer-text p {
  margin: 0;
  font-size: 1em;
}
.template-faq__item.open .template-faq__answer {
  display: flex;
  gap: 1.5em;
}

.template-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5em;
  line-height: 1.4;
  letter-spacing: 0.3125em;
  color: #353535;
  margin-bottom: 3em;
  padding-bottom: 1.5em;
  border-bottom: 2px solid #BF5A66;
  text-align: center;
}

.template-intro {
  margin-bottom: 4em;
}
.template-intro__lead {
  line-height: 1.8;
  color: #353535;
  margin-bottom: 3em;
  text-align: center;
}

.template-case-main {
  display: flex;
  gap: 2em;
  margin-bottom: 3em;
  align-items: center;
}
.template-case-main__images {
  display: flex;
  gap: 1.5em;
  flex: 1;
}
.template-case-main__before, .template-case-main__after {
  flex: 1;
  position: relative;
}
.template-case-main__before img, .template-case-main__after img {
  width: 100%;
  height: auto;
}
.template-case-main__label {
  position: absolute;
  top: 1em;
  left: 1em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 0.25em;
  font-size: 0.75em;
}
.template-case-main__content {
  flex: 1;
}
.template-case-main__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: -3px;
  color: #353535;
  margin-bottom: 1.5em;
}
.template-case-main__text {
  font-size: 0.875em;
  line-height: 1.8;
  color: #707070;
}

.template-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  margin-bottom: 3em;
}

.template-case-item__images {
  display: flex;
  gap: 1em;
}
.template-case-item__before, .template-case-item__after {
  flex: 1;
  position: relative;
}
.template-case-item__before img, .template-case-item__after img {
  width: 100%;
  height: auto;
}
.template-case-item__label {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 0.5em;
  border-radius: 4px;
  font-size: 0.625em;
}

.template-btn {
  display: inline-block;
  padding: 1.5em 2em;
  border-radius: 0.25em;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}
.template-btn--primary {
  background-color: #BF5A66;
  color: #fff;
}
.template-btn--primary:hover {
  background-color: rgb(165.7205240175, 64.2794759825, 76.3318777293);
}
.template-btn--secondary {
  background-color: #fff;
  color: #BF5A66;
  border: 2px solid #BF5A66;
}
.template-btn--secondary:hover {
  background-color: rgba(191, 90, 102, 0.1);
}

.template-cta {
  text-align: center;
  margin-top: 3em;
}

.template-basics {
  margin-bottom: 4em;
}
.template-basics__item {
  display: flex;
  gap: 2em;
  margin-bottom: 3em;
  align-items: center;
}
.template-basics__item--reverse {
  flex-direction: row-reverse;
}
.template-basics__content {
  flex: 1;
}
.template-basics__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: -3px;
  color: #353535;
  margin-bottom: 1.5em;
}
.template-basics__text {
  font-size: 0.875em;
  line-height: 1.8;
  color: #707070;
}
.template-basics__image {
  flex: 1;
}
.template-basics__image img {
  width: 100%;
  height: auto;
}

.template-treatment {
  margin-bottom: 4em;
}
.template-treatment__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-bottom: 3em;
}
.template-treatment__point {
  text-align: center;
}
.template-treatment__point-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
}
.template-treatment__point-icon img {
  width: 50px;
  height: 50px;
}
.template-treatment__point-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25em;
  color: #353535;
  margin-bottom: 1em;
}
.template-treatment__point-text {
  font-size: 0.875em;
  line-height: 1.6;
  color: #707070;
}
.template-treatment__description {
  margin-bottom: 3em;
}
.template-treatment__description p {
  line-height: 1.8;
  color: #353535;
}
.template-treatment__video {
  margin-bottom: 3em;
}
.template-treatment__cta-banner {
  margin-top: 3em;
}

.template-cta-banner {
  background: linear-gradient(135deg, rgba(191, 90, 102, 0.1) 0%, rgba(191, 90, 102, 0.05) 100%);
  padding: 3em;
  border-radius: 1em;
  text-align: center;
}
.template-cta-banner__text {
  font-size: 1.125em;
  color: #353535;
  margin-bottom: 1.5em;
}

.template-progression {
  margin-bottom: 4em;
}
.template-progression__chart {
  margin-bottom: 3em;
}
.template-progression__stages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
}
.template-progression__stage {
  text-align: center;
}
.template-progression__stage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
}
.template-progression__stage-icon img {
  width: 40px;
  height: 40px;
}
.template-progression__stage-label {
  font-size: 0.75em;
  color: #353535;
}
.template-progression__arrow {
  font-size: 1.5em;
  color: #BF5A66;
  font-weight: bold;
}

.template-treatment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-bottom: 3em;
}

.template-treatment-method {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.25em;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.template-treatment-method:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.template-treatment-method__image {
  width: 100%;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
.template-treatment-method__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-treatment-method__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25em;
  color: #353535;
  margin: 1.5em;
  margin-bottom: 1em;
}
.template-treatment-method__text {
  font-size: 0.875em;
  line-height: 1.6;
  color: #707070;
  margin: 0 1.5em 1.5em;
}
.template-treatment-method__link {
  display: block;
  margin: 0 1.5em 1.5em;
  padding: 1em 1.5em;
  background-color: #f5f5f5;
  color: #BF5A66;
  text-align: center;
  text-decoration: none;
  border-radius: 0.25em;
  font-size: 0.875em;
  transition: background-color 0.3s;
}
.template-treatment-method__link:hover {
  background-color: rgba(191, 90, 102, 0.1);
}

.template-scar {
  margin-bottom: 4em;
}
.template-scar__intro {
  line-height: 1.8;
  color: #353535;
  margin-bottom: 3em;
}
.template-scar__case {
  display: flex;
  gap: 2em;
  margin-bottom: 3em;
  align-items: center;
}
.template-scar__case-images {
  display: flex;
  gap: 1.5em;
  flex: 1;
}
.template-scar__case-before, .template-scar__case-after {
  flex: 1;
  position: relative;
}
.template-scar__case-before img, .template-scar__case-after img {
  width: 100%;
  height: auto;
}
.template-scar__case-label {
  position: absolute;
  top: 1em;
  left: 1em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5em 1em;
  font-size: 0.75em;
}
.template-scar__case-content {
  flex: 1;
}
.template-scar__case-text {
  font-size: 0.875em;
  line-height: 1.8;
  color: #707070;
  margin-bottom: 1.5em;
}
.template-scar__case-link {
  display: inline-block;
  padding: 1em 1.5em;
  background-color: #f5f5f5;
  color: #BF5A66;
  text-decoration: none;
  font-size: 0.875em;
  transition: background-color 0.3s;
}
.template-scar__case-link:hover {
  background-color: rgba(191, 90, 102, 0.1);
}
.template-scar__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
.template-scar__method {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.25em;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.template-scar__method:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.template-scar__method-image {
  width: 100%;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
.template-scar__method-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-scar__method-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25em;
  color: #353535;
  margin: 1.5em;
  margin-bottom: 1em;
}
.template-scar__method-text {
  font-size: 0.875em;
  line-height: 1.6;
  color: #707070;
  margin: 0 1.5em 1.5em;
}
.template-scar__method-link {
  display: block;
  margin: 0 1.5em 1.5em;
  padding: 1em 1.5em;
  background-color: #f5f5f5;
  color: #BF5A66;
  text-align: center;
  text-decoration: none;
  font-size: 0.875em;
  transition: background-color 0.3s;
}
.template-scar__method-link:hover {
  background-color: rgba(191, 90, 102, 0.1);
}

.template-reasons__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}

.template-reason__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
}
.template-reason__icon img {
  width: 40px;
  height: 40px;
}
.template-reason__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: -3px;
  color: #353535;
  margin-bottom: 1.5em;
}
.template-reason__text {
  font-size: 0.875em;
  line-height: 1.8;
  color: #707070;
  margin-bottom: 1.5em;
}
.template-reason__image img {
  width: 100%;
  height: auto;
}

.template-related {
  margin-bottom: 4em;
}
.template-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}
.template-related__item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.25em;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.template-related__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.template-related__image {
  width: 100%;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
.template-related__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-related__category {
  display: inline-block;
  margin: 1.5em;
  padding: 4px 1em;
  background-color: rgba(191, 90, 102, 0.1);
  color: #BF5A66;
  font-size: 0.75em;
  border-radius: 4px;
}
.template-related__title {
  font-family: "Noto Sans JP", sans-serif;
  color: #353535;
  margin: 0 1.5em 1em;
  line-height: 1.4;
}
.template-related__text {
  font-size: 0.875em;
  line-height: 1.6;
  color: #707070;
  margin: 0 1.5em 1.5em;
}

.template-cta-section {
  margin-bottom: 4em;
}

.template-cta-large {
  background-color: #f9f9f9;
  padding: 4em;
  border-radius: 1em;
  text-align: center;
}
.template-cta-large__text {
  font-size: 1.5em;
  color: #353535;
  margin-bottom: 2em;
}
.template-cta-large__buttons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
}

.template-footer {
  background-color: #f5f5f5;
  padding: 4em 1.5em;
  border-top: 1px solid #e0e0e0;
}
.template-footer__info {
  max-width: 1200px;
  margin: 0 auto 3em;
  text-align: center;
}
.template-footer__clinic-name {
  font-size: 1.25em;
  color: #353535;
  margin-bottom: 1em;
}
.template-footer__address, .template-footer__tel {
  font-size: 0.875em;
  color: #707070;
  margin-bottom: 0.5em;
}
.template-footer__nav {
  max-width: 1200px;
  margin: 0 auto 3em;
}
.template-footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  flex-wrap: wrap;
}
.template-footer__nav a {
  color: #353535;
  text-decoration: none;
  font-size: 0.875em;
}
.template-footer__nav a:hover {
  color: #BF5A66;
}
.template-footer__cta {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 2em;
  justify-content: center;
}
.template-footer__cta-item {
  text-align: center;
}
.template-footer__cta-item img {
  width: 200px;
  height: auto;
  margin-bottom: 1em;
}
.template-footer__cta-text {
  font-size: 0.875em;
  color: #353535;
}

.bottom-banner__area {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

@media (min-width: 769px) {
  .sp-show {
    display: none;
  }
  .template-section .template-sidebar__banner {
    aspect-ratio: 480/108;
    font-size: 1.25em;
  }
}
@media (max-width: 1100px) {
  .template-wrapper {
    font-size: 1.65vw;
  }
  .template-two-column.tb-reset {
    flex-direction: column;
    gap: 1.5em;
  }
  .template-two-column.tb-reset > * {
    flex: unset;
    width: 100%;
  }
  .template-header {
    position: relative;
  }
  .template-header__inner {
    min-height: 32vw;
  }
  .template-header__text-area {
    background: none;
    justify-content: flex-start;
    text-align: left;
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25em;
  }
  .template-header__title {
    font-size: 3.5em;
  }
  .template-header__subtitle {
    font-size: 1.5em;
  }
  .template-header__description {
    font-size: 1.5em;
  }
  .template-header__image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: -1;
  }
}
.sp-table-scroll {
  overflow: auto;
}

@media (max-width: 560px) {
  .sp-table-scroll > * {
    width: 200vw;
  }
}
@media (max-width: 768px) {
  .pc-show {
    display: none;
  }
  .swiper-pagination-bullet {
    width: 0.6em !important;
    height: 0.6em !important;
    margin: 0 0.4em !important;
  }
  .template-wrapper {
    font-size: 4.27vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .template-wrapper .template-header {
    width: 100%;
    order: 2;
  }
  .template-wrapper .template-container {
    width: 100%;
    order: 2;
  }
  .template-wrapper .template-breadcrumb {
    width: 100%;
    order: 1;
  }
  .button {
    padding: 0.5em 1em;
  }
  .button.lg {
    padding: 1em;
    font-size: 1em;
  }
  .reserve-btn {
    padding: 1em;
    gap: 0.5em;
  }
  .template-breadcrumb {
    padding: 0.85em 1.25em;
    background: #F8F5F0;
  }
  .template-breadcrumb__list {
    justify-content: flex-start;
  }
  .template-container {
    flex-direction: column;
  }
  .sp-kv-hide .template-header__kv {
    display: none;
  }
  .sp-kv-hide .template-container {
    padding-top: 0;
  }
  .template-main {
    padding: 0;
    overflow: visible;
  }
  .template-bg-gray {
    padding: 1.5em;
  }
  .sp-full {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }
  .template-text {
    font-size: 0.875em;
  }
  .template-sidebar {
    width: 100%;
    position: static;
    background: #F7F7F7;
    padding: 1em;
  }
  .template-sidebar.sp-show .template-sidebar__title {
    margin-bottom: 0;
  }
  .template-sidebar.sp-show .template-sidebar__title.template-accordion__trigger::after {
    content: "[開く]";
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.5em;
    background: none;
    position: static;
    display: inline-block;
    margin-left: 1em;
    width: auto;
    transform: none !important;
  }
  .template-sidebar.sp-show .template-sidebar__title.template-accordion__trigger.open::after {
    content: "[閉じる]";
  }
  .template-sidebar.sp-show .template-accordion .template-sidebar__main-nav {
    padding-top: 1em;
  }
  .sp-main-internal__nav {
    margin-top: 0.5em;
    margin-bottom: 1.5em;
  }
  .sp-main-internal__nav-list {
    list-style: none;
    padding: 0;
    font-size: 0.875em;
  }
  .sp-main-internal__nav-link {
    display: block;
    padding: 0.5em 0;
    border-bottom: 1px solid var(--color-main);
    text-decoration: none;
    color: var(--color-main);
    position: relative;
  }
  .sp-main-internal__nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background: url(../img/acne/icon-arrow.svg) no-repeat center center;
    background-size: contain;
    transform: translateY(-30%) rotate(90deg);
  }
  .template-section__h2-01 {
    font-size: 1.375em;
  }
  .template-section__h2-01::after {
    width: 1.5em;
  }
  .template-section > *:not(:first-child) {
    margin-top: 1.5em;
  }
  .template-section__h2-01 + * {
    margin-top: 1em !important;
  }
  .template-header {
    position: relative;
  }
  .template-header__inner {
    min-height: 32vw;
  }
  .template-header__text-area {
    background: none;
    justify-content: flex-start;
    text-align: left;
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25em;
  }
  .template-header__title {
    font-size: 1.375em;
  }
  .template-header__subtitle {
    font-size: 0.875em;
  }
  .template-header__description {
    font-size: 0.875em;
  }
  .template-header__image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: -1;
  }
  .template-section-title {
    font-size: 2em;
  }
  .template-case-main {
    flex-direction: column;
  }
  .template-case-grid {
    grid-template-columns: 1fr;
  }
  .template-basics__item {
    flex-direction: column !important;
  }
  .template-treatment__points,
  .template-treatment-methods,
  .template-scar__methods,
  .template-reasons__list,
  .template-related__grid {
    grid-template-columns: 1fr;
  }
  .template-progression__stages {
    flex-direction: column;
  }
  .template-progression__arrow {
    transform: rotate(90deg);
  }
  .template-cta-large__buttons {
    flex-direction: column;
  }
  .template-footer__cta {
    flex-direction: column;
  }
  .template-two-column.sp-reset {
    flex-direction: column;
    gap: 1.5em;
  }
  .template-two-column.sp-reset > * {
    flex: unset;
    width: 100%;
  }
  .template-two-column.reverse > *:last-child {
    order: 2;
  }
  .sp-swipe.swiper {
    overflow: visible;
    /* 高さを統一する */
  }
  .sp-swipe.swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: unset;
  }
  .sp-swipe.swiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
  }
  .sp-swipe.swiper.unify .swiper-slide {
    height: auto;
  }
  .sp-swipe.swiper.unify .swiper-slide > * {
    height: 100%;
  }
  .sp-swipe.swiper .swiper-guide {
    margin-top: 1.5em;
    display: flex;
    align-items: center;
    position: relative;
  }
  .sp-swipe.swiper .swiper-guide .guide-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75em;
    color: var(--color-main);
    background: #EAEAEA;
    border-radius: 100px;
    padding: 0.5em 0.5em;
    line-height: 1;
  }
  .sp-swipe.swiper .swiper-guide .guide-text span {
    display: block;
    width: 2em;
    text-align: center;
  }
  .sp-swipe.swiper .swiper-guide .guide-text span:not(:first-child) {
    border-left: 1px solid var(--color-main);
  }
  .sp-swipe.swiper .swiper-guide .swiper-pagination {
    flex: 1;
    margin: 0;
    position: static;
    top: 0;
  }
  .sp-swipe.swiper .swiper-pagination {
    margin-top: 1em;
  }
  .template-concerns {
    padding: 1em;
  }
  .template-concerns__inner {
    flex-direction: column;
    gap: 0.5em;
  }
  .template-concerns__text {
    font-size: 0.75em;
  }
  .template-concerns__list {
    gap: 0.5em;
  }
  .template-concerns__item {
    align-items: center;
  }
  .template-acne-types__detail-title {
    font-size: 1.25em;
  }
  .template-acne-types__detail-text {
    font-size: 0.875em;
  }
  .template-acne-types__detail-box {
    padding: 1em;
  }
  .template-acne-types__detail-icon {
    width: 3em;
  }
  .template-reasons__item-image {
    order: 1;
  }
  .template-reasons__item-header {
    gap: 0.5em;
  }
  .template-reasons__point {
    font-size: 0.78em;
  }
  .template-reasons__item-title {
    font-size: 1.2em;
  }
  .template-reasons__before-after-label {
    font-size: 1em;
  }
  .template-reasons__before-after-arrow {
    width: 2em;
    margin-top: 2em;
  }
  .template-reasons__before-after-item {
    gap: 0.5em;
  }
  .template-reasons__cta-button {
    padding: 1.5em 2em;
  }
  .template-restore__copy {
    font-size: 1.375em;
    margin-bottom: 1em;
  }
  .template-restore__diagram {
    flex: unset;
    width: 100%;
  }
  .template-callout {
    padding: 1.5em;
  }
  .template-callout__title {
    font-size: 1.125em;
  }
  .template-callout__icon {
    font-size: 1em;
    align-self: flex-start;
    position: relative;
    top: 0.3em;
    flex-shrink: 0;
  }
  .template-callout__text {
    font-size: 0.875em;
  }
  .youtube__block {
    padding: 1.5em;
  }
  .youtube__block__figure {
    width: 100%;
  }
  .youtube__block__caption {
    font-size: 0.875em;
  }
  .template-section__h2-01 {
    font-size: 1.375em;
  }
  .template-section__h3-01 {
    font-size: 1.25em;
    margin-top: 3em;
  }
  .template-section__h3-01::after {
    height: 2px;
  }
  .template-acne-comparison__panel {
    padding: 2em;
    margin-bottom: 3em;
  }
  .template-acne-comparison__table-wrapper {
    overflow-x: scroll;
  }
  .template-table-02 {
    font-size: 0.875em;
  }
  .template-table-02 th,
  .template-table-02 td {
    padding: 1em;
  }
  .template-treatment-difference .template-two-column > div:first-child {
    width: auto;
  }
  .template-treatment-difference__text {
    font-size: 0.875em;
  }
  .template-treatment-difference__text p {
    margin-bottom: 1.5em;
  }
  .template-treatment-difference__images {
    gap: 2em;
  }
  .template-acne-treatment__intro {
    font-size: 0.875em;
    margin-bottom: 3em;
  }
  .template-acne-treatment__intro p {
    margin-bottom: 1.5em;
  }
  .template-acne-treatment__item {
    margin-bottom: 3em;
  }
  .template-acne-treatment__text {
    font-size: 0.875em;
  }
  .template-acne-treatment__text p {
    margin-bottom: 1.5em;
  }
  .template-treatment-stages__intro {
    font-size: 0.875em;
    margin-bottom: 3em;
  }
  .template-treatment-stages__panel {
    padding: 1.5em;
    margin-top: 0;
  }
  .template-treatment-stages__panel .template-two-column > div:first-child {
    width: auto;
  }
  .template-treatment-stages__panel .template-two-column > div.separator {
    width: 100%;
    height: 1px;
  }
  .template-treatment-stages__image {
    width: 100%;
    height: auto;
  }
  .template-treatment-stages__content {
    font-size: 0.875em;
    gap: 1em;
  }
  .template-treatment-menu__grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .template-treatment-menu__grid .template-treatment-menu__card:nth-child(5) {
    grid-column: 1;
    max-width: 100%;
  }
  .template-treatment-menu__card {
    padding: 1.5em;
    gap: 1em;
  }
  .template-treatment-menu__header {
    align-items: flex-start;
  }
  .template-treatment-menu__content {
    flex-direction: column;
    gap: 1.5em;
  }
  .template-treatment-menu__text {
    font-size: 0.875em;
  }
  .template-swiper-nav-button {
    width: 40px;
    height: 40px;
  }
  .template-swiper-nav-button--prev {
    left: 10px;
  }
  .template-swiper-nav-button--next {
    right: 10px;
  }
  .template-swiper-nav-button::after {
    width: 20px;
    height: 20px;
  }
  .template-case-photos .template-bg-gray {
    padding: 1.5em;
    position: relative;
    margin-top: 3em !important;
  }
  .template-case-photos .template-table-01 th {
    width: 6em;
  }
  .template-case-photos__swiper {
    width: 100%;
  }
  .template-case-photos__image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .template-case-photos__info-row {
    flex-direction: column;
  }
  .template-case-photos__info-label {
    width: 100%;
    padding: 1.5em;
  }
  .template-case-photos__info-content {
    padding: 1.5em;
    font-size: 0.8125em;
  }
  .template-case-photos__cta-button {
    padding: 1.5em 2em;
  }
  .template-case-photos .template-swiper-nav-button {
    position: absolute;
    top: 0;
    transform: translateY(-20%);
  }
  .template-case-photos .template-swiper-nav-button.swiper-button-prev {
    left: auto !important;
    right: 3.5em;
  }
  .template-faq__item {
    padding: 1em;
  }
  .template-faq__question {
    gap: 0.5em;
    align-items: flex-start;
  }
  .template-faq__prefix {
    margin-top: 0.1em;
    font-size: 1.125em;
  }
  .template-faq__question-text {
    font-size: 1em;
  }
  .template-faq__answer {
    padding: 1em;
    gap: 0.5em;
  }
  .template-faq__item.open .template-faq__answer {
    gap: 0.5em;
  }
  .template-faq__answer-text {
    font-size: 0.8125em;
  }
}
.bottom-banner__area {
  gap: 1em;
  margin: 2em 0;
}

.cta-banner__trial-plan {
  border-top: 5px solid var(--color-main);
  margin-bottom: 4em;
  padding: 2em;
  background-image: url(../img/acne/bg-cta-banner__trial-plan.svg), linear-gradient(to bottom right, #FFFAF8, #FFF2F3);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: auto 70%, cover;
  margin: 4em 0;
}
.cta-banner__trial-plan > h2 {
  font-size: 2em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 1.5em;
  border-bottom: 1px solid var(--color-main);
  width: fit-content;
  margin-inline: auto;
}
.cta-banner__trial-plan-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.cta-banner__trial-plan-content h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color-main);
  margin: 0;
}
.cta-banner__trial-plan-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-banner__trial-plan-content ul li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.8;
}
.cta-banner__trial-plan-content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #353535;
}
.cta-banner__trial-plan-content .button {
  margin-top: 1.5em;
}
.cta-banner__trial-plan-content .price {
  font-size: 2.5em;
  line-height: 1;
  color: var(--color-main);
  margin: 0;
  text-align: right;
  padding: 0;
}
.cta-banner__trial-plan-content .price span {
  font-size: 0.6em;
}
@media (max-width: 768px) {
  .cta-banner__trial-plan {
    padding: 1.5em;
    background-size: 90% auto, cover;
  }
  .cta-banner__trial-plan > h2 {
    font-size: 1.125em;
    margin-bottom: 1.5em;
  }
  .cta-banner__trial-plan-content h3 {
    font-size: 1.25em;
  }
  .cta-banner__trial-plan-content .price {
    font-size: 1.875em;
  }
}/*# sourceMappingURL=template_2512.css.map */