@charset "UTF-8";
html {
  font-size: 62.5%;
}

p,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

.lazyload-img {
  opacity: 0;
  transition: 0.3s opacity;
}
.lazyload-img.lazyloaded {
  opacity: 1;
}

.anchor {
  display: block;
  height: 0px;
  position: relative;
}

.none {
  display: none!important;
}
/* 共通クラス */
.is-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 750px) {
  .is-tab {
    display: block;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is-sp {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.inline__block {
  display: inline-block;
}

.more__btn {
  width: min(400px, 28.57vw);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .more__btn {
    width: 78.53vw;
  }
}
.more__btn .more__link {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  font-size: min(16px, 1.14vw);
  color: #232324;
  padding: min(23px, 1.64vw) 0;
  border: 1px solid #232324;
  border-radius: 999px;
  letter-spacing: 0.2em;
  text-align: center;
  transition: 0.6s;
}
@media screen and (max-width: 750px) {
  .more__btn .more__link {
    font-size: 3.47vw;
    padding: 4.53vw 0;
  }
}
.more__btn .more__link:hover {
  color: #fff;
  background-color: #232324;
  transition: 0.6s;
}

body {
  margin: 0 auto;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #232324;
}

/* header */
.c-header {
  width: 100%;
  height: min(118px, 8.43vw);
  position: fixed;
  top: 0;
  z-index: 100;
  opacity: 0;
  -webkit-animation: fadeIn 3s ease 2s;
          animation: fadeIn 3s ease 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-header.add-bg {
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 750px) {
  .c-header {
    height: min(100px, 13.33vw);
  }
}

.header__inner {
  padding: 0 min(132px, 9.43vw) 0 min(50px, 3.57vw);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .header__inner {
    padding: 0 4vw;
  }
}

.logo {
  padding: min(40px, 2.86vw) 0;
}
@media screen and (max-width: 750px) {
  .logo {
    padding: 4vw 0;
  }
}
.logo img:nth-child(1) {
  width: min(287px, 20.5vw);
  display: block;
}
@media screen and (max-width: 750px) {
  .logo img:nth-child(1) {
    width: 61.33vw;
  }
}
.logo img:nth-child(2) {
  width: min(105px, 7.5vw);
  display: block;
  padding-top: min(11px, 0.79vw);
}
@media screen and (max-width: 750px) {
  .logo img:nth-child(2) {
    width: 22.53vw;
    padding-top: 2.27vw;
    padding-left: 0.4vw;
  }
}

.header-nav {
  margin-left: auto;
  margin-right: 0;
}
.header-nav .header__menu {
  display: flex;
  gap: min(66px, 4.71vw);
}
@media screen and (max-width: 750px) {
  .header-nav .header__menu {
    display: none;
  }
}

.header__nav-item .header__nav-item-link {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.6666666667;
  font-family: "Mulish", sans-serif;
  color: #1e1e1e;
  font-weight: 500;
  text-transform: uppercase;
}
.header__nav-item .header__nav-item-link:hover {
  opacity: 0.7;
}

/* ハンバーガーメニュー */
.drawer-hamburger {
  width: min(38px, 2.71vw);
  height: min(31px, 2.21vw);
  right: min(50px, 3.57vw);
  top: min(40px, 2.86vw);
  padding: 0;
  text-align: center;
  z-index: 95;
  position: fixed;
}
@media screen and (max-width: 750px) {
  .drawer-hamburger {
    width: 8.53vw;
    height: 6.8vw;
  }
}
.drawer-hamburger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: min(2px, 0.14vw);
  background-color: #000;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .drawer-hamburger-icon {
    height: 0.4vw;
  }
}
.drawer-hamburger-icon:nth-child(2) {
  top: 10%;
}
.drawer-hamburger-icon:nth-child(3) {
  top: 90%;
}

/* ドロワー内 */
.drawer--right .drawer-nav {
  width: 100%;
  z-index: 90;
  display: flex;
  background-color: #f5f6f6;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 100%;
  height: 100vh;
  transition: left 1s;
}
@media screen and (max-width: 750px) {
  .drawer--right .drawer-nav {
    padding: 0 0 2.67vw 0;
    width: 100%;
    right: -100%;
    height: 100%;
  }
}

.drawer--right .drawer-nav.open {
  left: 0;
}

.drawer__image {
  width: 35.71vw;
  height: min(1020px, 72.86vw);
}
@media screen and (max-width: 750px) {
  .drawer__image {
    display: none;
  }
}
.drawer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.drawer__contents {
  width: 64.29vw;
  height: min(1020px, 72.86vw);
  font-size: min(16px, 1.14vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .drawer__contents {
    width: 100%;
    font-size: 3.73vw;
  }
}

.drawer__main {
  padding: min(130px, 9.29vw) min(100px, 7.14vw) 0 min(130px, 9.29vw);
}
@media screen and (max-width: 750px) {
  .drawer__main {
    padding: 17.33vw;
    padding-left: 6.67vw;
    padding-right: 6.67vw;
    padding-bottom: 17.33vw;
  }
}

.drawer__logo {
  margin-top: min(10px, 0.71vw);
}
.drawer__logo img {
  display: block;
}
.drawer__logo img:nth-child(1) {
  width: min(287px, 20.5vw);
}
@media screen and (max-width: 750px) {
  .drawer__logo img:nth-child(1) {
    width: 61.33vw;
  }
}
.drawer__logo img:nth-child(2) {
  width: min(105px, 7.5vw);
  margin-top: min(10px, 0.71vw);
}
@media screen and (max-width: 750px) {
  .drawer__logo img:nth-child(2) {
    width: 22.53vw;
    margin-top: 2vw;
  }
}

.drawer__nav-wrapper {
  margin-top: min(98px, 7vw);
  display: flex;
  letter-spacing: 0.1em;
  position: relative;
  gap: min(150px, 10.71vw);
}
@media screen and (max-width: 750px) {
  .drawer__nav-wrapper {
    flex-direction: column;
    margin-top: 0;
    gap: 0;
  }
}

.drawer__nav-menu {
  width: min(300px, 21.43vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(46px, 3.29vw);
}
@media screen and (max-width: 750px) {
  .drawer__nav-menu {
    height: 77.33vw;
    justify-content: flex-start;
    gap: 11.33vw;
  }
  .drawer__nav-menu:nth-child(1) {
    width: 100%;
  }
  .drawer__nav-menu:nth-child(2) {
    width: 52%;
  }
}

.drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: min(46px, 3.29vw);
}
@media screen and (max-width: 750px) {
  .drawer__nav-list {
    margin-top: 13.33vw;
    flex-direction: row;
    gap: 0;
  }
}

.drawer-nav-item-link {
  color: #232324;
}
.drawer-nav-item-link:hover {
  opacity: 0.7;
}
.drawer-nav-item-link img {
  width: min(30px, 2.14vw);
  height: min(30px, 2.14vw);
  margin-right: min(20px, 1.43vw);
}

.drawer__consult-wrapper {
  width: min(220px, 15.71vw);
  padding-top: min(75px, 5.36vw);
  position: relative;
}
@media screen and (max-width: 750px) {
  .drawer__consult-wrapper {
    width: 100%;
    margin-top: 20.67vw;
  }
}

.drawer__consult-text {
  font-size: min(13px, 0.93vw);
  line-height: 1.846;
}
@media screen and (max-width: 750px) {
  .drawer__consult-text {
    font-size: 3.2vw;
    width: 100%;
    text-align: center;
    font-feature-settings: "palt" 1;
  }
}

.drawer__snss {
  display: flex;
  margin-top: min(35px, 2.5vw);
  margin-left: min(5px, 0.36vw);
  gap: min(30px, 2.14vw);
}
@media screen and (max-width: 750px) {
  .drawer__snss {
    width: 100%;
    margin-top: 6.67vw;
    gap: 8.93vw;
    margin-left: auto;
    justify-content: center;
  }
}
.drawer__snss img {
  width: min(21px, 1.5vw);
  height: min(20px, 1.43vw);
}
@media screen and (max-width: 750px) {
  .drawer__snss img {
    width: 6vw;
    height: 5.73vw;
  }
}

.drawer__sns-link:hover {
  opacity: 0.7;
}

.drawer__bottom-list {
  width: 100%;
  display: flex;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .drawer__bottom-list {
    width: 100%;
  }
}

.drawer__bottom-item {
  width: 33.3333333333%;
}
.drawer__bottom-item:nth-child(2) .drawer__bottom-link {
  background-color: #343434;
}

.drawer__bottom-link {
  width: 100%;
  display: inline-block;
  height: min(124px, 8.86vw);
  line-height: min(124px, 8.86vw);
  background-color: #454545;
  font-size: min(15px, 1.07vw);
  color: #f3f3f3;
}
@media screen and (max-width: 750px) {
  .drawer__bottom-link {
    font-size: 3.2vw;
    height: 16vw;
    line-height: 16vw;
  }
}
.drawer__bottom-link p {
  display: inline;
  position: relative;
}
.drawer__bottom-link p::after {
  position: absolute;
  content: "";
  background: url(../images/common/icon-arrow@2x.png) no-repeat center center/cover;
  width: min(10px, 0.71vw);
  height: min(15px, 1.07vw);
  top: 50%;
  right: max(-25px, -1.79vw);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .drawer__bottom-link p::after {
    top: 55%;
    right: -4vw;
    width: 1.33vw;
    height: 2vw;
  }
}
.drawer__bottom-link:hover {
  opacity: 0.7;
}

/* サイドご相談 */
.fv__consult-label {
  position: fixed;
  right: 0;
  top: calc((100vh - 260px) / 2);
  width: min(59px, 4.21vw);
  height: min(260px, 18.57vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2bcfff;
}
@media screen and (max-width: 750px) {
  .fv__consult-label {
    position: fixed;
    top: auto;
    bottom: 0;
    font-size: 2.4rem;
    letter-spacing: 0.4em;
    width: 100%;
    height: 8vh;
    z-index: 50;
  }
}

.fv__consult {
  font-weight: 900;
  font-size: min(16px, 1.14vw);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-orientation: sideways-right;
  writing-mode: vertical-lr;
  letter-spacing: 0.3em;
  transition: opacity 0.4s;
}
.fv__consult:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .fv__consult {
    height: 3.7vh;
    font-size: 3.73vw;
    font-weight: 500;
    padding: 0;
    text-align: center;
    width: 45%;
    display: flex;
    align-items: center;
    line-height: 1.333;
    writing-mode: horizontal-tb;
    text-orientation: inherit;
  }
}

.consult__part {
  position: fixed;
  background-color: rgba(103, 201, 191, 0.96);
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  transition: left 1s;
  z-index: 100;
}

.checkbox:checked ~ .consult__part {
  left: 0;
}

.x__btn-label {
  position: absolute;
  top: max(-80px, -5.71vw);
  right: max(-70px, -5vw);
  width: min(50px, 3.57vw);
  height: min(50px, 3.57vw);
}
.x__btn-label:hover {
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .x__btn-label {
    top: -12vw;
    right: 2.67vw;
    width: 13.33vw;
    height: 13.33vw;
  }
}

.x__btn {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.x__btn-inline {
  display: inline-block;
  position: absolute;
  width: min(70px, 5vw);
  height: min(2px, 0.14vw);
  background-color: #fff;
  transform-origin: left;
}
@media screen and (max-width: 750px) {
  .x__btn-inline {
    width: 12vw;
  }
}
.x__btn-inline:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .x__btn-inline:nth-child(1) {
    top: 1.33vw;
    left: 3.33vw;
  }
}
.x__btn-inline:nth-child(2) {
  top: 100%;
  left: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .x__btn-inline:nth-child(2) {
    top: 75%;
    left: 3.33vw;
  }
}

.consult__wrapper {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: min(50px, 3.57vw);
}
@media screen and (max-width: 750px) {
  .consult__wrapper {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    gap: 6vw;
  }
}

.consult__title {
  font-weight: 900;
  font-size: min(26px, 1.86vw);
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}
@media screen and (max-width: 750px) {
  .consult__title {
    font-size: 5.07vw;
    font-weight: 700;
  }
}

.consult__inner {
  width: min(745px, 53.21vw);
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: min(25px, 1.79vw);
  padding: min(80px, 5.71vw) 0 min(90px, 6.43vw);
}
@media screen and (max-width: 750px) {
  .consult__inner {
    width: 100%;
    padding: 7vh 6.27vw;
  }
}
.consult__inner .consult__text {
  font-size: min(16px, 1.14vw);
  width: 100%;
  padding: auto;
}
@media screen and (max-width: 750px) {
  .consult__inner .consult__text {
    font-size: 3.47vw;
    text-align: left;
  }
}

.consult__list-btn {
  width: min(426px, 30.43vw);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .consult__list-btn {
    width: 100%;
    margin-top: 3vh;
  }
}

.consult__list-link {
  display: inline-block;
  font-size: min(16px, 1.14vw);
  letter-spacing: 0.1em;
  padding: min(20px, 1.43vw) 0;
  width: min(426px, 30.43vw);
  border: 1px solid #fff;
  color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .consult__list-link {
    font-size: 3.73vw;
    width: 100%;
    padding: 4.8vw 0;
  }
}
.consult__list-link:hover {
  color: #6bd1c7;
  background-color: #fff;
}

/* ご相談 ドロワー内部 */
.open .fv__consult-label {
  position: absolute;
  width: min(220px, 15.71vw);
  height: min(60px, 4.29vw);
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .open .fv__consult-label {
    display: block;
    width: 100%;
    height: 13.33vw;
    line-height: 13.33vw;
    top: -13.33vw;
  }
}
.open .fv__consult-label .fv__consult {
  writing-mode: horizontal-tb;
  text-orientation: inherit;
}
@media screen and (max-width: 750px) {
  .open .fv__consult-label .fv__consult {
    width: 100%;
    height: 13.33vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.73vw;
  }
}

/* ドロワーハンバーガーボタン　クリック時の動き */
.drawer-hamburger-icon.open:nth-child(1) {
  display: none;
  transition: 0.4s;
}

.drawer-hamburger-icon.open:nth-child(2) {
  transform: translateY(0%) rotate(45deg);
  top: 50%;
  left: 0;
  transition: 0.4s;
}

.drawer-hamburger-icon.open:nth-child(3) {
  transform: translateY(0%) rotate(-45deg);
  top: 50%;
  left: 0;
  transition: 0.4s;
}

/* footer */
.footer__inner {
  padding: 0 min(100px, 7.14vw);
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer__inner {
    padding: 0 10.67vw;
  }
}
.footer .footer__contact {
  background-color: #80d9d0;
  color: #fff;
  padding: min(62px, 4.43vw) 0 min(108px, 7.71vw);
  display: flex;
}
@media screen and (max-width: 750px) {
  .footer .footer__contact {
    padding: 11.6vw 0 13.87vw;
  }
}
.footer .footer__contact-wrapper {
  display: flex;
  gap: min(254px, 18.14vw);
  max-width: 1400px;
  width: 100%;
  padding-right: min(63px, 4.5vw);
}
@media screen and (max-width: 750px) {
  .footer .footer__contact-wrapper {
    flex-direction: column;
    gap: 0;
    padding-right: 0;
  }
}
.footer .title {
  letter-spacing: -0.025em;
  font-size: min(130px, 9.29vw);
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  display: inline-block;
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .footer .title {
    font-size: 16vw;
  }
}
.footer .contact__box {
  font-size: min(16px, 1.14vw);
  padding-top: min(50px, 3.57vw);
}
@media screen and (max-width: 750px) {
  .footer .contact__box {
    margin-top: 2.4vw;
  }
}
.footer .contact__text {
  font-size: min(16px, 1.14vw);
}
@media screen and (max-width: 750px) {
  .footer .contact__text {
    font-size: 3.47vw;
  }
}
.footer .stylist__list {
  margin-top: min(28px, 2vw);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .footer .stylist__list {
    margin-top: 5.33vw;
  }
}
.footer .stylist__list-link {
  width: 100%;
  display: inline-block;
  color: #fff;
  border: 1px solid #f3f3f3;
  text-align: center;
  padding: min(22px, 1.57vw) 0;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .footer .stylist__list-link {
    font-size: 3.73vw;
    padding: 4.27vw 0;
  }
}
.footer .stylist__list-link:hover {
  background-color: #f3f3f3;
  color: #80d9d0;
  transition: 0.6s;
}
.footer .footer__company {
  background-color: #232324;
  color: #fff;
  font-family: "Mulish", sans-serif;
  text-align: center;
  padding: min(125px, 8.93vw) 0 min(44px, 3.14vw);
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer .footer__company {
    padding: 29.47vw 0 18.4vw;
  }
}
.footer .footer__logo {
  width: min(224px, 16vw);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer .footer__logo {
    width: 41.47vw;
  }
}
.footer .footer__snss {
  margin-top: min(50px, 3.57vw);
  display: flex;
  gap: min(30px, 2.14vw);
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer .footer__snss {
    margin-top: 10vw;
    gap: 9.33vw;
  }
}
.footer .footer__snss .footer__sns-link img {
  width: min(21px, 1.5vw);
  height: min(20px, 1.43vw);
}
@media screen and (max-width: 750px) {
  .footer .footer__snss .footer__sns-link img {
    width: 6.4vw;
    height: 6.13vw;
  }
}
.footer .footer__snss .footer__sns-link:hover {
  opacity: 0.7;
}
.footer .footer__company-btn {
  width: min(274px, 19.57vw);
  margin: min(39px, 2.79vw) auto 0;
}
@media screen and (max-width: 750px) {
  .footer .footer__company-btn {
    margin-top: 10.4vw;
    width: 100%;
  }
}
.footer .footer__company-btn .footer__company-link {
  color: #c7ced5;
  border: 1px solid #c7ced5;
  width: 100%;
  display: block;
  padding: min(25px, 1.79vw) 0;
  padding-right: min(30px, 2.14vw);
  font-size: min(14px, 1vw);
  font-weight: 500;
  letter-spacing: min(1.4px, 0.1vw);
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer .footer__company-btn .footer__company-link {
    font-size: 3.47vw;
    padding: 5.6vw 0;
  }
}
.footer .footer__company-btn .footer__company-link::after {
  position: absolute;
  content: "";
  background: url(../images/common/footer-company-link@2x.png) no-repeat center center/cover;
  width: min(17px, 1.21vw);
  height: min(14px, 1vw);
  top: 50%;
  left: 66%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .footer .footer__company-btn .footer__company-link::after {
    width: 3.2vw;
    height: 2.67vw;
  }
}
.footer .footer__company-btn .footer__company-link:hover {
  background-color: #c7ced5;
  color: #232324;
  transition: 0.6s;
}
.footer .footer__copyright {
  font-family: "Mulish", sans-serif;
  margin-top: min(40px, 2.86vw);
  font-size: min(13px, 0.93vw);
  font-weight: 500;
  letter-spacing: min(1.3px, 0.09vw);
}
@media screen and (max-width: 750px) {
  .footer .footer__copyright {
    margin-top: 8vw;
    font-size: 2.93vw;
  }
}

.to__top-link {
  position: absolute;
  display: block;
  top: min(90px, 6.43vw);
  right: min(40px, 2.86vw);
  font-size: min(13px, 0.93vw);
  font-weight: 500;
  color: #fff;
  letter-spacing: min(0.65px, 0.05vw);
}
@media screen and (max-width: 750px) {
  .to__top-link {
    top: 14.4vw;
    right: 4vw;
    font-size: 2.4vw;
    width: 12.67vw;
  }
}
.to__top-link img {
  position: absolute;
  width: min(37px, 2.64vw);
  display: inline-block;
  margin-bottom: min(8px, 0.57vw);
  top: max(-36px, -2.57vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .to__top-link img {
    width: 7.47vw;
    top: -6vw;
  }
}

.to__top-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 750px) {
  .footer__sp {
    position: fixed;
    bottom: 0;
    font-size: 2.4rem;
    letter-spacing: 0.4em;
    width: 100%;
    height: 8vh;
    z-index: 50;
    background-color: #2bcfff;
  }
}
@media screen and (max-width: 750px) {
  .footer__sp .footer__sp-link {
    color: #fff;
    padding: 1.33vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8vh;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    padding-right: 50px;
    overflow: hidden;
  }
  .footer__sp .footer__sp-link::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 45px;
    height: 40px;
    background: url(../images/common/footer-line@2x.png) no-repeat center center/cover;
  }
}

/* スクロールで画像に黒幕でフェードイン (top_about)*/
.scrollFade {
  position: relative;
}
.scrollFade::after {
  position: absolute;
  content: "";
  background-color: #232324;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1s;
}
.scrollFade.fadeIn::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* 下層ページタイトル */
.pg__title__wrapper {
  overflow: hidden;
}

.pg__title {
  font-family: "Mulish", sans-serif;
  font-size: min(100px, 7.14vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.05em;
  text-align: center;
  opacity: 0;
  transform-origin: left;
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .pg__title {
    font-size: 13.33vw;
  }
}
@-webkit-keyframes fadeIn__title {
  0% {
    transform: rotateZ(30deg) translateY(80%);
    opacity: 0;
  }
  30% {
    transform: rotateZ(25deg) translateY(80%);
    opacity: 0;
  }
  60% {
    transform: rotateZ(10deg) translateY(50%);
    opacity: 0.5;
  }
  100% {
    transform: rotateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn__title {
  0% {
    transform: rotateZ(30deg) translateY(80%);
    opacity: 0;
  }
  30% {
    transform: rotateZ(25deg) translateY(80%);
    opacity: 0;
  }
  60% {
    transform: rotateZ(10deg) translateY(50%);
    opacity: 0.5;
  }
  100% {
    transform: rotateZ(0) translateY(0);
    opacity: 1;
  }
}
.pg__title.fadeIn {
  -webkit-animation: fadeIn__title 1.5s linear;
          animation: fadeIn__title 1.5s linear;
  opacity: 1;
}