:root {
  --scale: calc(1440 / 1280); /* 1.125 */
}
html {
  font-size: calc(10 / 1440 * 100vw);
}
body {
  font-family: noto-sans, sans-serif;
  color: #454545;
  position: relative;
  background-color: #fff;
}

@keyframes transformTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes transformBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes transformLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50%);
    opacity: 0;
  }
  51% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformLeftRight2 {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  50% {
    transform: translateX(50%) translateY(-50%);
    opacity: 0;
  }
  51% {
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0) rotate(180deg);
  }
  50% {
    transform: translateX(-50%) rotate(180deg);
    opacity: 0;
  }
  51% {
    transform: translateX(50%) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(180deg);
    opacity: 1;
  }
}
@keyframes transformpagetop {
  0% {
    transform: translateY(0) rotate(-90deg);
  }
  50% {
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
  }
  51% {
    transform: translateY(50%) rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(-90deg);
    opacity: 1;
  }
}
@-webkit-keyframes scrollBorder {
  0% {
    height: 0;
  }
  100% {
    height: 5.4rem;
  }
}

.sp {
  display: none !important;
}
.text_separate span {
  display: inline-block;
}
@media (max-width: 767px) {
  html {
    font-size: calc(10 / 393 * 100vw);
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/* ロゴ */
.logo {
  width: 16.8rem;
}
.mainV_title .logo {
  margin: auto;
}
.products_item .logo {
  width: 6.7rem;
  margin: auto;
}
.list_item .logo {
  width: 6.7rem;
  margin: auto;
}
.products_info .logo {
  width: 6.7rem;
}
.index_fixed_title .logo {
  width: 6.7rem;
  margin: auto;
}
@media (max-width: 767px) {
  .logo {
    width: 9.8rem;
  }
}

/* ボタン */
.link_btn {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.link_btn_circle {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  border: 1px solid #454545;
  display: grid;
  place-items: center;
}
.link_btn_circle:after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.9rem;
  background-image: url("../img/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.link_btn:hover .link_btn_circle:after {
  animation-name: transformLeftRight;
  animation-fill-mode: forwards;
  animation-duration: 0.7s;
  transition-timing-function: ease-out;
}
.link_btn_text {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  color: #454545;
  line-height: 1;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #1e1e1e;
}
.link_btn_text span {
  padding: 0.5rem 0;
}
.link_btn.white .link_btn_text {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.link_btn.white .link_btn_circle {
  border-color: #d7dbe2;
}
.link_btn.white .link_btn_circle:after {
  background-image: url("../img/arrow-gray.svg");
}
@media (max-width: 767px) {
  .link_btn_circle {
    width: 5rem;
    height: 5rem;
  }
  .link_btn_text {
    font-size: 1.3rem;
  }
}

/* テキストアニメーション */
.link_text_animation_box {
  overflow: hidden;
  position: relative;
}
.link_text_animation_box span {
  display: inline-block;
  line-height: 1.1;
  padding: 0.1rem 0;
}
.link_text_animation.active .link_text_animation_box span:nth-of-type(1) {
  animation-name: transformTop;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  transition-timing-function: ease-out;
}
.link_text_animation .link_text_animation_box span:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(101%);
}
.link_text_animation.active .link_text_animation_box span:nth-of-type(2) {
  animation-name: transformBottom;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  transition-timing-function: ease-out;
}

/* cv */
.cv {
  padding: 6rem 6.5rem;
}
.cv_box {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem; */
}
.cv_box_item {
  padding: 4rem 8rem;
}
.cv_box_item:nth-of-type(1) {
  /* サロン検索表示まで一時対応*/
  width: 50%;
  margin-inline: auto;
  /* サロン検索表示時は色を入れ替える*/
  background-color: #d7dbe2;
}
.cv_box_item:nth-of-type(2) {
  background-color: #faeee7;
}
.cv_box_title {
  font-family: utile-display, sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  text-align: center;
}
.cv_box_text {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 2.5rem;
}
.cv_box_btn {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #454545;
  width: 37.7rem;
  height: 6.5rem;
  display: grid;
  place-items: center;
  border: 1px solid #454545;
  margin: 2.5rem auto 0;
}
.cv_box_btn:hover {
  background-color: #454545;
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .cv {
    padding: 2.5rem 2.5rem;
  }
  .cv_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .cv_box_item {
    padding: 2rem 4rem;
  }
  .cv_box_title {
    font-size: 3.2rem;
  }
  .cv_box_text {
    font-size: 1.1rem;
  }
  .cv_box_item:nth-of-type(1) {
    width: 100%;
  }
  .cv_box_btn {
    font-size: 1.3rem;
    width: 24rem;
    height: 5rem;
  }
}

/* information */
.information {
  padding-top: 31.5rem;
  padding-bottom: 9.6rem;
  background-image: url(../img/information-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.information_text {
  font-family: yu-mincho-pr6n, sans-serif;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
.information_catch_text {
  width: 67.8rem;
  margin: 1.5rem auto 0;
}
.information_catch_text svg {
  width: 100%;
  height: auto;
}
.information_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 7rem auto 0;
  width: 47.6rem;
  position: relative;
}
.information_flex:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 12rem;
  background-color: rgb(255 255 255 / 0.6);
}
.information_flex_item {
  width: 50%;
}
.information_flex_item:nth-of-type(2) {
  text-align: right;
}
.information_flex_item_text {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #fbfdfd;
  line-height: 1;
  letter-spacing: 0.03em;
}
.information_flex_item_link {
  margin-left: 1.4rem;
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.information_flex_item_link:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.information_flex_item:nth-of-type(1) .information_flex_item_link:before {
  background-image: url(../img/instagram-icon.svg);
  background-size: 2rem 2rem;
}
.information_flex_item:nth-of-type(2) .information_flex_item_link:before {
  background-image: url(../img/web-icon.svg);
  background-size: 2rem 1.6rem;
}
.information_flex_item_link_text {
  border-bottom: 1px solid #fbfdfd;
}
.information_flex_item_link span {
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  color: #fbfdfd;
  line-height: 1;
  padding-bottom: 0.7rem;
  display: inline-block;
}
.information_flex_item:nth-of-type(2) .information_flex_item_link {
  margin-right: 1.4rem;
}
@media (max-width: 767px) {
  .information {
    padding-top: 23.5rem;
    padding-bottom: 5.5rem;
  }
  .information_text {
    font-size: 1.2rem;
  }
  .information_catch_text {
    width: 35rem;
  }
  .information_flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5rem;
  }
  .information_flex:before {
    width: 70%;
    height: 1px;
  }
  .information_flex_item:nth-of-type(2) {
    text-align: left;
  }
  .information_flex_item_link {
    margin-left: 0;
    margin-top: 2rem;
  }
  .information_flex_item:nth-of-type(2) .information_flex_item_link {
    margin-right: 0;
  }
}
