@charset "UTF-8";
:root {
  --base_wid: 1440;
  --header_h: 120px;
}
@media screen and (max-width: 999px) {
  :root {
    --header_h: 74px;
  }
}
@media (max-width: 767px) {
  :root {
    --base_wid: 390;
  }
}

/**************************************************
* ページ: TOP
**************************************************/
/*------------------------------
fv
------------------------------*/
.fv {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .fv__inner {
    width: 100%;
    max-width: 100%;
  }
}

.fv__movie video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .fv__movie video {
    border-radius: 0;
  }
}

/*------------------------------
news
------------------------------*/
.news {
  padding-top: 80px;
}

.news__list {
  margin-top: 40px;
}

.news__item {
  border-bottom: 1px dotted #E8E8E8;
}
.news__item a {
  display: flex;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .news__item a {
    display: block;
  }
}

.news__item-meta {
  width: 214px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news__item-meta {
    width: 100%;
  }
}

.news__item-date {
  font-size: 1.6rem;
  font-weight: 500;
  color: #828282;
}

.news__item-category {
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 16px;
}

.news__title {
  width: calc(100% - 214px);
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .news__title {
    width: 100%;
    margin-top: 16px;
  }
}

.news__button {
  margin-top: 40px;
  text-align: right;
}
@media (max-width: 767px) {
  .news__button {
    text-align: center;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  padding: 180px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 160px 0;
  }
}

.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__wrapper {
    display: block;
  }
}

.about__image {
  width: 50%;
  background: #F6F6F6;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  aspect-ratio: 672/700;
  position: relative;
}
.about__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  transition: all 0.5s;
}
.about__image img:nth-child(1) {
  width: 69%;
  z-index: 10;
}
.about__image img:nth-child(2) {
  width: 53%;
  z-index: 1;
}
.about__image.hovON img {
  -webkit-animation: 0.5s forwards imgChange;
          animation: 0.5s forwards imgChange;
}
.about__image.hovON img:nth-child(1) {
  z-index: 1;
}
.about__image.hovON img:nth-child(2) {
  z-index: 10;
}
.about__image.hovLe img {
  -webkit-animation: 0.5s forwards imgChange2;
          animation: 0.5s forwards imgChange2;
}
.about__image.hovLe img:nth-child(1) {
  z-index: 10;
}
.about__image.hovLe img:nth-child(2) {
  z-index: 1;
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
  }
}

@-webkit-keyframes imgChange {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  90% {
    opacity: 0.8;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes imgChange {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  90% {
    opacity: 0.8;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes imgChange2 {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  90% {
    opacity: 0.8;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes imgChange2 {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  90% {
    opacity: 0.8;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.about__content {
  width: 44.2%;
}
@media (max-width: 767px) {
  .about__content {
    width: 100%;
    margin-top: 40px;
  }
}

.about__heading {
  margin-top: 0.8em;
  font-size: min(4rem, 3.125vw);
  font-weight: 500;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 767px) {
  .about__heading {
    margin-top: 1.7em;
    font-size: 2.4rem;
  }
}

.about__message {
  margin-top: 40px;
  font-size: min(1.6rem, 1.5625vw);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .about__message {
    font-size: 1.6rem;
    margin-top: 24px;
    line-height: 2;
  }
}

.about__button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about__button {
    text-align: center;
  }
}

/*------------------------------
salon
------------------------------*/
.salon {
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .salon {
    padding-bottom: 160px;
  }
}

.salon__list {
  margin-top: 8%;
}
@media (max-width: 767px) {
  .salon__list {
    margin-top: 15%;
  }
}

.salon__button {
  margin-top: 145px;
  text-align: center;
}
@media (max-width: 767px) {
  .salon__button {
    margin-top: 40px;
  }
}

/*------------------------------
instagram
------------------------------*/
.instagram {
  padding: 80px 0 60px;
  background: #F6F6F6;
}
@media (max-width: 767px) {
  .instagram {
    padding: 40px 0;
  }
}

.instagram__header {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .instagram__header {
    align-items: center;
  }
}

.instagram__logo {
  width: 124px;
}
@media (max-width: 767px) {
  .instagram__logo {
    width: 80px;
  }
}

.instagram__meta {
  margin-left: 24px;
}

.instagram__name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.instagram__button {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .instagram__button a {
    width: 100%;
  }
}

#sb_instagram .sb_instagram_header .sbi_header_text, .sb_instagram_header .sbi_header_text {
  display: none;
}

#sb_instagram #sbi_load {
  display: none;
}

#sbi_images {
  gap: 2% !important;
  padding: 0;
}
#sbi_images .sbi_photo {
  height: auto !important;
  aspect-ratio: 168/230;
}
#sbi_images .sbi_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------
column
------------------------------*/
.column {
  margin-top: 180px;
}
@media (max-width: 767px) {
  .column {
    margin-top: 160px;
  }
}

.column__list {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .column__list {
    margin-top: 56px;
  }
}

.column__item {
  width: 28.54%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .column__item:not(:nth-child(3n)) {
    margin-right: 7.14%;
  }
  .column__item:nth-child(n+4) {
    margin-top: 7.2%;
  }
}
@media (max-width: 767px) {
  .column__item {
    width: 100%;
  }
  .column__item:nth-child(n+2) {
    margin-top: 40px;
  }
}

.column__button {
  margin-top: 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .column__button {
    margin-top: 40px;
  }
}

/*------------------------------
gallery
------------------------------*/
.gallery {
  padding: 180px 0;
}
@media (max-width: 767px) {
  .gallery {
    padding: 170px 0;
  }
}

.gallery__list {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gallery__list {
    display: block;
    margin-top: 56px;
  }
}

.gallery__item {
  width: 50%;
}
@media (max-width: 767px) {
  .gallery__item {
    width: 100%;
  }
}

.gallery__thumbnail img {
  aspect-ratio: 560/340;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__button {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .gallery__button {
    margin-top: 40px; /* sy */
  }
}

/*------------------------------
shop
------------------------------*/
.shop {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .shop {
    padding-bottom: 0;
  }
}

.shop__container {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .shop__container {
    margin-top: 50px;
  }
}

.shop__description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
  margin-top: 3em;
}
@media (max-width: 767px) {
  .shop__description {
    margin-top: 32px;
    line-height: 2;
  }
}

.shop__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.shop__list li {
  width: 28.54%;
}
.shop__list li a {
  font-size: min(1.6rem, 1.6vw);
}
@media (min-width: 768px) {
  .shop__list li:not(:nth-child(3n)) {
    margin-right: 7.14%;
  }
  .shop__list li:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .shop__list {
    display: block;
  }
  .shop__list li {
    width: 100%;
  }
  .shop__list li:nth-child(n+2) {
    margin-top: 24px;
  }
  .shop__list li a {
    font-size: 1.6rem;
    width: 100%;
  }
}

.shop__note {
  display: block;
  margin-top: 40px;
  font-size: min(1.4rem, 1.4322916667vw);
  font-weight: 500;
  line-height: 1.4;
  color: #828282;
}
@media (max-width: 767px) {
  .shop__note {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}

.recruit__wrap--top {
  padding: 180px 0;
}
@media (max-width: 767px) {
  .recruit__wrap--top {
    padding: 160px 0;
  }
}
/*# sourceMappingURL=top.css.map */