@charset "UTF-8";
/* CSS Document */
.concept-title,.about-title,.gallery-title,.menu-title,.infomation-title{
  margin: 0 auto;
}

.section-concept__subtitle,.section-about__subtitle,.section-gallery__subtitle,.section-menu__subtitle,.section-infomation__subtitle{
  color: #484646;
  font-size: 1.4rem;
  
  
}
/*top sp*/

.section-top h1{
  font-size: 4rem;
    font-weight: 200;
    letter-spacing: 3px;
    color: #575757;
  position: absolute;
    top: 98px;
    left: 20px;
    z-index: 30;
}
.section-top{
  height: 540px;
  position: relative;
  margin: 20px auto 70px;
}
.section-top img{
  width: 86%;
  max-width: 400px;
    position: absolute;
    top: 180px;
    right: 20px;
    z-index: 20;
  border-radius: 70% 30% 64% 36% / 72% 72% 28% 28%;
}
.fluid-1{
      position: absolute;
    z-index: 10;
   background-image: linear-gradient(90deg, rgba(228, 210, 235, 0.51) 5%, rgba(245, 247, 217, 0.61) 35%, rgba(180, 230, 183, 0.72) 73%);
  background-size: 180% 180%;
  animation: gradient-animation 10s ease infinite;
   width: 22vh;
    height: 22vh;
    top: 22px;
  left: 2%;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40% ;
   animation: fluidrotate 20s ease 0s infinite;/*アニメーションの設定*/
}


@keyframes gradient-animation {
  0% {
    background-position: 0% 25%;
  }
 25% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 50% 75%;
  }
	 75% {
    background-position: 75% 100%;
  }
  100% {
    background-position: 0% 100%;
  }
}
   

@keyframes fluidrotate {  
	  
0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
}
14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
}
28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
}
42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
}
56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
}
70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
}
84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
}
	  
}
.section-top p{
  position: absolute;
  font-size: 1.4rem;
  top: 140px;
  z-index: 30;
  
}

.section-top p span{
  display: block;
  margin-left: 47px;
}


/*concept sp*/
 
.section-concept{
  margin-bottom: 140px;
  margin: 0 auto;
  padding-bottom: 140px;
}

.section-concept h2{
  padding-bottom: 10px;
  font-size: 3.6rem;
  letter-spacing: 4px;
  font-weight: 300;
}
.section-concept__img-wrapper{
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 650px;
}
.section-concept img{
  padding: 50px 0 0 ;
  width: 34vh;
  height: auto;
  z-index: 20;
  max-width: 330px;
  border-radius:89% 20% 38% 62% / 48% 34% 61% 37% ;  
}
.section-concept__description{
  display: block;
}
.section-concept__description h3{
  text-align: left;
  max-width: 325px;
    margin: 0 auto;
  padding-left: 30px;
  line-height: 30px;
  font-size: 1.6rem;
  color: #575757;
  letter-spacing: 1px;
  font-weight: 400;
}
.section-concept__description h3 span{
  display: block;
  margin-left: 184px;
}
.section-concept__description-bg{
 /* background-color: #dfece3;*/
  width: 70%;
  height:50px;
  margin-top: -39px;
  margin-left:30%;

}
.section-concept__description p{
  display: none;
  padding: 0 0 30px;
    text-align: left;
    max-width: 620px;
    margin: 0 20px;
}
  

/*read more btn sp*/


.btn-read-01{
  /*margin-left: 64%;*/
  letter-spacing: 2px;
	font-size: 1.2rem;
	
}
.btn-read-02{
  /*margin:20px 0 20px 48%;*/
  letter-spacing: 2px;
	font-size: 1.2rem;
  
}
.btn-view-03{
  /*margin-left: 67%;*/
  letter-spacing: 2px;
	font-size: 1.2rem;
}
.btn-view-04{
  letter-spacing: 2px;
	font-size: 1.2rem;
  
}
.btn-read-01,.btn-read-02,.btn-view-03,.btn-view-04{
	margin-left: 60%;
    /*丸の基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/  
    display: inline-block;
  padding:0 0 0 15px;
  line-height: 50px;
    color: #333;
    text-decoration: none;
    outline: none;
}

/* 丸が動く */
.btn-read-01::before,.btn-read-02::before,.btn-view-03::before,.btn-view-04::before{
  content:'';
    /*絶対配置で丸の位置を決める*/
  position:absolute;
  left:0;
  z-index: -1;
    /*丸の形状*/
  width:50px;
  height:50px;
  background-color: rgba(90,117,75,0.2);
  border-radius:25px;
    /*アニメーションの指定*/
    transition:.3s ease-out;
}

/*hoverした際の形状*/
.btn-read-01:hover::before,.btn-read-02:hover::before,.btn-view-03:hover::before,.btn-view-04:hover::before{
  width:120px;
}

/* 矢印の形状 */
.btn-read-01::after,.btn-read-02::after,.btn-view-03::after,.btn-view-04::after{
  position: absolute;
    content: '';
    top: 23px;
    right: -15px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}
  


/*about me sp*/
.section-about{
  padding-bottom: 140px;
}
.section-about h2{
  font-size: 3.6rem;
  padding-bottom: 10px;
  letter-spacing: 4px;
  font-weight: 300;
}
.section-about__subtitle{
  display: inline-block;
  padding-bottom: 64px
}
.section-about-content{
  flex-direction: column;
}


.section-about__nailist-img{
  
  width: 200px;
  height: auto;
  align-self: flex-start;
  z-index: 30;
  border-radius: 44% 56% 38% 62% / 58% 52% 48% 42% ;
}
.section-about__bg{
  width: 40%;
  margin-top: 68px;
  margin-left: -30px;
  z-index: 20;
}
.about-img_bg{
  display: block;
  width: 30%;
  height: 30%;
  background-color: #A2ACA4;
}



.section-about__description{
  width: 90%;
  margin: 0 auto;
 padding: 30px 16px ;
  text-align: left;
}
.section-about__description h3{
  padding-bottom: 54px;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  color: #575757;
}
.nailist-name{
  font-size: 2.6rem;
}
.section-about__descriprion-profile{
  line-height: 30px;
  padding-right: 15px;
  text-align: center;
}
.section-about__description-comment{
  padding: 40px 0 10px 0;
  line-height: 34px;
  text-align: center;
  color: #979f80;
}

  
  
/*galley sp*/
.section-gallery{
  margin-bottom: 140px;
}
.section-gallery h2{
  font-size: 3.6rem;
  padding-bottom: 10px;
  letter-spacing: 4px;
  font-weight: 300;
}
.section-gallery__subtitle{
  padding-bottom: 64px;
}

.section-gallery__img{
  display:flex;
  padding-top: 40px;
  padding-bottom: 54px;
  justify-content: space-around;
}

.image-4,.image-5{
  display: none;
}
.section-gallery img{
 object-fit: cover;
  width: 100px;
  height: 100px;
      border-radius: 40px;
}

/*menu sp*/
.section-menu{
  padding: 0 4px 136px;
  color: #74917d;
}
.section-menu h2{
 padding-bottom:  10px;
  font-size: 3.6rem;
  letter-spacing: 4px;
  font-weight: 300;
  
}
.section-menu__subtitle{
  padding-bottom: 64px;
  display: block;
}
.section-menu h3{
  font-size: 2.4rem;
  padding-bottom: 4px;
  color:rgba(69,97,69,1.00);
  letter-spacing: 4px;
}
.section-menu-jp{
  display: block;
  font-size: 1.4rem;
  padding-bottom: 42px;
  color:rgba(69,97,69,1.00);
}
.section-menu__description{
  font-size: 1.4rem;
  padding-bottom: 48px;
  color:rgba(69,97,69,1.00);
}
.section-menu__contents{
  display:flex;
  flex-direction:column;
}

.menu-attractednail,.menu-fortunetelling{
  font-size: 1.4rem;
  padding: 0 4%;
  color: #6F6F6F;
}

.menu-attractednail ul,.menu-fortunetelling ul{
  list-style: none;
}
.flex{
  display: flex;
}
.left{
  text-align: left;
}
.blank-40{
  display: inline-block;
  padding-left: 40px;
}
.blank-110{
  padding-left: 110px;
}
.blank-65{
  display: inline-block;
  padding-left: 65px;
}
.blank-107{
  padding-left: 107px;
}


.menu-attractednail li dl,.menu-fortunetelling li dl{
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px dashed #bebebe;
  padding: 10px 10px 10px 0;
}


.menu-attractednail__notes01{
  text-align: left;
  color: #3F3F3F;
  padding:5px 0 30px 16px;
  font-size: 1.4rem;
}
.menu-attractednail__notes02{
  text-align: left;
  margin: 0 20px 100px;
  padding: 10px;
  line-height: 30px;
  border: solid rgba(91,91,91,1.00) 1px;
  color: #3f3f3f;
  font-size: 1.4rem;
      border-radius: 6px;
}
.menu-fortunetelling{
  padding-bottom: 30px;
}
.underline{
  text-decoration: underline solid #3f3f3f;
}


/*infomation sp*/
.section-infomation{
  padding-bottom: 90px;
  margin: 0 auto;
}
.section-infomation_bg{
  background-color: #f1f0ee;
  padding-bottom: 30px;
}
.section-infomation h2{
  font-size: 2.6rem;
  padding-top: 66px;
  padding-bottom: 10px;
  letter-spacing: 4px;
  font-weight: 300;
}
.section-infomation__subtitle{
  display: block;
  padding-bottom: 64px;
  text-align: center;
}
.section-infomation__description{
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.4rem;
  background-image: url("../images/top/leaf-info.png");
  background-repeat: no-repeat;
  background-position: bottom 46px right -160px;
  height: auto;
  background-size: 500px;
}
.section-infomation__description span{
  padding-right: 20px;
}
.section-infomation__description ul{
  list-style: none;
}
.section-infomation__description li dl{
 
  padding: 10px 10px 10px 0;
}
.section-infomation__description li dt{
  text-align: left;
  font-weight: 600;
}

.section-infomation__description li dd{
  text-align: left;
  padding-left: 20px;
}

.section-infomation a{
  border-bottom: #575757;
  display:block;
  color: #575757;
}



.section-infomation__sns-wrapper{
  margin: 80px auto;
  padding-bottom: 30px;
  border: solid 1px #575757;
  width: 90%;
  max-width: 750px;
      border-radius: 6px;
}

.infomation-p{
  padding:27px 4px ;
}
.section-infomation__sns-wrapper ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.section-infomation__sns-wrapper ul li{
  display: flex;
}
.section-infomation__sns-wrapper img{
  width: 28px;
  align-self: flex-start;
}
.info-blog,.info-instagram{
   padding: 10px 6px;
  height: auto;
   background-color: #979f80;
  display: flex;
  justify-content: center;
  color: #f1f0ee;
}
.info-blog{
  min-width: 128px;
      border-radius: 6px;
}
.info-instagram{
  min-width: 128px;
      border-radius: 6px;
}

.icon-p{
 text-align: center;
  padding-top: 3%;
  padding-left: 10px;
  letter-spacing: 2px;
  font-size: 1.4rem;
  
}
.section-infomation__img{
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}

.section-infomation__img img{
  object-fit: cover;
  width: 80px;
  height: 80px;
      border-radius: 20px;
  
}

@media screen and (min-width:600px){
	.btn-read-01:hover::before,.btn-read-02:hover::before,.btn-view-03:hover::before,.btn-view-04:hover::before{
  width:136px;
}
	.btn-read-01, .btn-read-02, .btn-view-03, .btn-view-04 {
		margin-left: 47%;
	}
	.btn-read-01::before, .btn-read-02::before, .btn-view-03::before, .btn-view-04::before {
		left: -30%;
	}
	.btn-read-02::before{
		left: -27%;
	}
	
  .btn-read-01::after,.btn-view-03::after, .btn-view-04::after {
    position: absolute;
    content: '';
    top: 23px;
    right: -17px;
    width: 5px;
    height: 5px;
   
    transform: rotate(45deg);
}
	.btn-read-02::after{
		right: -20px;
	}
	
	.section-top{
    height: 830px;
    margin-bottom: 80px;
  }
  .section-top h1{
  font-size: 4rem;
    font-weight: 200;
    letter-spacing: 2px;
    color: #575757;
  position: absolute;
    top: 158px;
    left: 80px;
    z-index: 30;
}
  .section-top img{
    max-width: 630px;
    top: 190px;
  }
  .fluid-1{
    left: 6%;
    width: 24vh;
    height: 24vh;
  }
  .section-top p {
    font-size: 1.6rem;
    letter-spacing: 2px;
    padding-left: 18px;
	  top: 209px;
    left: 27px;
  }
  .section-top p span {
   
    margin-left: 100px;
}
  
  .section-concept img {
    width: 100%;
    max-width: 385px;
  }
  .section-concept__img-bg {
    width: 50%;
    height: 128px;
    margin-top: -93px;
    margin-left: 50%;
  }
  
  .section-concept__flex{
    display: flex;
    padding-top: 50px;
    max-width: 680px;
    margin: 0 auto;
  }
  .section-concept__img-wrapper {
    width: 45%;
  }
  .section-concept__description{
    width: 55%;
  }
  .section-concept__description h3{
    padding: 80px 0 0 0;
    font-size: 1.8rem;
    line-height: 48px;
  }
  .section-concept__description h3 span {
    margin-left: 184px;}
  
  
  .section-about__description h3 {
    text-align: left;
  }
  
  .section-about-content{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 680px;
    margin: 0 auto;
  }
  .section-about__img-wrapper{
    background-position:right;
    background-size: 60%;
    width: 50%;
  }
  .section-about__img-wrapper img{
    padding-top: 30px;
    width: 60%;
    max-width: 260px;
  } 
  .section-about__nailist-img {
    width: 200px;
    margin-top: 58px;
}
  .section-about__bg{
  width: 40%;
  margin-top: 155px;
  margin-left: -100px;
  
}
  .section-about__description {
    margin: 0 20px ; 
}
  
  .section-about__descriprion-profile {
    text-align: left;
}
  .section-about__description-comment {
    text-align: left;
  }
  .btn-read-02 {
    margin-left: 78%;
}




  .section-gallery img {
    object-fit: cover;
    width: 130px;
    height: 130px;
}
  .section-gallery__img {
    padding-top: 65px;
    padding-bottom: 88px;}
  
  
  /*.image-4,.image-5{
    display: block;
  }*/
  .btn-view-03{
    margin-left: 78%;
  }
  .section-infomation__img img {
    object-fit: cover;
    width: 128px;
    height: 128px;
}
  .menu-attractednail__notes02 {
    text-align: center;
  }
  .menu-attractednail, .menu-fortunetelling {
        max-width: 580px;
    margin: 0 auto;
  }
  .menu-attractednail__notes01 {
    padding-left: 92px;
  }
.menu-attractednail__notes02 {
  margin: 20px 140px 100px;
  }
  
  .menu-fortunetelling {
    padding-bottom: 70px;
  }
  .btn-view-04{
    margin-left: 78%;
  }
  
  .section-infomation__description{
    margin-left: 50px;
  }
    .flex-pc{
    display: flex;
    justify-content: flex-start;
  }
  .section-infomation__description{
    margin-left: 10%;
  }
   .section-infomation__description dl dt{
    width: 20%;
  }
  .section-infomation__description dl dd{
    width: 70%;
  }
  .section-infomation__sns-wrapper ul {
    
    gap: 60px;
}
  .info-blog{
  min-width: 150px;
}
.info-instagram{
  min-width: 150px;
}
  .section-infomation__sns-wrapper img{
  width: 33px;
  align-self: flex-start;
}
  
  

}







@media screen and (min-width:960px){
	.btn-read-01:hover::before,.btn-view-03:hover::before{
  width:70%;
}
	.btn-read-02:hover::before{
		width: 150px;
	}
	.btn-view-04:hover::before{
  width:80%;
}
  .btn-read-01::after{
    position: absolute;
    content: '';
    top: 22px;
    right: 35px;
	}
	.btn-view-03::after{
		right: 50px;
	}
	.btn-view-04::after{
		right: 16px;
	}
	.btn-read-01::before,.btn-view-04::before {
		left: 26%;
	}
	.btn-read-02::before{
		left: -27%;
	}
	.btn-view-03::before{
		left: 31%;
	}
	
  .btn-read-01{
    display: block;
  margin-left: 64%;
}
.btn-read-02{
  
  }
.btn-view-03{
  display: block;
  margin-left: 78%;
}
.btn-view-04{
  display: block;
  margin:270px 0 0 64%;
}
  
  /*top*/
  .section-top{
    width: 100%;
    height:1000px;
    max-width: 1440px;
    margin: 0 auto 150px;
  }
  .section-top h1 {
    top: 242px;
    left: 105px;}
  
  .section-top img {
    max-width: 960px;
    top: 65px;
  }
  
  .section-top_bg{
    top: 0;
    width: 40%;
  }
  .section-top__image-slide img {
    z-index: 10;
    width: 100%;
    height: 692px;
  }
  

  .section-top p {
    font-size: 2.0rem;
    top: 308px;
    letter-spacing: 3px;
    padding-left: 18px;
    line-height: 40px;
}
  .section-top p span {
    margin-left: 200px;
}
  
  
  
  
  
  /*concept*/
.section-concept {
    padding-bottom: 140px;
}
  .section-concept__img-wrapper {
    width: 50%;
    max-width: 650px;
    margin: 20px 0px 0 auto;
}
 
  .section-concept-wrapper{
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-concept__flex{
    display: flex;
    padding-top: 74px;
        max-width: 1380px;
    margin: 0 auto;
  }
  .section-concept img{
    padding-top:0;
  }
  
  .section-concept__img-bg{
    height: 190px;
    margin-top: -142px;
    margin-left: 280px;
  }
  .section-concept__description{
    width: 50%;
  }
  .section-concept__description h3 {
    font-size: 2.6rem;
    line-height: 50px;
    padding-left: 0;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 50px 24px;
  }
  
  .section-concept__description h3 span {
    margin-left: 47%;}
  
  .concept__description h3 span {
    margin-left: 281px;
}
  .section-concept__description-bg{
        height: 80px;
    margin-top: -63px;
    width: 100%;
    margin-left: 7%;
  }
  .section-concept__description p {
        padding: 40px 40px 40px 42px;
   
    line-height: 34px;
    
    margin: 0 0 auto;
  }
  .info-blog,.info-instagram{
    width: 180px;
  }
  
  
  
  
  
  
  /*about*/
  .section-about{
    padding-bottom: 200px;
  }
 .section-about__subtitle {
   padding-bottom: 130px;
  }
  .section-about-content{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1440px;
  }
.section-about__nailist-img {
    width: 300px;
    margin-top: 18px;
    margin-right: 130px;
}
  .section-about__wrapper{
    max-width: 1440px;
    margin: 0 auto;
  }
  
 
  .section-about__description {
    width: 60%;
  }
  .section-about__description h3,.section-about__descriprion-profile,.section-about__description-comment{
    max-width: 600px;
    margin:0 auto;
  }
  
  .section-about__descriprion-profile{
    line-height: 36px;
    font-size: 2.0rem;
  }
  .section-about__description-comment{
    font-size: 2.4rem;
    line-height: 40px;
    padding-bottom: 46px;
  }
  .section-about__img-wrapper{
    width: 40%;
    background-size: 70%;
    background-position: right;
  }
  
  
  /*gallery*/
  .section-gallery{
    max-width: 1380px;
    margin:0 auto;
    margin-bottom: 200px;
  }
  .image-4,.image-5{
    display: block;
  }
  .section-gallery__img img{
    width: 180px;
    height: 180px;
  }
  
  
  /*menu*/
  .section-menu__contents{
  flex-direction:row;
    max-width: 1440px;
    margin: 0 auto;
}
  .section-menu__attractednail,.section-menu__fortunetelling{
    width: 50%;
     padding: 0 30px;
  }
  .menu-attractednail__notes01 {
    padding-left: 29px;
  }
  
  .menu-attractednail, .menu-fortunetelling {
    padding: 0 30px;
  }
  .menu-attractednail__notes02{
    text-align: center;
    margin: 0 auto;
    width: 92%;
  }
  
  .blank-40{
    padding-left: 122px;
  }
   .blank-110{
    padding-left: 194px;
  }
   .blank-65{
    padding-left: 147px;
  }
   .blank-107{
    padding-left: 187px;
  }
  
  /*info*/
  .section-infomation{
    padding-bottom: 140px;
  }
  .section-infomation_bg{
    padding-bottom: 85px;
  }
  .section-infomation__description{
    padding-left: 10%;
    font-size: 1.6rem;
    line-height: 30px;
    
  }
  .section-infomation__description ul{
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-infomation__description li dl{
 
  padding: 0 0 34px 0;
}
  .section-infomation__description dl dt{
    width: 20%;
  }
  .section-infomation__description dl dd{
    width: 70%;
  }
  
  .flex-pc{
    display: flex;
    justify-content: flex-start;
  }
  .info-br-pc{
    display: none;
  }
  
  .info-br{
    display: block;
  }
  .p-br{
    display: none;
  }
  .section-infomation__sns-wrapper{
    max-width: 800px;
    margin: 130px auto;
  }
  
  /*.section-infomation__sns-wrapper ul li{
    max-width: 154px;
  }*/
  .section-infomation__img img{
    width: 230px;
    height: 230px;
  }
  
  .section-infomation__sns-wrapper ul {
    gap: 70px;
  }
  .section-infomation__description{
  
  background-size: 650px;
    background-position: bottom right;
}
  .section-infomation__img{
    max-width: 1440px;
    margin: 0 auto;
  }
  .info-blog{
  min-width: 160px;
}
  .section-infomation__sns-wrapper img{
  width: 30px;
  align-self: flex-start;
}
  .icon-p {
    
    padding-top: 4px;
  }
}

 /*cancel btn*/

.btn-top {
width: 160px;
background-color: #979f80;
padding: 4px 0;
border-radius: 16px;
text-align: center;
margin-bottom: 16px;
}
.btn-top span{
color: #f1f0ee;
padding: 0;
}


