@charset "UTF-8";
/* CSS Document */

/*==================================================
メインビジュアル　ｍライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	/*height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  width:100vw;
  background-color: #333333;
  
}
/*　背景画像設定　*/
.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
    position: relative;
    display: flex;
}
.slider-item::before{
  content: "";
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  opacity: 0.2;

}
  
@media(max-width:820px){
/*.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする
    background-repeat: no-repeat;/*背景画像をリピートしない
    background-size: cover;/*背景画像が.slider-item全体を覆い表示
}

.slider-item01 { 
    background-image:url("../images/top/IMG_3411_r.png");
    background-position: center;/*背景画像の位置を中央に*/
}
/*
.slider-item02 {
    background-image:url("../images/top/mv_salon_item.jpeg");
    background-position: 70% 100%;/*背景画像の位置を中央に
}

/*.slider-item03 {
    background-image:url("../images/top/mv_woman.jpg");
    background-position: 27% 0%;/*背景画像の位置を中央に
}*/  


@media(min-width:980px){
.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.slider-item01 { 
    background-image:url("../images/top/IMG_3411_r.png");
    background-position:50% 55%;
  }
}

/*.slider-item02 {
    background-image:url("../images/top/mv_salon_item.jpeg");
    background-position: center;/*背景画像の位置を中央に
}

.slider-item03 {
    background-image:url("../images/top/mv_woman.jpg");
    background-position: center;/*背景画像の位置を中央に
}*/



/*------------------------
スライダーの矢印
------------------------*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 47%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*------------------------
ドットナビゲーションの設定
------------------------*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:20px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/*------------------------
ハンバーガーメニュー　ドロワーメニュー内
-------------------------*/
#humberger_menu_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}
.open #humberger_menu_modal {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}
@media (min-width: 1300px){
#humberger_menu_modal {
    display: none;
}
}
/*------------------------
トップ　featureのための装飾
--------------------------*/

/*時間差で順番に出現*/

.top_feature_contents-point1{
  animation-delay: 0s;
  opacity: 0;
}
.top_feature_contents-point2{
animation-delay: 0.3s;
}
.top_feature_contents-point3{
animation-delay: 0.5s;
}
/*最初はpoint1を透過させる*/



/*フワッと出現させる*/
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
 .fadeUpTrigger{
opacity: 0;
}

/*--------------------
トップページ　HAIR STYLEのモーダル表示
----------------------*/

.hide-area{/*モーダル表示をする場所をあらかじめ隠す*/
	display: none;
}

.modaal-fullscreen .modaal-content-container{/*full画面の色設定*/
	background: #525350;
	color: #fff;
	text-align: center;
}

.modaal-fullscreen .modaal-close{/*ボタンの色、位置*/
	background:none;
	right:20px;
  z-index: 999999999;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*キャプション*/
.caption{
    display: block;
    padding: 10px 0;
}

/*===　サムネイル表示のためのcss　*/

.gallery{/*ベースになるギャラリーを横並びに*/
	display: flex;
    justify-content: space-between;
}
@media(max-width:960px){

.gallery li{
	width: 40%;
  padding: 0 10px;
  list-style: none;
}

/*画像の横幅を100%にしてレスポンシブ化*/
img{
	max-width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}
}
@media(min-width:820px){
  .top_hairstyle_contents-wrapper{
  animation-name:fadeUpAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  .modaal-fullscreen .modaal-content-container {
    background: #525350;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    height: 100vh;
  }
  .gallery li {
    width: 26.923%;
    padding: 0 10px;
    list-style: none;
  }

/*-----------------------
  トップ HAIR STYLE ホバーで画像縮小
-------------------ー----*/
  
/*　画像の縮小　*/
.zoomOut img{
	transform: scale(1.1);
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomOut a:hover img{/*hoverした時の変化*/
	transform: scale(1);/*拡大の値を変更したい場合はこの数値を変更*/
}


/*　画像のマスク　*/

.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}  

  /*---------------------------
  予約ボタンのアニメーション
  -----------------------------*/
  .count2{
  animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}
