@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Cormorant-SemiBold";
  src: url("../fonts/Cormorant-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url("../fonts/ZenOldMincho-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url("../fonts/ZenOldMincho-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url("../fonts/ZenOldMincho-SemiBold.ttf");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/************************************************

  SP layout

************************************************/
/*	cmn parts  SP
------------------------------------ */
.com-inner {
  padding: 50px 15px;
}

.com-md-inner {
  padding: 50px 15px;
}

.no-sb {
  margin: 30px auto 0;
}

.com-ib {
  display: inline;
}

.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}

.anchor-mp {
  margin: -70px auto 0;
  padding-top: 70px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin-top: 15px;
}

/*  共通パーツ
------------------------------------ */
.com-box {
  width: 100%;
  margin: auto;
  padding: 30px 20px;
}

.news-post-link {
  padding: 15px 30px 15px 0;
  background-size: 20px;
}
.news-post-flx {
  margin-top: 10px;
}
.news-post-tag {
  margin-left: 15px;
}

.com-tag {
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}
.com-tag-item:nth-of-type(n+2) {
  margin: 25px auto 0;
}
.com-tag-link {
  min-height: 90px;
  padding: 0 30px;
  background-size: 25px;
}
.com-tag-ja {
  font-size: 1.4rem;
}

/* =========================================

  main  SP

========================================= */
/* top-news  SP
------------------------------------ */
#top-news .news-inner {
  display: block;
}
#top-news .news-left {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#top-news .news-btn {
  margin: 0;
}
#top-news .news-post {
  margin: 30px auto 0;
}

/* top-greeting  SP
------------------------------------ */
#top-greeting .greeting-img {
  width: 100%;
  height: auto;
  position: relative;
}
#top-greeting .greeting-img img {
  position: static;
}
#top-greeting .greeting-ttl {
  text-align: center;
}
#top-greeting .greeting-btn {
  margin: 25px auto 0;
}

/* com-bnr  SP
------------------------------------ */
.com-bnr .bnr-list-item {
  width: 100%;
}
.com-bnr .bnr-list-link {
  padding: 50px 15px;
  outline-offset: -8px;
}

/* top-style  SP
------------------------------------ */
#top-style .style-ttl::before {
  width: calc(100% - 233px);
}
#top-style .style-ttl-ja {
  margin-left: 10px;
}
#top-style .style-txt {
  margin: 15px auto 0;
}
#top-style .style-flx {
  display: block;
}
#top-style .style-btn {
  margin: 30px auto 0;
}
#top-style .wrap {
  margin: auto;
}

/* top-information  SP
------------------------------------ */
#top-information .information-inner {
  display: block;
}
#top-information .information-img {
  width: 100%;
  height: auto;
  margin: 20px auto 0;
  position: static;
}
#top-information .information-img img {
  position: static;
}
#top-information .information-list-link {
  padding: 25px 0;
  background-size: 25px;
}
#top-information .information-list-ttl-ja {
  margin-left: 5px;
}

/* top-calendar  SP
------------------------------------ */
#top-calendar .calendar-inner {
  padding-top: 0;
}
#top-calendar .calendar-iframe-wrap {
  margin-top: 0;
  padding: 10px 10px 10px;
}
#top-calendar .calendar-btn-wrap {
  margin-top: 5px;
}

/* com-reserve  SP
------------------------------------ */
.com-reserve {
  position: relative;
  z-index: 1;
}
.com-reserve::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.com-reserve .reserve-inner {
  position: relative;
}
.com-reserve .reserve-con {
  display: block;
}
.com-reserve .reserve-tel {
  margin-top: 25px;
}
.com-reserve .reserve-list-item {
  width: 160px;
}
.com-reserve .reserve-list-item:nth-of-type(n+2) {
  margin-left: 15px;
}
.com-reserve .reserve-list-link {
  max-width: 160px;
}

/* =========================================

sub layout  SP

========================================= */
/* concept  SP
------------------------------------ */
#concept .about-img {
  margin: 25px auto 0;
}
#concept .about-img img {
  position: static;
}
#concept .about-box {
  padding: 0;
}
#concept .about-box-ttl-en {
  font-size: 4rem;
}
#concept .about-box-ttl-en .ac {
  font-size: 4.2rem;
}
#concept .about-box-ttl-ja {
  margin-top: 9px;
}
#concept .features {
  padding-bottom: 50px;
}
#concept .features-ttl {
  padding: 0 15px;
}
#concept .features-box {
  margin: auto;
  padding: 20px 15px !important;
}
#concept .features-box-txt {
  margin-top: 13px;
}
#concept .features .com-ttl01 {
  width: 100%;
}

/* stylist  SP
------------------------------------ */
#stylist .stylist::before {
  width: 100%;
}
#stylist .stylist-flx {
  flex-direction: column;
  align-items: center;
}
#stylist .stylist-flx-img {
  width: 70%;
  height: 0;
  padding-top: 95%;
}
#stylist .stylist-flx-contents {
  max-width: none;
  margin: 20px auto 0;
}
#stylist .stylist-flx-dl {
  margin-top: 20px;
}
#stylist .stylist-flx-dl dt {
  font-size: 1.8rem;
}

/* menu  SP
------------------------------------ */
#menu .com-ttl01 {
  text-align: center;
}
#menu .menu::before {
  height: 50px;
}
#menu .menu-anchor-wrap {
  padding: 0 15px;
}
#menu .menu-inner {
  padding-bottom: 100px;
}
#menu .menu-txt {
  margin: 25px auto 0;
  text-align: center;
}
#menu .menu-flx {
  margin-top: 25px;
  flex-direction: column;
  align-items: center;
}
#menu .menu-flx-con {
  max-width: none;
  margin: 20px auto 0;
}
#menu .menu-flx-con-ttl {
  font-size: 1.8rem;
}
#menu .menu-flx-con-txt {
  margin-top: 5px;
}
#menu .menu-list {
  margin-top: 45px;
}
#menu .menu-list-item:nth-of-type(n+2) {
  margin-top: 30px;
}
#menu .menu-list-img {
  margin-top: 15px;
}
#menu .menu-list-table {
  margin-top: 20px;
}
#menu .menu-list-txt {
  margin-top: 15px;
  padding: 15px;
}
#menu .treat-tag {
  margin-top: 25px;
}
#menu .treat-tag a {
  min-height: 70px;
}
#menu .treat-list {
  margin-top: 45px;
}
#menu .treat-menu li:nth-of-type(n+2) {
  margin-top: 25px;
}
#menu .treat-menu-txt {
  padding: 15px;
}
#menu .item-list {
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}
#menu .item-list-item:nth-of-type(n+2) {
  margin-top: 30px;
}

/* style  SP
------------------------------------ */
#style .com-ttl01 {
  text-align: center;
}
#style .com-tag-link {
  min-height: 70px;
}
#style .style-list-item {
  width: 49%;
}
#style .style-list-item:nth-of-type(2n) {
  margin-left: 2%;
}
#style .style-list-item:nth-of-type(n+3) {
  margin-top: 15px;
}
#style .style-list-ttl {
  margin-top: 3px;
}

/* recruit  SP
------------------------------------ */
#recruit .recruit {
  background-position: center bottom;
  background-size: 100%;
}
#recruit .recruit-inner {
  padding-bottom: 80%;
}
#recruit .recruit-ttl {
  text-align: center;
}
#recruit .recruit-ja {
  line-height: 1.6;
}
#recruit .job-en {
  font-size: 3.5rem;
}
#recruit .reserve {
  background-position: 35% center;
}

/* salon  SP
------------------------------------ */
#salon .com-ttl01 {
  text-align: center;
}
#salon .salon-inner {
  padding-bottom: 80px;
}
#salon .salon-table {
  margin-top: 30px;
}
#salon .access-flx {
  margin-top: 30px;
  flex-direction: column-reverse;
  align-items: center;
}
#salon .access-dl div {
  padding: 15px 0;
}
#salon .access-dl dt {
  font-size: 3rem;
}
#salon .access-dl .ml {
  margin-left: 15px;
}
#salon .access-dl dd {
  margin-top: 15px;
}
#salon .access-map {
  margin: 25px auto 0;
}
#salon .gallery-list-item {
  width: 49%;
}
#salon .gallery-list-item:nth-of-type(2n) {
  margin-left: 2%;
}
#salon .gallery-list-item:nth-of-type(n+3) {
  margin-top: 2%;
}

/* news  SP
------------------------------------ */
#news .com-news-item:nth-of-type(n+2) {
  margin-top: 35px;
}
#news .com-ttl02 {
  font-size: 1.8rem;
}

/* privacy  SP
------------------------------------ */
#privacy .privacy-box-ttl {
  letter-spacing: 0.1em;
}/*# sourceMappingURL=style_sp.css.map */