@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Spectral:wght@300;400;500;600;700&display=swap");

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}
:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(button) {
  all: unset;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}
:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}
:where(dialog:not([open])) {
  display: none !important;
}
:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}
:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}
html {
  font-size: 12px;
}
body {
  color: #2B0000;
  background-color: #fff;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, p {
  color: #2B0000;
}
:where(h1, h2, h3) {
  text-wrap: unset;
}
.wrapper {
  max-width: 1300px;
  width: 100%;
  margin: auto;
}
.font-en {
  font-family: "Spectral", serif;
}
.font--bold {
  font-weight: 600;
}
.flex {
  display: -webkit-box;
  display: flex;
}
.flex.alignItems--center {
  -webkit-box-align: center;
          align-items: center;
}
.flex.justifyContent--center {
  -webkit-box-pack: center;
          justify-content: center;
}
.g-btn {
  padding: 20px 60px 20px 20px;
  border: 1px solid #4B0A0A;
  background-color: #4B0A0A;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  border-radius: 50px;
  position: relative;
  min-width: 244px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.g-btn .arr {
  width: 30px;
  height: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  fill: #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.g-btn:hover {
  background-color: transparent;
  color: #4B0A0A;
}
.g-btn:hover .arr {
  fill: #4B0A0A;
}
.g-btnWh {
  padding: 20px 60px 20px 20px;
  border: 1px solid #4B0A0A;
  background-color: transparent;
  color: #4B0A0A;
  font-size: 16px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  border-radius: 50px;
  position: relative;
  min-width: 244px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.g-btnWh .arr {
  width: 30px;
  height: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  fill: #4B0A0A;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.g-btnWh:hover {
  background-color: #4B0A0A;
  color: #fff;
}
.g-btnWh:hover .arr {
  fill: #fff;
}
main {
  overflow: hidden;
}
.popups {
  width: 0;
  height: 0;
  overflow: hidden;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4666666667);
}
.popup__inner {
  position: relative;
  max-height: 95%;
  overflow: auto;
  padding: 40px;
  background-color: #fff;
}
.popup__close {
  position: absolute;
  top: 10px;
  right: 40px;
  padding-right: 30px;
  cursor: pointer;
}
.popup__close:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 15px;
  height: 1px;
  background-color: #2B0000;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.popup__close:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 15px;
  height: 1px;
  background-color: #2B0000;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.popup__content {
  padding: 40px;
  border-top: 1px solid #2B0000;
  border-bottom: 1px solid #2B0000;
  text-align: center;
}
.popup__content h2 {
  font-size: 22px;
  color: #2b0000;
  font-weight: normal;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.popup__content .telnumber {
  margin: 0;
  line-height: 1;
  font-size: 48px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.popup__content p {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.popup__content .qrcode {
  display: none;
  margin: 20px auto;
}
.popup.on {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.header {
  padding: 20px;
}
.header__wrapper {
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
}
.header__nav {
  display: -webkit-box;
  display: flex;
  /* 2410add */
  gap: 20px; 
}
.header__nav li {
  /* 2410del */
  /* margin-left: 30px; */
}
.header__nav li:first-child {
  /* 2410del */
  /* margin-left: 0; */
}
.header__nav a {
  color: #4B0A0A;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__btn {
  border-radius: 40px;
  border: 1px solid #4B0A0A;
  font-size: 16px;
  line-height: 40px;
  text-transform: uppercase;
  height: 40px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  color: #4B0A0A;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
}
.header__phone p {
  color: #4B0A0A;
  font-size: 11px;
  text-align: center;
}
.header__toggle {
  display: none;
}
.header__menu {
  display: none;
}
@media screen and (max-width: 1279px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    z-index: 99;
  }
  .header__wrapper {
    z-index: 1;
  }
  .header__left .header__nav {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .header__nav li {
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid #fff;
  }
  .header__nav li:last-child {
    border-bottom: 1px solid #fff;
  }
  .header__nav li a {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    color: #fff;
  }
  .header__nav li a span:first-child {
    font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  }
  .header__nav.pc {
    display: none;
  }
  .header__logo {
    width: 100px;
  }
  .header__logo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: no-repeat center/contain url(/images/common/white_anastasia-miaray.svg);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__toggle {
    position: relative;
    display: block;
    width: 30px;
    height: 18px;
  }
  .header__toggle span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    background-color: #4B0A0A;
    -webkit-transition: opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__toggle span:nth-child(1) {
    top: 0;
  }
  .header__toggle span:nth-child(2) {
    top: 50%;
  }
  .header__toggle span:nth-child(3) {
    top: 100%;
  }
  .header__toggle.on span {
    background-color: #fff;
  }
  .header__toggle.on span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
            transform: translateY(9px) rotate(-45deg);
  }
  .header__toggle.on span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle.on span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
            transform: translateY(-9px) rotate(45deg);
  }
  .header__menu {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 80px 0 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  }
  .header__menu__inner {
    height: 100%;
    padding: 0 20px;
    overflow: auto;
  }
  .header__menu.on {
    opacity: 1;
    visibility: visible;
    background-color: #4B0A0A;
  }
  .header__btn {
    line-height: 22px;
    height: 22px;
    padding: 0 5px;
    font-size: 12px;
    -webkit-transition: color 0.3s ease, border 0.3s ease;
    transition: color 0.3s ease, border 0.3s ease;
  }
  .header.on {
    background-color: #4B0A0A;
  }
  .header.on .header__logo:after {
    opacity: 1;
  }
  .header.on .header__btn {
    color: #fff;
    border-color: #fff;
  }
}
/* ===================================

    footer

=================================== */
.footer {
  overflow: hidden;
  padding: 100px 0 120px;
  text-align: center;
  background: #2b0000;
}
.footer * {
  line-height: 1;
  color: #fff;
}
.footer .inner {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.footer__logo {
  width: 176px;
  margin: auto;
}
.footer__sitemap {
  margin-top: 30px !important;
  font-size: 10px;
}
.footer__sitemap a {
  font-size: 10px;
}
.footer__sitemap ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 20px -12px;
}
.footer__sitemap ul li {
  padding: 0 12px;
  margin: 6px 0;
}
.footer__sitemap ul li:not(:first-child) {
  border-left: 1px solid #fff;
}
.footer__sns-list {
  margin-top: 40px !important;
}
.footer__sns-list p {
  font-size: 10px;
}
.footer__sns-list ul {
  margin-top: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.footer__sns-list ul li {
  width: 40px;
}
.footer__sns-list ul li + li {
  margin-left: 20px;
}
.footer__sns-list ul li a {
  display: block;
}
.footer__copyright {
  display: block;
  margin-top: 40px;
  font-size: 11px;
}
.footer__copyright {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.footer__fixreserve {
  position: fixed;
  right: 0;
  z-index: 99;
}
.footer__fixreserve ul {
  text-align: center;
  line-height: 1;
  font-size: 16px;
}
.footer__fixreserve ul li a {
  display: block;
  padding: 20px 10px;
  color: #fff;
  cursor: pointer;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__fixreserve ul li a:hover {
  opacity: 0.8;
}
.footer__fixreserve ul li a {
  background: #2c0100;
}
@media screen and (min-width: 769px) {
  .footer__fixreserve ul li a.sp {
    display: none;
  }
  .footer__fixreserve {
    top: 47.5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .footer__fixreserve ul li a {
    width: 48px;
  }
  .footer__fixreserve ul li:first-child a {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
  .footer .inner-padding--lg {
    padding: 0 30px;
  }
  .footer__fixreserve {
    bottom: 0;
    width: 100%;
    transition: -webkit-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    z-index: 98;
  }
  html.js-fixreserve .footer__fixreserve {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .footer__fixreserve ul {
    display: -webkit-box;
    display: flex;
  }
  .footer__fixreserve ul li {
    width: 50%;
  }
  .footer__fixreserve ul li a {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .footer__fixreserve ul li:first-child a {
    border-right: 1px solid #fff;
  }
  .footer__fixreserve ul li a.pc {
    display: none;
  }
  .footer__fixreserve ul li a:before {
    content: "";
    display: block;
    margin-right: 10px;
  }
  .footer__fixreserve ul li:nth-child(1) a:before {
    width: 18px;
    height: 30px;
    background: no-repeat center/contain url(/images/common/tel_icon.svg);
  }
  .footer__fixreserve ul li:nth-child(2) a:before {
    width: 28px;
    height: 20px;
    background: no-repeat center/contain url(/images/common/web_icon.svg);
  }
}
.head_banner {
  width: 100%;
  background-color: #2B0000;
}
.head_banner a {
  color: #fff;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 13px;
  line-height: 32px;
  height: 32px;
}
.top {
  background: #FAF7F5;
}
.top__slider {
  width: 100%;
}
.top__slider__swiper__slide {
  position: relative;
}
.top__slider__swiper__slide__img img {
  width: 100%;
}
.top__slider__swiper__slide__txt {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: flex;
  width: 50%;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.top__slider__swiper__slide__title {
  font-size: 58px;
  font-weight: 500;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__slider__swiper__slide__description {
  font-size: 18px;
}
.top__slider__swiper__pagination {
  position: static;
  margin-top: 20px;
}
.top__slider__swiper__pagination__bullet {
  display: inline-block;
  margin: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-radius: 100%;
}
.top__slider__swiper__pagination__bullet--active {
  background-color: #2B0000;
}
.top__news {
  padding: 50px 20px 100px;
}
.top__news__entitle {
  text-align: center;
}
.top__news__entitle svg {
  margin: 0 auto;
  width: 300px;
  max-width: 100%;
}
.top__news__entitle span {
  display: none;
}
.top__news__title {
  margin-top: 15px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__news__description {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
}
.top__news__description + .top__news__list {
  margin-top: 80px;
}
.top__news__list {
  display: -webkit-box;
  display: flex;
  margin-top: 40px;
  gap: 20px;
}
.top__news__item {
  width: 33%;
}
.top__news__item__date {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.top__news__item__title {
  font-size: 20px;
  font-weight: 600;
}
.top__news__btn {
  margin-top: 60px;
}
.top__news__btn .g-btnWh {
  display: block;
  width: 244px;
  margin: 0 auto;
}
.top__about {
  background-color: #fff;
  padding: 140px 0;
}
.top__about__wrapper {
  display: -webkit-box;
  display: flex;
  max-width: 100%;
}
.top__about__img {
  width: 52.5%;
  -webkit-box-ordinal-group: 2;
          order: 1;
}
.top__about__txt {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
  width: 47.5%;
  padding: 0 5vw;
}
.top__about__txt__inner {
  max-width: 425px;
}
.top__about__entitle svg {
  width: 80px;
  margin: 0;
}
.top__about__entitle span {
  display: none;
}
.top__about__title {
  margin-top: 15px;
  font-size: 36px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__about__description {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.8;
}
.top__about__btn {
  margin-top: 60px;
}
.top__eyebrow-treatment {
  padding: 140px 120px;
  overflow: hidden;
}
.top__eyebrow-treatment__wrapper {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.top__eyebrow-treatment__wrapper:nth-of-type(2) {
  margin-top: 150px;
}
.top__eyebrow-treatment__txt {
  width: 50%;
}
.top__eyebrow-treatment__entitle {
  padding-left: 100px;
  width: 100%;
}
.top__eyebrow-treatment__entitle span {
  font-size: 20px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__eyebrow-treatment__title {
  padding-left: 100px;
  margin-top: 15px;
  font-size: 36px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__eyebrow-treatment__description {
  margin-top: 15px;
  font-size: 18px;
}
.top__eyebrow-treatment__btns {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 60px;
}
.top__eyebrow-treatment__btns .g-btn,
.top__eyebrow-treatment__btns .g-btnWh {
  display: block;
}
.top__eyebrow-treatment__swiper__prev {
  position: absolute;
  top: 35%;
  left: auto;
  right: 100%;
  width: 50px;
  height: 50px;
  margin-right: 50px;
  border-radius: 100%;
  border: 1px solid #2B0000;
}
.top__eyebrow-treatment__swiper__prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border-left: 1px solid #2B0000;
  border-bottom: 1px solid #2B0000;
  -webkit-transform: translate(-25%, -50%) rotateX(45deg) rotateZ(45deg);
          transform: translate(-25%, -50%) rotateX(45deg) rotateZ(45deg);
}
.top__eyebrow-treatment__swiper__next {
  position: absolute;
  top: 35%;
  left: 100%;
  width: 50px;
  height: 50px;
  margin-left: 50px;
  border-radius: 100%;
  border: 1px solid #2B0000;
}
.top__eyebrow-treatment__swiper__next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #2B0000;
  border-bottom: 1px solid #2B0000;
  -webkit-transform: translate(-75%, -50%) rotateX(-45deg) rotateZ(-45deg);
          transform: translate(-75%, -50%) rotateX(-45deg) rotateZ(-45deg);
}
.top__eyebrow-treatment__swiper__slide__img {
  margin-bottom: 40px;
}
.top__eyebrow-treatment__swiper__slide__category {
  font-size: 14px;
}
.top__eyebrow-treatment__swiper__slide__title {
  font-size: 16px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__eyebrow-treatment__swiper__slide__btn {
  margin-top: 40px;
}
.top__eyebrow-treatment__swiper__slide__btn .g-btnWh {
  display: block;
  width: 244px;
}
.top__professional-products {
  background-color: #fff;
  padding: 140px 0;
}
.top__professional-products__wrapper {
  display: -webkit-box;
  display: flex;
  max-width: 100%;
}
.top__professional-products__img {
  width: 52.5%;
}
.top__professional-products__txt {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  width: 47.5%;
  padding: 0 5vw;
}
.top__professional-products__txt__inner {
  max-width: 425px;
}
.top__professional-products__entitle span {
  font-size: 20px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__professional-products__title {
  margin-top: 15px;
  font-size: 36px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__professional-products__description {
  margin-top: 15px;
  font-size: 18px;
}
.top__professional-products__btn {
  margin-top: 60px;
}
.top__professional-products__btn .g-btnWh {
  display: block;
  width: 244px;
}
.top__salon {
  padding: 140px 0;
}
.top__salon__img {
  margin-top: 90px;
}
.top__salon__txt {
  text-align: center;
}
.top__salon__entitle {
  text-align: center;
}
.top__salon__entitle span {
  font-size: 20px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__salon__title {
  margin-top: 15px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.top__salon__description {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
}
.top__salon__btn {
  margin-top: 110px;
}
.top__salon__btn .g-btnWh {
  display: block;
  margin: 0 auto;
  width: 244px;
}
.top__follow {
  overflow: hidden;
  padding: 140px 0;
  background-color: #fff;
}
.top__follow__wrapper {
  max-width: 100%;
}
.top__follow__imgs {
  display: -webkit-box;
  display: flex;
  gap: 15px;
  margin-top: 90px;
}
.top__follow__imgs a {
  display: block;
  width: 16%;
  width: calc(16.66667% - 12.5px);
}
.top__follow__imgs img {
  vertical-align: middle;
}
.top__follow__entitle svg {
  margin: 0 auto;
}
.top__follow__entitle span {
  display: none;
}
@media screen and (max-width: 768px) {
  .top__slider__swiper__slide__img {
    height: 70vh;
    height: calc(100vh - 134px);
  }
  .top__slider__swiper__slide__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 80%;
       object-position: center 80%;
  }
  .top__slider__swiper__slide__txt {
    top: auto;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: auto;
  }
  .top__slider__swiper__slide__title {
    font-size: 10vw;
  }
  .top__slider__swiper__slide__description {
    display: none;
  }
  .top__slider__swiper__pagination {
    position: absolute;
  }
  .top__news__entitle svg {
    height: 14px;
  }
  .top__news__title {
    font-size: 30px;
  }
  .top__news__list {
    display: block;
  }
  .top__news__item {
    width: 100%;
    margin-bottom: 35px;
  }
  .top__about {
    padding: 80px 20px;
  }
  .top__about__wrapper {
    display: block;
  }
  .top__about__img {
    margin-bottom: 60px;
    width: 100%;
  }
  .top__about__txt {
    width: 100%;
    padding: 0;
  }
  .top__about__entitle svg {
    height: 14px;
  }
  .top__about__title {
    font-size: 30px;
    white-space: nowrap;
  }
  .top__about__description {
    font-size: 16px;
  }
  .top__about__btn .g-btnWh {
    margin: 0 auto;
  }
  .top__eyebrow-treatment {
    padding: 60px 0;
  }
  .top__eyebrow-treatment__wrapper {
    display: block;
  }
  .top__eyebrow-treatment__wrapper:nth-of-type(1) {
    padding: 0 20px;
  }
  .top__eyebrow-treatment__txt {
    width: 100%;
  }
  .top__eyebrow-treatment__entitle {
    padding: 0;
  }
  .top__eyebrow-treatment__entitle svg {
    height: 14px;
    width: auto;
  }
  .top__eyebrow-treatment__title {
    padding: 0;
    font-size: 30px;
  }
  .top__eyebrow-treatment__description {
    font-size: 16px;
  }
  .top__eyebrow-treatment__btns {
    display: block;
  }
  .top__eyebrow-treatment__btns .g-btnWh {
    margin: 0 auto 20px;
  }
  .top__eyebrow-treatment__btns .g-btn {
    margin: 0 auto;
  }
  .top__eyebrow-treatment__swiper__prev {
    margin: 0 0 20px;
    left: 20px;
    top: auto;
    bottom: 100%;
    width: 32px;
    height: 32px;
  }
  .top__eyebrow-treatment__swiper__next {
    margin: 0 0 20px;
    left: 80px;
    top: auto;
    bottom: 100%;
    width: 32px;
    height: 32px;
  }
  .top__eyebrow-treatment__swiper__slide {
    width: 80%;
    padding-left: 20px;
  }
  .top__professional-products {
    padding: 50px 0;
  }
  .top__professional-products__wrapper {
    display: block;
  }
  .top__professional-products__img {
    margin-bottom: 60px;
    width: 100%;
  }
  .top__professional-products__txt {
    width: 100%;
    padding: 0 20px;
  }
  .top__professional-products__entitle svg {
    width: auto;
    height: 14px;
  }
  .top__professional-products__title {
    font-size: 30px;
    white-space: nowrap;
  }
  .top__professional-products__description {
    font-size: 16px;
  }
  .top__professional-products__btn .g-btnWh {
    margin: 0 auto;
  }
  .top__salon {
    padding: 90px 20px;
  }
  .top__salon__entitle svg {
    margin: 0;
    height: 14px;
  }
  .top__salon__title {
    text-align: left;
    font-size: 30px;
  }
  .top__salon__description {
    text-align: left;
    font-size: 16px;
  }
  .top__salon__img {
    margin-top: 30px;
  }
  .top__salon__btn {
    margin-top: 60px;
  }
  .top__follow {
    padding: 90px 20px;
  }
  .top__follow__entitle svg {
    height: 22px;
    width: auto;
  }
  .top__follow__imgs {
    gap: 10px;
    flex-wrap: wrap;
  }
  .top__follow__imgs a {
    width: 45%;
    width: calc(50% - 5px);
  }
}
@media only screen and (min-width: 431px) {
  .page-about .pc_hide {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
  .page-about .sp_hide {
    display: none;
  }
}
.page-about .h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: center;
  font-weight: 400;
}
.page-about .p-read {
  font-size: 22px;
  line-height: 1.9;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .page-about .p-read {
    font-size: 18px;
  }
}
.page-about__head {
  background-color: #FAF7F5;
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-about__head .wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media only screen and (max-width: 430px) {
  .page-about__head .wrapper {
    flex-wrap: wrap;
  }
}
.page-about__head__txt h1 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-about__head__txt p {
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
}
@media only screen and (min-width: 431px) {
  .page-about__head__txt {
    width: 40%;
  }
}
@media only screen and (max-width: 430px) {
  .page-about__head__txt {
    width: 100%;
    margin-bottom: 50px;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .page-about__head__txt h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .page-about__head__txt p {
    font-size: 18px;
  }
}
.page-about__head__img {
  width: 60%;
}
@media only screen and (max-width: 430px) {
  .page-about__head__img {
    -webkit-box-ordinal-group: 2;
            order: 1;
    width: 100%;
  }
}
@media only screen and (max-width: 430px) {
  .page-about__head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-about .list_txt h2 {
  line-height: 1.9;
  font-size: 24px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 430px) {
  .page-about .list_txt h2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
}
.page-about .list_txt p {
  font-size: 22px;
  line-height: 1.9;
  margin-bottom: 5px;
}
@media only screen and (max-width: 430px) {
  .page-about .list_txt p {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
.page-about .list_txt .p-18 {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 5px;
}
.page-about .list_txt .time {
  border: #2B0000 1px solid;
  font-size: 18px;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  display: inline-block;
}
.page-about .list_txt .price {
  font-family: "Spectral", serif;
  font-size: 40px;
  margin-bottom: 0;
}
.page-about .list_txt .price span {
  font-size: 25px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media only screen and (max-width: 430px) {
  .page-about .list_txt .price span {
    font-size: 22px;
  }
}
.page-about__intro {
  padding: 100px 20px;
  text-align: center;
}
.page-about__intro__wrapper {
  max-width: 860px;
}
.page-about__intro h2 {
  margin: 60px auto;
  font-size: 44px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
}
.page-about__intro p {
  font-size: 22px;
  line-height: 1.8;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-about__intro {
    padding: 70px 20px;
  }
  .page-about__intro h2 {
    font-size: 36px;
  }
  .page-about__intro p {
    font-size: 18px;
    line-height: 2.2;
  }
}
.page-about__example {
  padding-top: 90px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: #FAF7F5;
}
@media only screen and (max-width: 430px) {
  .page-about__example .g-btnWh {
    display: block;
    margin: 80px auto 0;
  }
}
.page-about__example .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.page-about__example__head {
  display: -webkit-box;
  display: flex;
  max-width: 1040px;
  margin: 0 auto 80px;
}
@media only screen and (max-width: 430px) {
  .page-about__example__head {
    display: block;
    padding: 0 20px;
  }
}
.page-about__example__head .left {
  width: 50%;
}
.page-about__example__head .left h2 {
  font-weight: 600;
  font-size: 36px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-about__example__head .left {
    width: 100%;
  }
  .page-about__example__head .left h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.page-about__example__head .right {
  width: 50%;
}
.page-about__example__head .right p {
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 50px;
}
.page-about__example__head .right a {
  display: block;
  width: 280px;
}
@media only screen and (max-width: 430px) {
  .page-about__example__head .right {
    width: 100%;
  }
}
.page-about__eyebrow-treatment {
  padding: 140px 0;
}
.page-about__eyebrow-treatment__txt {
  padding: 70px 20px 20px;
}
.page-about__eyebrow-treatment__title {
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-about__eyebrow-treatment__description {
  margin-bottom: 50px;
  text-align: center;
  font-size: 22px;
}
.page-about__eyebrow-treatment__btns {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 45px;
}
.page-about__eyebrow-treatment__btns .g-btnWh {
  width: 244px;
}
.page-about__eyebrow-treatment__btns .g-btn {
  width: 244px;
}
@media only screen and (max-width: 430px) {
  .page-about__eyebrow-treatment {
    padding: 80px 0;
  }
  .page-about__eyebrow-treatment__txt {
    padding: 60px 20px 20px;
  }
  .page-about__eyebrow-treatment__title {
    text-align: left;
    font-size: 30px;
  }
  .page-about__eyebrow-treatment__description {
    text-align: left;
    font-size: 20px;
  }
  .page-about__eyebrow-treatment__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    gap: 20px;
  }
}
.page-reserve__header {
  padding: 70px 0;
  background: #FAF7F5;
}
@media screen and (max-width: 768px) {
  .page-reserve__header {
    padding: 30px 0;
  }
}
.page-reserve__header .p-reservation-nav {
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}
.page-reserve__header .p-reservation-nav .nav-item {
  width: 50%;
}
.page-reserve__header .p-reservation-nav .nav-item:not(:last-child) {
  border-right: #707070 1px solid;
}
.page-reserve__header .p-reservation-nav .nav-item-link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 60px;
  margin: auto;
  line-height: 1.4;
  font-weight: 500;
  color: #4b090a;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .page-reserve__header .p-reservation-nav .nav-item-link {
    font-size: 18px;
    height: 30px;
  }
}
.page-reserve__header .p-reservation-nav .nav-item-link span::after {
  margin-left: 2.2rem;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 13px;
  height: 9px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14.125'%20height='10.5'%20viewBox='0%200%2014.125%2010.5'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20none;%20stroke:%20%232c0100;%20stroke-width:%201px;%20fill-rule:%20evenodd;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20id='chevron_down_ic01'%20class='cls-1'%20d='M677.032,350.645l-6.565,8.914-6.566-8.914'%20transform='translate(-663.406%20-349.562)'/%3e%3c/svg%3e") no-repeat;
  background-size: contain;
}
.page-reserve__tel__head {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 430px) {
  .page-reserve__tel__head {
    padding: 50px 20px;
  }
}
.page-reserve__tel__head h1 {
  font-size: 36px;
  color: #4B0A0A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-reserve__tel__head h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.page-reserve__tel__head__content {
  display: inline-block;
  padding: 40px;
  border: 1px solid #2B0000;
  text-align: center;
}
.page-reserve__tel__head__content h2 {
  font-size: 22px;
  color: #2b0000;
  font-weight: normal;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-reserve__tel__head__content .telnumber {
  margin: 20px 0;
  line-height: 1;
  font-size: 48px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-reserve__tel__head__content p {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
@media only screen and (max-width: 430px) {
  .page-reserve__tel__head__content {
    width: 100%;
    padding: 20px;
  }
  .page-reserve__tel__head__content h2 {
    font-size: 20px;
  }
  .page-reserve__tel__head__content .telnumber {
    font-size: 38px;
  }
}
.page-reserve__tel__body .wrapper {
  padding: 50px;
  max-width: 1080px;
  background: #FDFAF9;
}
.page-reserve__tel__body .wrapper .c-box-area {
  max-width: 680px;
  margin: 0 auto;
}
.page-reserve__tel__body .wrapper .c-head-normal {
  font-weight: normal;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-reserve__tel__body .wrapper .c-list--check.is-reservation {
  font-size: 18px;
  font-family: system-ui, sans-serif;
  font-weight: normal;
}
.page-reserve__tel__body .wrapper .c-list--check > ul > li > span:before {
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cg%20transform='translate(-480%20-1078)'%3e%3crect%20width='24'%20height='24'%20transform='translate(480%201078)'%20fill='%23fff'/%3e%3cpath%20d='M10.973,14.007,7.4,10.271,6,11.7,11,17l8-8.6L17.545,7ZM2,2H22V22H2ZM0,24H24V0H0Z'%20transform='translate(480%201078)'%20fill='%234b0a0a'/%3e%3c/g%3e%3c/svg%3e") no-repeat 50% 50%/contain;
}
.page-reserve__tel__body .wrapper .c-list--check > ul > li > span > a {
  font-size: 13px;
  text-decoration: underline;
}
.page-reserve__tel__body .wrapper .c-list--check > ul > li > span > a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 5px;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='21.207'%20height='5.854'%20viewBox='0%200%2021.207%205.854'%3e%3cpath%20d='M192.207,22.5H171v-1h18.793l-4.146-4.146.707-.707Z'%20transform='translate(-171%20-16.646)'%20fill='%234b0a0a'/%3e%3c/svg%3e") no-repeat 50% 50%/contain;
}
.page-reserve__tel__body .wrapper .c-list--comment {
  margin: 0 auto;
  max-width: 824px;
}
.page-reserve__tel__body .wrapper .c-list--comment > ul > li > span {
  padding: 0;
  text-indent: 0;
}
.page-reserve__tel__body .wrapper .g-btnWh {
  display: block;
  margin: 80px auto 0;
  width: 428px;
  max-width: 100%;
}
@media only screen and (max-width: 430px) {
  .page-reserve__tel__body {
    padding: 0 20px;
  }
  .page-reserve__tel__body .wrapper {
    padding: 20px;
  }
  .page-reserve__tel__body .wrapper .c-text.u-align--center {
    text-align: left !important;
  }
  .page-reserve__tel__body .wrapper .c-box-area {
    margin: 40px 0;
    padding: 0;
  }
  .page-reserve__tel__body .wrapper .c-list--check.is-reservation {
    font-size: 16px;
  }
}
.page-reserve__online__head {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__head {
    padding-bottom: 50px;
  }
}
.page-reserve__online__head h1 {
  font-size: 36px;
  color: #4B0A0A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__head h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.page-reserve__online__head p {
  font-size: 18px;
  color: #4B0A0A;
  text-align: center;
  line-height: 1.8;
}
.page-reserve__online__head p .pc_hide {
  display: none;
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__head p {
    font-size: 16px;
  }
  .page-reserve__online__head p .pc_hide {
    display: block;
  }
}
.page-reserve__online__head__nav {
  margin-top: 60px;
}
@media only screen and (min-width: 431px) {
  .page-reserve__online__head__nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 431px) {
  .page-reserve__online__head__nav li {
    margin-left: 30px;
  }
  .page-reserve__online__head__nav li:first-child {
    margin-left: 0;
  }
}
.page-reserve__online__head__nav li a {
  width: 160px;
  display: block;
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__head__nav li a {
    margin: 0 auto 20px;
    padding: 15px 20px;
  }
}
.page-reserve__online__body {
  background-color: #FAF7F5;
  padding: 100px 20px;
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__body {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.page-reserve__online__body__section {
  margin-bottom: 100px;
}
.page-reserve__online__body__section h3 {
  color: #2B0000;
  font-size: 23px;
  margin-bottom: 35px;
}
@media only screen and (min-width: 431px) {
  .page-reserve__online__body ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-reserve__online__body ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__body ul {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .page-reserve__online__body ul li {
    margin-bottom: 25px;
  }
}
.page-reserve__online__body ul li a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 68px;
  padding: 5px 30px;
  min-height: 65px;
  background-color: #fff;
}
.page-reserve__online__body ul li a .icon {
  width: 33px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}
.page-reserve__online__body ul li a .icon img {
  width: 100%;
}
.page-reserve__online__body ul li a span {
  font-size: 13px;
  color: #4B0A0A;
}
@media only screen and (min-width: 431px) {
  .page-menu .pc_hide {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu .sp_hide {
    display: none;
  }
}
.page-menu .h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: center;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-menu .p-read {
  font-size: 22px;
  line-height: 1.9;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .page-menu .p-read {
    font-size: 18px;
  }
}
.page-menu__head {
  background-color: #FAF7F5;
}
.page-menu__head .wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media only screen and (max-width: 430px) {
  .page-menu__head .wrapper {
    display: block;
  }
}
.page-menu__head h1 {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-menu__head__txt h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.page-menu__head__txt h3 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  margin-bottom: 30px;
}
.page-menu__head__txt p {
  font-size: 22px;
  text-align: center;
  line-height: 1.9;
}
@media only screen and (min-width: 431px) {
  .page-menu__head__txt {
    -webkit-box-ordinal-group: 3;
            order: 2;
    width: 60%;
    padding: 0 5%;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__head__txt {
    margin-top: 50px;
  }
  .page-menu__head__txt p {
    font-size: 18px;
  }
}
.page-menu__head__img {
  -webkit-box-ordinal-group: 2;
          order: 1;
  width: 40%;
}
@media only screen and (max-width: 430px) {
  .page-menu__head__img {
    width: 100%;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__head {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-menu__head h1 {
    font-size: 29px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
  }
}
.page-menu .list_txt h2 {
  line-height: 1.9;
  font-size: 24px;
  margin-bottom: 5px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-menu .list_txt h2 {
    font-size: 22px;
    margin-bottom: 35px;
    text-wrap: unset;
  }
}
.page-menu .list_txt p {
  font-size: 22px;
  line-height: 1.9;
  margin-bottom: 5px;
}
@media only screen and (max-width: 430px) {
  .page-menu .list_txt p {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
.page-menu .list_txt .p-18 {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 5px;
}
.page-menu .list_txt .time {
  border: #2B0000 1px solid;
  font-size: 18px;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  display: inline-block;
}
.page-menu .list_txt .price {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 40px;
  margin-bottom: 0;
}
.page-menu .list_txt .price span {
  font-size: 25px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-menu .list_txt .price span {
    font-size: 22px;
  }
}
.page-menu__menulist {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 430px) {
  .page-menu__menulist {
    padding: 80px 15px;
  }
}
.page-menu__menulist .caption {
  font-size: 18px;
  margin-top: 40px;
}
@media only screen and (max-width: 430px) {
  .page-menu__menulist .caption {
    font-size: 16px;
    line-height: 1.8;
  }
}
.page-menu__menulist__row {
  border-top: 1px solid #2B0000;
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: flex;
}
@media only screen and (max-width: 430px) {
  .page-menu__menulist__row {
    display: block;
  }
}
.page-menu__menulist__row.last {
  border-bottom: 1px solid #2B0000;
}
.page-menu__menulist__row__img {
  width: 39%;
}
@media only screen and (max-width: 430px) {
  .page-menu__menulist__row__img {
    width: 100%;
    margin-bottom: 35px;
  }
}
.page-menu__menulist__row__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.page-menu__menulist__row__txt {
  width: 61%;
  padding-left: 60px;
}
@media only screen and (max-width: 430px) {
  .page-menu__menulist__row__txt {
    width: 100%;
    padding-left: 0;
  }
}
.page-menu__aoyamamenu {
  margin-top: 110px;
}
.page-menu__aoyamamenu p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (max-width: 430px) {
  .page-menu__aoyamamenu p {
    font-size: 22px;
    line-height: 1.8;
  }
}
.page-menu__aoyamamenu ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 430px) {
  .page-menu__aoyamamenu ul {
    display: block;
  }
}
@media only screen and (min-width: 431px) {
  .page-menu__aoyamamenu ul li:first-child {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__aoyamamenu ul li:first-child {
    margin-bottom: 30px;
  }
}
.page-menu__aoyamamenu ul li a {
  display: block;
}
@media only screen and (max-width: 430px) {
  .page-menu__aoyamamenu ul li a {
    margin: auto;
  }
}
.page-menu__step {
  padding-top: 150px;
  padding-bottom: 230px;
  background-color: #FAF7F5;
}
@media only screen and (max-width: 430px) {
  .page-menu__step {
    padding: 80px 20px 120px;
  }
}
.page-menu__step h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 100px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
@media only screen and (min-width: 431px) {
  .page-menu__step__li {
    width: 50%;
    margin-top: -15%;
  }
  .page-menu__step__li:nth-of-type(1) {
    margin-top: 0;
  }
  .page-menu__step__li:nth-of-type(1) .txt {
    max-width: 515px;
  }
  .page-menu__step__li:nth-of-type(1) .txt p {
    max-width: none;
  }
  .page-menu__step__li:nth-of-type(2) .txt {
    max-width: 605px;
  }
  .page-menu__step__li:nth-of-type(2) .txt p {
    max-width: none;
  }
  .page-menu__step__li:nth-of-type(3) .txt {
    max-width: 545px;
  }
  .page-menu__step__li:nth-of-type(3) .txt p {
    max-width: 425px;
  }
  .page-menu__step__li:nth-of-type(2n) {
    margin-left: auto;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__step__li {
    margin-bottom: 110px;
  }
}
.page-menu__step__li img {
  max-width: 300px;
  margin-left: 10%;
  margin-bottom: 30px;
  display: block;
}
@media only screen and (max-width: 430px) {
  .page-menu__step__li img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 431px) {
  .page-menu__step__li .txt {
    padding-left: 65px;
    position: relative;
    max-width: 510px;
  }
}
.page-menu__step__li .txt .num {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  color: #fff;
  font-size: 22px;
  line-height: 45px;
  background-color: #2B0000;
  text-align: center;
}
@media only screen and (min-width: 431px) {
  .page-menu__step__li .txt .num {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__step__li .txt .num {
    margin-bottom: 20px;
  }
}
.page-menu__step__li .txt h3 {
  text-wrap: unset;
  font-size: 30px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 430px) {
  .page-menu__step__li .txt h3 {
    font-size: 22px;
    line-height: 1.8;
  }
}
.page-menu__step__li .txt p {
  font-size: 22px;
  line-height: 1.9;
  max-width: 445px;
}
.page-menu__step__li .txt p span {
  white-space: nowrap;
}
@media only screen and (max-width: 430px) {
  .page-menu__step__li .txt p {
    font-size: 18px;
  }
}
.page-menu__option {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 430px) {
  .page-menu__option {
    padding: 80px 20px;
  }
}
.page-menu__option .g-btnWh {
  display: block;
  margin: 0 auto;
  max-width: 240px;
}
.page-menu__option__col2 {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (min-width: 431px) {
  .page-menu__option__col2 {
    display: -webkit-box;
    display: flex;
  }
  .page-menu__option__col2 .img {
    width: 50%;
  }
  .page-menu__option__col2 .txt {
    width: 50%;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__option__col2 .img {
    margin-bottom: 80px;
  }
}
.page-menu__option__row {
  border-bottom: 1px solid #2B0000;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-menu__option__row:nth-child(1) {
  border-top: 1px solid #2B0000;
}
.page-menu__lesson {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #FAF7F5;
}
@media only screen and (max-width: 430px) {
  .page-menu__lesson {
    padding: 80px 20px;
  }
}
.page-menu__lesson .page-menu__menulist__row {
  margin-top: 110px;
}
@media only screen and (max-width: 430px) {
  .page-menu__lesson .page-menu__menulist__row {
    margin-top: 80px;
  }
}
.page-menu__lesson .h2 {
  font-weight: 600;
  margin-left: -20px;
  margin-right: -20px;
}
.page-menu__lesson .h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  text-align: center;
  margin-top: 110px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 430px) {
  .page-menu__lesson .h3 {
    margin-top: 90px;
    font-size: 36px;
  }
}
@media only screen and (min-width: 431px) {
  .page-menu__lesson .store_list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
  }
  .page-menu__lesson .store_list a {
    margin-right: 40px;
  }
  .page-menu__lesson .store_list a:last-child {
    margin-right: 0;
  }
  .page-menu__lesson .store_list .g-btnWh {
    min-width: 280px;
  }
  .page-menu__lesson .store_list + .store_list {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .page-menu__lesson .store_list a {
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }
}
.page-menu__example {
  padding-top: 90px;
  padding-bottom: 140px;
  overflow: hidden;
}
@media only screen and (max-width: 430px) {
  .page-menu__example .g-btnWh {
    display: block;
    margin: 80px auto 0;
  }
}
.page-menu__example .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.page-menu__example__head {
  display: -webkit-box;
  display: flex;
  max-width: 1040px;
  margin: 0 auto 80px;
}
@media only screen and (max-width: 430px) {
  .page-menu__example__head {
    display: block;
    padding: 0 20px;
  }
}
.page-menu__example__head .left {
  width: 50%;
}
@media only screen and (max-width: 430px) {
  .page-menu__example__head .left {
    width: 100%;
  }
  .page-menu__example__head .left h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
  }
}
.page-menu__example__head .left h2 {
  font-weight: 600;
  font-size: 36px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-menu__example__head .right {
  width: 50%;
}
@media only screen and (max-width: 430px) {
  .page-menu__example__head .right {
    width: 100%;
  }
  .page-menu__example__head .right .g-btnWh {
    display: none;
  }
}
.page-menu__example__head .right p {
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 50px;
}
.page-menu__example__head .right a {
  display: block;
}
.page-salon-detail {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  /* -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt"; */
  color: #4c4948;
}
.page-salon-detail #information {
  padding: 20px 0;
}
.page-salon-detail #information .address {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  text-align: center;
  color: #4c4948;
}
.page-salon-detail #information .p-salon-information__item.action {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.page-salon-detail #information .schematic {
  display: block;
  width: 100%;
  margin-bottom: 3em;
  padding-top: 1em;
  text-align: center;
}
.page-salon-detail #information .schematic img {
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.page-salon-detail #information .schematic p {
  margin-top: 1em;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  color: #4c4948;
}
.page-salon-detail #map {
  margin: 30px 0 120px;
}
.page-salon-detail #map .map-wrap {
  height: 500px;
  position: relative;
}
.page-salon-detail #map .map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (min-width: 769px) {
  .page-salon-detail #brand.aoyama .c-flex-column-half > *:first-child:not(:last-child) {
    width: 30.078125%;
  }
  .page-salon-detail #brand.aoyama .c-flex-column-half > *:last-child:not(:first-child) {
    width: 69.921875%;
  }
}
.page-salon-detail #first {
  padding: 0 0 140px;
}
.page-salon-detail #option {
  padding: 0 0 120px;
}
.page-salon-detail p {
  margin-bottom: 2em;
}
.l-mainpage-salon em,
.l-mainpage-salon i {
  font-style: normal;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.p-salon-list__item p.information {
  color: #4c4948;
}
.page-salon {
  background-color: #FAF7F5;
}
.page-salon em,
.page-salon i {
  font-style: normal;
}
@media only screen and (min-width: 431px) {
  .page-salon .pc_hide {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
  .page-salon .sp_hide {
    display: none;
  }
}
.page-salon .h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.9;
  text-align: center;
  font-weight: 400;
}
.page-salon .p-read {
  font-size: 22px;
  line-height: 1.9;
  text-align: center;
}
@media only screen and (max-width: 430px) {
  .page-salon .p-read {
    font-size: 18px;
  }
}
.page-salon__head {
  padding: 60px 20px;
}
.page-salon__head__txt h1 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-salon__head__txt p {
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
}
@media only screen and (max-width: 430px) {
  .page-salon__head__txt h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .page-salon__head__txt p {
    font-size: 18px;
  }
}
.page-salon__head__btns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 30px;
}
.page-salon__head__btns .g-btn {
  width: 100%;
}
@media only screen and (max-width: 430px) {
  .page-salon__head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-salon__section {
  padding: 20px;
}
.page-salon__section__area {
  margin-bottom: 110px;
}
.page-salon__section__area__title {
  margin-bottom: 20px;
  font-size: 22px;
}
.page-salon__section__area__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 20px;
}
.page-salon__section__area__list__item {
  padding: 35px 50px;
  border-radius: 40px;
  background-color: #fff;
}
.page-salon__section__area__list__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  height: 100%;
  gap: 30px;
}
.page-salon__section__area__list__item__name {
  width: 100%;
  font-size: 22px;
  padding-right: 80px;
}
.page-salon__section__area__list__item__name i {
  display: none;
}
.page-salon__section__area__list__item__name i, .page-salon__section__area__list__item__name em {
  font-style: normal;
  font-size: 22px;
}
.page-salon__section__area__list__item__address {
  font-size: 16px;
}
.page-salon__section__area__list__item__info {
  font-size: 12px;
}
.page-salon__section__area__list__item.hpb a {
  position: relative;
}
.page-salon__section__area__list__item.hpb a:before {
  content: "予約";
  position: absolute;
  top: 10px;
  right: 50px;
  font-size: 14px;
}
.page-salon__section__area__list__item.hpb a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: no-repeat center/contain url(/images/common/hpb.png);
}
.page-salon__section__area__list__item.line a {
  position: relative;
}
.page-salon__section__area__list__item.line a:before {
  content: "予約";
  position: absolute;
  top: 10px;
  right: 50px;
  font-size: 14px;
}
.page-salon__section__area__list__item.line a:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 40px;
  height: 40px;
  background: no-repeat center/contain url(/images/common/icon-line.png);
}
.page-faq {
  background-color: #FAF7F5;
}
.page-faq__head {
  padding: 60px 20px;
  text-align: center;
}
.page-faq__head h1 {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-faq__head p {
  line-height: 1.6;
  font-size: 18px;
}
.page-faq__content {
  padding: 90px 20px;
}
.page-faq__content__wrapper {
  max-width: 1200px;
}
.page-faq__content__block {
  display: -webkit-box;
  display: flex;
  margin-bottom: 110px;
}
.page-faq__content__block__title {
  width: 35%;
  font-size: 36px;
  font-weight: 400;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-faq__content__block__list {
  width: 65%;
}
.page-faq__content__block__list__item {
  padding: 30px 0;
  border-top: 1px solid #4B0A0A;
}
.page-faq__content__block__list__item__summary {
  position: relative;
  padding-right: 40px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
}
.page-faq__content__block__list__item__summary::marker {
  content: "";
  display: none;
}
.page-faq__content__block__list__item__summary::-webkit-details-marker {
  content: "";
  display: none;
}
.page-faq__content__block__list__item__summary:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 1px;
  height: 20px;
  background-color: #4B0A0A;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-faq__content__block__list__item__summary:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #4B0A0A;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-faq__content__block__list__item__name {
  font-size: 22px;
  line-height: 2;
}
.page-faq__content__block__list__item__content__inner {
  padding: 30px 0 0;
  font-size: 18px;
}
.page-faq__content__block__list__item__content__inner p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.page-faq__content__block__list__item__content__inner p:last-child {
  margin: 0;
}
.page-faq__content__block__list__item:last-child {
  border-bottom: 1px solid #4B0A0A;
}
.page-faq__content__block__list__item.is-opened .page-faq__content__block__list__item__summary:before {
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .page-faq__head h1 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .page-faq__head p {
    padding: 0 30px;
    font-size: 16px;
  }
  .page-faq__content {
    padding: 5px 20px;
  }
  .page-faq__content__block {
    display: block;
  }
  .page-faq__content__block__title {
    margin-bottom: 40px;
    width: 100%;
    font-size: 30px;
  }
  .page-faq__content__block__list {
    width: 100%;
  }
  .page-faq__content__block__list__item__summary {
    font-size: 22px;
  }
  .page-faq__content__block__list__item__summary:before, .page-faq__content__block__list__item__summary:after {
    top: 22px;
  }
  .page-faq__content__block__list__item__name {
    font-size: 18px;
    line-height: 1.6;
  }
  .page-faq__content__block__list__item__content__inner {
    font-size: 16px;
  }
  .page-faq__content__block__list__item__content__inner p {
    font-size: 16px;
  }
}
.p-news-article__head, .c-list--check.is-reservation, .u-font--serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
}
.l-footer__fixreserve ul, .p-products-summary, .p-products-data__summary, .p-salon-prefecture__list, .p-salon-list__item a, .p-salon-information, .p-menu-option__overview, .p-menu-option__item, .p-formula, .p-formula__element, .trial-menu__item, .trial-menu__item .detail, .trial-menu__price, .trial-menu__price .price, .trial-menu-plus__price, .trial-menu-plus__price .price, .p-treatment-step__item, .p-treatment-step__item .detail, .p-news-list__item a, .p-news-article__data, .p-reservation-contact .inner, .p-reservation-contact__column, .p-reservation-nav, .p-navi-information ul, .p-navi-information li i, .c-flex-column-half, .c-flex-column-third, .c-flex-column-quarter, .c-column-half .c-column__item, .c-column-half .c-column__item .detail, .c-list--color .item-wrap, .slick-dots, body#top #news, body#top #menu .detail, body#top #concept .detail, body#products.pencil01 .p-description-color, body#products.pencil02 .p-description-color {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.page-campaign {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #4c4948;
}
.c-flex-column-half {
  flex-wrap: wrap;
}
.c-flex-column-half > * {
  width: 50%;
}
.c-flex-column-half > .c-flex-column__item:first-child:last-child {
  width: 100%;
}
.l-contents {
  overflow: hidden;
}
.l-contents .inner {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.l-contents .inner--sm {
  max-width: 760px;
}
.l-contents .inner--sm:not(:last-child) {
  margin-bottom: 60px;
}
.page-campaign p {
  margin-top: 1em;
  margin-bottom: 2em;
}
.l-section {
  width: 100%;
}
.l-section--full {
  width: 100%;
  padding: 0;
}
.l-headline__visual {
  height: 450px;
}
.l-headline__title {
  padding: 0 30px;
  margin-top: 100px;
  text-align: center;
  line-height: 1.2;
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 700;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  color: #2b0000;
}
.l-headline__title:after {
  content: attr(data-subtitle);
  display: block;
  margin-top: 15px;
  line-height: 1.2;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #4c4948;
}
.l-headline__title.white {
  color: #fff;
}
.l-headline__title.white:after {
  color: #fff;
}
.l-headline__title em {
  font-style: normal;
  display: block;
  font-size: 38px;
  font-size: 3.8rem;
}
.l-headline__title i {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
.l-headline__lead {
  padding: 0 30px;
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
.l-headline__campaign {
  text-align: center;
  line-height: 1;
}
.l-headline__campaign .date {
  display: -webkit-inline-box;
  display: inline-flex;
  margin-top: 60px;
}
.l-headline__campaign .date .year {
  font-size: 24px;
  font-size: 2.4rem;
  -webkit-transform: translate(0, 0.15em);
  transform: translate(0, 0.15em);
}
.l-headline__campaign .date .day {
  font-style: normal;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 700;
  color: #2b0000;
}
.l-headline__campaign .date .other {
  -webkit-align-self: flex-end;
  align-self: flex-end;
  font-size: 24px;
  font-size: 2.4rem;
  -webkit-transform: translate(0, -0.25em);
  transform: translate(0, -0.25em);
}
.l-headline__campaign .visual {
  margin-top: 20px;
  background: #2b0000;
}
.l-headline__campaign .visual img {
  margin: auto;
}
.l-headline--visual .l-headline__title, .l-headline--salon .l-headline__title {
  margin-top: 70px;
}
.l-headline--omotesando .l-headline__visual, .l-headline--aoyama .l-headline__visual {
  height: auto;
}
.l-headline--omotesando .l-headline__title, .l-headline--aoyama .l-headline__title {
  margin-top: 60px;
}
.l-headline--omotesando .l-headline__title .logo, .l-headline--aoyama .l-headline__title .logo {
  width: 240px;
  margin: auto;
}
.l-headline--omotesando .l-headline__title i, .l-headline--aoyama .l-headline__title i {
  margin-top: 20px;
}
.tokyo_10 .l-headline .l-headline__lead {
  margin-top: 3em;
}
/* --------------------------------------------

object

-------------------------------------------- */
.p-products-list__list {
  margin: -15px;
}
.p-products-list__item {
  width: 25%;
  padding: 15px;
  text-align: center;
  line-height: 1.2;
}
.p-products-list__item a {
  display: block;
  padding: 50px 20px;
  background: #fff;
}
.p-products-list__item .name {
  margin-top: 30px;
}
.p-products-list__item .name i {
  display: block;
}
.p-products-list__item .name em {
  display: block;
  margin-top: 5px;
  letter-spacing: 0;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-products-list__item .name--multiple i {
  margin-top: 5px;
}
.p-products-list__item .name--multiple em {
  margin-top: 0;
}
.p-products-summary {
  flex-wrap: wrap;
  margin-top: 180px;
  -webkit-box-pack: center;
          justify-content: center;
}
.p-products-summary .image,
.p-products-summary .detail {
  width: 100%;
}
.p-products-summary .image img,
.p-products-summary .detail img {
  margin: auto;
}
.p-products-data__summary {
  -webkit-box-pack: center;
          justify-content: center;
}
.p-products-data__summary .image img {
  margin: auto;
}
.p-products-data__spec {
  margin-top: 100px;
}
.p-products-data__spec .c-flex-column-third {
  -webkit-box-align: start;
          align-items: flex-start;
  margin: -20px;
}
.p-products-data__spec .c-flex-column__item {
  padding: 20px;
}
.p-products-data__spec .c-flex-column__item.color {
  -webkit-box-flex: 2;
          flex: 2;
}
.p-products-data__spec .c-flex-column__item.feature {
  -webkit-box-flex: 3;
          flex: 3;
}
.p-products-data__spec .c-flex-column__item.howto {
  -webkit-box-flex: 3;
          flex: 3;
}
.p-description-color {
  position: relative;
  line-height: 1;
}
.p-description-color__item {
  position: relative;
}
.p-description-color__item .number {
  position: absolute;
  height: 1em;
  margin: auto;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  opacity: 0.6;
}
.p-description-color .title {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-description-color .title i {
  display: block;
}
.p-description-color .title em {
  display: block;
  margin-top: 5px;
}
.p-description-image {
  position: relative;
}
.p-description-image__image {
  position: absolute;
  z-index: -1;
}
.p-salon-prefecture .c-head-border-solid {
  border-width: 2px;
}
.p-salon-prefecture__list {
  flex-wrap: wrap;
  margin: -5px;
}
.p-salon-prefecture__item {
  width: 25%;
  padding: 5px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.6em;
  font-size: 20px;
  font-size: 2rem;
}
.p-salon-prefecture__item a {
  display: block;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #ab939d;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-salon-prefecture__item a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid #2b0000;
  border-bottom: 1px solid #2b0000;
  -webkit-transform: translate(-20px, -75%) scaleX(0.6) rotate(45deg);
  transform: translate(-20px, -75%) scaleX(0.6) rotate(45deg);
}
.p-salon-list {
  margin-top: 80px;
}
.p-salon-list .c-head-border-solid {
  border-width: 2px;
}
.p-salon-list__item {
  line-height: 1.4;
}
.p-salon-list__item:not(:first-child) {
  border-top: 1px solid #ab939d;
}
.p-salon-list__item a {
  position: relative;
  padding: 20px 40px 20px 20px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-salon-list__item a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8em;
  height: 0.8em;
  border-top: 1px solid #2b0000;
  border-right: 1px solid #2b0000;
  -webkit-transform: translate(-20px, -50%) scaleY(0.6) rotate(45deg);
  transform: translate(-20px, -50%) scaleY(0.6) rotate(45deg);
}
.p-salon-list__item p.name {
  flex-basis: 240px;
  margin: 0;
  color: #2b0000;
}
.p-salon-list__item p.name i {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-salon-list__item p.name em {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}
.p-salon-list__item p.information {
  -webkit-box-flex: 1;
          flex: 1;
  padding-left: 1.5em;
  margin: 0;
}
.p-salon-information {
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 -30px;
  line-height: 1.4;
}
.p-salon-information__item {
  width: 33.3%;
  padding: 0 30px;
}
.p-salon-information__item.tel {
  -webkit-box-flex: 3;
          flex: 3 0 auto;
}
.p-salon-information__item.tel .title {
  margin: 0;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-weight: 700;
  color: #2b0000;
}
.p-salon-information__item.tel .number {
  display: block;
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: 700;
  color: #2b0000;
}
.p-salon-information__item.tel .date {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-salon-information__item.action {
  -webkit-box-flex: 2;
          flex: 2 0 auto;
}
.p-salon-information__item.action .hotpepper {
  display: block;
  width: 125px;
  margin: 0 auto 20px;
}
.p-salon-information__item.action .line {
  display: block;
  width: 50px;
  margin: 0 auto;
}
.p-salon-information__item.action .box {
  display: inline-block;
  max-width: unset;
}
.p-salon-information__item.action .qrcode {
  width: 100px;
  margin-left: 20px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-menu-eyebrow {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-feature-settings: 'palt';
}
.p-menu-eyebrow__list {
  border-top: 1px solid #ab939d;
}
.p-menu-eyebrow__item {
  padding: 30px 10px;
  line-height: 1.4;
  border-bottom: 1px solid #ab939d;
}
.p-menu-eyebrow__item .c-flex-column__item.left {
  -webkit-box-flex: 1;
          flex: 1;
}
.p-menu-eyebrow__item .c-flex-column__item.right {
  flex-basis: 200px;
  text-align: right;
}
.p-menu-eyebrow__item p.name {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2b0000;
}
.p-menu-eyebrow__item p.name i {
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-menu-eyebrow__item p.description {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-menu-eyebrow__item p.price {
  margin: 0;
  line-height: 1;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2b0000;
}
.p-menu-eyebrow__item p.price i {
  display: inline-block;
  margin-left: 5px;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transform: translate(0, -0.1em);
  transform: translate(0, -0.1em);
}
.p-menu-eyebrow + .c-list--comment {
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-menu-option__overview {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.p-menu-option__list {
  margin-top: 70px;
  border-top: 1px solid #ab939d;
}
.p-menu-option__item {
  padding: 30px 0 30px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  border-bottom: 1px solid #ab939d;
}
.p-menu-option__item p.name {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  flex-basis: 140px;
  margin: 0;
  font-weight: 700;
  color: #2b0000;
}
.p-menu-option__item p.description {
  -webkit-box-flex: 1;
          flex: 1;
  margin: 0;
}
.p-menu-option__item p.description .annotation {
  display: inline-block;
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
}
.p-menu-option__item p.price {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  flex-basis: 180px;
  margin: 0;
  text-align: right;
  font-weight: 700;
  color: #2b0000;
}
.p-menu-option__item p.price i {
  display: inline-block;
  margin-left: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-transform: translate(0, -0.1em);
  transform: translate(0, -0.1em);
  font-style: normal;
}
.p-menu-option + .c-list--comment {
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-formula {
  -webkit-box-align: stretch;
          align-items: stretch;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
.p-formula__element {
  -webkit-box-pack: center;
          justify-content: center;
  width: 29.4%;
  color: #2b0000;
  background: #faf7f5;
}
.p-formula__element .title {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #b30033;
}
.p-formula__element .title i {
  display: inline-block;
  margin-top: 5px;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-formula__element .price {
  line-height: 1;
  margin-bottom: 1.5em;
}
.p-formula__element .price > * {
  display: inline-block;
  vertical-align: middle;
}
.p-formula__element .price em {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
}
.p-formula__element .price i {
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: translate(0, 0.1em);
  transform: translate(0, 0.1em);
}
.p-formula__element .price i:not(:first-child) {
  margin-left: 5px;
}
.p-formula__element .c-text {
  padding-top: 1.5em;
  border-top: 1px solid #2b0000;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  color: #4c4948;
}
.p-formula__element--result {
  -webkit-box-flex: 1;
          flex: 1;
}
.p-formula__element--result .title {
  font-size: 24px;
  font-size: 2.4rem;
  color: inherit;
}
.p-formula__element--result .price em {
  margin-left: 10px;
  font-size: 52px;
  font-size: 5.2rem;
}
.p-formula__element--result .price i {
  font-size: 20px;
  font-size: 2rem;
}
.p-formula__symbol {
  position: relative;
  width: 5.9%;
}
.p-formula__symbol:before, .p-formula__symbol:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #2b0000;
}
.p-formula__symbol--plus:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.p-formula__symbol--equal:before {
  top: -10px;
}
.p-formula__symbol--equal:after {
  bottom: -10px;
}
.p-formula__supplement {
  width: 100%;
  margin: 40px 0;
}
.p-formula__supplement .title {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b0000;
}
.p-formula__supplement .price {
  line-height: 1;
}
.p-formula__supplement .price * {
  display: inline-block;
  vertical-align: middle;
}
.p-formula__supplement .price em {
  margin: 0 5px;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
}
.p-formula__supplement .price i {
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: translate(0, 0.1em);
  transform: translate(0, 0.1em);
}
.trial-menu {
  background-color: #f5f3f4;
}
.trial-menu h3 {
  padding: 30px 50px 50px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.trial-menu h3 em {
  display: block;
  font-size: 24.58px;
  font-size: 2.458rem;
}
.trial-menu__list {
  margin: -10px 0;
  counter-reset: number 0;
}
.trial-menu__item {
  padding: 10px 50px;
  margin-bottom: 40px;
}
.trial-menu__item .c-number {
  flex-basis: 80px;
  width: 80px;
  height: 80px;
}
.trial-menu__item .c-number__inner {
  padding: 0;
  line-height: 1;
}
.trial-menu__item .c-number__inner::after {
  counter-increment: number 1;
  content: counter(number);
  display: block;
  margin: 0 30px 0 0;
  font-size: 68px;
  font-size: 6.8rem;
  color: #b30033;
}
.trial-menu__item .detail {
  -webkit-box-ordinal-group: 2;
          order: 1;
  -webkit-box-align: start;
          align-items: flex-start;
  border-left: 1px solid #b30033;
}
.trial-menu__item .detail .text-wrap {
  padding: 0 0 0 30px;
}
.trial-menu__item .detail .text-wrap .title {
  line-height: 1.4;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #b30033;
}
.trial-menu__item .detail .text-wrap .title span {
  display: inline-block;
  margin-left: 1rem;
  font-size: 18px;
  font-size: 1.8rem;
}
.trial-menu__item .detail .text-wrap .c-text {
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.trial-menu__price {
  padding: 0 50px 50px;
  -webkit-box-align: center;
          align-items: center;
  align-content: flex-end;
}
.trial-menu__price .c-link {
  margin-right: 50px;
}
.trial-menu__price .c-link .c-button-arrow {
  margin-left: 1rem;
  max-width: auto !important;
}
.trial-menu__price .c-link .c-button-arrow--sm {
  padding: 8px 30px;
}
.trial-menu__price .price {
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
          justify-content: space-between;
  color: #2b0000;
}
.trial-menu__price .price em {
  margin: 0 0.5rem 0 1rem;
  font-size: 62px;
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1;
  color: #b30033;
}
.trial-menu__price .price i {
  display: inline-block;
  text-align: center;
  line-height: 1.6;
}
.trial-menu__price .price i:last-of-type {
  font-size: 20px;
  font-size: 2rem;
}
.trial-menu__salon {
  padding: 40px 0 30px;
  background-color: #e8e4e6;
}
.trial-menu__salon p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.trial-menu__salon p:first-child {
  margin-bottom: -15px;
}
.trial-menu-plus {
  background-color: #f5f3f4;
}
.trial-menu-plus h3 {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  padding: 10px 0;
  background-color: #4b090a;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}
.trial-menu-plus h3 em {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-style: normal;
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
}
.trial-menu-plus__list {
  margin: -10px 0;
  padding: 0;
}
.trial-menu-plus__list .p-formula__symbol {
  position: relative;
  top: -2.8rem;
  left: 50%;
}
.trial-menu-plus__list .p-formula__symbol::before {
  width: 25px;
  background: #b30033;
}
.trial-menu-plus__list .p-formula__symbol::after {
  width: 25px;
  background: #b30033;
}
.trial-menu-plus__item {
  padding: 0 50px;
  margin-bottom: 50px;
}
.trial-menu-plus__item:first-of-type {
  margin-bottom: 60px;
}
.trial-menu-plus__item .detail .text-wrap {
  padding: 20px 30px;
  background-color: #fff;
}
.trial-menu-plus__item .detail .text-wrap .title {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  padding-bottom: 10px;
  border-bottom: 1px solid #b30033;
  line-height: 1.4;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  color: #b30033;
  text-align: center;
}
.trial-menu-plus__item .detail .text-wrap .title em {
  font-style: normal;
  display: inline-block;
  padding: 0.2rem 1rem;
  margin-right: 1rem;
  background-color: #b30033;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}
.trial-menu-plus__item .detail .text-wrap .c-text {
  margin: 1rem 0;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #4b4b4b;
}
_:-ms-fullscreen, :root .trial-menu-plus__item {
  /* IE11以上 */
}
_:-ms-fullscreen .detail .text-wrap .title em, :root .trial-menu-plus__item .detail .text-wrap .title em {
  padding: 0.5rem 1rem 0;
}
.trial-menu-plus__price {
  padding: 0 50px 50px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  align-content: flex-end;
  font-feature-settings: 'palt';
}
.trial-menu-plus__price .c-link {
  margin-top: 1rem !important;
  margin-right: 50px;
}
.trial-menu-plus__price .c-link .c-button-arrow {
  margin-left: 1rem;
  max-width: auto !important;
}
.trial-menu-plus__price .c-link .c-button-arrow--sm {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-weight: 500;
  padding-right: 30px;
  padding-left: 30px;
}
.trial-menu-plus__price *:last-child .c-link {
  margin-right: 0;
}
.trial-menu-plus__price *:last-child .c-link .c-button-arrow {
  margin-left: 0;
}
.trial-menu-plus__price .price {
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
          justify-content: space-between;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  color: #2b0000;
}
.trial-menu-plus__price .price em {
  font-style: normal;
  margin: 0 0.5rem 0 1rem;
  font-size: 62px;
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1;
  color: #b30033;
}
.trial-menu-plus__price .price i {
  font-style: normal;
  display: inline-block;
  text-align: center;
  line-height: 1.6;
}
.trial-menu-plus__price .price i:last-of-type {
  font-size: 20px;
  font-size: 2rem;
}
_:-ms-fullscreen, :root .trial-menu-plus__price {
  /* IE11以上 */
  padding: 0 0 50px 50px;
}
_:-ms-fullscreen .price em, :root .trial-menu-plus__price .price em {
  position: relative;
  top: 1rem;
}
.trial-menu-plus__salon {
  padding: 35px 0 40px;
  background-color: #e8e4e6;
  color: #2b0000;
}
.trial-menu-plus__salon p {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #4b4b4b !important;
}
.trial-menu-plus__salon .c-button-arrow {
  font-weight: 500;
  max-width: 250px;
}
.p-campaign-first .c-head-border-solid {
  font-size: 26px;
  font-size: 2.6rem;
  color: #b30033;
}
.p-campaign-first .lead-text {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  line-height: 1.8;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-campaign-first .lead-text em {
  display: block;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #2b0000;
}
.p-campaign-first .present-text {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  margin: 60px 0;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  color: #3e1e1e;
}
_:-ms-fullscreen, :root .p-campaign-first {
  /* IE11以上 */
}
_:-ms-fullscreen .present-text, :root .p-campaign-first .present-text {
  font-size: 26px;
  font-size: 2.6rem;
}
_:-ms-fullscreen__item .detail .text-wrap .title em, :root .p-campaign-first__item .detail .text-wrap .title em {
  padding: 0.5rem 1rem 0;
}
_:-ms-fullscreen__price .price, :root .p-campaign-first__price .price {
  padding: 0 0 50px 50px;
}
_:-ms-fullscreen__price .price em, :root .p-campaign-first__price .price em {
  position: relative;
  top: 1rem;
}
.p-campaign-window .c-flex-column-half {
  -webkit-box-align: start;
          align-items: flex-start;
  margin: 0 -15px;
}
.p-campaign-window .c-flex-column__item {
  padding: 0 15px;
}
.p-campaign-window__date {
  display: block;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 20px;
  font-size: 2rem;
}
.p-campaign-window__tel {
  margin-top: 15px;
  line-height: 1;
}
.p-campaign-window__tel a {
  display: block;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 700;
  color: #2b0000;
}
.p-campaign-window__tel time {
  display: block;
  margin-top: 15px;
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-campaign-window__information {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  position: relative;
  padding-left: 32px;
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-campaign-window__information:before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2227.999%22%20height%3D%2227.999%22%20viewBox%3D%220%200%2027%2027%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%232b0000%3Bfill-rule%3Aevenodd%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M357.5%2C2438a13.5%2C13.5%2C0%2C1%2C1-13.5%2C13.5A13.5%2C13.5%2C0%2C0%2C1%2C357.5%2C2438Zm-1.775%2C15.77a0.811%2C0.811%2C0%2C0%2C0%2C.106.48%2C0.574%2C0.574%2C0%2C0%2C0%2C.382.32%2C0.626%2C0.626%2C0%2C0%2C0%2C.82-0.44l4-9.69a6.5%2C6.5%2C0%2C0%2C0%2C.236-0.74%2C2.176%2C2.176%2C0%2C0%2C0-.152-1.52%2C1.892%2C1.892%2C0%2C0%2C0-1.31-1.01%2C1.853%2C1.853%2C0%2C0%2C0-1.663.23%2C2.194%2C2.194%2C0%2C0%2C0-.867%2C1.23%2C7.047%2C7.047%2C0%2C0%2C0-.168.76Zm1.388%2C3.21a2.159%2C2.159%2C0%2C0%2C0-2.889-.76%2C2.017%2C2.017%2C0%2C0%2C0-.969%2C1.27%2C2.079%2C2.079%2C0%2C0%2C0%2C.206%2C1.58%2C1.987%2C1.987%2C0%2C0%2C0%2C1.281.99%2C2.028%2C2.028%2C0%2C0%2C0%2C1.6-.2%2C2%2C2%2C0%2C0%2C0%2C.972-1.28A2.034%2C2.034%2C0%2C0%2C0%2C357.113%2C2456.98Z%22%20transform%3D%22translate(-344%20-2438)%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%/contain;
}
.p-campaign-window .c-button-arrow {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-treatment-step__list {
  margin: -10px 0;
  counter-reset: number 0;
}
.p-visual {
  position: relative;
  background: #d9d2cd;
}
.p-visual .image {
  width: 100%;
  height: 100%;
}
.p-visual .image img {
  width: 100%;
}
.p-navi__list {
  border-top: 1px solid #ab939d;
}
.p-navi__item {
  padding: 18px 0;
  width: 100%;
  border-bottom: 1px solid #ab939d;
}
.p-navi__item > a {
  display: block;
  position: relative;
  padding-left: 25px;
  color: #fff;
}
.p-navi__item > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 4px;
  height: 1px;
  background: #fff;
}
.p-navi__item > a i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 1em;
  margin: auto;
  font-size: 10px;
  font-size: 1rem;
  color: #ab939d;
}
.p-navi-information {
  text-align: center;
}
.p-navi-information li {
  width: 33.333%;
}
.p-navi-information li a {
  display: block;
  padding: 10px;
  color: #fff;
  background: -webkit-linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
  background: linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
}
.p-navi-information li i {
  -webkit-box-pack: center;
          justify-content: center;
  height: 32px;
}
.p-navi-information li i .icon-tel {
  max-width: 20px;
}
.p-navi-information li i .icon-web {
  max-width: 28px;
}
.p-navi-information li i .icon-map {
  max-width: 23px;
}
.p-navi-information li span {
  display: block;
  margin-top: 5px;
}
.p-banner-nosecare {
  display: none;
}
.p-pager {
  margin-top: 50px;
  text-align: center;
  line-height: 1;
}
.p-pager a {
  cursor: pointer;
}
.p-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.p-preloader > * {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-preloader__title {
  width: 100%;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.c-flex-column-half {
  flex-wrap: wrap;
}
.c-flex-column-half > * {
  width: 50%;
}
.c-flex-column-half > .c-flex-column__item:first-child:last-child {
  width: 100%;
}
.c-flex-column-third {
  flex-wrap: wrap;
}
.c-flex-column-third > * {
  width: 33.3%;
}
.c-flex-column-quarter {
  flex-wrap: wrap;
}
.c-flex-column-quarter > * {
  width: 25%;
}
.c-column-half .c-column__item {
  -webkit-box-align: stretch;
          align-items: stretch;
  position: relative;
}
.c-column-half .c-column__item .image {
  overflow: hidden;
  position: relative;
  width: 50%;
}
.c-column-half .c-column__item .detail {
  width: 50%;
}
.c-column-half .c-column__item .detail__inner {
  max-width: 512px;
  padding: 40px 0;
  margin: auto;
}
.c-head-section {
  margin-top: 2em;
  margin-bottom: 0.8em;
  text-align: center;
  line-height: 1.4;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #2b0000;
}
.c-head-middle-section {
  padding-top: 9rem;
  padding-bottom: 6rem;
  text-align: center;
  display: block;
  width: 100%;
  border-bottom: 1px solid #2b0000;
  line-height: 1.4;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 700;
  color: #2b0000;
}
.c-head-normal {
  margin-top: 2em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #2b0000;
}
.c-head-normal i {
  display: block;
  font-size: 22px;
  font-size: 2.2rem;
}
.c-head-normal--lg {
  font-size: 38px;
  font-size: 3.8rem;
}
.c-head-normal--sm {
  font-size: 22px;
  font-size: 2.2rem;
}
.c-head-border-solid {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  padding-bottom: 0.6em;
  margin-top: 2em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b0000;
  border-bottom: 1px solid #2b0000;
}
.c-head-border-solid--xs {
  font-size: 14px;
  font-size: 1.4rem;
}
.c-head-products {
  margin-top: 2.4em;
  margin-bottom: 1.6em;
  text-align: center;
  line-height: 1.4;
  font-size: 30px;
  font-size: 3rem;
}
.c-head-products em {
  display: block;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  color: #2b0000;
}
.c-head-products i {
  display: block;
  margin-top: 30px;
  font-size: 24px;
  font-size: 2.4rem;
}
.c-copy-area {
  position: relative;
  text-align: center;
}
.c-copy-area .c-circle {
  margin: auto;
}
.c-copy-area .c-head-normal {
  margin: 30px 0 0;
}
.c-copy-area .c-text {
  margin: 40px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-copy-area .c-link {
  margin: 60px 0 0;
  font-size: 20px;
  font-size: 2rem;
}
.c-box-area {
  padding: 30px;
  margin-top: 1em;
  margin-bottom: 2em;
}
.c-box-area--ac {
  background: #faf7f5;
}
.c-products-summary {
  text-align: center;
}
.c-products-summary .name {
  line-height: 1;
}
.c-products-summary .name i {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
.c-products-summary .name em {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-size: 2.4rem;
}
.c-products-summary .price {
  line-height: 1.4;
  margin-top: 20px;
}
.c-text {
  font-size: 14px;
  font-size: 1.4rem;
}
.c-text--products {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.c-image {
  margin-top: 1em;
  margin-bottom: 2em;
}
.c-image--full {
  width: 100%;
}
.c-image--round-bottom {
  position: relative;
}
.c-image--round-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 13.8%;
  z-index: 5;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20720%20100'%20preserveAspectRatio='none'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;fill-rule:evenodd;}%3c/style%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M720,100H0V0A760.22,760.22,0,0,0,360,90,760.22,760.22,0,0,0,720,0Z'/%3e%3c/svg%3e") no-repeat 50% 50%/100% 100%;
  -webkit-transform: translate(0, 10%);
  transform: translate(0, 10%);
}
.container-c-image {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
  flex-wrap: wrap;
}
.container-c-image .c-image {
  width: 40%;
  margin: 0;
}
.container-c-image .c-image img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-link--text {
  text-decoration: underline;
  word-break: break-all;
  color: #2b0000;
}
.c-link--arrow {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  font-weight: 700;
  color: #2b0000;
  word-break: break-all;
}
.c-link--arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #2b0000;
  border-right: 2px solid #2b0000;
  -webkit-transform: translate(-25%, -50%) scaleY(0.6) rotate(45deg);
  transform: translate(-25%, -50%) scaleY(0.6) rotate(45deg);
}
.c-link--screen {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.c-link--screen ~ * .c-link--arrow {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-circle {
  display: table;
  width: 180px;
  height: 180px;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 100%;
  background: -webkit-linear-gradient(45deg, #2b0000 20%, #6b2e2b 80%);
  background: linear-gradient(45deg, #2b0000 20%, #6b2e2b 80%);
}
.c-circle__inner {
  display: table-cell;
  vertical-align: middle;
}
.c-circle--sm {
  width: 160px;
  height: 160px;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-list {
  margin-top: 1em;
  margin-bottom: 2em;
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-list > ul {
  margin: -3px;
}
.c-list > ul > li {
  padding: 3px;
}
.c-list > ul > li > span {
  display: block;
}
.c-list--comment > ul > li > span {
  padding-left: 1em;
  text-indent: -1em;
}
.c-list--disc > ul > li > span {
  position: relative;
  padding-left: 1em;
}
.c-list--disc > ul > li > span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background: #2b0000;
  -webkit-transform: translate(0, 0.5em);
  transform: translate(0, 0.5em);
}
.c-list--bar > ul > li > span {
  position: relative;
  padding-left: 1em;
}
.c-list--bar > ul > li > span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 1px;
  background: #4c4948;
  -webkit-transform: translate(0, 0.75em);
  transform: translate(0, 0.75em);
}
.c-list--number > ul {
  counter-reset: number 0;
}
.c-list--number > ul > li > span {
  position: relative;
  padding-left: 1.2em;
}
.c-list--number > ul > li > span:before {
  counter-increment: number 1;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #2b0000;
}
.c-list--check > ul > li > span {
  position: relative;
  padding-left: 1.4em;
}
.c-list--check > ul > li > span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23661534;%20fill-rule:%20evenodd;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20id='check_ic01'%20class='cls-1'%20d='M133,1894H105v-28h28v28Zm-17-12-4-4-3,3,7,7,14-14-3-3Z'%20transform='translate(-105%20-1866)'/%3e%3c/svg%3e") no-repeat 50% 50%/contain;
  -webkit-transform: translate(0, 0.4em);
  transform: translate(0, 0.4em);
}
.c-list--check.is-reservation {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.c-list--check.is-reservation > ul {
  margin: -8px;
}
.c-list--check.is-reservation > ul > li {
  padding: 8px;
}
.c-list--check.is-reservation .c-button-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.c-list--color {
  font-size: 12px;
  font-size: 1.2rem;
}
.c-list--color > ul {
  margin: -4px;
}
.c-list--color > ul > li {
  padding: 4px;
}
.c-list--color .item-wrap {
  position: relative;
}
.c-list--color .name {
  position: relative;
  z-index: 1;
}
.c-list--color .panel {
  background: #2b0000;
}
.c-button-arrow {
  display: block;
  max-width: 400px;
  padding: 15px;
  margin: auto;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  color: #2b0000;
  border: 1px solid #2b0000;
}
.c-button-arrow span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.c-button-arrow span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #2b0000;
  border-right: 1px solid #2b0000;
  -webkit-transform: translate(-25%, -50%) scaleY(0.6) rotate(45deg);
  transform: translate(-25%, -50%) scaleY(0.6) rotate(45deg);
}
.c-button-arrow.red {
  color: #fff;
  background: #b71a35;
  border: none;
}
.c-button-arrow.red span:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.c-button-arrow--sm {
  padding: 8px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-button-round {
  display: block;
  max-width: 300px;
  padding: 15px 30px;
  margin: auto;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  color: #2b0000;
  border: 1px solid #2b0000;
  border-radius: 10em;
}
.c-button-round.white {
  color: #fff;
  border-color: #fff;
}
.c-button-round--sm {
  padding: 8px 30px;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-button-round + .c-button-round {
  margin-left: 30px;
}
.c-button-fill {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 64px;
  margin: auto;
  line-height: 1.4;
  font-weight: normal;
  color: #fff;
  background: #4b0a0a;
  text-align: center;
}
.c-button-fill::before {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 6px;
  height: 8px;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='7.844'%20height='9.625'%20viewBox='0%200%207.844%209.625'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20none;%20stroke:%20%232b0000;%20stroke-width:%201px;%20fill-rule:%20evenodd;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20id='chevron_right_ic01'%20class='cls-1'%20d='M303.952,652.757l6.264,4.311-6.264,4.31'%20transform='translate(-302.875%20-652.25)'/%3e%3c/svg%3e") no-repeat;
  background-size: contain;
}
.c-table {
  margin: 1em auto 2em;
  line-height: 1.4;
}
.c-table table {
  width: 100%;
  table-layout: fixed;
}
.c-table th,
.c-table td {
  word-break: break-all;
}
.c-table--border table {
  margin-top: -30px;
}
.c-table--border th,
.c-table--border td {
  padding: 30px 0;
  border-bottom: 1px solid #2b0000;
}
.c-table--border th {
  width: 15%;
  text-align: left;
  color: #2b0000;
}
.c-table--border td {
  font-size: 14px;
  font-size: 1.4rem;
}
.u-only--lg {
  display: block !important;
}
.u-only-inline--lg {
  display: inline-block !important;
}
.u-only-flex--lg {
  display: -webkit-box !important;
  display: flex !important;
}
.u-only--sm, .u-only-inline--sm {
  display: none !important;
}
.u-only-flex--sm {
  display: none !important;
}
.u-over--hidden {
  overflow: hidden;
}
.u-fontsize--tiny {
  font-size: 75% !important;
}
.u-fontsize--small {
  font-size: 87.5% !important;
}
.u-fontsize--large {
  font-size: 112.5% !important;
}
.u-fontsize--huge {
  font-size: 125% !important;
}
.u-align--center {
  text-align: center !important;
}
.u-align--left {
  text-align: left !important;
}
.u-align--right {
  text-align: right !important;
}
.u-border--none {
  border: none !important;
}
.u-border--top-none {
  border-top: none !important;
}
.u-border--right-none {
  border-right: none !important;
}
.u-border--bottom-none {
  border-bottom: none !important;
}
.u-border--left-none {
  border-left: none !important;
}
.u-valign--baseline {
  vertical-align: baseline !important;
}
.u-valign--top {
  vertical-align: top !important;
}
.u-valign--middle {
  vertical-align: middle !important;
}
.u-valign--bottom {
  vertical-align: bottom !important;
}
.u-valign--text-bottom {
  vertical-align: text-bottom !important;
}
.u-valign--text-top {
  vertical-align: text-top !important;
}
.u-display--none {
  display: none !important;
}
.u-display--inline {
  display: inline !important;
}
.u-display--inline-block {
  display: inline-block !important;
}
.u-display--block {
  display: block !important;
}
.u-display--table {
  display: table !important;
}
.u-display--table-cell {
  display: table-cell !important;
}
.u-display--flex {
  display: -webkit-box !important;
  display: flex !important;
}
.u-display--inline-flex {
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}
.u-float--left {
  float: left !important;
}
.u-float--right {
  float: right !important;
}
.u-float--none {
  float: none !important;
}
.u-position--relative {
  position: relative !important;
}
.u-position--absolute {
  position: absolute !important;
}
.u-position--static {
  position: static !important;
}
.u-row:after, [class*=u-row_]:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.u-row--tt {
  margin-top: 20px;
}
.u-row--tb {
  margin-bottom: 20px;
}
.u-row--st {
  margin-top: 30px;
}
.u-row--sb {
  margin-bottom: 30px;
}
.u-row--mt {
  margin-top: 50px;
}
.u-row--mb {
  margin-bottom: 50px;
}
.u-row--lt {
  margin-top: 70px;
}
.u-row--lb {
  margin-bottom: 70px;
}
.u-row--ht {
  margin-top: 100px;
}
.u-row--hb {
  margin-bottom: 100px;
}
.u-fit,
img.u-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  font-family: "object-fit: cover;object-position: 50% 50%;";
}
.u-weight--normal {
  font-weight: 400;
}
.u-weight--bold {
  font-weight: 700;
}
.u-color--main {
  color: #2b0000;
}
.u-color--red {
  color: #b21d29;
}
.u-color--blue {
  color: #0060ff;
}
.u-color--green {
  color: #09a009;
}
.u-color--orange {
  color: #f0b44b;
}
.u-indent1 {
  text-indent: -1em;
}
.u-indent2 {
  text-indent: -2em;
}
.u-indent3 {
  text-indent: -3em;
}
.u-indent4 {
  text-indent: -4em;
}
.u-indent5 {
  text-indent: -5em;
}
.u-nindent1 {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.u-nindent2 {
  display: block;
  padding-left: 2em;
  text-indent: -2em;
}
.u-nindent3 {
  display: block;
  padding-left: 3em;
  text-indent: -3em;
}
.u-nindent4 {
  display: block;
  padding-left: 4em;
  text-indent: -4em;
}
.u-nindent5 {
  display: block;
  padding-left: 5em;
  text-indent: -5em;
}
.u-bg--red {
  background-color: #b21d29;
}
.u-bg--blue {
  background-color: #0060ff;
}
.u-bg--green {
  background-color: #09a009;
}
.u-bg--orange {
  background-color: #f0b44b;
}
.u-bg--gray {
  background-color: #9b9b9b;
}
.u-wid0 {
  width: 0px !important;
}
.u-widp0 {
  width: 0% !important;
}
.u-wid1 {
  width: 1px !important;
}
.u-widp1 {
  width: 1% !important;
}
.u-wid2 {
  width: 2px !important;
}
.u-widp2 {
  width: 2% !important;
}
.u-wid3 {
  width: 3px !important;
}
.u-widp3 {
  width: 3% !important;
}
.u-wid4 {
  width: 4px !important;
}
.u-widp4 {
  width: 4% !important;
}
.u-wid5 {
  width: 5px !important;
}
.u-widp5 {
  width: 5% !important;
}
.u-wid6 {
  width: 6px !important;
}
.u-widp6 {
  width: 6% !important;
}
.u-wid7 {
  width: 7px !important;
}
.u-widp7 {
  width: 7% !important;
}
.u-wid8 {
  width: 8px !important;
}
.u-widp8 {
  width: 8% !important;
}
.u-wid9 {
  width: 9px !important;
}
.u-widp9 {
  width: 9% !important;
}
.u-wid10 {
  width: 10px !important;
}
.u-widp10 {
  width: 10% !important;
}
.u-wid11 {
  width: 11px !important;
}
.u-widp11 {
  width: 11% !important;
}
.u-wid12 {
  width: 12px !important;
}
.u-widp12 {
  width: 12% !important;
}
.u-wid13 {
  width: 13px !important;
}
.u-widp13 {
  width: 13% !important;
}
.u-wid14 {
  width: 14px !important;
}
.u-widp14 {
  width: 14% !important;
}
.u-wid15 {
  width: 15px !important;
}
.u-widp15 {
  width: 15% !important;
}
.u-wid16 {
  width: 16px !important;
}
.u-widp16 {
  width: 16% !important;
}
.u-wid17 {
  width: 17px !important;
}
.u-widp17 {
  width: 17% !important;
}
.u-wid18 {
  width: 18px !important;
}
.u-widp18 {
  width: 18% !important;
}
.u-wid19 {
  width: 19px !important;
}
.u-widp19 {
  width: 19% !important;
}
.u-wid20 {
  width: 20px !important;
}
.u-widp20 {
  width: 20% !important;
}
.u-wid21 {
  width: 21px !important;
}
.u-widp21 {
  width: 21% !important;
}
.u-wid22 {
  width: 22px !important;
}
.u-widp22 {
  width: 22% !important;
}
.u-wid23 {
  width: 23px !important;
}
.u-widp23 {
  width: 23% !important;
}
.u-wid24 {
  width: 24px !important;
}
.u-widp24 {
  width: 24% !important;
}
.u-wid25 {
  width: 25px !important;
}
.u-widp25 {
  width: 25% !important;
}
.u-wid26 {
  width: 26px !important;
}
.u-widp26 {
  width: 26% !important;
}
.u-wid27 {
  width: 27px !important;
}
.u-widp27 {
  width: 27% !important;
}
.u-wid28 {
  width: 28px !important;
}
.u-widp28 {
  width: 28% !important;
}
.u-wid29 {
  width: 29px !important;
}
.u-widp29 {
  width: 29% !important;
}
.u-wid30 {
  width: 30px !important;
}
.u-widp30 {
  width: 30% !important;
}
.u-wid31 {
  width: 31px !important;
}
.u-widp31 {
  width: 31% !important;
}
.u-wid32 {
  width: 32px !important;
}
.u-widp32 {
  width: 32% !important;
}
.u-wid33 {
  width: 33px !important;
}
.u-widp33 {
  width: 33% !important;
}
.u-wid34 {
  width: 34px !important;
}
.u-widp34 {
  width: 34% !important;
}
.u-wid35 {
  width: 35px !important;
}
.u-widp35 {
  width: 35% !important;
}
.u-wid36 {
  width: 36px !important;
}
.u-widp36 {
  width: 36% !important;
}
.u-wid37 {
  width: 37px !important;
}
.u-widp37 {
  width: 37% !important;
}
.u-wid38 {
  width: 38px !important;
}
.u-widp38 {
  width: 38% !important;
}
.u-wid39 {
  width: 39px !important;
}
.u-widp39 {
  width: 39% !important;
}
.u-wid40 {
  width: 40px !important;
}
.u-widp40 {
  width: 40% !important;
}
.u-wid41 {
  width: 41px !important;
}
.u-widp41 {
  width: 41% !important;
}
.u-wid42 {
  width: 42px !important;
}
.u-widp42 {
  width: 42% !important;
}
.u-wid43 {
  width: 43px !important;
}
.u-widp43 {
  width: 43% !important;
}
.u-wid44 {
  width: 44px !important;
}
.u-widp44 {
  width: 44% !important;
}
.u-wid45 {
  width: 45px !important;
}
.u-widp45 {
  width: 45% !important;
}
.u-wid46 {
  width: 46px !important;
}
.u-widp46 {
  width: 46% !important;
}
.u-wid47 {
  width: 47px !important;
}
.u-widp47 {
  width: 47% !important;
}
.u-wid48 {
  width: 48px !important;
}
.u-widp48 {
  width: 48% !important;
}
.u-wid49 {
  width: 49px !important;
}
.u-widp49 {
  width: 49% !important;
}
.u-wid50 {
  width: 50px !important;
}
.u-widp50 {
  width: 50% !important;
}
.u-wid51 {
  width: 51px !important;
}
.u-widp51 {
  width: 51% !important;
}
.u-wid52 {
  width: 52px !important;
}
.u-widp52 {
  width: 52% !important;
}
.u-wid53 {
  width: 53px !important;
}
.u-widp53 {
  width: 53% !important;
}
.u-wid54 {
  width: 54px !important;
}
.u-widp54 {
  width: 54% !important;
}
.u-wid55 {
  width: 55px !important;
}
.u-widp55 {
  width: 55% !important;
}
.u-wid56 {
  width: 56px !important;
}
.u-widp56 {
  width: 56% !important;
}
.u-wid57 {
  width: 57px !important;
}
.u-widp57 {
  width: 57% !important;
}
.u-wid58 {
  width: 58px !important;
}
.u-widp58 {
  width: 58% !important;
}
.u-wid59 {
  width: 59px !important;
}
.u-widp59 {
  width: 59% !important;
}
.u-wid60 {
  width: 60px !important;
}
.u-widp60 {
  width: 60% !important;
}
.u-wid61 {
  width: 61px !important;
}
.u-widp61 {
  width: 61% !important;
}
.u-wid62 {
  width: 62px !important;
}
.u-widp62 {
  width: 62% !important;
}
.u-wid63 {
  width: 63px !important;
}
.u-widp63 {
  width: 63% !important;
}
.u-wid64 {
  width: 64px !important;
}
.u-widp64 {
  width: 64% !important;
}
.u-wid65 {
  width: 65px !important;
}
.u-widp65 {
  width: 65% !important;
}
.u-wid66 {
  width: 66px !important;
}
.u-widp66 {
  width: 66% !important;
}
.u-wid67 {
  width: 67px !important;
}
.u-widp67 {
  width: 67% !important;
}
.u-wid68 {
  width: 68px !important;
}
.u-widp68 {
  width: 68% !important;
}
.u-wid69 {
  width: 69px !important;
}
.u-widp69 {
  width: 69% !important;
}
.u-wid70 {
  width: 70px !important;
}
.u-widp70 {
  width: 70% !important;
}
.u-wid71 {
  width: 71px !important;
}
.u-widp71 {
  width: 71% !important;
}
.u-wid72 {
  width: 72px !important;
}
.u-widp72 {
  width: 72% !important;
}
.u-wid73 {
  width: 73px !important;
}
.u-widp73 {
  width: 73% !important;
}
.u-wid74 {
  width: 74px !important;
}
.u-widp74 {
  width: 74% !important;
}
.u-wid75 {
  width: 75px !important;
}
.u-widp75 {
  width: 75% !important;
}
.u-wid76 {
  width: 76px !important;
}
.u-widp76 {
  width: 76% !important;
}
.u-wid77 {
  width: 77px !important;
}
.u-widp77 {
  width: 77% !important;
}
.u-wid78 {
  width: 78px !important;
}
.u-widp78 {
  width: 78% !important;
}
.u-wid79 {
  width: 79px !important;
}
.u-widp79 {
  width: 79% !important;
}
.u-wid80 {
  width: 80px !important;
}
.u-widp80 {
  width: 80% !important;
}
.u-wid81 {
  width: 81px !important;
}
.u-widp81 {
  width: 81% !important;
}
.u-wid82 {
  width: 82px !important;
}
.u-widp82 {
  width: 82% !important;
}
.u-wid83 {
  width: 83px !important;
}
.u-widp83 {
  width: 83% !important;
}
.u-wid84 {
  width: 84px !important;
}
.u-widp84 {
  width: 84% !important;
}
.u-wid85 {
  width: 85px !important;
}
.u-widp85 {
  width: 85% !important;
}
.u-wid86 {
  width: 86px !important;
}
.u-widp86 {
  width: 86% !important;
}
.u-wid87 {
  width: 87px !important;
}
.u-widp87 {
  width: 87% !important;
}
.u-wid88 {
  width: 88px !important;
}
.u-widp88 {
  width: 88% !important;
}
.u-wid89 {
  width: 89px !important;
}
.u-widp89 {
  width: 89% !important;
}
.u-wid90 {
  width: 90px !important;
}
.u-widp90 {
  width: 90% !important;
}
.u-wid91 {
  width: 91px !important;
}
.u-widp91 {
  width: 91% !important;
}
.u-wid92 {
  width: 92px !important;
}
.u-widp92 {
  width: 92% !important;
}
.u-wid93 {
  width: 93px !important;
}
.u-widp93 {
  width: 93% !important;
}
.u-wid94 {
  width: 94px !important;
}
.u-widp94 {
  width: 94% !important;
}
.u-wid95 {
  width: 95px !important;
}
.u-widp95 {
  width: 95% !important;
}
.u-wid96 {
  width: 96px !important;
}
.u-widp96 {
  width: 96% !important;
}
.u-wid97 {
  width: 97px !important;
}
.u-widp97 {
  width: 97% !important;
}
.u-wid98 {
  width: 98px !important;
}
.u-widp98 {
  width: 98% !important;
}
.u-wid99 {
  width: 99px !important;
}
.u-widp99 {
  width: 99% !important;
}
.u-wid100 {
  width: 100px !important;
}
.u-widp100 {
  width: 100% !important;
}
.u-wid--quarter {
  width: 25% !important;
}
.u-wid--thirds {
  width: 33.33% !important;
}
.u-wid--half {
  width: 50% !important;
}
.u-wid--full {
  width: 100% !important;
}
.u-mt0 {
  margin-top: 0px !important;
}
.u-mb0 {
  margin-bottom: 0px !important;
}
.u-pt0 {
  padding-top: 0px !important;
}
.u-pb0 {
  padding-bottom: 0px !important;
}
.u-mt5 {
  margin-top: 5px !important;
}
.u-mb5 {
  margin-bottom: 5px !important;
}
.u-pt5 {
  padding-top: 5px !important;
}
.u-pb5 {
  padding-bottom: 5px !important;
}
.u-mt10 {
  margin-top: 10px !important;
}
.u-mb10 {
  margin-bottom: 10px !important;
}
.u-pt10 {
  padding-top: 10px !important;
}
.u-pb10 {
  padding-bottom: 10px !important;
}
.u-mt15 {
  margin-top: 15px !important;
}
.u-mb15 {
  margin-bottom: 15px !important;
}
.u-pt15 {
  padding-top: 15px !important;
}
.u-pb15 {
  padding-bottom: 15px !important;
}
.u-mt20 {
  margin-top: 20px !important;
}
.u-mb20 {
  margin-bottom: 20px !important;
}
.u-pt20 {
  padding-top: 20px !important;
}
.u-pb20 {
  padding-bottom: 20px !important;
}
.u-mt25 {
  margin-top: 25px !important;
}
.u-mb25 {
  margin-bottom: 25px !important;
}
.u-pt25 {
  padding-top: 25px !important;
}
.u-pb25 {
  padding-bottom: 25px !important;
}
.u-mt30 {
  margin-top: 30px !important;
}
.u-mb30 {
  margin-bottom: 30px !important;
}
.u-pt30 {
  padding-top: 30px !important;
}
.u-pb30 {
  padding-bottom: 30px !important;
}
.u-mt35 {
  margin-top: 35px !important;
}
.u-mb35 {
  margin-bottom: 35px !important;
}
.u-pt35 {
  padding-top: 35px !important;
}
.u-pb35 {
  padding-bottom: 35px !important;
}
.u-mt40 {
  margin-top: 40px !important;
}
.u-mb40 {
  margin-bottom: 40px !important;
}
.u-pt40 {
  padding-top: 40px !important;
}
.u-pb40 {
  padding-bottom: 40px !important;
}
.u-mt45 {
  margin-top: 45px !important;
}
.u-mb45 {
  margin-bottom: 45px !important;
}
.u-pt45 {
  padding-top: 45px !important;
}
.u-pb45 {
  padding-bottom: 45px !important;
}
.u-mt50 {
  margin-top: 50px !important;
}
.u-mb50 {
  margin-bottom: 50px !important;
}
.u-pt50 {
  padding-top: 50px !important;
}
.u-pb50 {
  padding-bottom: 50px !important;
}
.u-mt55 {
  margin-top: 55px !important;
}
.u-mb55 {
  margin-bottom: 55px !important;
}
.u-pt55 {
  padding-top: 55px !important;
}
.u-pb55 {
  padding-bottom: 55px !important;
}
.u-mt60 {
  margin-top: 60px !important;
}
.u-mb60 {
  margin-bottom: 60px !important;
}
.u-pt60 {
  padding-top: 60px !important;
}
.u-pb60 {
  padding-bottom: 60px !important;
}
.u-mt65 {
  margin-top: 65px !important;
}
.u-mb65 {
  margin-bottom: 65px !important;
}
.u-pt65 {
  padding-top: 65px !important;
}
.u-pb65 {
  padding-bottom: 65px !important;
}
.u-mt70 {
  margin-top: 70px !important;
}
.u-mb70 {
  margin-bottom: 70px !important;
}
.u-pt70 {
  padding-top: 70px !important;
}
.u-pb70 {
  padding-bottom: 70px !important;
}
.u-mt75 {
  margin-top: 75px !important;
}
.u-mb75 {
  margin-bottom: 75px !important;
}
.u-pt75 {
  padding-top: 75px !important;
}
.u-pb75 {
  padding-bottom: 75px !important;
}
.u-mt80 {
  margin-top: 80px !important;
}
.u-mb80 {
  margin-bottom: 80px !important;
}
.u-pt80 {
  padding-top: 80px !important;
}
.u-pb80 {
  padding-bottom: 80px !important;
}
.u-mt85 {
  margin-top: 85px !important;
}
.u-mb85 {
  margin-bottom: 85px !important;
}
.u-pt85 {
  padding-top: 85px !important;
}
.u-pb85 {
  padding-bottom: 85px !important;
}
.u-mt90 {
  margin-top: 90px !important;
}
.u-mb90 {
  margin-bottom: 90px !important;
}
.u-pt90 {
  padding-top: 90px !important;
}
.u-pb90 {
  padding-bottom: 90px !important;
}
.u-mt95 {
  margin-top: 95px !important;
}
.u-mb95 {
  margin-bottom: 95px !important;
}
.u-pt95 {
  padding-top: 95px !important;
}
.u-pb95 {
  padding-bottom: 95px !important;
}
.u-mt100 {
  margin-top: 100px !important;
}
.u-mb100 {
  margin-bottom: 100px !important;
}
.u-pt100 {
  padding-top: 100px !important;
}
.u-pb100 {
  padding-bottom: 100px !important;
}
@-webkit-keyframes trigger-close01 {
  0% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}
@keyframes trigger-close01 {
  0% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}
@-webkit-keyframes trigger-close02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes trigger-close02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes trigger-close03 {
  0% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
    transform: translate3d(0, 8px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 16px, 0) rotate(0);
    transform: translate3d(0, 16px, 0) rotate(0);
  }
}
@keyframes trigger-close03 {
  0% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
    transform: translate3d(0, 8px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 16px, 0) rotate(0);
    transform: translate3d(0, 16px, 0) rotate(0);
  }
}
@-webkit-keyframes trigger-open01 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
}
@keyframes trigger-open01 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
}
@-webkit-keyframes trigger-open02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes trigger-open02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes trigger-open03 {
  0% {
    -webkit-transform: translate3d(0, 16px, 0) rotate(0);
    transform: translate3d(0, 16px, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
    transform: translate3d(0, 8px, 0) rotate(-45deg);
  }
}
@keyframes trigger-open03 {
  0% {
    -webkit-transform: translate3d(0, 16px, 0) rotate(0);
    transform: translate3d(0, 16px, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(0);
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
    transform: translate3d(0, 8px, 0) rotate(-45deg);
  }
}
@-webkit-keyframes PreloadGradation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes PreloadGradation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes PreloadHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes PreloadHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes LogoShow {
  0% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
  }
}
@keyframes LogoShow {
  0% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
  }
}
@-webkit-keyframes LogoHide {
  0% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
  }
}
@keyframes LogoHide {
  0% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
    transform: translate(-50%, -50%) scale(1.5) rotate(0.001deg);
  }
}
@-webkit-keyframes CopyShow {
  0% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: scale(1.5) rotate(0.001deg);
    transform: scale(1.5) rotate(0.001deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: scale(1) rotate(0.001deg);
    transform: scale(1) rotate(0.001deg);
  }
}
@keyframes CopyShow {
  0% {
    opacity: 0;
    -webkit-filter: blur(50px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    filter: blur(50px);
    -webkit-transform: scale(1.5) rotate(0.001deg);
    transform: scale(1.5) rotate(0.001deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    filter: blur(0);
    -webkit-transform: scale(1) rotate(0.001deg);
    transform: scale(1) rotate(0.001deg);
  }
}
#omotesando .u-align--center,
#omotesando .u-align--right {
  color: #2b0000;
}
#omotesando .c-head-border-solid {
  color: #b30033;
}
#omotesando .p-formula__element:nth-of-type(1), #omotesando .p-formula__element:nth-of-type(2) {
  background-color: #fff;
}
#omotesando .p-formula__element .c-box-area {
  padding: 30px 15px 40px;
}
#omotesando .p-formula__element .title {
  font-size: 18px;
  font-size: 1.8rem;
}
#omotesando .p-formula__element .title i {
  font-size: 15px;
  font-size: 1.5rem;
}
#omotesando .p-formula__element .price em {
  font-size: 32px;
  font-size: 3.2rem;
}
#omotesando .p-formula__element .price i {
  font-size: 16px;
  font-size: 1.6rem;
}
#omotesando .p-formula__element:nth-of-type(2) .price, #omotesando .p-formula__element--result .price {
  margin-left: 0;
  margin-top: 3.5rem;
}
#omotesando .lead-text {
  font-size: 22px;
  font-size: 2.2rem;
}
#omotesando .trial-menu {
  padding-top: 20px;
  background-color: #fff;
}
#omotesando .trial-menu__salon {
  padding: 40px 0 50px;
  background-color: #e8e4e6;
}
#omotesando .dark {
  text-align: center;
}
_:-ms-fullscreen, :root #omotesando {
  /* IE11以上 */
}
_:-ms-fullscreen .p-formula__element:first-of-type .title, :root #omotesando .p-formula__element:first-of-type .title {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.page-campaign .l-headline__title {
  font-size: 40px;
  font-size: 4rem;
}
.page-campaign .l-headline__title:after {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #b30033;
}
.page-campaign .l-section {
  padding: 0 0 120px;
}
.page-campaign.derive #brand {
  padding: 0 0 120px;
}
.page-campaign.derive #brand .brand-lead {
  margin-top: 60px;
}
.page-campaign #salon {
  padding: 90px 0;
}
.page-campaign #salon .p-salon-list .c-head-border-solid {
  border-width: 1px;
}
.page-campaign #salon .c-button-arrow {
  width: 250px;
}
.page-campaign #first {
  padding: 90px 0;
}
.page-campaign #first .p-salon-list .c-head-border-solid {
  border-width: 1px;
}
.page-campaign #omotesando {
  margin-top: -45px;
  padding: 0 0 60px;
  text-align: center;
  background: #fff;
}
.page-campaign #omotesando .dark {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", Georgia, serif;
  color: #4b4b4b;
}
.page-campaign #campaign-window01 {
  padding-bottom: 140px;
}
.page-campaign #campaign-confirm {
  padding-top: 90px;
}
_:-ms-fullscreen, :root .page-campaign {
  /* IE11以上 */
}
_:-ms-fullscreen .p-formula__supplement, :root .page-campaign .p-formula__supplement {
  letter-spacing: 0;
}
_:-ms-fullscreen .p-formula__element .title, :root .page-campaign .p-formula__element .title {
  letter-spacing: 0;
}
_:-ms-fullscreen .lead-text, :root .page-campaign .lead-text {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1500px) {
  html {
    visibility: visible;
  }
}
@media screen and (min-width: 1501px) {
  html {
    visibility: visible;
  }
}
@media screen and (min-width: 1025px) {
  .l-contents {
    min-width: 1024px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .l-contents .inner {
    padding-inline: 60px;
  }
  .l-contents .l-header__navi .inner {
    padding-inline: 0;
  }
  .p-salon-information {
    flex-wrap: wrap;
  }
  .p-salon-information__item {
    width: auto;
  }
  .p-salon-information__item:nth-child(n+3) {
    margin-top: 30px;
    border-left: none !important;
  }
}
@media screen and (min-width: 769px) {
  html {
    visibility: visible;
  }
  .l-footer__fixreserve ul li a, .p-products-list__item a, .p-news-article__navigation .prev,
  .p-news-article__navigation .next, .p-sitemap a, .p-navi__item > a, .u-opacity, .u-hover--opacity, .slick-prev,
  .slick-next {
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .l-footer__fixreserve ul li a:hover, .p-products-list__item a:hover, .p-news-article__navigation .prev:hover,
  .p-news-article__navigation .next:hover, .p-sitemap a:hover, .p-navi__item > a:hover, .u-opacity:hover, .u-hover--opacity:hover, .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.6;
  }
  .l-header__hamburger.js-open .l-header__hamburger {
    background: #360d0d;
  }
  .l-header__navi .p-navi {
    padding: 40px;
  }
  .l-header__navi .p-navi .c-flex-column-half {
    -webkit-box-align: start;
            align-items: flex-start;
    margin: -20px;
  }
  .l-header__navi .p-navi .c-flex-column__item {
    padding: 20px;
  }
  .l-header-products__navi .p-navi .c-flex-column-half {
    -webkit-box-align: start;
            align-items: flex-start;
    margin: -15px;
  }
  .l-header-products__navi .p-navi .c-flex-column__item {
    padding: 15px;
  }
  .l-footer__fixreserve {
    top: 47.5%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .l-footer__fixreserve ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .l-footer__fixreserve ul li a {
    width: 3em;
  }
  /* .l-contents{
    min-width: 1024px; } */
  .p-products-data__summary .image {
    padding: 0 40px;
  }
  .p-products-data__summary .detail {
    padding: 0 20px;
  }
  .p-salon-prefecture__item a:hover {
    background: #faf7f5;
  }
  .p-salon-list__item a:hover {
    background: #faf7f5;
  }
  .p-salon-information__item:not(:first-child) {
    border-left: 1px solid #ab939d;
  }
  .p-salon-information__item.tel {
    max-width: 380px;
    padding-left: 30px;
  }
  .p-salon-information__item.action {
    -webkit-box-pack: justify;
            justify-content: space-between;
    max-width: 410px;
    padding-left: 30px;
  }
  .p-salon-information__item.action .box {
    display: block;
    max-width: calc(100% - 110px);
  }
  .p-menu-option__overview .c-text {
    margin-top: 60px;
    text-align: center;
    line-height: 2;
  }
  .p-formula__element--result {
    color: #fff;
    background: #2b0000;
  }
  .p-formula__element--result p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
  .p-formula__element--result .price {
    margin-left: 30px;
  }
  .p-formula__supplement p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
  .p-formula__supplement .price {
    margin-top: 10px;
  }
  .p-campaign-first .p-formula__element--first,
  .p-campaign-first .p-formula__element--second {
    width: 47.05%;
  }
  .p-campaign-window .c-flex-column__item:first-child {
    border-right: 1px solid #ab939d;
  }
  .p-news-list__item a:hover .text {
    text-decoration: underline;
  }
  .p-news-article__contents a:hover {
    text-decoration: none;
  }
  .p-news-article__navigation .return:hover {
    text-decoration: none;
  }
  .p-reservation-contact__item:not(:first-child) {
    margin-top: 30px;
  }
  .p-reservation-nav .nav-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .p-reservation-nav .nav-item-link:hover {
    opacity: 0.7;
  }
  .p-reservation-web-list .c-flex-column-third {
    margin: 0 -11px;
  }
  .p-reservation-web-list .p-salon-list .c-button-fill {
    padding-left: 30px;
    padding-right: 80px;
  }
  .p-reservation-web-list .p-salon-list .c-button-fill:hover {
    opacity: 0.8;
  }
  .p-reservation-modal--tel {
    max-width: 506px;
  }
  .p-reservation-modal--web {
    max-width: 1030px;
  }
  .p-reservation-modal--qrcode {
    max-width: 650px;
  }
  .p-faq-list__header:hover {
    background: #faf7f5;
  }
  .p-banner-nosecare {
    margin-bottom: 120px;
  }
  .p-pager__number li a {
    -webkit-transition: color 0.4s, background 0.4s;
    transition: color 0.4s, background 0.4s;
  }
  .p-pager__number li:hover a {
    color: #fff;
    background: #2b0000;
  }
  .c-column-half.c-column-half--left .c-column__item:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  .c-column-half.c-column-half--right .c-column__item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  .c-link--text:hover {
    text-decoration: none;
  }
  .c-link--screen:hover ~ * .c-link--arrow {
    opacity: 0.4;
  }
  .c-list--color .item-wrap {
    padding: 8px 10px;
    color: #fff;
  }
  .c-list--color .panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .c-button-arrow {
    -webkit-transition: color 0.4s, background 0.4s;
    transition: color 0.4s, background 0.4s;
  }
  .c-button-arrow span:before {
    -webkit-transition: border-color 0.4s;
    transition: border-color 0.4s;
  }
  .c-button-arrow:hover {
    color: #fff;
    background: #2b0000;
  }
  .c-button-arrow:hover span:before {
    border-color: #fff;
  }
  .c-button-arrow.red:hover {
    color: #b71a35;
    background: #fff;
  }
  .c-button-arrow.red:hover span:before {
    border-color: #b71a35;
  }
  .c-button-round {
    -webkit-transition: color 0.4s, background 0.4s;
    transition: color 0.4s, background 0.4s;
  }
  .c-button-round:hover {
    color: #fff;
    background: #2b0000;
  }
  .c-button-round:hover span:before {
    border-color: #fff;
  }
  .c-button-round.white:hover {
    color: #2b0000;
    background: #fff;
  }
  .c-button-round.white:hover span:before {
    border-color: #2b0000;
  }
  .c-button-fill {
    -webkit-transition: opacity 0.4s, background 0.4s;
    transition: opacity 0.4s, background 0.4s;
  }
  .c-button-fill:hover {
    opacity: 0.9;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    background: #2b0000;
  }
  html.remodal-is-locked {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  html {
    visibility: visible;
  }
  hr {
    margin: 20px 0;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    padding: 12px 0;
  }
  .l-header__hamburger {
    width: 56px;
    height: 56px;
  }
  .l-header__navi {
    height: calc(100vh - 56px);
    margin-top: 56px;
    background: #2b0000;
  }
  .l-header__navi .p-navi {
    padding: 15px 30px 30px;
  }
  .l-header__navi .p-navi .c-flex-column__item {
    margin-top: -1px;
  }
  .l-header-products {
    position: fixed;
    height: 45px;
    padding: 12px 0;
    margin-top: 56px;
    top: 0;
    left: 0;
    width: 100%;
  }
  .l-header-products__navi {
    margin-top: 45px;
  }
  .l-header-products__navi .p-navi .c-flex-column__item {
    margin-top: -1px;
  }
  .l-footer {
    padding-bottom: 180px;
  }
  .l-footer__fixreserve {
    bottom: 0;
    width: 100%;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    transition: -webkit-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  html.js-fixreserve .l-footer__fixreserve {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .l-footer__fixreserve ul li:first-child a {
    background: -webkit-linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
    background: linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
  }
  .l-footer__fixreserve ul li:last-child a {
    background: -webkit-linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
    background: linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
  }
  .l-footer__fixreserve ul li {
    width: 100%;
  }
  .l-footer__fixreserve ul li a {
    font-weight: bold;
    padding: 20px 0;
    background: -webkit-linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
    background: linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .l-contents .inner-padding--sm {
    padding: 0 15px;
  }
  .l-contents .inner-padding--lg {
    padding: 0 30px;
  }
  .l-contents .inner--sm:not(:last-child) {
    margin-bottom: 30px;
  }
  .l-main p {
    margin-top: 0.8em;
    margin-bottom: 1.6em;
  }
  .l-section {
    padding: 0px 0 100px;
  }
  .l-headline__visual {
    height: 350px;
  }
  .l-headline__title {
    margin-top: 70px;
    font-size: 36px;
    font-size: 3.6rem;
    word-wrap: break-word;
  }
  .l-headline__title:after {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .l-headline__title em {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .l-headline__title i {
    margin-top: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  .l-headline__lead {
    margin-top: 35px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-headline__campaign .date {
    margin-top: 50px;
  }
  .l-headline__campaign .date .year {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-headline__campaign .date .day {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .l-headline__campaign .date .other {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-headline--visual .l-headline__title, .l-headline--salon .l-headline__title {
    margin-top: 50px;
  }
  .l-headline--omotesando .l-headline__title, .l-headline--aoyama .l-headline__title {
    margin-top: 40px;
  }
  .l-headline--omotesando .l-headline__title .logo, .l-headline--aoyama .l-headline__title .logo {
    width: 180px;
  }
  .l-headline--omotesando .l-headline__title i, .l-headline--aoyama .l-headline__title i {
    margin-top: 15px;
  }
  .tokyo_10 .l-headline .l-headline__lead {
    margin-top: 2em;
    text-align: left;
  }
  .p-products-list__list {
    margin: -5px;
  }
  .p-products-list__item {
    width: 50%;
    padding: 5px;
  }
  .p-products-list__item a {
    padding: 30px 20px;
  }
  .p-products-list__item .image {
    max-width: 200px;
    margin: auto;
  }
  .p-products-list__item .name {
    margin-top: 20px;
  }
  .p-products-list__item .name i {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-products-list__item .name em {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-products-summary {
    margin-top: 100px;
  }
  .p-products-summary--half .image {
    width: auto;
    padding: 0 40px;
  }
  .p-products-summary--half .detail {
    width: auto;
    padding: 0 20px;
  }
  .p-products-data__summary {
    display: block;
  }
  .p-products-data__summary .detail {
    margin-top: 30px;
  }
  .p-products-data__spec {
    margin-top: 70px;
  }
  .p-products-data__spec .c-flex-column-third {
    margin: -15px;
  }
  .p-products-data__spec .c-flex-column__item {
    padding: 15px;
  }
  .p-description-color .title {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-salon-prefecture__list {
    margin: 0;
  }
  .p-salon-prefecture__item {
    width: 100%;
    padding: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-salon-prefecture__item a {
    padding: 15px 0;
  }
  .p-salon-prefecture__item a:before {
    -webkit-transform: translate(-10px, -75%) scaleX(0.6) rotate(45deg);
    transform: translate(-10px, -75%) scaleX(0.6) rotate(45deg);
  }
  .p-salon-list {
    margin-top: 60px;
  }
  .p-salon-list__item a {
    display: block;
    padding: 15px 30px 15px 0;
  }
  .p-salon-list__item a:before {
    -webkit-transform: translate(-10px, -50%) scaleY(0.6) rotate(45deg);
    transform: translate(-10px, -50%) scaleY(0.6) rotate(45deg);
  }
  .p-salon-list__item p.name i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-salon-list__item p.name em {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-salon-list__item p.information {
    padding: 0;
    margin-top: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-salon-information {
    display: block;
    margin: -20px 0;
    text-align: center;
  }
  .p-salon-information__item {
    width: 100%;
    padding: 20px 0;
  }
  .p-salon-information__item:not(:first-child) {
    border-top: 1px solid #ab939d;
  }
  .p-salon-information__item.tel .number {
    margin-top: 5px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .p-salon-information__item.tel .date {
    margin-top: 10px;
  }
  .p-menu-eyebrow__item {
    padding: 20px 10px;
  }
  .p-menu-eyebrow__item p.name {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-menu-eyebrow__item p.name i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-menu-eyebrow__item p.description {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-menu-eyebrow__item p.price {
    display: inline-block;
    margin-top: 10px;
    vertical-align: middle;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .p-menu-eyebrow + .c-list--comment {
    margin-top: 15px;
    font-size: 10px;
    font-size: 1rem;
  }
  .p-menu-option__overview .image {
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin-top: 20px;
  }
  .p-menu-option__overview .c-text {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .p-menu-option__list {
    margin-top: 40px;
  }
  .p-menu-option__item {
    display: block;
    padding: 20px 0;
  }
  .p-menu-option__item p.name {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-menu-option__item p.description {
    margin-top: 0.4em;
  }
  .p-menu-option__item p.price {
    margin-top: 0.4em;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-menu-option__item p.price i {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-menu-option + .c-list--comment {
    margin-top: 15px;
    font-size: 10px;
    font-size: 1rem;
  }
  .p-formula__element {
    width: 100%;
  }
  .p-formula__element .title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-formula__element .title i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-formula__element .price em {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .p-formula__element .price i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-formula__element .c-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-formula__element--result .title {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-formula__element--result .price em {
    font-size: 40px;
    font-size: 4rem;
  }
  .p-formula__element--result .price i {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-formula__symbol {
    width: 100%;
    height: 50px;
  }
  .p-formula__symbol:before, .p-formula__symbol:after {
    width: 24px;
  }
  .p-formula__symbol--equal {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .p-formula__supplement {
    margin: 0 0 20px;
  }
  .p-formula__supplement .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-formula__supplement .price em {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .p-formula__supplement .price i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .trial-menu h3 {
    padding: 30px 15px 50px;
  }
  .trial-menu h3 em {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .trial-menu__list {
    margin: -30px 0;
    padding: 0 1.5rem;
  }
  .trial-menu__item {
    display: inline;
  }
  .trial-menu__item .c-number {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }
  .trial-menu__item .c-number__inner::after {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .trial-menu__item .detail {
    border-left: none;
  }
  .trial-menu__item .detail .text-wrap {
    padding: 0;
  }
  .trial-menu__item .detail .text-wrap .title {
    float: right;
    width: 85%;
    margin-top: -6.2rem;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .trial-menu__item .detail .text-wrap .title span {
    display: inline;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu__item .detail .text-wrap .c-text {
    clear: both;
    border-top: 1px solid #b30033;
    margin-top: 1rem;
    padding-top: 2rem;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    padding: 0 15px 30px;
  }
  .trial-menu__price .c-link {
    margin: 0;
  }
  .trial-menu__price .c-link .c-button-arrow {
    margin-left: 0;
  }
  .trial-menu__price .price {
    padding: 30px 0;
  }
  .trial-menu__price .price em {
    margin: 0 0 0 0.75rem;
    font-size: 48px;
    font-size: 4.8rem;
  }
  .trial-menu__price .price i {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu__price .price i:last-of-type {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu__salon {
    padding: 30px 15px;
  }
  .trial-menu-plus h3 {
    margin-top: 30px;
    padding: 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu-plus h3 em {
    font-size: 20px;
    font-size: 2rem;
  }
  .trial-menu-plus__list {
    position: relative;
    margin: 30px 0 0;
  }
  .trial-menu-plus__list .p-formula__symbol {
    top: -3rem;
    left: 46%;
  }
  .trial-menu-plus__item {
    display: block;
    padding: 0 30px;
    margin-bottom: 0;
  }
  .trial-menu-plus__item .detail {
    border-left: none;
  }
  .trial-menu-plus__item .detail .text-wrap {
    padding: 0;
  }
  .trial-menu-plus__item .detail .text-wrap .title {
    margin: 0 20px;
    padding: 1.5rem 0 1rem;
    font-size: 20px;
    font-size: 2rem;
  }
  .trial-menu-plus__item .detail .text-wrap .title em {
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu-plus__item .detail .text-wrap .c-text {
    padding: 0.5rem 2rem 1.5rem;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .trial-menu-plus__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    padding: 0 15px 30px;
  }
  .trial-menu-plus__price .c-link {
    margin: 0;
  }
  .trial-menu-plus__price .c-link .c-button-arrow {
    margin-left: 0;
    width: 250px;
  }
  .trial-menu-plus__price .price {
    padding: 30px 0;
  }
  .trial-menu-plus__price .price em {
    margin: 0 0 0 0.75rem;
    font-size: 48px;
    font-size: 4.8rem;
  }
  .trial-menu-plus__price .price i {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu-plus__price .price i:last-of-type {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .trial-menu-plus__salon {
    padding: 30px 15px;
  }
  .p-campaign-first .lead-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-campaign-first .lead-text em {
    margin-top: 5px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-campaign-first .present-text {
    margin: 30px;
    letter-spacing: 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-campaign-first .p-formula__element--first {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .p-campaign-first .p-formula__symbol--plus {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .p-campaign-first .p-formula__element--second {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .p-campaign-first .p-formula__supplement {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .p-campaign-first .p-formula__symbol--equal {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .p-campaign-first .p-formula__element--result {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .p-campaign-window__date {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-campaign-window__tel {
    padding: 20px;
    margin-top: 15px;
    text-align: center;
    background: #faf7f5;
  }
  .p-campaign-window__tel a {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .p-campaign-window__tel time {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-treatment-step__list {
    margin: -30px 0;
  }
  .p-treatment-step__item {
    display: block;
    padding: 30px 0;
  }
  .p-treatment-step__item .image {
    max-width: 360px;
    margin: auto;
  }
  .p-treatment-step__item .detail {
    display: block;
    position: relative;
  }
  .p-treatment-step__item .c-circle {
    position: absolute;
    left: 50%;
    width: 120px;
    height: 120px;
    -webkit-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
  }
  .p-treatment-step__item .c-circle__inner {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-treatment-step__item .c-circle__inner:after {
    margin-top: 5px;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .p-treatment-step__item .text-wrap {
    padding: 50px 0 0;
  }
  .p-treatment-step__item .text-wrap .title {
    text-align: center;
  }
  .p-faq-list__header i {
    right: 10px;
  }
  .p-faq-list__body {
    padding: 20px 0 20px 40px;
  }
  .p-sitemap__list {
    margin: -15px 0;
  }
  .p-sitemap__item {
    padding: 15px 0;
  }
  .p-sitemap__item > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-sitemap__nest ul {
    margin: -2px 0;
  }
  .p-sitemap__nest li {
    padding: 2px 0;
  }
  .p-visual {
    height: 560px;
  }
  .p-visual .title {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    line-height: 1;
    color: #2b0000;
  }
  .p-visual .title em {
    display: block;
    font-size: 46px;
    font-size: 4.6rem;
  }
  .p-visual .title i {
    display: block;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-banner-nosecare {
    padding-bottom: 40px;
  }
  .p-banner-nosecare .detail {
    margin-top: 40px;
  }
  .p-banner-nosecare .detail .title {
    line-height: 1.4;
  }
  .p-banner-nosecare .detail .title i {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-banner-nosecare .detail .title em {
    display: block;
    margin-top: 5px;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2b0000;
  }
  .p-pager {
    margin-top: 30px;
  }
  .p-pager__number li a {
    width: 25px;
    height: 25px;
    padding: 5px 0 5px 1px;
  }
  .c-flex-column-half {
    display: block;
  }
  .c-flex-column-half > * {
    display: block;
    width: 100%;
  }
  .c-flex-column-third {
    display: block;
  }
  .c-flex-column-third > * {
    display: block;
    width: 100%;
  }
  .c-flex-column-quarter {
    display: block;
  }
  .c-flex-column-quarter > * {
    display: block;
    width: 50%;
  }
  .c-column-half .c-column__item {
    display: block;
  }
  .c-column-half .c-column__item .image {
    width: 100%;
  }
  .c-column-half .c-column__item .detail {
    width: 100%;
    background: #fff;
  }
  .c-column-half .c-column__item .detail__inner {
    padding: 40px 30px 60px;
    margin: auto;
  }
  .c-head-section {
    padding: 5px 15px;
    margin-bottom: 2em;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    background: -webkit-linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
    background: linear-gradient(45deg, #2b0000 0%, #6b2e2b 100%);
  }
  .c-head-middle-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .c-head-normal {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .c-head-normal i {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-head-normal--lg {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .c-head-normal--sm {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-head-border-solid {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-head-border-solid--xs {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-head-products em {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .c-head-products i {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-copy-area {
    padding: 110px 0 60px;
  }
  .c-copy-area .c-circle {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .c-copy-area .c-head-normal {
    margin: 0;
  }
  .c-copy-area .c-text {
    margin: 30px 0 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-copy-area .c-link {
    margin: 30px 0 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .c-box-area {
    padding: 20px;
    margin-top: 0.8em;
    margin-bottom: 1.6em;
  }
  .c-products-summary .name i {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-products-summary .name em {
    margin-top: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
  .c-products-summary .price {
    margin-top: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-text--products {
    text-align: left;
    max-width: 375px;
  }
  .c-image {
    margin-top: 0.8em;
    margin-bottom: 1.6em;
  }
  .container-c-image {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .container-c-image .c-image {
    width: 48%;
  }
  .c-link--arrow:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 1em);
    border-bottom: 1px solid #2b0000;
  }
  .c-circle {
    width: 160px;
    height: 160px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .c-list {
    margin-top: 0.8em;
    margin-bottom: 1.6em;
  }
  .c-list--check.is-reservation {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .c-list--check.is-reservation .c-button-arrow {
    margin-left: 0;
  }
  .c-list--color .name {
    -webkit-box-flex: 1;
            flex: 1;
  }
  .c-list--color .panel {
    flex-basis: 150px;
    height: 24px;
  }
  .c-button-arrow {
    padding: 10px;
  }
  .c-button-arrow--sm {
    padding: 5px 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-button-round {
    padding: 10px 30px;
  }
  .c-button-round--sm {
    padding: 5px 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-button-round + .c-button-round {
    margin: 15px auto 0;
  }
  .c-button-fill {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .c-button-fill::before {
    left: 10px;
  }
  .c-table {
    margin: 0.8em auto 1.6em;
  }
  .c-table--border table {
    margin-top: 0;
  }
  .c-table--border tr:not(:first-child) {
    display: block;
    margin-top: 30px;
  }
  .c-table--border th,
  .c-table--border td {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .c-table--border th {
    width: 100%;
    padding-bottom: 5px;
    font-size: 16px;
    font-size: 1.6rem;
    border-bottom: 1px solid #2b0000;
  }
  .c-table--border td {
    margin-top: 10px;
  }
  .u-only--lg, .u-only-inline--lg {
    display: none !important;
  }
  .u-only-flex--lg {
    display: none !important;
  }
  .u-only--sm {
    display: block !important;
  }
  .u-only-inline--sm {
    display: inline-block !important;
  }
  .u-only-flex--sm {
    display: -webkit-box !important;
    display: flex !important;
  }
  .u-fontsize--tiny--sm {
    font-size: 75% !important;
  }
  .u-fontsize--small--sm {
    font-size: 87.5% !important;
  }
  .u-fontsize--large--sm {
    font-size: 112.5% !important;
  }
  .u-fontsize--huge--sm {
    font-size: 125% !important;
  }
  .u-align--center--sm {
    text-align: center !important;
  }
  .u-align--left--sm {
    text-align: left !important;
  }
  .u-align--right--sm {
    text-align: right !important;
  }
  .u-valign--baseline--sm {
    vertical-align: baseline !important;
  }
  .u-valign--top--sm {
    vertical-align: top !important;
  }
  .u-valign--middle--sm {
    vertical-align: middle !important;
  }
  .u-valign--bottom--sm {
    vertical-align: bottom !important;
  }
  .u-valign--text--sm-bottom {
    vertical-align: text-bottom !important;
  }
  .u-valign--text--sm-top {
    vertical-align: text-top !important;
  }
  .u-display--none--sm {
    display: none !important;
  }
  .u-display--inline--sm {
    display: inline !important;
  }
  .u-display--inline--sm-block {
    display: inline-block !important;
  }
  .u-display--block--sm {
    display: block !important;
  }
  .u-display--table--sm {
    display: table !important;
  }
  .u-display--table--sm-cell {
    display: table-cell !important;
  }
  .u-display--flex--sm {
    display: -webkit-box !important;
    display: flex !important;
  }
  .u-display--inline--sm-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
  .u-float--left--sm {
    float: left !important;
  }
  .u-float--right--sm {
    float: right !important;
  }
  .u-float--none--sm {
    float: none !important;
  }
  .u-position--relative--sm {
    position: relative !important;
  }
  .u-position--absolute--sm {
    position: absolute !important;
  }
  .u-position--static--sm {
    position: static !important;
  }
  .u-row--tt {
    margin-top: 10px;
  }
  .u-row--tb {
    margin-bottom: 10px;
  }
  .u-row--st {
    margin-top: 20px;
  }
  .u-row--sb {
    margin-bottom: 20px;
  }
  .u-row--mt {
    margin-top: 30px;
  }
  .u-row--mb {
    margin-bottom: 30px;
  }
  .u-row--lt {
    margin-top: 40px;
  }
  .u-row--lb {
    margin-bottom: 40px;
  }
  .u-row--ht {
    margin-top: 50px;
  }
  .u-row--hb {
    margin-bottom: 50px;
  }
  .u-row--tt--sm {
    margin-top: 15px;
  }
  .u-row--tb--sm {
    margin-bottom: 15px;
  }
  .u-row--st--sm {
    margin-top: 20px;
  }
  .u-row--sb--sm {
    margin-bottom: 20px;
  }
  .u-row--mt--sm {
    margin-top: 40px;
  }
  .u-row--mb--sm {
    margin-bottom: 40px;
  }
  .u-row--lt--sm {
    margin-top: 50px;
  }
  .u-row--lb--sm {
    margin-bottom: 50px;
  }
  .u-row--ht--sm {
    margin-top: 60px;
  }
  .u-row--hb--sm {
    margin-bottom: 60px;
  }
  .u--wid--sm0 {
    width: 0px !important;
  }
  .u--widp--sm0 {
    width: 0% !important;
  }
  .u--wid--sm1 {
    width: 1px !important;
  }
  .u--widp--sm1 {
    width: 1% !important;
  }
  .u--wid--sm2 {
    width: 2px !important;
  }
  .u--widp--sm2 {
    width: 2% !important;
  }
  .u--wid--sm3 {
    width: 3px !important;
  }
  .u--widp--sm3 {
    width: 3% !important;
  }
  .u--wid--sm4 {
    width: 4px !important;
  }
  .u--widp--sm4 {
    width: 4% !important;
  }
  .u--wid--sm5 {
    width: 5px !important;
  }
  .u--widp--sm5 {
    width: 5% !important;
  }
  .u--wid--sm6 {
    width: 6px !important;
  }
  .u--widp--sm6 {
    width: 6% !important;
  }
  .u--wid--sm7 {
    width: 7px !important;
  }
  .u--widp--sm7 {
    width: 7% !important;
  }
  .u--wid--sm8 {
    width: 8px !important;
  }
  .u--widp--sm8 {
    width: 8% !important;
  }
  .u--wid--sm9 {
    width: 9px !important;
  }
  .u--widp--sm9 {
    width: 9% !important;
  }
  .u--wid--sm10 {
    width: 10px !important;
  }
  .u--widp--sm10 {
    width: 10% !important;
  }
  .u--wid--sm11 {
    width: 11px !important;
  }
  .u--widp--sm11 {
    width: 11% !important;
  }
  .u--wid--sm12 {
    width: 12px !important;
  }
  .u--widp--sm12 {
    width: 12% !important;
  }
  .u--wid--sm13 {
    width: 13px !important;
  }
  .u--widp--sm13 {
    width: 13% !important;
  }
  .u--wid--sm14 {
    width: 14px !important;
  }
  .u--widp--sm14 {
    width: 14% !important;
  }
  .u--wid--sm15 {
    width: 15px !important;
  }
  .u--widp--sm15 {
    width: 15% !important;
  }
  .u--wid--sm16 {
    width: 16px !important;
  }
  .u--widp--sm16 {
    width: 16% !important;
  }
  .u--wid--sm17 {
    width: 17px !important;
  }
  .u--widp--sm17 {
    width: 17% !important;
  }
  .u--wid--sm18 {
    width: 18px !important;
  }
  .u--widp--sm18 {
    width: 18% !important;
  }
  .u--wid--sm19 {
    width: 19px !important;
  }
  .u--widp--sm19 {
    width: 19% !important;
  }
  .u--wid--sm20 {
    width: 20px !important;
  }
  .u--widp--sm20 {
    width: 20% !important;
  }
  .u--wid--sm21 {
    width: 21px !important;
  }
  .u--widp--sm21 {
    width: 21% !important;
  }
  .u--wid--sm22 {
    width: 22px !important;
  }
  .u--widp--sm22 {
    width: 22% !important;
  }
  .u--wid--sm23 {
    width: 23px !important;
  }
  .u--widp--sm23 {
    width: 23% !important;
  }
  .u--wid--sm24 {
    width: 24px !important;
  }
  .u--widp--sm24 {
    width: 24% !important;
  }
  .u--wid--sm25 {
    width: 25px !important;
  }
  .u--widp--sm25 {
    width: 25% !important;
  }
  .u--wid--sm26 {
    width: 26px !important;
  }
  .u--widp--sm26 {
    width: 26% !important;
  }
  .u--wid--sm27 {
    width: 27px !important;
  }
  .u--widp--sm27 {
    width: 27% !important;
  }
  .u--wid--sm28 {
    width: 28px !important;
  }
  .u--widp--sm28 {
    width: 28% !important;
  }
  .u--wid--sm29 {
    width: 29px !important;
  }
  .u--widp--sm29 {
    width: 29% !important;
  }
  .u--wid--sm30 {
    width: 30px !important;
  }
  .u--widp--sm30 {
    width: 30% !important;
  }
  .u--wid--sm31 {
    width: 31px !important;
  }
  .u--widp--sm31 {
    width: 31% !important;
  }
  .u--wid--sm32 {
    width: 32px !important;
  }
  .u--widp--sm32 {
    width: 32% !important;
  }
  .u--wid--sm33 {
    width: 33px !important;
  }
  .u--widp--sm33 {
    width: 33% !important;
  }
  .u--wid--sm34 {
    width: 34px !important;
  }
  .u--widp--sm34 {
    width: 34% !important;
  }
  .u--wid--sm35 {
    width: 35px !important;
  }
  .u--widp--sm35 {
    width: 35% !important;
  }
  .u--wid--sm36 {
    width: 36px !important;
  }
  .u--widp--sm36 {
    width: 36% !important;
  }
  .u--wid--sm37 {
    width: 37px !important;
  }
  .u--widp--sm37 {
    width: 37% !important;
  }
  .u--wid--sm38 {
    width: 38px !important;
  }
  .u--widp--sm38 {
    width: 38% !important;
  }
  .u--wid--sm39 {
    width: 39px !important;
  }
  .u--widp--sm39 {
    width: 39% !important;
  }
  .u--wid--sm40 {
    width: 40px !important;
  }
  .u--widp--sm40 {
    width: 40% !important;
  }
  .u--wid--sm41 {
    width: 41px !important;
  }
  .u--widp--sm41 {
    width: 41% !important;
  }
  .u--wid--sm42 {
    width: 42px !important;
  }
  .u--widp--sm42 {
    width: 42% !important;
  }
  .u--wid--sm43 {
    width: 43px !important;
  }
  .u--widp--sm43 {
    width: 43% !important;
  }
  .u--wid--sm44 {
    width: 44px !important;
  }
  .u--widp--sm44 {
    width: 44% !important;
  }
  .u--wid--sm45 {
    width: 45px !important;
  }
  .u--widp--sm45 {
    width: 45% !important;
  }
  .u--wid--sm46 {
    width: 46px !important;
  }
  .u--widp--sm46 {
    width: 46% !important;
  }
  .u--wid--sm47 {
    width: 47px !important;
  }
  .u--widp--sm47 {
    width: 47% !important;
  }
  .u--wid--sm48 {
    width: 48px !important;
  }
  .u--widp--sm48 {
    width: 48% !important;
  }
  .u--wid--sm49 {
    width: 49px !important;
  }
  .u--widp--sm49 {
    width: 49% !important;
  }
  .u--wid--sm50 {
    width: 50px !important;
  }
  .u--widp--sm50 {
    width: 50% !important;
  }
  .u--wid--sm51 {
    width: 51px !important;
  }
  .u--widp--sm51 {
    width: 51% !important;
  }
  .u--wid--sm52 {
    width: 52px !important;
  }
  .u--widp--sm52 {
    width: 52% !important;
  }
  .u--wid--sm53 {
    width: 53px !important;
  }
  .u--widp--sm53 {
    width: 53% !important;
  }
  .u--wid--sm54 {
    width: 54px !important;
  }
  .u--widp--sm54 {
    width: 54% !important;
  }
  .u--wid--sm55 {
    width: 55px !important;
  }
  .u--widp--sm55 {
    width: 55% !important;
  }
  .u--wid--sm56 {
    width: 56px !important;
  }
  .u--widp--sm56 {
    width: 56% !important;
  }
  .u--wid--sm57 {
    width: 57px !important;
  }
  .u--widp--sm57 {
    width: 57% !important;
  }
  .u--wid--sm58 {
    width: 58px !important;
  }
  .u--widp--sm58 {
    width: 58% !important;
  }
  .u--wid--sm59 {
    width: 59px !important;
  }
  .u--widp--sm59 {
    width: 59% !important;
  }
  .u--wid--sm60 {
    width: 60px !important;
  }
  .u--widp--sm60 {
    width: 60% !important;
  }
  .u--wid--sm61 {
    width: 61px !important;
  }
  .u--widp--sm61 {
    width: 61% !important;
  }
  .u--wid--sm62 {
    width: 62px !important;
  }
  .u--widp--sm62 {
    width: 62% !important;
  }
  .u--wid--sm63 {
    width: 63px !important;
  }
  .u--widp--sm63 {
    width: 63% !important;
  }
  .u--wid--sm64 {
    width: 64px !important;
  }
  .u--widp--sm64 {
    width: 64% !important;
  }
  .u--wid--sm65 {
    width: 65px !important;
  }
  .u--widp--sm65 {
    width: 65% !important;
  }
  .u--wid--sm66 {
    width: 66px !important;
  }
  .u--widp--sm66 {
    width: 66% !important;
  }
  .u--wid--sm67 {
    width: 67px !important;
  }
  .u--widp--sm67 {
    width: 67% !important;
  }
  .u--wid--sm68 {
    width: 68px !important;
  }
  .u--widp--sm68 {
    width: 68% !important;
  }
  .u--wid--sm69 {
    width: 69px !important;
  }
  .u--widp--sm69 {
    width: 69% !important;
  }
  .u--wid--sm70 {
    width: 70px !important;
  }
  .u--widp--sm70 {
    width: 70% !important;
  }
  .u--wid--sm71 {
    width: 71px !important;
  }
  .u--widp--sm71 {
    width: 71% !important;
  }
  .u--wid--sm72 {
    width: 72px !important;
  }
  .u--widp--sm72 {
    width: 72% !important;
  }
  .u--wid--sm73 {
    width: 73px !important;
  }
  .u--widp--sm73 {
    width: 73% !important;
  }
  .u--wid--sm74 {
    width: 74px !important;
  }
  .u--widp--sm74 {
    width: 74% !important;
  }
  .u--wid--sm75 {
    width: 75px !important;
  }
  .u--widp--sm75 {
    width: 75% !important;
  }
  .u--wid--sm76 {
    width: 76px !important;
  }
  .u--widp--sm76 {
    width: 76% !important;
  }
  .u--wid--sm77 {
    width: 77px !important;
  }
  .u--widp--sm77 {
    width: 77% !important;
  }
  .u--wid--sm78 {
    width: 78px !important;
  }
  .u--widp--sm78 {
    width: 78% !important;
  }
  .u--wid--sm79 {
    width: 79px !important;
  }
  .u--widp--sm79 {
    width: 79% !important;
  }
  .u--wid--sm80 {
    width: 80px !important;
  }
  .u--widp--sm80 {
    width: 80% !important;
  }
  .u--wid--sm81 {
    width: 81px !important;
  }
  .u--widp--sm81 {
    width: 81% !important;
  }
  .u--wid--sm82 {
    width: 82px !important;
  }
  .u--widp--sm82 {
    width: 82% !important;
  }
  .u--wid--sm83 {
    width: 83px !important;
  }
  .u--widp--sm83 {
    width: 83% !important;
  }
  .u--wid--sm84 {
    width: 84px !important;
  }
  .u--widp--sm84 {
    width: 84% !important;
  }
  .u--wid--sm85 {
    width: 85px !important;
  }
  .u--widp--sm85 {
    width: 85% !important;
  }
  .u--wid--sm86 {
    width: 86px !important;
  }
  .u--widp--sm86 {
    width: 86% !important;
  }
  .u--wid--sm87 {
    width: 87px !important;
  }
  .u--widp--sm87 {
    width: 87% !important;
  }
  .u--wid--sm88 {
    width: 88px !important;
  }
  .u--widp--sm88 {
    width: 88% !important;
  }
  .u--wid--sm89 {
    width: 89px !important;
  }
  .u--widp--sm89 {
    width: 89% !important;
  }
  .u--wid--sm90 {
    width: 90px !important;
  }
  .u--widp--sm90 {
    width: 90% !important;
  }
  .u--wid--sm91 {
    width: 91px !important;
  }
  .u--widp--sm91 {
    width: 91% !important;
  }
  .u--wid--sm92 {
    width: 92px !important;
  }
  .u--widp--sm92 {
    width: 92% !important;
  }
  .u--wid--sm93 {
    width: 93px !important;
  }
  .u--widp--sm93 {
    width: 93% !important;
  }
  .u--wid--sm94 {
    width: 94px !important;
  }
  .u--widp--sm94 {
    width: 94% !important;
  }
  .u--wid--sm95 {
    width: 95px !important;
  }
  .u--widp--sm95 {
    width: 95% !important;
  }
  .u--wid--sm96 {
    width: 96px !important;
  }
  .u--widp--sm96 {
    width: 96% !important;
  }
  .u--wid--sm97 {
    width: 97px !important;
  }
  .u--widp--sm97 {
    width: 97% !important;
  }
  .u--wid--sm98 {
    width: 98px !important;
  }
  .u--widp--sm98 {
    width: 98% !important;
  }
  .u--wid--sm99 {
    width: 99px !important;
  }
  .u--widp--sm99 {
    width: 99% !important;
  }
  .u--wid--sm100 {
    width: 100px !important;
  }
  .u--widp--sm100 {
    width: 100% !important;
  }
  .u-wid--thirds-sm {
    width: 33.33% !important;
  }
  .u-wid--quarter--sm {
    width: 25% !important;
  }
  .u-wid--half--sm {
    width: 50% !important;
  }
  .u-wid--full--sm {
    width: 100% !important;
  }
  .u-mt0--sm {
    margin-top: 0px !important;
  }
  .u-mb0--sm {
    margin-bottom: 0px !important;
  }
  .u-pt0--sm {
    padding-top: 0px !important;
  }
  .u-pb0--sm {
    padding-bottom: 0px !important;
  }
  .u-mt5--sm {
    margin-top: 5px !important;
  }
  .u-mb5--sm {
    margin-bottom: 5px !important;
  }
  .u-pt5--sm {
    padding-top: 5px !important;
  }
  .u-pb5--sm {
    padding-bottom: 5px !important;
  }
  .u-mt10--sm {
    margin-top: 10px !important;
  }
  .u-mb10--sm {
    margin-bottom: 10px !important;
  }
  .u-pt10--sm {
    padding-top: 10px !important;
  }
  .u-pb10--sm {
    padding-bottom: 10px !important;
  }
  .u-mt15--sm {
    margin-top: 15px !important;
  }
  .u-mb15--sm {
    margin-bottom: 15px !important;
  }
  .u-pt15--sm {
    padding-top: 15px !important;
  }
  .u-pb15--sm {
    padding-bottom: 15px !important;
  }
  .u-mt20--sm {
    margin-top: 20px !important;
  }
  .u-mb20--sm {
    margin-bottom: 20px !important;
  }
  .u-pt20--sm {
    padding-top: 20px !important;
  }
  .u-pb20--sm {
    padding-bottom: 20px !important;
  }
  .u-mt25--sm {
    margin-top: 25px !important;
  }
  .u-mb25--sm {
    margin-bottom: 25px !important;
  }
  .u-pt25--sm {
    padding-top: 25px !important;
  }
  .u-pb25--sm {
    padding-bottom: 25px !important;
  }
  .u-mt30--sm {
    margin-top: 30px !important;
  }
  .u-mb30--sm {
    margin-bottom: 30px !important;
  }
  .u-pt30--sm {
    padding-top: 30px !important;
  }
  .u-pb30--sm {
    padding-bottom: 30px !important;
  }
  .u-mt35--sm {
    margin-top: 35px !important;
  }
  .u-mb35--sm {
    margin-bottom: 35px !important;
  }
  .u-pt35--sm {
    padding-top: 35px !important;
  }
  .u-pb35--sm {
    padding-bottom: 35px !important;
  }
  .u-mt40--sm {
    margin-top: 40px !important;
  }
  .u-mb40--sm {
    margin-bottom: 40px !important;
  }
  .u-pt40--sm {
    padding-top: 40px !important;
  }
  .u-pb40--sm {
    padding-bottom: 40px !important;
  }
  .u-mt45--sm {
    margin-top: 45px !important;
  }
  .u-mb45--sm {
    margin-bottom: 45px !important;
  }
  .u-pt45--sm {
    padding-top: 45px !important;
  }
  .u-pb45--sm {
    padding-bottom: 45px !important;
  }
  .u-mt50--sm {
    margin-top: 50px !important;
  }
  .u-mb50--sm {
    margin-bottom: 50px !important;
  }
  .u-pt50--sm {
    padding-top: 50px !important;
  }
  .u-pb50--sm {
    padding-bottom: 50px !important;
  }
  .u-mt55--sm {
    margin-top: 55px !important;
  }
  .u-mb55--sm {
    margin-bottom: 55px !important;
  }
  .u-pt55--sm {
    padding-top: 55px !important;
  }
  .u-pb55--sm {
    padding-bottom: 55px !important;
  }
  .u-mt60--sm {
    margin-top: 60px !important;
  }
  .u-mb60--sm {
    margin-bottom: 60px !important;
  }
  .u-pt60--sm {
    padding-top: 60px !important;
  }
  .u-pb60--sm {
    padding-bottom: 60px !important;
  }
  .u-mt65--sm {
    margin-top: 65px !important;
  }
  .u-mb65--sm {
    margin-bottom: 65px !important;
  }
  .u-pt65--sm {
    padding-top: 65px !important;
  }
  .u-pb65--sm {
    padding-bottom: 65px !important;
  }
  .u-mt70--sm {
    margin-top: 70px !important;
  }
  .u-mb70--sm {
    margin-bottom: 70px !important;
  }
  .u-pt70--sm {
    padding-top: 70px !important;
  }
  .u-pb70--sm {
    padding-bottom: 70px !important;
  }
  .u-mt75--sm {
    margin-top: 75px !important;
  }
  .u-mb75--sm {
    margin-bottom: 75px !important;
  }
  .u-pt75--sm {
    padding-top: 75px !important;
  }
  .u-pb75--sm {
    padding-bottom: 75px !important;
  }
  .u-mt80--sm {
    margin-top: 80px !important;
  }
  .u-mb80--sm {
    margin-bottom: 80px !important;
  }
  .u-pt80--sm {
    padding-top: 80px !important;
  }
  .u-pb80--sm {
    padding-bottom: 80px !important;
  }
  .u-mt85--sm {
    margin-top: 85px !important;
  }
  .u-mb85--sm {
    margin-bottom: 85px !important;
  }
  .u-pt85--sm {
    padding-top: 85px !important;
  }
  .u-pb85--sm {
    padding-bottom: 85px !important;
  }
  .u-mt90--sm {
    margin-top: 90px !important;
  }
  .u-mb90--sm {
    margin-bottom: 90px !important;
  }
  .u-pt90--sm {
    padding-top: 90px !important;
  }
  .u-pb90--sm {
    padding-bottom: 90px !important;
  }
  .u-mt95--sm {
    margin-top: 95px !important;
  }
  .u-mb95--sm {
    margin-bottom: 95px !important;
  }
  .u-pt95--sm {
    padding-top: 95px !important;
  }
  .u-pb95--sm {
    padding-bottom: 95px !important;
  }
  .u-mt100--sm {
    margin-top: 100px !important;
  }
  .u-mb100--sm {
    margin-bottom: 100px !important;
  }
  .u-pt100--sm {
    padding-top: 100px !important;
  }
  .u-pb100--sm {
    padding-bottom: 100px !important;
  }
  #omotesando {
    padding: 30px 0 50px !important;
  }
  #omotesando .p-formula__element:nth-of-type(3) {
    background-color: #fff;
  }
  #omotesando .p-formula__element .c-box-area {
    padding: 20px;
  }
  #omotesando .p-formula__element:nth-of-type(2) .price, #omotesando .p-formula__element--result .price {
    margin-top: 1rem;
  }
  #omotesando .lead-text {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #omotesando .trial-menu {
    padding-top: 0;
  }
  #omotesando .trial-menu__salon {
    padding: 30px 15px 40px;
  }
  .page-campaign .l-headline__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .page-campaign .l-headline__title:after {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .page-campaign .l-section {
    padding: 0 0 80px;
  }
  .page-campaign.derive #brand {
    padding: 0 0 60px;
  }
  .page-campaign.derive #brand .brand-lead {
    margin-top: 40px;
  }
  .page-campaign #salon {
    padding: 50px 0;
  }
  .page-campaign #salon .inner {
    padding: 0;
  }
  .page-campaign #salon .inner .c-head-border-solid {
    margin: 0 20px;
  }
  .page-campaign #salon .inner .lead-text {
    padding: 0 20px;
  }
  .page-campaign #first {
    padding: 50px 0;
  }
  .page-campaign #omotesando {
    padding: 50px 0;
  }
  .page-campaign #campaign-window01 {
    padding-bottom: 50px;
  }
  .page-campaign #campaign-confirm {
    padding-top: 50px;
  }
}
@media screen and (max-width: 360px) {
  .trial-menu-plus__item .detail .text-wrap .title {
    margin: 0 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.trial-menu-plus__price .price:not(:last-child) {
  margin-bottom: 0;
  padding-block: 0;
}
@media screen and (max-width: 768px) {
  .trial-menu-plus__price .price + .c-list--comment {
    margin-bottom: 2em;
  }
}
/* 手話対応サロンの案内追加に伴う調整 */
.p-salon-type {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: nowrap;
  margin: 10px auto 40px;
}
.p-salon-type .icon {
  display: block;
  width: 90px;
}
.p-salon-type p:last-child {
  margin: 0;
  text-align: left;
}
.p-salon-type .icon + p {
  margin-left: 1.5em;
}
.p-salon-type p a {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .p-salon-type {
    margin: 25px auto 45px;
  }
  .p-salon-type .icon {
    width: 80px;
  }
}
.c-pageTitle {
  text-align: center;
  font-size: 36px;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.page-news {
  padding-top: 65px;
  padding-bottom: 140px;
  background-color: #FAF7F5;
}
.page-news h1 {
  margin-bottom: 90px;
}
@media screen and (max-width: 830px) {
  .page-news h1 {
    margin-bottom: 50px;
  }
}
.page-news__nav {
  margin-bottom: 65px;
}
@media screen and (max-width: 830px) {
  .page-news__nav {
    margin-bottom: 30px;
  }
}
.page-news__nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
@media screen and (max-width: 830px) {
  .page-news__nav ul {
    display: block;
  }
}
@media screen and (min-width: 831px) {
  .page-news__nav ul li {
    margin-left: 35px;
  }
  .page-news__nav ul li:first-child {
    margin-left: 0;
  }
}
.page-news__nav ul li a {
  display: block;
  width: 260px;
}
@media screen and (max-width: 830px) {
  .page-news__nav ul li a {
    margin: 0 auto 25px;
  }
}
.page-news__nav ul li.act a:hover {
  background-color: transparent;
  color: #4B0A0A;
}
.page-news__nav ul li.act a:hover .arr {
  fill: #4B0A0A;
}
.page-news__body {
  margin-bottom: 130px;
}
@media screen and (max-width: 830px) {
  .page-news__body {
    padding: 0 20px;
  }
}
.page-news__body__li {
  border-bottom: 1px solid #CFBBB9;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 0px;
}
@media screen and (max-width: 830px) {
  .page-news__body__li {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-news__body__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 830px) {
  .page-news__body__link {
    display: block;
  }
}
.page-news__category {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 200px;
}
@media screen and (max-width: 830px) {
  .page-news__category {
    display: block;
    width: auto;
  }
}
.page-news__category span {
  border-radius: 28px;
  line-height: 28px;
  height: 28px;
  text-align: center;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #4B0A0A;
}
@media screen and (max-width: 830px) {
  .page-news__category span {
    font-size: 11px;
    border-radius: 24px;
    line-height: 24px;
    height: 24px;
    color: #fff;
    background-color: #4B0A0A;
    display: table;
    margin-bottom: 10px;
  }
}
.page-news__date {
  margin: 0 7% 0 3%;
  font-size: 18px;
}
@media screen and (max-width: 830px) {
  .page-news__date {
    margin: 0 0 10px 0;
  }
}
.page-news__title {
  font-size: 22px;
}
.page-news .pagenation__number {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 25px;
}
.page-news .pagenation li:first-child {
  margin-left: 0;
}
.page-news .pagenation li p,
.page-news .pagenation li a {
  font-size: 22px;
  font-weight: 500;
}
.page-news .pagenation li.is-current p, .page-news .pagenation li.is-current a {
  font-weight: 900;
}
.p-news-list__list {
  margin: -20px 0;
}
.p-news-list__item:not(:first-child) {
  border-top: 1px solid #2b0000;
}
.p-news-list__item a {
  padding: 20px 0;
}
.p-news-list__item .tag {
  -webkit-box-ordinal-group: 2;
          order: 1;
  flex-basis: 180px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-news-list__item .tag .category {
  display: block;
  width: 11.5em;
  padding: 5px;
  color: #2b0000;
  border: 1px solid #2b0000;
}
.p-news-list__item .date {
  -webkit-box-ordinal-group: 4;
          order: 3;
  flex-basis: 6em;
  padding-right: 1em;
  margin-left: auto;
  text-align: right;
  line-height: 1;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-news-list__item .text {
  -webkit-box-ordinal-group: 3;
          order: 2;
  padding-right: 1em;
  margin: 0;
}
.p-news-article .inner {
  max-width: 820px;
}
.p-news-article__data {
  padding: 20px 0;
  border-top: 1px solid #2b0000;
  border-bottom: 1px solid #2b0000;
}
.p-news-article__data .tag {
  flex-basis: 180px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-news-article__data .tag .category {
  display: block;
  width: 11em;
  padding: 5px;
  color: #2b0000;
  border: 1px solid #2b0000;
}
.p-news-article__data .date {
  flex-basis: 6em;
  padding-right: 1em;
  margin-left: auto;
  text-align: right;
  line-height: 1;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-news-article__head {
  margin: 20px 0;
  line-height: 1.4;
  font-size: 24px;
  font-size: 2.4rem;
  color: #2b0000;
}
.p-news-article__contents h3 {
  margin-top: 2em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.p-news-article__contents h4 {
  margin-top: 2em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-news-article__contents p,
.p-news-article__contents a {
  line-height: 2;
}
.p-news-article__contents img {
  display: block;
  margin: auto;
}
.p-news-article__contents ul {
  margin-top: 1em;
  margin-bottom: 2em;
}
.p-news-article__contents ul li {
  position: relative;
  padding-left: 1em;
}
.p-news-article__contents ul li:not(:first-child) {
  margin-top: 6px;
}
.p-news-article__contents ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background: #2b0000;
  -webkit-transform: translate(0, 0.6em);
  transform: translate(0, 0.6em);
}
.p-news-article__contents a {
  color: #2b0000;
  text-decoration: underline;
}
.p-news-article__contents strong {
  font-weight: 700;
}
.p-news-article__contents .products-summary {
  margin-top: 20px;
  margin-bottom: 2em;
}
.p-news-article__contents .products-summary p {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.p-news-article__contents .products-summary .name {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 20px;
  font-size: 2rem;
}
.p-news-article__contents .products-spec {
  padding-top: 40px;
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
  border-top: 1px solid #2b0000;
}
.p-news-article__contents .products-spec dl dt {
  display: inline;
}
.p-news-article__contents .products-spec dl dd {
  display: inline;
}
.p-news-article__navigation {
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  line-height: 1;
  border-top: 1px solid #2b0000;
}
.p-news-article__navigation > * {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.p-news-article__navigation .return {
  font-size: 16px;
  margin: 0 60px;
  color: #2b0000;
  text-decoration: underline;
}
.p-news-article__navigation .prev,
.p-news-article__navigation .next {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #2b0000;
}
.p-news-article__navigation .prev:before,
.p-news-article__navigation .next:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.p-news-article__navigation .prev:before {
  -webkit-transform: translate(70%, -50%) scaleY(0.85) rotate(-135deg);
  transform: translate(70%, -50%) scaleY(0.85) rotate(-135deg);
}
.p-news-article__navigation .next:before {
  -webkit-transform: translate(30%, -50%) scaleY(0.85) rotate(45deg);
  transform: translate(30%, -50%) scaleY(0.85) rotate(45deg);
}
.p-news-article__contents {
  font-size: 16px;
}
.p-news-article__contents p {
  color: #4c4948;
  margin-top: 1em;
  margin-bottom: 2em;
}
.p-news-article__contents p:first-child {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-news-article__head {
    font-size: 20px;
  }
  .p-news-article__contents p {
    font-size: 14px;
  }
}
body#recruit main {
  padding-top: 100px;
  background-image: url(/images/recruit/recruit_background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body#recruit .l-headline__title {
  margin-top: 0;
}
body#recruit .l-headline__lead p {
  color: #fff;
}
body#recruit .c-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
body#recruit .c-list.white a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}
body#recruit .c-text {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  color: #fff;
}
body#recruit .l-contents .inner + .inner {
  margin-top: 80px;
}
body#recruit .c-button-arrow.no-link {
  pointer-events: none;
}
body#recruit .c-button-arrow.no-link span {
  padding-left: 0;
}
body#recruit .c-button-arrow.no-link span:before {
  display: none;
}