/*
Theme Name: ネイルサロンサンプルサイト
Author: Hiropon
Description: テストテーマです
Version: 1.0
*/

@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  width: 106vw;
}

@media screen and (max-width:407px){
  body{
    display: inline-block !important;
  }
}

/*フェードイン*/
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.fadein-bottom{
  transform: translate(0,30px);
}
.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*リンク*/
a{
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
  display: block;
}

a:hover{
  color: #525252;
  transition: 0.5s ;
}

.textlink a, .textlink {
  color: #525252;
  text-decoration: underline;
  transition: 0.5s ;
}

.textlink a:hover, .textlink:hover{
  text-decoration: none;
}

/*共通*/

h3{
  font-weight: 100;
  letter-spacing: 2px;
}

p{
  letter-spacing: 3px;
  font-size: 12px;
}

ol, ul{
  margin: 0;
  list-style: none;
  padding: 0;
}

.pan{
  color: #b3aa9d;
  font-size: 11px;
  letter-spacing: 1px;
  margin-left: 25px;
  margin-top: 104px;
  display: flex;
  gap: 10px;
  text-decoration: none;
	width: 100vw;
}

/*上に戻るボタン*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 99;
}
.pagetop a {
display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 37px;
}
.pagetop a:hover {
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*TOPページ*/

/*ヘッダーエリア*/
.header{
  width: 100%;
  background: #e4dfd6;
  box-sizing: border-box;
  z-index: 50;
  position: fixed;
  top: 0;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.header_logo{
  width: 78px;
}

.header_navi{
  font-size: 12px;
  color: #fff;
  margin-left: 18px;
}

.header_navi ul{
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
}
.header_navi li{
  width: 100px;
  text-align: center;
  cursor: pointer;
}

.header_navi p{
  margin: 0;
  padding: 2px 0;
  font-size: 13px !important;
}


/*通常はここを読み込む*/
@media screen and (min-width:719px){
  .humberger, .humberger, .humberger_inner{
    display: none;
  }

}


/* TOP520px以下はここを読み込む(ハンバーガー) */
@media screen and (max-width:718px){

.header_navi{
  display: none;
}

.humberger{
  background-image: url(img/burger.svg);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
  height: 40px;
  width: 40px;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: 0.5s all ease;
}

.menu{
    width: 100%;
    height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  color: #e4dfd6;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all ease;
  animation-name: fadeout;
  animation-duration: 1s;
  opacity: 0;
  visibility: hidden;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout{
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


.menu.is-active{
  display: flex;
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  transition: 0.5s all ease;
  visibility: visible;
width: 100% !important;
    height: 100% !important;
}

.humberger.is-active{
  background-image: url(img/close.svg);
  transition: 0.5s all ease;
}


.humberger_inner{
  font-size: 12px;
  color: #fff;
  margin-left: 18px;
}

.humberger_inner li{
  text-align: center;
  cursor: pointer;
  padding: 7px 0;
}

.humberger_inner li a{
  color: #555049;
}

.humberger_inner p{
  margin: 0;
  padding: 2px 0;
  font-size: 13px !important;
}

.content_04 img{
  margin: 0 !important;
	    width: 300px !important;
}
}




/*TOPメインコンテンツ*/
#main_container{
  text-align: center;
  color: #b3aa9d;
  font-size: 14px;
}

/*TOPスライダー上の余白リセット*/
	.top_margin{
		    margin-top: -65px;
	}

/*TOPnews*/
.content_01{
  margin-top: 50px;
  margin-bottom: 60px;
}

.news_block{
  margin: 0 auto;
}

.news_categoly{
  background: #d3db86;
  color: #ffff;
  padding: 0 10px;
}

.news_article{
  margin: 4px 0;
  display: block;
}

.news_date{
  width: 130px;
}

.news_ttl{
  width: 200px;
}

.news_link {
  color: #b3aa9d;
  letter-spacing: 3px;
}

.news_link{
  position: relative; /*アンダーラインの位置を決めるための基準 */
  }
  
  .news_link::after{
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
  content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
  width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
  height: 2px;        /*アンダーラインの高さ（太さ）*/
  background: #b3aa9d;/*アンダーラインの色*/
  }

.news_link::after{
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #b3aa9d;
  bottom: -9px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
  
  .news_link:hover::after{
    visibility: visible;
    bottom: -3px;
    opacity: 1;
  }

.content_02,.content_04{
  background: #f5f5f5;
  padding-top: 40px;
}

.concept{
  margin: 48px 0;
  width: 400px;
}

.concept h3{
  margin: 0;
  font-size: 15px;
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  display: inline-block;
}

.concept h3:before ,.concept h3:after{
  content: '';
  width: 11px;
  height: 14px;
  position: absolute;
  display: inline-block;
}
.concept h3:before {
  border-left: solid 2px #8ad6f0;
  border-top: solid 2px #8ad6f0;
  top: 0;
  left: 0;
}

.concept h3:after{
  border-right: solid 2px #8ad6f0;
  border-bottom: solid 2px #8ad6f0;
  bottom: 0;
  right: 0;
}

.concept_container,.saloninfo_container{
  display: flex;
  justify-content: center;
}

.concept p{
  margin: 0;
  font-size: 13px;
  padding: 16px 34px;
}

.concept img{
  width: 250px;
  display: block;
  margin: 13px auto;
}

/*インスタ投稿*/
.content_03{
  margin-top: 50px;
  margin-bottom: 70px;
}

.insta_btn{
  width: 250px;
  background: #b3aa9d;
  margin: 0 auto;
  padding: 11px 0;
}

/*インフォ*/
.content_04{
  margin-bottom: -12px;
  padding-bottom: 70px;
}

.content_04 h2{
  margin-bottom: 40px;
}

.content_04 img{
  width: fit-content;
  margin-right: 50px;
  height: 232px;

}

.info_inner{}

.flex{
  display: flex;
  padding: 10px 0;
  margin-top: -16px;
}

dt{
  width: 90px;
  text-align: left;
}

dd{
  width: 230px;
    text-align: left;
}

/* TOP718px以下はここを読み込む */
@media screen and (max-width:718px) {
	
  .concept_container, .saloninfo_container{
    display: grid;
  }

  .info_inner {
    margin-top: 18px;
}

  .content_03 {
    margin-top: 50px;
    margin-bottom: 70px;
}

  .flex {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 10px auto;
    padding: 0;
}

.menu_name {
  width: 70% !important;
  text-align: left;
}

dt {
  width: 30%;
  text-align: center;
}

dd {
  text-align: center;
  margin: auto;
}

.content_04 {
  margin-bottom: 0px;
}
}



/*aboutページ*/
.about_content{
  margin: 30px;
}

.about_concept{}

.content_01 h2{}



/*特徴*/
@media screen and (max-width:718px) {


.about_content{
  margin: 30px;
}

  .feature_contents{
    display: block !important;
    margin-bottom: 260px !important;
  }

  .about_feature {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.concept_p {
  width: 90% !important;
  margin: 0 auto !important;
}
}


.about_feature{
  margin-top: 200px;
  margin-bottom: 100px;
}

.feature_contents{
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 190px;
  height: 277px;
}

.two{
  flex-direction: row-reverse;
}

.concept_p{
  width: 400px;
}

.concept_ttl{
  margin-top: 20px;
}

.feature_contents img{
  width: auto;
  height: 200px;
  box-shadow: 1px 3px 11px #a7a7a74a;
  margin-top: 30px;
}

/* 718px以下はここを読み込む */
@media screen and (max-width:718px) {
.about_kv{    width: 90%;
}

}

/*メニューページ*/
/* 718px以下はここを読み込む */
@media screen and (max-width:718px) {
  .about_kv{    width: 90%;
  }
  
  .menu_flex{
    display: block !important;
  }

  .menu_flex img{
    margin-right: auto !important;
  }

  .menu_contents{
    margin: 33px 20px 0;
  }


  }


.manu_ttl{
  margin-bottom: 42px;
}

.menu_contents{
  margin-top: 150px;
}

.menu_flex{
  display: flex;
  padding: 10px 0;
  margin-top: -16px;
  justify-content: center;
}

.fadein-bottom:nth-child(2n) .menu_flex {
  flex-direction: row-reverse;
}


.menu_flex img{
  height: 251px;
  width: auto;
  margin-right: 40px;
}

.menu_price_contents{
  padding: 10px 0;
  justify-content: center;
}

.price{
  display: flex;
  padding: 10px 0;
  margin: 0;
}

.menu_name{
  width: 190px;
  text-align: left;
}

.menu_price{
width: 100px;
text-align: left;
}

/*ブログ*/
.blog{
  color: #b3aa9d;
  font-size: 14px !important;
  text-align: center;
  margin-bottom: 50px;
}

.blog_main{
  display: flex;
  justify-content: center;
  gap: 16px;
}

.blog_sidebar{}

.side_newpost{
  text-align: left;
  padding: 0 10px;
}

.blogpost_container{
  display: flex;
    width: 700px;
    flex-wrap: wrap;
    justify-content: center;
}

.blogpost_a{
  width: 44%;
  color: #b3aa9d;
}

.blogpost{
  border: solid 1px #EAE5DE;
  padding: 10px;
  margin: 10px;
}

.blogpost_date{
  margin: 0;
  text-align: left;
}

.blogpost img{
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blogpost h2{
  margin: 0;
  font-weight: lighter;
  font-size: 13px;
  text-align: left;
}

.news_article_ttl{
  width: 200px;
  margin: 0;
}

@media screen and (max-width:718px){
  .blog_main{
    display: block;
  }

    .blogpost_container{
      width: 100%;
    }
  }

.blog_link{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  font-size: 12px;
}

.blog_top{
  margin-bottom: 20px;
  font-size: 12px;
}

/*コンタクト*/
.contactform{}

.contact_li{
  padding: 8px 0;
}

.contact_li span{
  color: rgb(255, 0, 0);
}

.contact_submit{
	    border: solid 1px #b3aa9d;
    background: #fff;
    width: 200px;
    padding: 10px 0;
    cursor: pointer;
    color: #b3aa9d;
}

/*フッターエリア*/
#footer{
  width: 100%;
  background: #e4dfd6;
  box-sizing: border-box;
  color: #fff;
  margin-bottom: -12px;
}

.footer_navi{}

.footer_navi ul{
  display: flex;
  list-style: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  font-size: 12px;
  gap: 12px;
}
.footer_navi p{
  margin: 0;
}