@charset "UTF-8";
.flex {
  display: flex; 
}

.fadeIn {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(30px); /* 下からスッと出す */
}


.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}


body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 200;
  color: rgb(80, 90, 95);
}

.yoyaku {
  position: fixed;
  bottom: 30px;  /* 下からの距離 */
  right: 30px;   /* 右からの距離 */
  z-index: 1000; /* 他の要素の上に出す */
}

.pushcircle {
  position: relative;
  right:-15px;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: center;
  background: #333;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2vh;
  transition: background 0.3s;
  cursor: pointer;
}

/* ホバー時の背景色変更（お好みで） */
.pushcircle:hover {
  background: #555;
}

/* 内側の線 */
.pushcircle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s ease;
}

/* hoverをしたら枠線が小さくなる */
.pushcircle:hover::after {
  transform: translate(-50%, -50%) scale(1);
  border-color: #fff;
}
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:100;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f6f6f6;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 20px;
    letter-spacing: .05em;
    line-height: 2.3;
    color: rgb(80, 90, 95);
	display: block;
	text-transform: uppercase;
}
/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
columns: 4;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
margin-bottom: 120px;

}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
list-style:none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery{
	columns: 2;
	}	
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 80px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*== グラデーションが流れる */

.gradient1{
    /*ボタンの形状*/
    display: inline-block;
    color:#fff;
    line-height: 1.6;
    letter-spacing: 0.6em;
    padding: 18px 70px;
    margin-bottom: 120px;
    border-radius:30px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color: #fff;
    background-position: 99% 50%;
}
.button-wrap {
  text-align: center;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../image/nail-5.jpg);
}

.slider-item02 {
    background:url(../image/store-1.jpg);
}

.slider-item03 {
    background:url(../image/store-3.jpg);
}

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

/* スマホ用の調整 */
@media screen and (max-width: 430px) {
    .slider {
        height:50vh;
    }
    .slider-item{
        background-size: contain;/*背景画像が.slider-item全体を覆い表示*/
        background-position: top center;
    }
}
印の設定*/



.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    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:-50px 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;/*ドットボタンの現在地表示の色*/
}


/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

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

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

/*==================================================
　5-2-3 3本線が1本線に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/

#logo{
     position: absolute;
     position: fixed;
     width: auto; /* 横幅は画像や中身に合わせる */
     max-width: 100%;
     z-index: 100;
     margin: 10px;
}
@media (max-width: 430px) {
    #logo img{
        width: 70%;
    }
}


/* 最初にある flex 指定 */
#about-us {
  display: flex;
  flex-wrap: wrap; /* スマホで縦並び */
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin: 5% 0 0 10%;
  position: relative;
  padding:5%;
  background-image: url(../image/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* コンテンツ幅の調整（PCでもスマホでも） */
.about-us-left,
.about-us-right {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

/* テキスト読みやすく */

.about-us-right .h3{
    font-size: 24px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-us-right .text{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 2.6;

}
@media only screen and (max-width: 768px) {
  .about-us-right .h3 .line {
    display: block;   /* 各行を強制改行 */
  }
}

/* 画像中央寄せ */
.about-us-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-left img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* テキスト画像 */
.about-us-right h2 img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 1em;
}

/* 下部に敷く装飾画像 */
#about-us::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -120px;
  width: 50%;
  height: 50%;
  background-image: url('../image/aboutus-after.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 430px) {
    #about-us::after {
        bottom: -530px;
        left: 0;
        opacity: 0.3;
    }
}



/* ✅ 追加：スマホ対応のメディアクエリ */
@media (max-width: 430px) {
  #about-us {
    flex-direction: column;
    margin: 5% auto;
    padding: 10%;
    text-align: center;
  }

  .about-us-left,
  .about-us-right {
    max-width: 100%;
  }

  .about-us-right {
    margin-left: 0;
  }

  .about-us-right h2 img {
    margin: 0 auto 1em;
  }
}

.works { 
    margin: 120px 0 80px 0;
}

.works img{
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 1em;
}



.menu-flex-container {
  display: flex;
  width: 66%;
  margin: auto;
  justify-content: center;
  gap: 40px; /* 間隔 */
  flex-wrap: wrap; /* スマホで縦並び */
  margin-bottom: 120px;
}

@media (max-width: 430px){
    .menu-flex-container{
        width: 95%;
    }
}

#menu{
    position: relative;
}

#menu::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -10px;
  width: 25%;
  height: 50%;
  background-image: url('../image/menu-before.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 430px){
    #menu::after {
        top: 100px;
        width: 200px;
        opacity: 0.3;
    }
}
.menu-block {
  flex: 1 1 280px; /* 最小幅280px、可変 */
  max-width: 400px;
}


.jel{
    font-size: 24px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.menu img{
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 1em;
}

.menu-section {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  font-family: 'Noto Serif JP', serif;
}


.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
    justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 2.6;
  color: rgb(80, 90, 95);
}

.price {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 2.6;
    color: rgb(80, 90, 95);
    margin-bottom: 6px;
}

.menu-list-jel{
    margin-bottom: 30px;
}


.foot{
    font-size: 24px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}




.background{
  background-image: url('../image/background-2.jpg');
  width: 100%;
  height: 40svh;               /* ← 可能なら vh でなく svh/dvh を推奨 */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 120px;
}

/* モバイルでは fixed を無効化 */
@media (max-width: 1024px) {
  .background{
    background-attachment: scroll;
    background-position: center top;
  }
}

.btn{
    text-align: center;
    margin-bottom: 120px;
}

.btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/  
	color:#333;
    padding: 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
    /*事前に出現させる線の形状*/
	border:solid #333;
	width:10px;
	height:10px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
	top:0;
	left:0;
    /*事前に出現させる線の形状*/
	border-width:1px 0 0 1px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
	bottom:0;
	right:0;
    /*事前に出現させる線の形状*/
	border-width:0 1px 1px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
	width:calc(100% - 2px);
	height:calc(100% - 2px);
	border-color:#666
}


.copyright {
    font-size: 14px;
    color: #666;
}

footer{
    padding-top: 30px;
    background-image: url(../image/background.jpg);
    background-position: top;
    background-repeat: repeat;
    background-size: contain;
    text-align: center;
}

footer p{
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: .05em;
    line-height: 2.3;
    color: rgb(80, 90, 95);
}

footer img{
    width: 15%;
    margin-bottom: 10px;
} 

.copyright{
    background-color: #000000;
    color: #d0d0d0;
    font-weight: 100;
}

.copyright{
    color: #d0d0d0;
    font-weight: 100;
}