@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright© SOL*Z GROUP All Rights Reserved.

HTML CSS Selectors common 

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1400px;
  --font-go: 'Noto Sans JP', sans-serif;
  --font-en: 'Megrim', cursive;
  --font-mon: 'Montserrat', sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-go);
  font-size: 16px;
  line-height: 1.875;
  color: #310700;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
    /*word-break : break-all;
    word-wrap : break-word;
    overflow-wrap : break-word;*/
  font-feature-settings: "palt";
}

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0px;
  padding: 0px;
}
p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
a img {
  border: none;
}
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
a {
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}
.anchor {
  display: block;
  height: 0;
  position: relative;
  top: -200px;
}
.loader {
  width: 100%;
  height: 100vh;
  background: url("../img/common/loader.gif") no-repeat center center #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}

/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */
/* 画面外にいる状態 */
.effect {
  opacity : 0;
  transition : all 500ms 300ms ease-out;
  transform: translate(0,0);
}
.fade {
  transform: translate(0,0);
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}

/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px); 
}

/*ファーストビューエフェクト*/
.fv-effect {
  transition : all 900ms 0ms ease-out;
  opacity: 0;
}
.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
}

/*アニメーション*/
.delay0 {
  transition-delay:0ms;
}

/*画像エフェクト*/
.img-box {
  display: block;
  overflow:hidden;
  position: relative;
  opacity: 1;
}
.img-box img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 4s;
  transition-duration: 4s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform
}
.img-box-in {
  display: block;
  height: 100%;
  -webkit-transform: translate3d(-100.5%, 0, 0);
  transform: translate3d(-100.5%, 0, 0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #81d8d0;
}
.img-box-in::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #81d8d0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: .4s;
  transition-delay: .4s
}
.img-box.effect-on .img-box-in {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.img-box.effect-on .img-box-in::before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1)
}

/*ボタンエフェクト*/
.btn-opacity:hover {
  transition: 0.3s ease-in-out;
  opacity: 0.5;
}

.btn-swipe {
	display: block;
	position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-swipe::before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-swipe:hover::before {
	left: 0%;
	right: auto;
	width: 100%;
}

.btn-spin {}
.btn-spin-in {
  position: relative;
}
.btn-spin-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(131,84,195,0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  opacity: 0;
}
.btn-spin-bg::before {
  display: block;
  width: 62px;
  height: 1px;
  background-color: #fff;
  position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
  content:"";
  transition : all 300ms 0ms ease-out;
}
.btn-spin-bg::after {
  display: block;
  width: 1px;
  height: 62px;
  background-color: #fff;
  position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
  content:"";
  transition : all 300ms 0ms ease-out;
}
.btn-spin:hover .btn-spin-bg {
  opacity: 1;
}
.btn-spin:hover .btn-spin-bg::before,
.btn-spin:hover .btn-spin-bg::after {
  transform: rotate(-90deg);
}

.btn-cover {
  position: relative;
}
.btn-cover::after {
  width: 100%;
  height: 100%;
  background-color: rgba(131,84,195,0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content:"";
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-cover:hover::after {
  opacity: 1;
}
/*---------------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------------- */
#header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  min-width: var(--min-width);
  height: 180px;
  padding: 0 24px;
  background-color: rgba(255,255,255,0.90);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  transition-delay:1000ms;
}
.site-logo {
  width: 197px;height: 52px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48px;
  margin: auto;
}
.heade-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.heade-nav a {
  margin: 0 46px;
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.075em;
}

.header-reserve {
  width: 190px;
  height: 190px;
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  transition-delay:1900ms;
}
.header-reserve a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.header-reserve a img {
  width: 120px;
}
.header-reserve .bg {
  width: 100%;
  height: 100%;
  background-image: url("../img/common/btn_h_reserve-pc.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  
}
.header-reserve .bg {
  animation: 7s linear 2500ms infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

/*---------------------------------------------------------------------------------
コンテンツ
--------------------------------------------------------------------------------- */
#contents-wrapper {
  width: 100%;
  min-height: 100vh;
  min-width: var(--min-width);
  overflow:hidden;
}

.sec-ttl {
  width: 100%;
  margin-bottom: 35px;
  font-family: var(--font-en);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
/*Banner*/
.banner {
}
.banner ul {
  position: relative;
}
.banner li {
  width: 25%;
  padding: 0 3px 6px;
}
.banner li.big {
  width: 50%;
}
.banner li.grid-sizer {
  padding: 0;
}
.banner__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 2;
}
.big .banner__ttl {
  bottom: 165px;
}
.banner__ttl span {
  width: fit-content;
  background-color: #310700;
  line-height: 1;
  color: #fff;
}
.banner__ttl .en {
  padding: 10px 12px;
  margin-bottom: 3px;
  font-family: var(--font-mon);
  font-size: 28px;
  letter-spacing: 0.2em;
}
.banner__ttl .jp {
  padding: 5px 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.banner a:hover {
  opacity: 1;
}
.banner a img {
  width: 100%;
  transition: 0.2s ease-in-out;
}
.banner a:hover img {
  transform: scale(1.1);
  opacity: 0.4;
}

/*BLOG*/
.blog {
  margin-bottom: 175px;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  width: 1386px;
  margin: 0 auto 48px;
}
.blog-list li {
  width: 430px;
  margin: 0 16px 32px;
}
.blog-list li:nth-of-type(3n+2) {
  transition-delay:400ms;
}
.blog-list li:nth-of-type(3n) {
  transition-delay:500ms;
}

.blog-list a {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.blog-list .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-list img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.blog-list-in {
  display: none;
}
.blog-more {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}

/*---------------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------------- */
#footer-wrapper {
  width: 100%;
  min-width: var(--min-width);
  padding: 75px 0 25px;
  background-color: #65c4c6;
  position: relative;
  font-family: var(--font-en);
  line-height: 1;
  color: #fff;
}

.footer-logo {
  width: 197px;
  margin: 0 auto 70px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 62px;
  font-family: var(--font-em);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #fff;
}
.footer-nav a {
  margin: 0 30px;
}
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.footer-sns a {
  width: 42px;
  margin: 0 20px;
}
.footer-name {
  width: fit-content;
  padding: 0 0 162px 30px;
  margin: 0 auto;
  position: relative;
  font-family: var(--mon);
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}
.footer-name::before {
  width: 246px;
  height: 77px;
  background-image: url("../img/common/we-are_wh.svg");
  position: absolute;
  top: -38px;
  left: 50%;
  margin-left: -355px;
  content:"";
}
.footer-salon {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.footer-salon li {
  width: 188px;
  margin: 0 46px 25px;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-salon li:nth-of-type(5n+2) {
  transition-delay:400ms;
}
.footer-salon li:nth-of-type(5n+3) {
  transition-delay:500ms;
}
.footer-salon li:nth-of-type(5n+4) {
  transition-delay:600ms;
}
.footer-salon li:nth-of-type(5n) {
  transition-delay:700ms;
}
.footer-salon__logo {
  line-height: 1;
  margin-bottom: 10px;
}
.footer-salon__logo img {
  width: auto;
  height: 46px;
}
.footer-salon__name {
  padding-bottom: 12px;
  font-size: 12px;
  line-height: 1;
}
.footer-salon__tel {
  padding-bottom: 15px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}
.footer-salon__add {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 300;
}
.footer-salon__reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 23px;
  font-size: 16px;
  line-height: 1;
}

.copyright {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 700;
  text-align: center;
}


/*---------------------------------------------------------------------------------
JS
--------------------------------------------------------------------------------- */

/* Slick */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev {
  background-position: left top;
}
.slick-next {
  background-position: right top;
}
.slick-prev:before, .slick-next:before {
  display: none !important;
}
.slick-prev:active, .slick-next:active {
  border: none;
}
.slick-disabled {
  display: none !important;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  opacity: 0.5;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 20;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  text-align: center;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active button:before {
  background-color: #f79876;
}
