@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333;
}

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

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 450px) {
  .sm-only {
    display: none;
  }
}

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

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

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

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

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
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]) {
  -webkit-text-decoration-skip: ink;
          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]) {
  -webkit-filter: blur(10px);
          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;
}

.inner {
  width: 100%;
  padding-inline: 15px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

/*共通パーツ*/
@media screen and (min-width: 768px) {
  .contact {
    width: 100%;
    max-width: 14.375rem;
  }
}

.contact__btn {
  font-weight: 600;
  color: #FFF;
  height: inherit;
  padding: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  width: 100%;
  font-size: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    height: inherit;
    padding: 0.75rem;
    font-size: 1.5rem;
    max-width: 14.375rem;
    gap: 0.5rem;
  }
}

.contact__btn.contact__btn--tel {
  background-color: #7DB7E2;
}

.contact__btn.contact__btn--net {
  background-color: #555;
}

.contact__btn.contact__btn--line {
  background-color: #0AC555;
}

.contact__btn.contact__btn--tel::before,
.contact__btn.contact__btn--net::before,
.contact__btn.contact__btn--line::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact__btn.contact__btn--tel::before {
  top: 0;
  background-image: url(../images/icon-tel.svg);
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__btn.contact__btn--tel::before {
    width: 1.125rem;
    height: 1.75rem;
  }
}

.contact__btn.contact__btn--net::before {
  background-image: url(../images/icon-net.svg);
  width: 1.25rem;
  height: 2rem;
}

.contact__btn.contact__btn--line::before {
  background-image: url(../images/icon-line.svg);
  width: 1.8125rem;
  height: 1.75rem;
}

.label {
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.label.label--trial {
  background-color: #FFE4E1;
}

/*ヘッダー*/
.header {
  height: 3.75rem;
  background-color: #FFE4E1;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 113.75rem;
    width: 100%;
    padding-left: 3.4375rem;
    padding-right: 2.8125rem;
  }
}

.header__logo {
  width: 5.625rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 13.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .header__comment {
    max-width: 14.375rem;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header__comment {
    max-width: 16.375rem;
  }
}

.header__nav {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .header__nav {
    max-width: 30.75rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-item {
    font-weight: 600;
    border-radius: 3px;
    font-size: 1.5rem;
    max-width: 14.375rem;
  }
}

/*ファーストビュー*/
.fv {
  overflow-x: clip;
}

.fv__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__catch {
    aspect-ratio: 987/645;
    max-width: 55.375rem;
    width: 60%;
    top: 23%;
    position: absolute;
    right: -4%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__catch {
    right: -9%;
    top: 18%;
  }
}
@media screen and (min-width: 1400px) {
  .fv__catch {
    right: calc((1130px - 100vw) / 2 - 11px);
    max-width: 55.4375rem;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .fv__catch {
    max-width: 61.6875rem;
  }
}
@media (min-width: 1921px) {
  .fv__catch {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -30%; /* `right`を無効化 */
  }
}

.fv__catch01 {
  position: absolute;
  top: 16%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 322/164;
  min-width: 20.125rem;
  width: 86%;
}
@media (min-width: 600px) {
  .fv__catch01 {
    width: 100%;
    top: 12%;
  }
}

.fv__catch02 {
  position: absolute;
  min-width: 13.875rem;
  width: 100%;
  aspect-ratio: 222/71;
  bottom: 2.125rem;
  width: 59%;
  right: -11px;
}
@media (min-width: 600px) {
  .fv__catch02 {
    width: 95%;
    right: -15%;
  }
}

.fv__image {
  aspect-ratio: 375/500;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1920/1080;
  }
}

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

/*お試し*/
.trial {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .trial {
    padding-block: 7.5rem;
  }
}

.trial__box {
  width: 100%;
  border: 3px solid #FFE4E1;
  margin-inline: auto;
  padding: 2.5rem 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .trial__box {
    max-width: 50rem;
  }
}

.trial__sub {
  font-size: 1.5625rem;
  line-height: 1.58;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .trial__sub {
    font-size: 2.5rem;
    line-height: 1.75;
  }
}

.trial__sub::before,
.trial__sub::after {
  background-color: #D87F74;
  content: "";
  height: 0.125rem;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .trial__sub::before,
  .trial__sub::after {
    width: 4.0625rem;
  }
}

.trial__sub::before {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg); /* 傾ける */
  margin-right: 0.625rem; /* 文字との余白 */
}
@media screen and (min-width: 768px) {
  .trial__sub::before {
    margin-right: 1.25rem; /* 文字との余白 */
  }
}

.trial__sub::after {
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg); /* 傾ける */
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .trial__sub::after {
    margin-left: 1.25rem;
  }
}

.trial__main {
  font-weight: 600;
  color: #C66058;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
  font-size: 2.0625rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .trial__main {
    font-size: 3rem;
    gap: 0.875rem;
    margin-top: 1.875rem;
  }
}

.trial__label {
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 7.5rem;
  width: 100%;
  display: inline-block;
  color: #333;
}
@media screen and (min-width: 768px) {
  .trial__label {
    font-size: 1.375rem;
    max-width: 11.25rem;
    padding: 0.3125rem 1.375rem;
  }
}

.trial__price-tax {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .trial__price-tax {
    font-size: 1.125rem;
  }
}

.trial__detail {
  font-size: 1.125rem;
  color: #C66058;
  font-weight: 600;
  margin-left: 6.25rem;
}
@media screen and (min-width: 768px) {
  .trial__detail {
    font-size: 1.25rem;
  }
}

.trial__images {
  margin-top: 3.125rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .trial__images {
    margin-top: 6.5625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.trial__image {
  aspect-ratio: 1/1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .trial__image {
    max-width: 12.5rem;
  }
}

/*お悩み*/
.trouble {
  overflow-x: clip;
}

.trouble__heading {
  padding-inline: 0.9375rem;
  padding-block: 0.5rem;
  background-color: #333;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .trouble__heading {
    padding-inline: 1.5625rem;
    padding-block: 0.9375rem;
  }
}

.trouble__container {
  background-image: url(../images/trouble-bg02.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 323%;
  padding-bottom: 3.125rem;
  padding-top: 1.875rem;
}
@media (min-width: 450px) {
  .trouble__container {
    background-size: 270%;
  }
}
@media (min-width: 500px) {
  .trouble__container {
    background-size: 240%;
  }
}
@media (min-width: 600px) {
  .trouble__container {
    background-size: 200%;
  }
}
@media (min-width: 700px) {
  .trouble__container {
    background-size: 166%;
  }
}
@media screen and (min-width: 768px) {
  .trouble__container {
    padding-top: 3.75rem;
    background-size: 166%;
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1250px) {
  .trouble__container {
    background-size: 150%;
  }
}
@media screen and (min-width: 1400px) {
  .trouble__container {
    background-size: 130%;
  }
}
@media (min-width: 1800px) {
  .trouble__container {
    background-size: 100%;
    padding-bottom: 7.25rem;
  }
}

@media screen and (min-width: 768px) {
  .trouble__inner.inner {
    max-width: 73.5rem;
  }
}

.trouble__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .trouble__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
  }
}

.trouble__image {
  z-index: 5;
  max-width: 15.625rem;
  width: 100%;
  position: relative;
  top: -5rem;
  left: 8.125rem;
}
@media screen and (min-width: 450px) {
  .trouble__image {
    max-width: 18.75rem;
    top: -8.125rem;
    left: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .trouble__image {
    aspect-ratio: 704/470;
    max-width: 44rem;
    margin-right: -1.75rem;
    margin-left: initial;
    position: static;
  }
}

.trouble__right {
  width: 100%;
  z-index: 1;
  max-width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .trouble__right {
    max-width: 28.125rem;
  }
}

.trouble__list-item {
  background-color: #FFF;
  position: relative;
  font-size: 1rem;
  padding-left: 1.5625rem;
  line-height: 1.75;
  font-weight: 600;
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 81%;
  padding-block: 0.4375rem;
  padding-left: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .trouble__list-item {
    width: 100%;
    font-size: 1.25rem;
    padding-left: 4.375rem;
    padding-block: 0.875rem;
  }
}

.trouble__list-item:not(:first-child) {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .trouble__list-item:not(:first-child) {
    margin-top: 0.875rem;
  }
}

.trouble__list-item::before {
  content: "";
  background-image: url(../images/icon-check.svg);
  background-size: cover;
  position: absolute;
  width: 1rem;
  height: 0.75rem;
  left: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .trouble__list-item::before {
    width: 1.75rem;
    height: 1.25rem;
    left: 1.625rem;
  }
}

.trouble__head {
  width: 100%;
  aspect-ratio: 326/96;
  margin-inline: auto;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .trouble__head {
    margin-top: 14.625rem;
    aspect-ratio: 1080/74;
    max-width: 67.5rem;
  }
}
@media (min-width: 1700px) {
  .trouble__head {
    margin-top: 18.75rem;
  }
}
@media (min-width: 1800px) {
  .trouble__head {
    margin-top: 11.625rem;
  }
}
@media (min-width: 1900px) {
  .trouble__head {
    margin-top: 15.625rem;
  }
}
@media (min-width: 2200px) {
  .trouble__head {
    margin-top: 50%;
  }
}

.trouble__head02 {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 0.625rem;
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .trouble__head02 {
    padding-block: 1.5625rem;
    margin-top: 1.25rem;
  }
}

.trouble__catch {
  aspect-ratio: 778/116;
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.9375rem;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .trouble__catch {
    max-width: 48.625rem;
    padding-inline: 0;
  }
}

.trouble__features {
  margin-top: 1.875rem;
}
@media (min-width: 1700px) {
  .trouble__features {
    margin-top: 2.875rem;
  }
}
@media screen and (min-width: 768px) {
  .trouble__features {
    margin-top: 3.75rem;
  }
}

.heading {
  font-weight: 600;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 3rem;
    line-height: 1.75;
  }
}

.heading.heading--white {
  color: #FFF;
}

.heading.heading--border {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*機器の比較*/
.contrast {
  background-color: #DEF3FA;
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contrast {
    padding-block: 10rem;
  }
}

.contrast__box {
  background-color: #FFF;
  margin-inline: auto;
  padding-block: 2.5rem;
  padding-inline: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .contrast__box {
    padding-block: 6.25rem;
    padding-inline: 5.625rem;
  }
}

.contrast__table {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .contrast__table {
    margin-top: 6.25rem;
  }
}

.underline {
  text-decoration-color: #FFE4E1;
  text-decoration-line: underline;
  text-decoration-thickness: 0.375rem;
  text-underline-offset: -1px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.underline.underline--wide {
  text-decoration-thickness: 0.5rem;
}
@media screen and (min-width: 768px) {
  .underline.underline--wide {
    text-decoration-thickness: 0.75rem;
  }
}

.middle-images {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .middle-images {
    padding-block: 7.5rem;
  }
}

.middle-images__head {
  font-weight: 600;
  line-height: 1.75;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .middle-images__head {
    font-size: 2rem;
  }
}

.middle-images__head::before,
.middle-images__head::after {
  background-color: #D87F74;
  content: "";
  height: 0.125rem;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .middle-images__head::before,
  .middle-images__head::after {
    width: 4.0625rem;
  }
}

.middle-images__head::before {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg); /* 傾ける */
  margin-right: 0.625rem; /* 文字との余白 */
}
@media screen and (min-width: 768px) {
  .middle-images__head::before {
    margin-right: 1.25rem; /* 文字との余白 */
  }
}

.middle-images__head::after {
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg); /* 傾ける */
  margin-left: 0.625rem; /* 文字との余白 */
}
@media screen and (min-width: 768px) {
  .middle-images__head::after {
    margin-left: 1.25rem; /* 文字との余白 */
  }
}

.middle__images {
  margin-top: 3.125rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .middle__images {
    margin-top: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.5rem;
  }
}

.middle__image {
  aspect-ratio: 1/1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .middle__image {
    max-width: 10.8125rem;
  }
}

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
  max-width: 20.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .features {
    gap: 3rem;
    max-width: 56.25rem;
  }
}

.features__box {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .features__box {
    text-align: center;
    padding-top: 7.625rem;
    padding-bottom: 3.25rem;
  }
}

.features__box.features__box--first {
  background-image: url(../images/box01-sp.svg);
}
@media screen and (min-width: 768px) {
  .features__box.features__box--first {
    background-image: url(../images/box01.svg);
  }
}

.features__box.features__box--second {
  background-image: url(../images/box02-sp.svg);
}
@media screen and (min-width: 768px) {
  .features__box.features__box--second {
    background-image: url(../images/box02.svg);
  }
}

.features__box.features__box--third {
  background-image: url(../images/box03-sp.svg);
}
@media screen and (min-width: 768px) {
  .features__box.features__box--third {
    background-image: url(../images/box03.svg);
  }
}

.features__box.features__box--four {
  background-image: url(../images/box04-sp.svg);
}
@media screen and (min-width: 768px) {
  .features__box.features__box--four {
    background-image: url(../images/box04.svg);
  }
}

.features__text {
  font-weight: 600;
  line-height: 1.75;
  font-size: 1.25rem;
  margin-left: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .features__text {
    font-size: 3rem;
    line-height: 1.75;
    margin-left: initial;
  }
}

.detail {
  background-color: #FFE4E1;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .detail {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.detail__catch {
  aspect-ratio: 900/311;
  width: 100%;
  margin-bottom: -3.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .detail__catch {
    max-width: 56.25rem;
    margin-bottom: -7.5rem;
  }
}

.detail__box {
  border-radius: 30px;
  background-color: #FFF;
  margin-top: 3.75rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .detail__box {
    margin-top: 7.5rem;
    padding-bottom: 6.25rem;
    border-radius: 50px;
  }
}

.detail__heading {
  padding-block: 0.9375rem;
  background-color: #D87F74;
  border-radius: 30px 30px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .detail__heading {
    padding-block: 1.875rem;
    border-radius: 50px 50px 0 0;
  }
}

.detail__heading::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 13%;
  height: 5.625rem;
  top: 0;
  left: 8%;
}
@media screen and (min-width: 768px) {
  .detail__heading::before {
    width: 6.25rem;
    height: 11.25rem;
    top: 0;
    left: 5.625rem;
  }
}

.detail__heading.heading.heading--white.detail-flag02 span {
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .detail__heading.heading.heading--white.detail-flag02 span {
    padding-left: initial;
  }
}

.detail-flag01::before {
  background-image: url(../images/flag01.svg);
}

.detail-flag02::before {
  background-image: url(../images/flag02.svg);
}

.detail-flag03::before {
  background-image: url(../images/flag03.svg);
}

.detail-flag04::before {
  background-image: url(../images/flag04.svg);
}

.detail__top {
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .detail__top {
    margin-top: 5.625rem;
  }
}

.detail__top-head {
  font-weight: 600;
  line-height: 1.5625;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .detail__top-head {
    font-size: 2rem;
  }
}

.color-pink {
  color: #D87F74;
}

.detail__circle {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .detail__circle {
    margin-top: 4.25rem;
  }
}

.detail__text {
  font-weight: 600;
  line-height: 1.75;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .detail__text {
    font-size: 1.25rem;
  }
}

.detail__circle-image {
  aspect-ratio: 500/260;
  margin-inline: auto;
  margin-top: 0.5625rem;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .detail__circle-image {
    max-width: 31.25rem;
    margin-top: 1.125rem;
    width: 100%;
  }
}

.detail__text span {
  color: #D87F74;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.09375;
}
@media screen and (min-width: 768px) {
  .detail__text span {
    font-size: 2rem;
  }
}

.detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  margin-top: 0.9375rem;
  width: 89%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .detail__wrap {
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 50rem;
    width: 100%;
    margin-top: 1.875rem;
  }
}

.detail__wrap.detail__wrap--reverse {
  gap: 0.5rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .detail__wrap.detail__wrap--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 2.5rem;
  }
}

.detail__wrap-image {
  aspect-ratio: 210/360;
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .detail__wrap-image {
    max-width: 13.125rem;
    width: 100%;
  }
}

.detail__container:first-child {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .detail__container:first-child {
    margin-top: 3.9375rem;
  }
}

.detail__container:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .detail__container:not(:first-child) {
    margin-top: 2.625rem;
  }
}

.detail__container {
  border: 5px solid #F4F4F4;
  width: 90%;
  margin-inline: auto;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .detail__container {
    max-width: 56.25rem;
    width: 100%;
    padding-bottom: 3rem;
  }
}

.detail__container-head {
  background-color: #F4F4F4;
  text-align: left;
  padding-block: 0.5rem;
  padding-left: 0.625rem;
  font-weight: 600;
  line-height: 1.75;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .detail__container-head {
    padding-block: 1.0625rem;
    padding-left: 3.125rem;
    font-size: 2rem;
  }
}

.detail__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 600;
  margin-top: 1.25rem;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .detail__sub {
    margin-top: 2.5rem;
    font-size: 1.5rem;
    padding-inline: initial;
  }
}

.detail__text02 {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .detail__text02 {
    font-size: 1rem;
  }
}

.detail__container .detail__text02 {
  text-align: left;
}

.detail__container-image {
  aspect-ratio: 300/225;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .detail__container-image {
    max-width: 18.75rem;
  }
}

.detail__forma {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .detail__forma {
    margin-top: 3.125rem;
  }
}

.detail__forma-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .detail__forma-images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.4375rem;
    margin-top: 2.5rem;
    width: 100%;
  }
}

.detail__forma-image01 {
  aspect-ratio: 370/220;
}
@media screen and (min-width: 768px) {
  .detail__forma-image01 {
    max-width: 23.125rem;
  }
}

.detail__forma-image02 {
  aspect-ratio: 407/220;
}
@media screen and (min-width: 768px) {
  .detail__forma-image02 {
    max-width: 25.4375rem;
    width: 100%;
  }
}

.detail__forma-image01 img,
.detail__forma-image02 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail__margin {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .detail__margin {
    margin-top: 1.4375rem;
  }
}

.detail__step {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .detail__step {
    margin-top: 5.625rem;
  }
}

.detail__step-wrap {
  margin-top: 1rem;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .detail__step-wrap {
    margin-top: 2rem;
    max-width: 31.25rem;
    gap: 1.5625rem;
  }
}

.detail__step-image {
  aspect-ratio: 500/245;
  width: 100%;
}

.detail__step-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail__step-arrow {
  aspect-ratio: 32/14;
  margin-inline: auto;
  max-width: 2rem;
}

.detail__example {
  margin-top: 1.875rem;
  width: 90%;
  margin-inline: auto;
  border: 3px solid #FFE4E1;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .detail__example {
    margin-top: 3.875rem;
    max-width: 50rem;
    width: 100%;
    padding-bottom: 3.125rem;
  }
}

.detail__example-tag {
  text-transform: uppercase;
  padding: 0.25rem;
  background-color: #FFE4E1;
  min-width: 6.25rem;
  display: inline-block;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .detail__example-tag {
    padding: 0.5rem;
    max-width: 12.5rem;
    font-size: 1rem;
  }
}

.detail__example-content {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .detail__example-content {
    margin-top: 1.375rem;
  }
}

.detail__example-image {
  aspect-ratio: 350/238;
  width: 90%;
  margin-inline: auto;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .detail__example-image {
    max-width: 21.875rem;
    width: 100%;
    margin-top: 1.6875rem;
  }
}

.detail__example-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail__example-text {
  text-align: center;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .detail__example-text {
    margin-top: 1.125rem;
  }
}

.detail__text03 {
  font-family: "Noto Sans JP", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .detail__text03 {
    font-size: 0.875rem;
  }
}

.detail__bottom {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .detail__bottom {
    margin-top: 5.9375rem;
  }
}

.detail__bottom-text span {
  font-size: 1.875rem;
  color: #D87F74;
}
@media screen and (min-width: 768px) {
  .detail__bottom-text span {
    font-size: 3.75rem;
  }
}

.detail__bottom-text {
  font-size: 2.1875rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .detail__bottom-text {
    font-size: 4.375rem;
  }
}

.detail__bottom-arrow {
  margin-inline: auto;
  margin-top: 2rem;
  max-width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .detail__bottom-arrow {
    max-width: 4.0625rem;
  }
}

.text-decoration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-decoration::before,
.text-decoration::after {
  background-color: #D87F74;
  content: "";
  height: 0.125rem;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .text-decoration::before,
  .text-decoration::after {
    width: 2.5rem;
  }
}

.text-decoration::before {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg); /* 傾ける */
  margin-right: 0.625rem; /* 文字との余白 */
}
@media screen and (min-width: 768px) {
  .text-decoration::before {
    margin-right: 1.25rem; /* 文字との余白 */
  }
}

.text-decoration::after {
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg); /* 傾ける */
  margin-left: 0.625rem; /* 文字との余白 */
}
@media screen and (min-width: 768px) {
  .text-decoration::after {
    margin-left: 1.25rem; /* 文字との余白 */
  }
}

.four-features__catch {
  background-image: url(../images/four-features-bg-sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 0.625rem;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .four-features__catch {
    background-image: url(../images/four-features-bg.svg);
    padding-top: 1.875rem;
    padding-inline: 1.5625rem;
    margin-bottom: initial;
  }
}

.four-features__catch img {
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 312/128;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .four-features__catch img {
    max-width: 70.3125rem;
    aspect-ratio: 1125/352;
  }
}

.four-features__content {
  background-color: #FFE4E1;
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .four-features__content {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.four-features__image {
  width: 60%;
  max-width: 12.5rem;
  margin-top: 1.25rem;
}

/*料金*/
.price {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .price {
    padding-block: 7.5rem;
  }
}

.price__text {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price__text {
    margin-top: 3.75rem;
  }
}

.price__item {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .price__item {
    margin-top: 3.75rem;
  }
}

/*料金表*/
.price-table {
  border-collapse: collapse;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price-table {
    max-width: 56.25rem;
  }
}

.price-table__head {
  padding-block: 1.125rem;
  color: #FFF;
  background-color: #555;
  border: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .price-table__head {
    padding-block: 1.5625rem;
  }
}

.price-table__head,
.price-table__cell {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  width: 30%;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .price-table__head,
  .price-table__cell {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.price-table__right {
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .price-table__right {
    font-size: 1.5rem;
    line-height: 1.75;
    padding-block: 1.375rem;
  }
}

.price-table__right.price-table__cell--pink {
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .price-table__right.price-table__cell--pink {
    padding-block: 0.9375rem;
  }
}

.price-table__cell.price-table__cell--pink,
.price-table__right.price-table__cell--pink {
  background-color: #FFE4E1;
}

.price-table__cell span,
.price-table__right span {
  color: #C66058;
  display: block;
}

.price-table__cell span {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .price-table__cell span {
    margin-top: 1rem;
  }
}

.price-table__right span {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .price-table__right span {
    margin-top: 0.75rem;
  }
}

.price-table__cell,
.price-table__right {
  border: 1px solid #BBBBBB;
}

.price-table__head.price-table__head--wide {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .price-table__head.price-table__head--wide {
    width: 30%;
  }
}

/*施術対象外*/
.not-applicable {
  background-color: #FFE4E1;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .not-applicable {
    padding-block: 7.5rem;
  }
}

.not-applicable__box {
  margin-inline: auto;
  background-color: #FFF;
  padding-block: 3.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .not-applicable__box {
    padding-block: 6.25rem;
  }
}

.not-applicable__container {
  margin-inline: auto;
}

.not-applicable__list {
  margin-inline: auto;
  margin-top: 1.75rem;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .not-applicable__list {
    max-width: 36.25rem;
    margin-top: 3.5625rem;
    width: 100%;
  }
}

.not-applicable__item:not(:first-child) {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .not-applicable__item:not(:first-child) {
    margin-top: 0.875rem;
  }
}

.not-applicable__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7222222222;
  padding-left: 0.75rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .not-applicable__item-text {
    font-size: 1.125rem;
    padding-left: 1.4375rem;
  }
}

.not-applicable__item-dot {
  position: relative;
}

.not-applicable__item-dot::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #D87F74;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.not-applicable__content {
  width: 90%;
  margin-inline: auto;
  border: 5px solid #F4F4F4;
  margin-top: 2.25rem;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .not-applicable__content {
    max-width: 56.25rem;
    width: 100%;
    margin-top: 4.5rem;
    padding-block: 3rem;
  }
}

.not-applicable__content-wrap {
  margin-inline: auto;
}

.not-applicable__content-head {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .not-applicable__content-head {
    font-size: 1.25rem;
  }
}

.not-applicable__content-list {
  margin-top: 1.5rem;
  max-width: 34.375rem;
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .not-applicable__content-list {
    margin-top: 2.9375rem;
    width: 100%;
  }
}

.not-applicable__content-item {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.625;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .not-applicable__content-item {
    font-size: 1rem;
  }
}

.not-applicable__content-item:not(:first-child) {
  margin-top: 0.625rem;
}

.not-applicable__content-item::before {
  margin-left: -1em;
  content: "・";
  font-size: 1em;
  display: inline-block;
  border-radius: 50%;
}

.not-applicable__content-item span {
  color: #D87F74;
}

/*施術の流れ*/
.treatment-flow {
  background-color: #DEF3FA;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .treatment-flow {
    padding-block: 7.5rem;
  }
}

.treatment-flow__container {
  margin-inline: auto;
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .treatment-flow__container {
    max-width: 56.25rem;
    margin-top: 6.25rem;
    gap: 1.875rem;
    width: 100%;
  }
}

/*施術のステップ*/
.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.75rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-shadow: 0 0 6px rgba(204, 204, 204, 0.25);
          box-shadow: 0 0 6px rgba(204, 204, 204, 0.25);
  border: 3px solid #FFE4E1;
  width: 100%;
  padding-inline: 0.9375rem;
  padding-bottom: 1.125rem;
  padding-top: 1.125rem;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .flow-step {
    gap: 5.5rem;
    padding-inline: 1.875rem;
    padding-bottom: 2.25rem;
    padding-top: initial;
  }
}

.flow-step__tag {
  text-transform: uppercase;
  color: #D87F74;
  font-weight: 600;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .flow-step__tag {
    font-size: 1.5rem;
  }
}

.flow-step__tag span {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .flow-step__tag span {
    font-size: 3.75rem;
  }
}

.flow-step__tag::after {
  position: absolute;
  background-image: url(../images/treatment-flow-p.svg);
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  width: 5.5rem;
  height: 1.1875rem;
  top: 50%;
  left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow-step__tag::after {
    width: 10.9375rem;
    height: 2.3125rem;
    top: 50%;
    left: -1.875rem;
  }
}

.flow-step__head {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .flow-step__head {
    font-size: 1.75rem;
  }
}

.flow-step__text {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .flow-step__text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.flow-step__next {
  max-width: 1rem;
  aspect-ratio: 32/14;
}
@media screen and (min-width: 768px) {
  .flow-step__next {
    max-width: 2rem;
  }
}

/*監修者リストのアコーディオン*/
.accordion {
  width: 100%;
}

.accordion__container {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .accordion__container {
    margin-top: 1.1875rem;
  }
}

.accordion__item:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .accordion__item:not(:first-child) {
    margin-top: 1rem;
  }
}

.accordion__title {
  position: relative;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  border-bottom: 0.5px solid #DDD;
  padding-bottom: 0.3125rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .accordion__title {
    font-size: 0.875rem;
    padding-bottom: 0.6875rem;
  }
}

.accordion__title::after {
  position: absolute;
  content: "+";
  bottom: 0.25rem;
  right: 0;
  display: block;
  font-size: 1rem;
  color: #D87F74;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  line-height: 1.75;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .accordion__title::after {
    bottom: 0.5625rem;
  }
}

.accordion__title.is-open::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion__content {
  display: none;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .accordion__content {
    margin-top: 0.6875rem;
  }
}

.accordion__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  width: 90%;
  margin-inline: auto;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .accordion__text {
    font-size: 0.875rem;
  }
}

/*監修者リスト*/
.doctor-list {
  background-color: #FFE4E1;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .doctor-list {
    padding-bottom: 7.5rem;
  }
}

.doctor-list__head {
  background-color: #D87F74;
  padding-top: 0.875rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .doctor-list__head {
    padding-top: 1.75rem;
    padding-bottom: 2.0625rem;
  }
}

.doctor-list__items {
  margin-top: 3.75rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.625rem 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .doctor-list__items {
    margin-top: 7.5rem;
    max-width: 56.25rem;
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    row-gap: 4rem;
  }
}

.doctor-list__item {
  padding-inline: 0.3125rem;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .doctor-list__item {
    padding-inline: 0;
  }
}

/*監修者リスト*/
.list-item {
  padding-top: 1.25rem;
  padding-bottom: 1.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list-item {
    max-width: 26.25rem;
    padding-top: 2.5rem;
    padding-bottom: 2.375rem;
  }
}

.list-item__image {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .list-item__image {
    aspect-ratio: 330/267;
    max-width: 20.625rem;
  }
}

.list-item__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-item__image,
.list-item__body {
  width: 95%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .list-item__image,
  .list-item__body {
    width: 100%;
  }
}

.list-item__body {
  margin-top: 1rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list-item__body {
    max-width: 21.875rem;
    margin-top: 2.0625rem;
  }
}

.list-item__body-icon {
  position: absolute;
  max-width: 1.5625rem;
  right: 0;
  top: 1.5625rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .list-item__body-icon {
    max-width: 2.5rem;
    top: 0.375rem;
  }
}

.list-item__position {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8571428571;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .list-item__position {
    font-size: 0.875rem;
  }
}

.list-item__name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0.125rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .list-item__name {
    font-size: 1.25rem;
    margin-top: 0.1875rem;
  }
}

.list-item__name span {
  font-size: 0.75rem;
  color: #BBB;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .list-item__name span {
    font-size: 1rem;
  }
}

.list-item__specialty {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .list-item__specialty {
    margin-top: 1.8125rem;
  }
}

.list-item__specialty-head {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  border-bottom: 0.5px solid #DDD;
  padding-bottom: 0.1875rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .list-item__specialty-head {
    font-size: 0.875rem;
    padding-bottom: 0.375rem;
  }
}

.list-item__specialty-cat {
  margin-left: 0.3125rem;
  margin-top: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .list-item__specialty-cat {
    margin-top: 0.625rem;
    gap: 0.4375rem;
  }
}

.list-item__specialty-cat span {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
  background-color: #FFE4E1;
  padding-inline: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .list-item__specialty-cat span {
    font-size: 0.875rem;
    padding-inline: 0.625rem;
  }
}

.list-item__accordion {
  bottom: 0;
}

.list-item__career {
  margin-inline: auto;
  width: 90%;
  font-family: "Noto Sans JP", serif;
}

.list-item__career-row {
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .list-item__career-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 0.5625rem;
  }
}

.list-item__career-row:not(:first-child) {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .list-item__career-row:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.list-item__career-row dt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .list-item__career-row dt {
    font-size: 1rem;
    width: 23%;
  }
}

.list-item__career-row dd {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .list-item__career-row dd {
    font-size: 0.875rem;
    width: 77%;
  }
}

/*アクセス*/
.access {
  background: #BDBDBD;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .access {
    background-image: url(../images/access-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 7.5rem;
  }
}

.access__box {
  margin-inline: auto;
  background: transparent;
  background-color: rgba(255, 255, 255, 0.8705882353);
  width: 100%;
  padding-top: 2.125rem;
  padding-bottom: 2.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .access__box {
    max-width: 56.25rem;
    background-color: rgba(255, 255, 255, 0.85);
    padding-top: 4.0625rem;
    padding-bottom: 4.75rem;
  }
}

.access__item:not(:first-child) {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .access__item:not(:first-child) {
    margin-top: 5.3125rem;
  }
}

.access__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
}

.access__item-head img {
  max-width: 5rem;
  width: 100%;
  aspect-ratio: 160/34;
}
@media screen and (min-width: 768px) {
  .access__item-head img {
    max-width: 10rem;
  }
}

.access__item-name {
  margin-left: 0.1875rem;
  line-height: 1.625;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .access__item-name {
    margin-left: 0.4375rem;
  }
}

.access__main {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.6875rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .access__main {
    margin-top: 1.375rem;
  }
}

.access__map {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .access__map {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

.access__btn {
  position: relative;
  border: 2px solid #B9B7B7;
  color: #333;
  padding-block: 0.6875rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
  display: inline-block;
  width: 75%;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .access__btn {
    width: 40.625rem;
    max-width: 100%;
    padding-block: 1.375rem;
    font-size: 0.9375rem;
  }
}

.access__btn:hover {
  border-color: #000;
}

.access__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.125rem;
  background-image: url(../images/arrow-map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.625rem;
  height: 0.75rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .access__btn::after {
    right: 35%;
    width: 0.625rem;
    height: 0.75rem;
  }
}

/*フッター*/
.footer {
  background-color: #D87F74;
  padding: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.25rem;
  }
}

.footer__copy {
  line-height: 1.8571428571;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFF;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", serif;
}

/*機器の比較表*/
.table {
  border-collapse: collapse;
  margin-inline: auto;
  width: 97%;
}
@media screen and (min-width: 768px) {
  .table {
    max-width: 56.25rem;
    width: 100%;
  }
}

.table__head,
.table__left,
.table__pink,
.table__cell {
  text-align: center;
  padding-block: 0.9375rem;
  width: 33%;
}
@media screen and (min-width: 768px) {
  .table__head,
  .table__left,
  .table__pink,
  .table__cell {
    padding-block: 1.875rem;
  }
}

.table__cell02 {
  padding-block: 0.5rem;
}
@media screen and (min-width: 768px) {
  .table__cell02 {
    padding-block: 1.0625rem;
  }
}

.table__head {
  font-size: 1.125rem;
  line-height: 1.7142857143;
  font-weight: 600;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .table__head {
    font-size: 1.75rem;
  }
}

.table__head.table__head--blue {
  background-color: #71C8D8;
}

.table__head.table__head--pink {
  background-color: #D87F74;
}

.table__left {
  color: #FFF;
  background-color: #555;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.4444444444;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .table__left {
    font-size: 1.125rem;
  }
}

.table__cell {
  background-color: #FFF;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .table__cell {
    font-size: 1rem;
  }
}

.table__pink {
  background-color: #FFE4E1;
  color: #D87F74;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2380952381;
}
@media screen and (min-width: 768px) {
  .table__pink {
    font-size: 1.3125rem;
  }
}

.table__head {
  border-left: 1px solid #FFF;
}

.table__left {
  border-bottom: 1px solid #FFF;
}

.table__cell,
.table__pink {
  border: 1px solid #BBB;
}

/*電話予約リンクのモーダル*/
.campaign-modal__open {
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.campaign-modal__wrap {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: none;
  opacity: 0;
  z-index: -1;
}

.campaign_modal_mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.campaign-modal__window {
  margin: 0 auto;
  max-width: 700px;
  z-index: 1;
  overflow-y: scroll;
  background-color: #000;
  padding: 20px;
  height: 75svh;
  width: 79%;
}
@media screen and (min-width: 768px) {
  .campaign-modal__window {
    padding: 50px 20px;
    width: 79%;
    height: 55vh;
  }
}

.campaign-modal__content {
  margin: 0 auto;
}

.is_open, .is_open {
  overflow: hidden;
}

.campaign-modal__wrap.is_open {
  -webkit-animation: campaign-modal__wrap_open 0.5s ease forwards;
          animation: campaign-modal__wrap_open 0.5s ease forwards;
}

.campaign-modal__wrap.is_open .campaign-modal__window {
  -webkit-animation: campaign-modal__window_open 0.5s ease forwards;
          animation: campaign-modal__window_open 0.5s ease forwards;
}

.campaign-modal__wrap.is_close {
  -webkit-animation: campaign-modal__wrap_close 0.5s ease forwards;
          animation: campaign-modal__wrap_close 0.5s ease forwards;
}

.campaign-modal__wrap.is_close .campaign-modal__window {
  -webkit-animation: campaign-modal__window_close 0.5s ease forwards;
          animation: campaign-modal__window_close 0.5s ease forwards;
}

@-webkit-keyframes campaign-modal__wrap_open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 300;
  }
}

@keyframes campaign-modal__wrap_open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 300;
  }
}
@-webkit-keyframes campaign-modal__window_open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes campaign-modal__window_open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes campaign-modal__wrap_close {
  0% {
    z-index: 300;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes campaign-modal__wrap_close {
  0% {
    z-index: 300;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes campaign-modal__window_close {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
}
@keyframes campaign-modal__window_close {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
}
.campaign-contect__block {
  margin-top: 30px;
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.campaign-contect__box {
  text-align: center;
}

.campaign-content__box img {
  width: 100%;
}

.campaign_modal_close {
  z-index: 300;
  position: absolute;
  color: #000;
  font-size: 30px;
  top: 6px;
  right: 15px;
  cursor: pointer;
  font-weight: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #FFF;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .campaign_modal_close {
    font-size: 50px;
    right: 20px;
  }
}

.modal-tel-link {
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .modal-tel-link {
    width: 70%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }
}

.sp-header__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.25rem 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 0.25rem auto;
      grid-template-areas: "area1 area2" "area3 area3";
  row-gap: 0.25rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  text-align: center;
}

#store01 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: area1;
  max-width: 4.25rem;
}

#store02 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: area2;
  max-width: 4.25rem;
}

#store03 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: area3;
  max-width: 8.75rem;
}

.sp-header__store {
  font-family: "Noto Sans JP", serif;
  color: #D87F74;
  font-size: 0.75rem;
  background-color: #FFF;
  padding: 0.09375rem 0.625rem;
  font-weight: 400;
}

/*メニューをページ下部に固定*/
.sp-fixed {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  z-index: 200;
}

.sp-fixed__comment {
  aspect-ratio: 348/34;
  max-width: 21.75rem;
  margin-inline: auto;
}

.sp-fixed__items.hidden {
  display: none;
}

.sp-fixed__items {
  margin: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3019607843);
          box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3019607843);
}

.sp-fixed__item {
  width: 100%;
}

.sp-fixed__btn {
  font-weight: 600;
  color: #FFF;
  height: inherit;
  padding: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0.4375rem;
  font-size: 0.875rem;
  position: relative;
  gap: 0.375rem;
}

.sp-fixed__btn.sp-fixed__btn--wide {
  font-size: 1rem;
  padding: 0.8125rem;
  gap: 0.5625rem;
}

.sp-fixed__btn.sp-fixed__btn--tel {
  background-color: #59B7E3;
}

.sp-fixed__btn.sp-fixed__btn--net {
  background-color: #555;
}

.sp-fixed__btn.sp-fixed__btn--tel::before,
.sp-fixed__btn.sp-fixed__btn--net::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sp-fixed__btn.sp-fixed__btn--tel::before {
  top: 0;
  background-image: url(../images/icon-tel.svg);
  width: 1.5rem;
  height: 1.5rem;
}

.sp-fixed__btn.sp-fixed__btn--net::before {
  background-image: url(../images/icon-net.svg);
  width: 0.9375rem;
  height: 1.5rem;
}

.sp-fixed__btn.sp-fixed__btn--net.sp-fixed__btn--wide::before {
  width: 1.1875rem;
  height: 1.875rem;
}

.technique {
  background-color: #DDF2F9;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .technique {
    padding-block: 7.5rem;
  }
}

.technique__container {
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .technique__container {
    max-width: 56.25rem;
  }
}

.technique__heading.heading {
  line-height: 1.4166666667;
}

.technique__image {
  aspect-ratio: 900/387;
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .technique__image {
    margin-top: 5rem;
  }
}

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

.technique__middle {
  margin-top: 1.875rem;
  background-color: #FFF;
  position: relative;
  -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
  padding-block: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .technique__middle {
    margin-top: 3.9375rem;
    padding-block: 3.3125rem;
  }
}

.technique__middle::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  bottom: 0.375rem;
  left: 0.375rem;
  right: 0.375rem;
  border: 1px solid #E99DAD;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .technique__middle::before {
    top: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }
}

.technique__list {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .technique__list {
    max-width: 45.4375rem;
    width: 100%;
  }
}

.technique__item {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  padding-left: 1.875rem;
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .technique__item {
    font-size: 1.625rem;
    padding-left: 5.4375rem;
    line-height: 1.7307692308;
    max-width: 45.5rem;
    width: 100%;
  }
}

.technique__item:not(:first-child) {
  margin-top: 0.6875rem;
  border-top: 2px dotted #E8E3E1;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .technique__item:not(:first-child) {
    margin-top: 1.375rem;
    padding-top: 1.125rem;
  }
}

.technique__item::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon-check-p.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  height: 0.875rem;
  left: 0.3125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .technique__item::before {
    width: 2.5rem;
    height: 1.75rem;
    left: 1.25rem;
  }
}

.technique__item:not(:first-child):before {
  position: absolute;
  content: "";
  background-image: url(../images/icon-check-p.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  height: 0.875rem;
  left: 0.3125rem;
  top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .technique__item:not(:first-child):before {
    width: 2.5rem;
    height: 1.75rem;
    left: 1.25rem;
    top: 2.5rem;
  }
}
/*# sourceMappingURL=styles.css.map */