html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
  }
  body {
    color: #333; /* RGB */
    font-family: 'Noto Serif JP', 'Noto Sans JP', sans-serif, 'Cormorant Garamond', serif , 'PT Serif';/*左のフォントが優先*/
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
     background-color: #FFF;
  }
  .main {
    background-color: #f5f0d6;
  }
  h1 {
    /*font-size: 5.0rem;*/
    display: inline-block;
    font-size: 4.0rem;
    line-height: 5.0rem;
    color: #FFF;
     -webkit-text-stroke: 1px #707070; /* webkitのベンダープレフィックス */
     text-stroke: 2px #707070;           /*　ベンダープレフィックスのない指定方法 */
  }
 section h2 {
    font-size: 2.7rem;
    line-height: 4.0rem;
  }
  a:hover {
    opacity: 0.5;
  }
  *, *:before, *:after {
    box-sizing: border-box;
  }
  .none {
    display: none;
  }

p {
  text-align: left;
  line-height: 3.0rem;
  font-size: 1.6rem;
}
span {
  margin-left: 10px;
}
.title-img img{
  width: 200px;
}

@media (min-width: 960px) {
   h1 {
      font-size: 5rem;
    }
  p {
      font-size: 1.6rem;
    }
  .title-img img{
  width: 40vw;
}
}
.jump-btn {
  display: block;
  position: relative;
  margin: 85px auto 0;
  width: 250px;
  height: 60px;
  color: #707070;
  background-color: #F6F6F6;
  border: solid 3px #4E4E4E;
  text-decoration: none;
  box-shadow: 4px 4px;
  padding: 5px;
  line-height: 4.0rem;
  z-index: 1;
}

.sns-menu {
  display: none;
}
@media (min-width: 960px){
.sns-menu {
  display: block;
  position: fixed;
  z-index: 5555;
  top: 510px;
  right: 69px;
  transform:rotate(90deg); 
  transform-origin: 100% 100%;
}
}
.sns-menu__text {
  display: inline-flex;
  width: 200px;
	align-items: center;
}
.sns-menu__text:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	display: inline-flex;
  margin-left: 2em;
	background: #000;
}
.sns-menu img {
  width: 20px;
  margin-left: 20px;
}

  /*--------------------------footer--------------------------------------------*/
.footer {
    padding-top: 30px;
    font-size: 1.4rem;
    color: #333;
    background: #FFF;
    width: 100%;
  }
.footer__shop-name {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
.footer__shop-name img {
  height: 70px;
  
}
.nail-insta {
  margin: 30px auto;
}
.nail-insta p {
  text-align: center;
  margin-bottom: 10px;
}
.nail-insta img {
  vertical-align: middle;
  height: 20px;
  margin-right: 5px;
}
.nail-link {
  font-size: 2.4rem;
}
.nail-link__btn {
      display: inline;
    vertical-align: middle;
    padding: 10px;
  margin: 10px;
}
.pc-nail-insta {
  display: none;
}
@media (min-width: 960px){
  .nail-insta {
    display: none;
  }
  .pc-nail-insta {
    display: block;
  }
  .pc-nail-insta img {
     height: 15px;
     margin: -3px 5px;
  }
}
/*-------------------------------------------アニメーションバナ1ー---------------------------------------------*/
/* バナー本体 */
.news-banner {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #FFF;
  border: 1px solid #000;
  overflow: hidden;
}
/* バナー内コンテンツ */
.news-banner__content {
  display: inline-block;
  color: #707070;
  line-height: 30px;
  padding-left: 100%;
  white-space: nowrap;
  animation: animate-banner 7s infinite linear;
}
/* バナー内の要素をすべて選択 */
.news-banner__content > * {
  display: inline-block;
}
/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.loop_wrap {
  display: flex;
  width: 100vw;
  height: 50px;
  overflow: hidden;
}

.loop_wrap img {
  width: auto;
  height: 100%;
}
.loop_wrap2 {
  display: flex;
  width: 100vw;
  height: 200px;
  overflow: hidden;
}

.loop_wrap2 img {
  width: auto;
  height: 100%;
}


@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  animation: loop 110s -55s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 110s linear infinite;
}
.loop_wrap2 img:first-child {
  animation: loop 110s -55s linear infinite;
}

.loop_wrap2 img:last-child {
  animation: loop2 110s linear infinite;
}


footer {
  padding: 20px;
}
.footer__shop-name {
      align-items: center;
}
.pc-nail-insta p {
  margin-bottom: 10px;
}
.footer__shop-name p {
  margin: 0
}