@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  background: #fafafa;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section__sub {
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

.section__content {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 60px;
  }
}

.heading {
  font-size: 30px;
  font-weight: 700;
  color: #d37998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
}
.heading::after {
  content: "";
  width: 200px;
  height: 2px;
  background: #d37998;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

.header {
  height: 140px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 140px;
  }
}

.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;
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.header__nav {
  background: #d37998;
  width: 270px;
  height: calc(100% - 140px);
  position: fixed;
  right: 0;
  top: 140px;
  padding: 32px 15px;
  font-size: 18px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__lists {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -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;
    gap: 30px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #111;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #d37998;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #d37998;
  left: 0;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.main {
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

.fv__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}
.fv__message {
  margin-top: 20px;
}
.fv__message br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__message br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #fff;
  }
}

.fv__title {
  font-size: 24px;
  font-weight: 700;
}

.fv__text {
  margin-top: 15px;
  text-align: justify;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .about__content {
    -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;
    gap: 20px;
  }
}

.about__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.about__image img {
  width: 100%;
}

.about__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .about__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.about__bone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
  gap: 20px;
}

.about__parts {
  width: 150px;
}

.about__nano {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.about_nano-text {
  text-align: justify;
  width: 69.5652173913%;
}

.about__nano-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .about__nano-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about__nano-image img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .about__nano-image img {
    width: 180px;
  }
}

.service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .service__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.service__card {
  background: #d37998;
  -webkit-box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0 rgba(96, 96, 96, 0.16);
}

.service-card__title {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding: 20px;
}

.service-card__image {
  text-align: center;
}
.service-card__image img {
  width: 97%;
}

.service-card__body {
  text-align: left;
  padding: 10px;
}

.service-card__core {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  text-align: left;
  padding: 10px;
}

.service-card__link {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  text-align: left;
  padding: 10px;
}

.price__item {
  gap: 80px;
}

.price__title {
  max-width: 240px;
  background: #d37998;
  padding: 5px;
  text-align: center;
  color: #111;
  font-weight: 500;
  font-size: 20px;
  display: block;
  margin: 20px auto;
  border-radius: 20px/50%;
}

.price__menu {
  font-size: 12px;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

.pink_letter {
  color: #d37998;
}

.price__body {
  font-size: 12px;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}

.compare {
  padding-top: 12px;
  padding-bottom: 40px;
}

.compare__title {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.compare__table table {
  border-top: none;
  border-left: none;
  border-right: none;
}
.compare__table th,
.compare__table td {
  border: 1px solid #d37998;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  height: 30px;
  vertical-align: middle;
  font-size: 12px;
}
.compare__table {
  /* 左の外枠を消す */
}
.compare__table th:first-child,
.compare__table td:first-child {
  border-left: none;
}
.compare__table {
  /* 右の外枠を消す */
}
.compare__table th:last-child,
.compare__table td:last-child {
  border-right: none;
}
.compare__table thead {
  letter-spacing: 1.6px;
  background: #f6e4ea;
  font-weight: 700;
}

.little_letter {
  font-size: 7px;
}
@media screen and (min-width: 768px) {
  .little_letter {
    font-size: 12px;
  }
}

.price__chui {
  font-size: 10px;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .price__chui br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .letter-space {
    display: none;
  }
}

.price__image {
  padding-top: 30px;
  max-width: 600px;
  margin: auto;
}

.price__sns-items {
  padding-block: 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price__sns-text {
  font-size: 20px;
  color: #d37998;
  font-weight: 700;
  text-align: center;
}

.price__sns-item {
  width: 80px;
}

@media screen and (min-width: 768px) {
  .price__sns-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .price__sns-link:hover {
    opacity: 0.6;
  }
}

.instagram__image {
  width: 40px;
}

.instagram__head {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  text-align: center;
  line-height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .instagram__head {
    font-size: 40px;
    gap: 24px;
  }
}

.instagram__bar {
  content: "";
  margin-top: 20px;
  width: 280px;
  height: 2px;
  background: #d37998;
  margin-left: auto;
  margin-right: auto;
}

.instagram__ph {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
  gap: 10px; /* 画像の間隔 */
}
@media screen and (min-width: 768px) {
  .instagram__ph {
    grid-template-columns: repeat(4, 1fr); /* 4列 */
    gap: 15px; /* 画像の間隔 */
  }
}
.instagram__ph img {
  max-width: 100%;
  height: auto;
}

.instagram__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .instagram__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.salon__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .salon__image {
    max-width: 990px;
  }
}
.salon__table {
  padding-top: 20px;
  font-size: 14px;
  table-layout: fixed;
  margin-right: auto;
  margin-left: auto;
}
.salon__table th:nth-child(1),
.salon__table td:nth-child(1) {
  width: 35%;
}
.salon__table tr {
  -moz-text-align-last: left;
       text-align-last: left;
  height: 40px;
}

.salon__text {
  padding: 10px 15%;
  font-size: 12px;
}

.map__iframe {
  width: 100%;
  height: 240px; /* 好きな高さ */
}
@media screen and (min-width: 768px) {
  .map__iframe {
    height: 600px; /* 好きな高さ */
  }
}
.map__iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  background: #f6e4ea;
  padding-block: 50px;
}
.contact {
  padding-block: 80px;
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__text {
  margin-top: 40px;
  text-align: center;
}
.contact__items {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__footer {
  margin-top: 20px;
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  margin-top: 20px;
  text-align: center;
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #d37998;
  color: #111;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 2px solid #d37998;
    padding-inline: 4px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 2px solid #d37998;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
}

.form-textarea {
  width: 100%;
  height: 122px;
  border: 2px solid #d37998;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  resize: vertical;
}

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #d37998 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(211, 121, 152, 0.32);
          box-shadow: 5px 6px 16px 0px rgba(211, 121, 152, 0.32);
}

.form-checkbox__text {
  padding-left: 30px;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #d37998;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #d37998;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  left: 1.29px;
  background: url(../img/check_icon.png) no-repeat center center/contain;
}

.button {
  display: inline-block;
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: 1px solid #d37998;
  background: #fff;
  color: #d37998;
  font-size: 14px;
  letter-spacing: 0.02px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background: #d37998;
}

.footer {
  padding-block: 40px 7px;
}

.footer__logo a img {
  width: 128px;
  display: block;
  margin-inline: auto;
}

.footer__menu-items {
  text-align: center;
  font-size: 12px;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .footer__menu-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.footer__sns-items {
  padding-block: 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__sns-item {
  width: 50px;
}

@media screen and (min-width: 768px) {
  .footer__sns-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
}
.footer__copyright small {
  font-size: inherit;
}

.count {
  color: #d37998;
}