@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  background-color: #141414;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.8s 0.3s ease-out;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

footer {
  margin-top: auto;
}

html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 1;
}

select::-ms-expand {
  display: none;
}

input,
select,
textarea {
  font-size: max(1rem, 16px);
}

.c-button {
  width: 100%;
  max-width: 21rem;
  border-radius: 99.9rem;
  position: relative;
  color: #141414;
  letter-spacing: 0.1em;
  font-family: "Lora", serif;
  text-transform: capitalize;
  margin-inline: auto;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 2rem;
    max-width: 21.7rem;
  }
}

.c-button--white {
  color: #FFF;
}

.c-button a,
.c-button p {
  display: block;
  padding: 2rem 3.2rem;
}
@media screen and (min-width: 768px) {
  .c-button a,
  .c-button p {
    padding: 2rem 4.2rem;
  }
}

.c-button a:hover {
  opacity: 1;
}

.c-button a::before,
.c-button a::after,
.c-button p::before,
.c-button p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-button a::before,
.c-button p::before {
  left: 0;
  transform: translate(0, -50%);
  width: 5rem;
  height: 5rem;
  border: 1px solid #141414;
  border-radius: 99.9rem;
  transition: width 0.25s ease-out;
}
@media screen and (min-width: 768px) {
  .c-button a::before,
  .c-button p::before {
    width: 6.4rem;
    height: 6.4rem;
  }
}

.c-button--white a::before,
.c-button--white p::before {
  border: 1px solid #FFF;
}

.c-button a::after,
.c-button p::after {
  display: block;
  width: 4rem;
  height: 1rem;
  background-image: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 53%;
  right: 0;
}

.c-button--white a::after,
.c-button--white p::after {
  background-image: url("../images/common/arrow_white.svg");
}

.c-button a:hover::before {
  width: 106%;
}

.c-contactButton {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #FFF;
  max-width: 38.5rem;
  width: 100%;
  padding: 1.8rem 0;
  font-size: 1.5rem;
  margin-inline: auto;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-contactButton {
    padding: 2.35rem 0;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.c-contactButton:hover {
  color: #141414;
  opacity: 1;
  transition: color 0.2s 0.05s;
}

.c-contactButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #FFF;
  width: 120%;
  height: 100%;
}

.c-contactButton:hover::before {
  animation: skewanime 0.3s ease-out forwards;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
.c-contactButton::after {
  content: "";
  display: inline-block;
  height: 4.5rem;
}
@media screen and (min-width: 768px) {
  .c-contactButton::after {
    height: 3.6rem;
  }
}

.c-contactButton span {
  z-index: 1;
  display: flex;
  align-items: center;
}

.c-contactButton span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.c-contactButton:hover span::before {
  transition: background-image 0.15s;
}

.c-contactButton span::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(-45deg);
  position: absolute;
  right: min(6.6vw, 4rem);
}
@media screen and (min-width: 768px) {
  .c-contactButton span::after {
    right: 4rem;
  }
}

.c-contactButton:hover span::after {
  transition: border 0.2s 0.15s;
  border-bottom: 1px solid #141414;
  border-right: 1px solid #141414;
}

.c-contactButton--mail span::before {
  background-image: url(../images/common/mail.svg);
  width: 1.8rem;
  height: 1.3rem;
  margin-right: 0.3rem;
}

.c-contactButton--mail:hover span::before {
  background-image: url(../images/common/mail_hover.svg);
}

.c-contactButton--hotpper span::before {
  background-image: url(../images/common/hotpepper_beauty.svg);
  width: 1rem;
  height: 1.5rem;
  margin-right: 0.3rem;
}

.c-contactButton--hotpper:hover span::before {
  background-image: url(../images/common/hotpepper_beauty_hover.svg);
}

.c-img {
  position: relative;
  width: 100%;
}

.c-img::before {
  content: "";
  display: block;
}

.c-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-largeTitle {
  color: #BE8B33;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: "Lora", serif;
}
@media screen and (min-width: 768px) {
  .c-largeTitle {
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  [data-title=recommend].c-largeTitle {
    letter-spacing: 0;
  }
}

.c-title {
  margin-top: -2.3rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title {
    margin-top: -3rem;
    font-size: 1.8rem;
  }
}

[data-title=sub].c-title {
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  [data-title=sub].c-title {
    margin-top: 0.5rem;
  }
}

.c-usTitle {
  position: relative;
  color: #BE8B33;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  line-height: 1.28;
  font-family: "Lora", serif;
}
@media screen and (min-width: 768px) {
  .c-usTitle {
    font-size: 3.5rem;
  }
}

.c-usTitle::before,
.c-usTitle::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 2.4rem;
  background-color: #BE8B33;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-usTitle::before,
  .c-usTitle::after {
    width: 0.9rem;
    height: 3.1rem;
  }
}

.c-usTitle::before {
  left: -3.6rem;
}
@media screen and (min-width: 768px) {
  .c-usTitle::before {
    left: -4.8rem;
  }
}

.c-usTitle::after {
  right: -3.6rem;
}
@media screen and (min-width: 768px) {
  .c-usTitle::after {
    right: -4.8rem;
  }
}

@media screen and (max-width: 767px) {
  [data-title=facial].c-usTitle::before {
    left: -2.6rem;
  }
}

@media screen and (max-width: 767px) {
  [data-title=facial].c-usTitle::after {
    right: -2.6rem;
  }
}

.l-access {
  padding-top: 14.5rem;
}
@media screen and (min-width: 768px) {
  .l-access {
    padding-top: 14.4rem;
  }
}

.l-brands {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .l-brands {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
}

.l-footer {
  padding-top: 8rem;
  padding-bottom: 8.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 9.6rem;
    padding-bottom: 11.4rem;
  }
}

.l-history {
  padding-top: 14.1rem;
}
@media screen and (min-width: 768px) {
  .l-history {
    padding-top: 19.2rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-membership {
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  .l-membership {
    padding-top: 20rem;
  }
}

.l-menu {
  padding-top: 14.5rem;
}
@media screen and (min-width: 768px) {
  .l-menu {
    padding-top: 16.4rem;
  }
}

.l-recommend {
  padding-top: 9.5rem;
  padding-bottom: 10.3rem;
}
@media screen and (min-width: 768px) {
  .l-recommend {
    padding-top: 13.2rem;
    padding-bottom: 11.4rem;
  }
}

.l-reserve {
  padding-top: 6.9rem;
  padding-bottom: 6.2rem;
}
@media screen and (min-width: 768px) {
  .l-reserve {
    padding-top: 13.2rem;
    padding-bottom: 13rem;
  }
}

.l-staff {
  padding-top: 14.5rem;
}
@media screen and (min-width: 768px) {
  .l-staff {
    padding-top: 14.4rem;
  }
}

.l-thoughts {
  padding-top: 10.3rem;
}
@media screen and (min-width: 768px) {
  .l-thoughts {
    padding-top: 15rem;
  }
}

.p-recommend__container {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-recommend__container .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.2rem 1.1rem;
  }
}
.p-recommend__container .swiper-button-prev,
.p-recommend__container .swiper-button-next {
  position: absolute;
  top: 37.7%;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-recommend__container .swiper-button-prev,
  .p-recommend__container .swiper-button-next {
    display: none;
  }
}
.p-recommend__container .swiper-button-prev {
  left: max(-6.2957540264vw, -8.6rem);
  background-image: url(../images/icon/arrow_prev.svg);
}
.p-recommend__container .swiper-button-next {
  right: max(-6.2957540264vw, -8.6rem);
  background-image: url(../images/icon/arrow_next.svg);
}
@media screen and (max-width: 1280px) {
  .p-recommend__container .swiper-button-prev {
    left: -3rem;
  }
  .p-recommend__container .swiper-button-next {
    right: -3rem;
  }
}
@media screen and (max-width: 1180px) {
  .p-recommend__container .swiper-button-prev {
    left: -2rem;
  }
  .p-recommend__container .swiper-button-next {
    right: -2rem;
  }
}
.p-recommend__container .swiper-button-next:after,
.p-recommend__container .swiper-rtl .swiper-button-prev:after,
.p-recommend__container .swiper-button-prev:after,
.p-recommend__container .swiper-rtl .swiper-button-next:after {
  content: none;
}

@media screen and (min-width: 768px) {
  .p-access {
    margin-top: 5rem;
  }
}

.p-access__contents {
  margin-top: 5rem;
  display: grid;
  row-gap: 5.7rem;
}
@media screen and (min-width: 768px) {
  .p-access__contents {
    display: flex;
    margin-top: 8.4rem;
  }
}

.p-access__logo {
  width: 100%;
  max-width: 15.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-access__logo {
    max-width: 22.2rem;
    -webkit-margin-start: 0.3rem;
            margin-inline-start: 0.3rem;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-access__logo img {
  aspect-ratio: 157.5/62;
}

.p-access__others {
  margin-top: 1.7rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access__others {
    margin-top: 3rem;
    text-align: left;
  }
}

.p-access__info {
  font-size: 1.6rem;
}

.p-access__time {
  margin-top: 0.6rem;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .p-access__time {
    display: flex;
    align-items: center;
  }
}

.p-access__reserve {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-access__reserve {
    margin-top: 4rem;
  }
}

.p-access__tel {
  display: block;
  margin-top: 0.5rem;
  font-size: 3rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-family: "Lora", serif;
}
@media screen and (min-width: 768px) {
  .p-access__tel {
    margin-top: 0.4rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-access__line {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  font-size: 1.6rem;
  text-align: left;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .p-access__line {
    margin-top: 3.1rem;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    font-size: 1.8rem;
    padding: 0;
    border: none;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-access__line::before {
  content: "";
  display: block;
  width: 4.37rem;
  height: 4.16rem;
  background-image: url(../images/icon/line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-access__line::before {
    width: 4.02rem;
    height: 3.83rem;
  }
}

@media screen and (min-width: 768px) {
  .p-access__line p {
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #FFF;
  }
}

@media screen and (min-width: 768px) {
  .p-access__img {
    max-width: 51.4rem;
    flex-shrink: 0;
    margin-left: auto;
  }
}

.p-access__img img {
  aspect-ratio: 335/243;
}

.p-access__map {
  margin-top: 5.1rem;
  position: relative;
  width: 100%;
  height: 28.4rem;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    margin-top: 13rem;
    height: 53.4rem;
  }
}

.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__slider {
  display: flex;
  overflow: hidden;
}

.p-access__sliderImg {
  flex-shrink: 0;
  width: 222.6666666667vw;
  animation: loopSlide 35s infinite linear;
}
@media screen and (min-width: 768px) {
  .p-access__sliderImg {
    width: 227.7rem;
    animation: loopSlide 48s infinite linear;
  }
}

.p-access__sliderImg img {
  aspect-ratio: 835/115;
}

.p-brands__items {
  margin-top: 3.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-brands__items {
    margin-top: 6.5rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.3rem;
  }
}

.p-detail {
  width: 100%;
  display: grid;
  row-gap: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-detail {
    row-gap: 6rem;
    max-width: 74.7rem;
    margin-inline: auto;
  }
}

[data-menu=original] .p-detail {
  row-gap: 2.3rem;
}
@media screen and (min-width: 768px) {
  [data-menu=original] .p-detail {
    row-gap: 6rem;
  }
}

[data-menu=makeup] .p-detail {
  row-gap: 4.4rem;
}
@media screen and (min-width: 768px) {
  [data-menu=makeup] .p-detail {
    row-gap: 6rem;
  }
}

[data-item=shoulder].p-detail__item {
  position: relative;
}

.p-detail__set {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  [data-item=trialPlusSp].p-detail__set {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  [data-item=trialPlus].p-detail__set {
    display: none;
  }
}

.p-detail__set::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #FFF, #FFF 1px, transparent 1px, transparent 2px);
  background-size: 2px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.p-detail__term {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  background-color: #141414;
  padding-right: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-detail__term {
    padding-right: 1.5rem;
  }
}

.p-detail__term::before {
  content: "■";
  display: block;
}

[data-menu=liftUp].p-detail__term::after {
  content: "（石こうマスク）";
  font-size: 1.6rem;
  margin-left: 0.3rem;
}

[data-item=trialPlusSp] .p-detail__term {
  padding-left: 2rem;
}

[data-item=trialPlusSp] .p-detail__term::before {
  content: none;
}

.p-detail__price {
  padding-left: 0.8rem;
  background-color: #141414;
  margin-left: auto;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-detail__price {
    padding-left: 1.2rem;
  }
}

.p-detail__text {
  margin-top: 1.4rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-detail__text {
    margin-top: 0.8rem;
  }
}

[data-menu=original] .p-detail__text {
  margin-top: 0.8rem;
  margin-right: -0.2rem;
}
@media screen and (min-width: 768px) {
  [data-menu=original] .p-detail__text {
    margin-right: 0;
  }
}

[data-menu=makeup] .p-detail__text {
  line-height: 1.5625;
  margin-top: 0.6rem;
}

.p-detail__multiple {
  margin-top: 1.6rem;
  display: grid;
  row-gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-detail__multiple {
    row-gap: 0.8rem;
  }
}

.p-detail__subtitle {
  font-size: 1.8rem;
  background-color: #141414;
  padding-right: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-detail__subtitle {
    padding-right: 1.2rem;
  }
}

.p-detail__subtitle::before {
  content: "・";
}

.p-detail__note {
  font-size: 1.4rem;
  margin-top: 0.9rem;
}
@media screen and (min-width: 768px) {
  .p-detail__note {
    margin: 0;
    position: absolute;
    bottom: -3rem;
  }
}

.p-footer {
  border-top: 1px solid #707070;
}

.p-footer__logo {
  width: 100%;
  max-width: 20.6rem;
  aspect-ratio: 206/81;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 25.7rem;
  }
}

.p-footer__menu {
  margin-top: 4.1rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__menu {
    margin-top: 4.5rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
}

.p-footer__link {
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  padding: 0.2rem 0;
}

.p-footer__instagram {
  display: block;
  margin-top: 2.1rem;
  margin-inline: auto;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url(../images/icon/instagram.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-footer__instagram {
    margin-top: 2.6rem;
  }
}

.p-footer__copyright {
  font-family: "Lora", serif;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 3.4rem;
  }
}

.p-footer__copyright small {
  font-size: 1.4rem;
}

.p-fv {
  position: relative;
  padding-top: 7.2rem;
  height: 100vh;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-fv {
    padding-top: 3.8rem;
  }
}

.p-fv__img {
  will-change: opacity;
  margin-inline: auto;
  position: relative;
  max-width: 62.1333333333vw;
  height: calc(100vh - 7.2rem - 3.8rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s 1s ease-out, visibility 3s 1s;
}
@media screen and (min-width: 768px) {
  .p-fv__img {
    max-width: max(30.0878477306vw, 41.1rem);
    height: calc(100vh - 3.8rem - 3.8rem);
  }
}

.p-fv__img.active {
  opacity: 1;
  visibility: visible;
}

.p-fv__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #CBCBCB;
  mix-blend-mode: multiply;
}

.p-fv__img img {
  height: 100%;
}

.p-fv__wrap {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  top: 66.3%;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fv__wrap {
    top: 58.3%;
  }
}

.p-fv__usTitle {
  font-size: 4.4rem;
  line-height: 1.03;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-fv__usTitle {
    line-height: 1.1363636364;
    font-size: 7rem;
    letter-spacing: -0.008em;
  }
}

.p-fv__title {
  margin-top: 1rem;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 2.3913043478;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    margin-top: 0.4rem;
    font-size: 3.5rem;
  }
}

.p-hamburger {
  width: 3.5rem;
  height: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 150;
  top: 3.7rem;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger__button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-hamburger__button {
    transition: opacity 0.3s ease-out;
  }
}

.p-hamburger__button::after {
  content: "MENU";
  color: #BE8B33;
  font-weight: 400;
  font-size: 1.1rem;
  font-family: "Lora", serif;
  position: absolute;
  top: -2rem;
  padding-bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: block;
  text-align: center;
  transition: opacity 0.3s ease-out;
}

.p-hamburger.open .p-hamburger__button::after {
  content: "CLOSE";
}

.p-hamburger__button span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #BE8B33;
}
@media screen and (max-width: 767px) {
  .p-hamburger__button span {
    transition: transform 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
  }
}

.p-hamburger__button span:first-child {
  top: 0;
}

.p-hamburger__button span:last-child {
  top: 100%;
}

@media screen and (max-width: 767px) {
  .p-hamburger.open .p-hamburger__button span {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.open .p-hamburger__button span:first-child {
    transform: rotate(15deg);
  }
}

@media screen and (max-width: 767px) {
  .p-hamburger.open .p-hamburger__button span:last-child {
    transform: rotate(-15deg);
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.p-header__container {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.p-header__logo {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  width: 13.06rem;
  aspect-ratio: 130.6/20.2;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 15.94rem;
    top: 2.3rem;
    left: 3rem;
  }
}

.p-history__contents {
  margin-top: 4.7rem;
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-history__contents {
    margin-top: 4.8rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
    row-gap: 2.3rem;
  }
}

.p-history__block {
  display: grid;
  row-gap: 0.3rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-history__block {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-history__block p:first-of-type {
    width: 20rem;
    flex-shrink: 0;
  }
}

.p-membership__container {
  border: 1px solid #FFF;
  padding: 2.8rem 2rem 2.6rem;
}
@media screen and (min-width: 768px) {
  .p-membership__container {
    padding: 5.9rem 6rem;
  }
}

.p-membership__contents {
  margin-top: 3rem;
  display: grid;
  row-gap: 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-membership__contents {
    margin-top: 4.3rem;
    row-gap: 8rem;
  }
}

.p-membership__block {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-membership__block {
    display: flex;
    align-items: center;
    -moz-column-gap: 3.9rem;
         column-gap: 3.9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-membership__block:nth-of-type(2) {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-membership__block:nth-of-type(2)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -4rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #FFF, #FFF 1px, transparent 1px, transparent 2px);
    background-size: 2px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
  }
}

.p-membership__title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  padding: 0.7rem;
  background-color: #292929;
}
@media screen and (min-width: 768px) {
  .p-membership__title {
    padding: 1.45rem;
    width: 100%;
    max-width: 24.4rem;
    flex-shrink: 0;
  }
}

.p-membership__text {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-membership__text {
    margin-top: 0;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-menu {
    margin-top: 19.3rem;
  }
}

.p-menu__facial {
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-menu__facial {
    margin-top: 12.9rem;
  }
}

.p-menu__note {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-menu__note {
    margin-top: 0.8rem;
  }
}

.p-menu__contents {
  margin-top: 7.7rem;
}
@media screen and (min-width: 768px) {
  .p-menu__contents {
    margin-top: 10.7rem;
  }
}

.p-menu__block:nth-of-type(n+2) {
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .p-menu__block:nth-of-type(n+2) {
    margin-top: 19.9rem;
  }
}

.p-menu__term {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .p-menu__term {
    padding-bottom: 0.5rem;
  }
}

[data-term=professional].p-menu__term::before {
  content: "";
  display: block;
  width: 5.7rem;
  aspect-ratio: 57/64;
  background-image: url(../images/common/no01_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-inline: auto;
  margin-bottom: 0.9rem;
}
@media screen and (min-width: 768px) {
  [data-term=professional].p-menu__term::before {
    width: 6.2rem;
    background-image: url(../images/common/no01.webp);
    margin-bottom: 0.8rem;
  }
}

.p-menu__supplement {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 1.4rem;
}

.p-menu__text {
  margin-top: 3.6rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-menu__text {
    margin-top: 3.7rem;
  }
}

.p-menu__list {
  margin-top: 4.1rem;
}
@media screen and (min-width: 768px) {
  .p-menu__list {
    margin-top: 3.6rem;
  }
}

[data-menu=makeup] .p-menu__list {
  margin-top: 5.1rem;
}
@media screen and (min-width: 768px) {
  [data-menu=makeup] .p-menu__list {
    margin-top: 6.2rem;
  }
}

@media screen and (min-width: 768px) {
  [data-menu=original] .p-menu__list {
    margin-top: 4.3rem;
  }
}

.p-menu__link {
  margin-top: 4.4rem;
  display: flex;
  align-items: center;
  border: 1px solid #FFF;
  padding: 1.8rem 2.4rem 1.8rem 2.5rem;
  font-size: 1.6rem;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .p-menu__link {
    margin-top: 6rem;
    max-width: 43.7rem;
    width: 100%;
    margin-inline: auto;
    padding: 2.7rem 2rem 2.7rem 2.7rem;
  }
}

.p-menu__link::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 0.6rem;
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: auto;
  transition: transform 0.3s ease-out;
}

.p-menu__link:hover::after {
  transform: translateX(0.3rem);
}

.p-menu__imgs {
  margin: 7.7rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .p-menu__imgs {
    margin-top: 12.3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 0.2rem;
         column-gap: 0.2rem;
  }
}

[data-imgs=second].p-menu__imgs {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  [data-imgs=second].p-menu__imgs {
    margin-top: 8.2rem;
  }
}

.p-menu__large {
  width: 100%;
  transition: opacity 0.8s var(--ease-out-cubic), translate 0.8s var(--ease-out-cubic);
}

.p-menu__large img {
  aspect-ratio: 375/230;
}
@media screen and (min-width: 768px) {
  .p-menu__large img {
    aspect-ratio: 454/315;
  }
}

.p-menu__large,
.p-menu__img {
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  translate: 0 0.6em;
  opacity: 0;
}

[data-img=second].p-menu__img {
  transition: opacity 0.8s var(--ease-out-cubic), translate 0.8s var(--ease-out-cubic);
}
@media screen and (min-width: 768px) {
  [data-img=second].p-menu__img {
    transition: opacity 0.8s 0.4s var(--ease-out-cubic), translate 0.8s 0.4s var(--ease-out-cubic);
  }
}

[data-img=third].p-menu__img {
  transition: opacity 0.8s 0.4s var(--ease-out-cubic), translate 0.8s 0.4s var(--ease-out-cubic);
}
@media screen and (min-width: 768px) {
  [data-img=third].p-menu__img {
    transition: opacity 0.8s 0.8s var(--ease-out-cubic), translate 0.8s 0.8s var(--ease-out-cubic);
  }
}

.p-menu__large.active,
.p-menu__img.active {
  translate: 0;
  opacity: 1;
}

.p-menu__small {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0.3rem;
       column-gap: 0.3rem;
}
@media screen and (min-width: 768px) {
  .p-menu__small {
    display: contents;
  }
}

.p-menu__small img {
  aspect-ratio: 186/130;
}
@media screen and (min-width: 768px) {
  .p-menu__small img {
    aspect-ratio: 454/315;
  }
}

.p-menu__makeup {
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .p-menu__makeup {
    margin-top: 20rem;
  }
}

.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 10;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.4s ease-out, opacity 0.4s ease-out;
  background: #141414;
  padding: 8.3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-nav {
    top: 8.6rem;
    padding: 0;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: transparent;
    width: 13.3rem;
  }
}

.p-nav.open {
  opacity: 1;
  visibility: visible;
}

.p-nav__inner {
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-nav__inner {
    opacity: 1;
  }
}

.p-nav.open .p-nav__inner {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-nav__container {
    display: flex;
    flex-direction: column;
  }
}

.p-nav__logo {
  display: block;
  width: 100%;
  max-width: 19.37rem;
  aspect-ratio: 193.7/76.3;
  margin-inline: auto;
}

.p-nav__menu {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-nav__menu {
    width: 100%;
    margin: 0;
    display: grid;
    row-gap: 0.4rem;
  }
}

.p-nav__link {
  display: block;
  padding: 1.1rem 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-family: "Lora", serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-nav__link {
    width: 100%;
    font-size: 1.4rem;
    padding: 0.85rem 3rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    transition: background-color 0.3s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-nav__link:hover {
    background-color: #BE8B33;
    opacity: 1;
  }
}

.p-nav__sns {
  margin-top: 2.9rem;
}
@media screen and (min-width: 768px) {
  .p-nav__sns {
    margin-top: 1.6rem;
    margin-left: 3rem;
  }
}

.p-nav__others {
  margin-top: 4rem;
  text-align: center;
}

.p-nav__info {
  font-size: 1.6rem;
}

.p-nav__time {
  margin-top: 0.5rem;
  line-height: 1.5625;
}

.p-nav__tel {
  display: block;
  margin-top: 3.4rem;
  font-size: 3rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-family: "Lora", serif;
}

.p-recommend {
  background-color: #292929;
}

.p-recommend__container {
  margin-top: 3.9rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__container {
    margin-top: 8.9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recommend__swiper {
    margin-right: calc(50% - 50vw) !important;
  }
}

.p-recommend__img {
  background-color: #FFF;
}

.p-recommend__text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-recommend__text {
    margin-top: 2.3rem;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}

.p-reserve__link {
  display: block;
  margin-inline: auto;
  border: 1px solid #FFF;
  padding: 2.5rem 2rem 2.5rem 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__link {
    max-width: 80.9rem;
    height: 12.7rem;
    padding: 0;
  }
}

.p-reserve__link h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.3rem;
       column-gap: 2.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3888888889;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-reserve__link h2 {
    font-size: 2rem;
    -moz-column-gap: 2.2rem;
         column-gap: 2.2rem;
  }
}

.p-reserve__link h2::before {
  content: "";
  display: block;
  width: 3.85rem;
  height: 3.85rem;
  background-image: url(../images/icon/instagram.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-reserve__link h2::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-sns {
    justify-content: flex-start;
  }
}

.p-sns__instagram,
.p-sns__line {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-sns__instagram,
  .p-sns__line {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.p-sns__instagram {
  width: 2.25rem;
  height: 2.25rem;
  background-image: url(../images/icon/instagram.svg);
}
@media screen and (min-width: 768px) {
  .p-sns__instagram {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.p-sns__line {
  width: 3.1rem;
  height: 3rem;
  background-image: url(../images/icon/line.svg);
}

@media screen and (min-width: 768px) {
  .p-staff {
    margin-top: 5rem;
  }
}

.p-staff__contents {
  margin-top: 3.6rem;
  display: grid;
  row-gap: 7.8rem;
}
@media screen and (min-width: 768px) {
  .p-staff__contents {
    margin-top: 10.5rem;
    row-gap: 15rem;
  }
}

.p-staff__item {
  display: grid;
  row-gap: 5.7rem;
}
@media screen and (min-width: 768px) {
  .p-staff__item {
    display: flex;
    -moz-column-gap: min(7.9795021962vw, 10.9rem);
         column-gap: min(7.9795021962vw, 10.9rem);
  }
}

@media screen and (min-width: 768px) {
  .p-staff__item:nth-child(even) {
    flex-direction: row-reverse;
    -moz-column-gap: min(5.7833089312vw, 7.9rem);
         column-gap: min(5.7833089312vw, 7.9rem);
  }
}

@media screen and (min-width: 768px) {
  .p-staff__img {
    max-width: 47.1rem;
    flex-shrink: 0;
  }
}

.p-staff__img img {
  aspect-ratio: 334/272;
}

@media screen and (min-width: 768px) {
  .p-staff__body {
    width: 100%;
  }
}

.p-staff__name {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.1rem;
       column-gap: 2.1rem;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-staff__name {
    -moz-column-gap: 1.8rem;
         column-gap: 1.8rem;
  }
}

.p-staff__name span {
  color: #BE8B33;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .p-staff__name span {
    font-size: 1.6rem;
  }
}

[data-staff=ceo].p-staff__name::before {
  content: "代表";
  font-size: 1.6rem;
  display: block;
  margin: 0.3rem -1.6rem 0 0;
}
@media screen and (min-width: 768px) {
  [data-staff=ceo].p-staff__name::before {
    margin-right: -1.3rem;
  }
}

.p-staff__introduction {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.0625;
}
@media screen and (min-width: 768px) {
  .p-staff__introduction {
    margin-top: 2.1rem;
    line-height: 2.5;
  }
}

.p-staff__awards {
  margin-top: 2.4rem;
  border-top: 1px solid #C9C9C9;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-staff__awards {
    margin-top: 1.1rem;
    padding-top: 5rem;
  }
}

.p-staff__term {
  font-size: 1.8rem;
  font-weight: 400;
}

.p-staff__list {
  margin-top: 1.9rem;
  font-size: 1.6rem;
  display: grid;
  row-gap: 0.9rem;
}

@media screen and (min-width: 768px) {
  .p-staff__wrap {
    display: flex;
    -moz-column-gap: 1.4rem;
         column-gap: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-staff__subject {
    flex-shrink: 0;
  }
}

.p-staff__detail {
  margin-top: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-staff__detail {
    margin: 0;
  }
}

.p-thoughts {
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thoughts {
    max-width: 136.6rem;
  }
}

.p-thoughts__container {
  position: relative;
}

.p-thoughts__body {
  position: relative;
  padding-top: 21.5rem;
}
@media screen and (min-width: 768px) {
  .p-thoughts__body {
    padding-top: 12rem;
  }
}

.p-thoughts__img {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  transition: opacity 0.8s var(--ease-out-cubic), translate 0.8s var(--ease-out-cubic);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  translate: 0 0.6em;
  opacity: 0;
}

.p-thoughts__img.active {
  translate: 0;
  opacity: 1;
}

[data-img=img1].p-thoughts__img {
  background-image: url(../images/common/thought_1.webp);
  top: 0;
  left: 0;
  width: min(31.2vw, 16rem);
  aspect-ratio: 117/83;
}
@media screen and (min-width: 768px) {
  [data-img=img1].p-thoughts__img {
    left: 19.9rem;
    width: min(17.0571010249vw, 23.3rem);
  }
}

[data-img=img2].p-thoughts__img {
  background-image: url(../images/common/thought_2.webp);
  top: 5.7rem;
  right: 0;
  width: min(43.7333333333vw, 22rem);
  aspect-ratio: 164/115;
}
@media screen and (min-width: 768px) {
  [data-img=img2].p-thoughts__img {
    top: 4.7rem;
    width: min(23.7920937042vw, 32.5rem);
  }
}

[data-img=img3].p-thoughts__img {
  background-image: url(../images/common/thought_3.webp);
  bottom: 21.4rem;
  left: 0;
  width: min(43.7333333333vw, 22rem);
  aspect-ratio: 164/116;
}
@media screen and (min-width: 768px) {
  [data-img=img3].p-thoughts__img {
    bottom: 16.5rem;
    width: min(23.7920937042vw, 32.5rem);
  }
}

[data-img=img4].p-thoughts__img {
  background-image: url(../images/common/thought_4.webp);
  bottom: 13.1rem;
  right: 2rem;
  width: min(31.4666666667vw, 16rem);
  aspect-ratio: 118/83;
}
@media screen and (min-width: 768px) {
  [data-img=img4].p-thoughts__img {
    bottom: 29.6rem;
    right: 14.2rem;
    width: min(17.0571010249vw, 23.3rem);
  }
}

[data-img=img5].p-thoughts__img {
  background-image: url(../images/common/thought_5.webp);
  bottom: 3.6rem;
  left: 7rem;
  width: min(31.4666666667vw, 16rem);
  aspect-ratio: 118/83;
}
@media screen and (min-width: 768px) {
  [data-img=img5].p-thoughts__img {
    bottom: -10.4rem;
    width: min(17.0571010249vw, 23.3rem);
    left: auto;
    right: 46.8rem;
  }
}

.p-thoughts__title {
  color: #BE8B33;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  border-bottom: 1px solid #BE8B33;
  padding-bottom: 0.1rem;
  font-size: 2rem;
  font-weight: 400;
}

.p-thoughts__subtitle {
  margin-top: 2.9rem;
  font-size: 2.7rem;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thoughts__subtitle {
    margin-top: 3.7rem;
    font-size: 3rem;
    line-height: 1.8333333333;
  }
}

.p-thoughts__text {
  margin-top: 3.9rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.375;
}
@media screen and (min-width: 768px) {
  .p-thoughts__text {
    margin-top: 4.3rem;
    font-size: 1.8rem;
    line-height: 2.5;
  }
}

.p-thoughts__slider {
  margin-top: 30.3rem;
  display: flex;
  overflow: hidden;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thoughts__slider {
    margin: 12.9rem calc(50% - 50vw) 0;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
}

.p-thoughts__sliderImg {
  flex-shrink: 0;
  width: 77.6rem;
  animation: loopSlide 35s infinite linear;
}
@media screen and (min-width: 768px) {
  .p-thoughts__sliderImg {
    width: 145.6rem;
    animation: loopSlide 48s infinite linear;
  }
}

.p-thoughts__sliderImg img {
  aspect-ratio: 776/71;
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.u-animation {
  opacity: 0;
}

.u-animation.active {
  opacity: 1;
}

.u-animation span {
  animation: showText 3s backwards;
  display: inline-block;
}

.u-animation > span {
  overflow: hidden;
}

[data-title=main].u-animation > span {
  padding: 0.8rem 0.2rem;
  margin: -0.8rem -0.2rem;
}
@media screen and (min-width: 768px) {
  [data-title=main].u-animation > span {
    padding: 1rem 0.4rem;
    margin: -1rem -0.4rem;
  }
}

.u-animation > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

@keyframes showTextFromBottom {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0px);
  }
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-fadeIn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}

.u-fadeIn.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.u-nowrap {
  white-space: nowrap;
}
/*# sourceMappingURL=styles.css.map */
