@charset "utf-8";

.carousel-item,
.carousel-inner{
  height:100vh;
}

.carousel-item img{
    height: 100%;
    object-fit: cover;
}

.carousel-item:nth-child(even) img{
    animation: yura-pc 30s linear forwards infinite;
}

.carousel-item:nth-child(odd) img{
    animation: yura2-pc 30s linear forwards infinite;
}

@media (max-width: 767px) {
  .carousel-item:nth-child(even) img{
    animation: yura 60s linear forwards infinite;
}

.carousel-item:nth-child(odd) img{
    animation: yura2 60s linear forwards infinite;
}
}
@keyframes yura-pc {
  0% {
  object-position:20%;
  }
  50% {
  object-position:80%;
  }
    100% {
  object-position:20%;
  }
}

@keyframes yura2-pc {
  0% {
  object-position:80%;
  }
  50% {
  object-position:20%;
  }
    100% {
  object-position:80%;
  }
}

@keyframes yura {
  0% {
  object-position:50%;
  }
  50% {
  object-position:70%;
  }
    100% {
  object-position:50%;
  }
}

@keyframes yura2 {
  0% {
  object-position:40%;
  }
  50% {
  object-position:50%;
  }
    100% {
  object-position:40%;
  }
}

.main-title{
    padding: 2.5% 6rem;
}

.check-sp{
  width: fit-content;
  position: fixed;
  padding: 2rem 1.25rem;
  background-color:#171717;
  bottom: 1.5rem;
  right: 2.5%;
  z-index: 500;
  border-radius: 999vh;
}
.check-sp_line {
  padding: 1.75rem 0.75rem;
}
.check-sp_insta {
    bottom: 190px !important;
    padding: 1.25rem 1.75rem;
}
.check-sp.none{
  display:none !important;
}
.check-sp a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:0.3rem;
}
.check-sp a p {
    font-size: 14px;
}
.check-sp_line br {
    display: none;
}
.check-sp a:hover{
  opacity:0.7;
}

.check-sp img{
  /* width: 5rem; */
  width: 4rem;
}

.check-sp .batu{
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: -1rem;
  padding: 0.25rem;
  right: 0;
  z-index: 1;
  cursor:pointer;
}

@media (max-width: 1279px) {
  .check-sp{
      width: 130px;
    text-align: center;
    height: 130px;
    padding:1rem;
  }
.check-sp img{
  width:3rem;
}
  .check-sp a{
    gap: 0.25rem;
  }
  .check-sp p{
    padding: 0 4px;
  }
}

@media (max-width: 767px) {
.check-sp {
        width: 280px;
        width: 45%;
        height: auto;
        padding: 0rem;
        border: 1px solid #fff;
        right:auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    .check-sp_line {
        left: 75%;
    }
    .check-sp_line br {
        display: block;
    }
    .check-sp_insta {
        left: 25%;
        bottom: 2% !important;
    }
      .check-sp img {
        /* width: 2.5rem; */
        width: 2rem;
    }
  .check-sp a{
	flex-direction: row;
    gap: 1rem;
  }
  .check-sp .batu {
    width: 1.5rem;
    height: 1.5rem;
    top: -1.5rem;
  }
}

.blur{
	animation-name:blurAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}

h2.blur{
	animation-delay:0.8s;
}

@keyframes blurAnime{
  from {
	filter: blur(15px);
	transform: scale(1.05);
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 


.scroll {
  position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  bottom:70px ;
  writing-mode: vertical-rl;
  color:#fff;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
    bottom: -70px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.fv{
  margin-top:100px;
  height:calc(100vh - 100px);
  position: relative;
  min-height: 730px;
      overflow: hidden;
}

.slider {
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 80vw;
}
.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

body {
  font-family: “Times New Roman”, “游明朝”, “Yu Mincho”, “游明朝体”, “YuMincho”, “ヒラギノ明朝 Pro W3”, “Hiragino Mincho Pro”, “HiraMinProN-W3”, “HGS明朝E”, “ＭＳ Ｐ明朝”, “MS PMincho”, serif;
}

.slider {
  height: 100%;
  overflow: hidden; 
  width: 100%;
}
.slick-img{
  height: 100vh;
}
.slick-img img {
  width: 100%;
  height:100%;
  object-fit:cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.fv-text{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color:#fff;
}

.fv-text h1{
  font-size:clamp(5rem, 2.727rem + 7.58vw, 11.25rem);
  line-height:1;
  font-weight: 400;
}

.fv-text h2{
  font-size:clamp(0.75rem, 0.477rem + 0.91vw, 1.5rem);
}

.top-about{
  background-color:#171717;
  color:#fff;
  position: relative;
  overflow: hidden;
}

.top-about:before{
    opacity:0;
  content:"ABOUT";
  position: absolute;
  left:0;
  bottom: -7%;
  font-size:clamp(4.375rem, -0.852rem + 17.42vw, 18.75rem);
  line-height: 1;
  color:#F4F4F4;
}

.top-about:after{
  content:"";
  background: url(https://ruin-dog.com/system_panel/uploads/images/20241009122921950282.png) no-repeat center / cover;
  width: 22%;
  aspect-ratio: 420 / 150;
  position: absolute;
  right: -1%;
  bottom: -2%;
}

.top-about.fadeUp{
       animation: fadeUp 1s forwards;
}

.top-about.fadeUp:before{
       animation: fadeRightAnime2 1.2s forwards  0.5s;
}

.top-about .row{
  align-items: center;
}

.top-about .row .top-about-right{
  width:50%;
}

.top-about .row .top-about-right img{
  height: 72vh;
  object-fit: cover;
  min-height: 600px;
}

.top-about .row .top-about-left{
  width:50%;
  margin-bottom: 5rem;
}

.top-about .row .top-about-left h2,
.top-about .row .top-about-left p{
  max-width:450px;
  margin:0 auto;
  font-weight:bold;
}

.top-about .row .top-about-left h2{
  font-size:clamp(1.25rem, 0.795rem + 1.52vw, 2.5rem);
  margin-bottom:2rem;
}

.top-nail{
  padding:10rem 0 15rem;
  position: relative;
  overflow:hidden;
}

.top-nail.fadeUp{
	animation: fadeUp 1s forwards;
}

.top-nail  .row.fadeUp{
animation: fadeRightAnime2 1.2s forwards ;
}

.top-nail  .row2.fadeUp{
animation: fadeLeftAnime 1.2s forwards ;
}

.top-nail:before{
  content:"Ru";
  position: absolute;
  right: -5%;
  top: 0%;
  opacity:0.5;
  font-size:clamp(18.75rem, 5.114rem + 45.45vw, 56.25rem);
  z-index:-2;
  line-height: 1;
}

.top-nail:after{
  content:"IN";
  position: absolute;
  left:-5%;
  bottom:0%;
  opacity:0.5;
  font-size:clamp(18.75rem, 5.114rem + 45.45vw, 56.25rem);
  z-index:-2;
  line-height: 1;
}

.top-nail .main-title{
  margin: 0 0 12rem 15%;
}

.top-nail .main-title:before {
  content: "NAIL\A MENU";
}

.top-nail .row{
  width:95%;
  justify-content: space-between;
  align-items: center;
}

.top-nail .row2{
  margin:10rem 0 0 auto;
  flex-direction: row-reverse;
  width: 90%;
}

.top-nail-left{
  width:40%;
  padding: 0 0 0 5%;
  position: relative;
  font-weight:bold;
}

.top-nail-left:before{
  content:"";
  position:absolute;
  background-color:#FFFFFF;
  border-radius:999vh;
  width: 99%;
  aspect-ratio: 1 / 1;
  z-index: -1;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top-nail-left h3{
  font-size:clamp(1rem, 0.182rem + 2.73vw, 3.25rem);
  margin-bottom:5%;
}

.top-nail-left h3 strong{
  font-size:clamp(2rem, 0.364rem + 5.45vw, 6.5rem);
  margin-right: 1rem;
  line-height: 1;
}

.top-nail-right{
  width:53%;
  position: relative;
}

.top-nail-right:before{
  content:"";
  position:absolute;
  background: url(https://ruin-dog.com/system_panel/uploads/images/20241009122921523182.png) no-repeat center / cover;
  width:27%;
  bottom:-5%;
  left:-3%;
  aspect-ratio: 256 / 150;
}

.top-nail-right img{
  border-radius:300px 0 300px 0;
}

.top-nail .row2 .top-nail-right img {
  border-radius: 0 300px 0 300px;
}

.top-nail .row2 .top-nail-right{
  width:47%;
}

.top-nail .row2 .top-nail-left {
  padding: 0% 5% 0 0%;
  width: 45%;
}

.top-nail .row2 .top-nail-left:after{
  content:"";
  position:absolute;
  background: url(https://ruin-dog.com/system_panel/uploads/images/20241009122921523182.png) no-repeat center / cover;
  width: 33%;
  top: -45%;
  right: -2%;
  aspect-ratio: 256 / 150;
}

.top-nail .row2 .top-nail-right:before{
  display:none;
}

.top-nail .row2 .top-nail-left:before{
  left: 60%;
}

.top-menu{
  padding:15rem 0 0;
  position: relative;
}

.top-menu:before{
  content:"";
  position:absolute;
  background: url(https://ruin-dog.com/system_panel/uploads/images/20241010150828476702.png) no-repeat center / cover;
  width:30%;
  top:0;
  left:0;
  aspect-ratio: 660 / 150;
}

.top-menu .row.fadeUp {
animation:  fadeUpAnime2 1.2s forwards;
}

@keyframes fadeUpAnime2{
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.top-menu .row{
  width:80%;
  margin:0 auto 7.5rem;
  max-width:1270px;
  justify-content: space-between;
  gap:2.5rem 0;
}


.top-menu-item{
  width:30%;
  text-align:center;
}

.top-menu-item a{
  color:#171717 !important;
  width: 100%;
}

.top-menu-item img{
  max-width:320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999vh;
  border:10px solid transparent;
  transition:0.3s;
}

.top-menu-item a:hover img{
  border:10px solid #171717;
}

.top-menu-item a >p:nth-child(2){
  font-size:clamp(1.25rem, 0.795rem + 1.52vw, 2.5rem);
  margin:1rem 0;
  font-weight: 400;
}

.top-menu-item a > p:last-child{
  font-weight:bold;
}

.top-cta{
  width:80%;
  margin:15rem auto;
  max-width:1440px;
  background-color:#171717;
  padding:3.5rem 0 0;
  color:#fff;
  position: relative;
  z-index: 0;
}

.top-cta.fadeUp{
animation: fadeUp 1s forwards;
}

.top-cta.top-cta-sp{
  display:none;
}

.top-cta .row {
  align-items: flex-end;
}

.top-cta .row > div{
  width:50%;
}

.top-cta:before{
  content:"";
  position:absolute;
  background: url(https://ruin-dog.com/system_panel/uploads/images/20241010143835134620.png) no-repeat center / cover;
  width:50%;
  top:0;
  left:0;
  z-index: -1;
  height:100%;
}

.top-cta img{
  max-height:400px;
  aspect-ratio: 357 / 393;
  width: fit-content;
  margin: 0 auto;
  display: block;
  width: 60%;
}

.top-cta h2{
  font-size:clamp(1.25rem, 0.341rem + 3.03vw, 3.75rem);
  width: fit-content;
  margin: 0 auto 7%;
}

.top-cta h2 + p{
  text-align:center;
  margin-bottom:1rem;
}

.top-cta .btn{
  border-radius:999vh;
  background-color:#fff ;
  color:#171717 !important;
  padding: 14px 0;
  border:1px solid #fff;
  margin-bottom: 5%;
}

.top-cta .btn:hover{
  background-color:#171717  ;
  color:#fff !important;
}

.top-staff{
  padding:10rem 0;
  background: url( https://ruin-dog.com/system_panel/uploads/images/20241010141359509074.png) no-repeat top / cover;
  position: relative;
  z-index: 0;
  color:#fff;
}

.top-staff.fadeUp{
animation:  fadeUpAnime2 1.2s forwards;
}

.top-staff-container{
  width:80%;
  max-width:1000px;
  margin:0 auto;
}

.top-staff .row{
  justify-content: space-between;
  align-items:center;
}

.top-staff-left{
  width:55%;
}

.top-staff-text{
  margin-bottom: 2rem;
}

.top-staff-text p:last-child{
  font-weight:bold;
  margin: 1rem 0 0 2rem;
}

.top-staff-text p:has(strong){
  line-height: 1;
}

.top-staff-text p:last-child strong{
  font-size:2.5rem;
}

.top-staff-right{
  width:36%;
}

.top-staff-3{
  width:90%;
  max-width:852px;
  margin:2.5rem auto;
  display: flex;
  justify-content: space-between;
  text-align:center;
}

.top-staff-item{
  width:30%;
}

.top-staff-item p{
  font-weight:bold;
  margin-top:1rem;
}

.top-staff .btn{
  margin:0 0 0 auto;
}

.top-news{
  margin:10rem 0;
}

.top-news.fadeUp{
animation: fadeUp 1s forwards;
}

.top-news .news-main{
  margin: 10rem auto 5rem;
}

.top-access{
  padding:10rem 0 12.5rem;
}

.top-access.fadeUp{
animation:  fadeUpAnime2 1.2s forwards;
}

.top-access .map{
  width: 80%;
  margin: 7.5rem auto 0;
  aspect-ratio: 3 / 1;
}

.top-access .row{
  width: 80%;
  margin: 10rem auto 5rem;
  max-width:1240px;
  justify-content: space-between;
  align-items: center;
}

.top-access-left{
  width:250px;
}

.top-access-left p:first-child{
  font-size:clamp(1rem, 0.818rem + 0.61vw, 1.5rem);
  line-height: 1;
}

.top-access-left p:nth-child(2){
  font-size:clamp(3.25rem, 2.614rem + 2.12vw, 5rem);
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.top-access-right{
  width:calc(100% - 330px);
}


@media screen and (max-width: 1279px) {
  
  .top-nail .main-title{
  margin: 0 0 12rem 8%;
    padding: 2.5% 4rem;
}
  
  .top-nail .row.fadeUp {
animation:  fadeUpAnime2 1.2s forwards;
}
.top-nail .row2.fadeUp {
animation:  fadeUpAnime2 1.2s forwards;
}
  .fv{
    height:calc(100vh - 70px);
    margin-top:70px;
  }
  .top-about{
    padding-top:2.5rem;
  }
  .top-about .row{
    flex-direction: column;
  }
  .top-about .row .top-about-left {
    width: 90%;
    margin-bottom: 2.5rem;
  }
  .top-about .row .top-about-right {
    width: 100%;
  }
  .top-about .row .top-about-right img {
    height: auto;
    min-height: auto;
    aspect-ratio: 5 / 3;
  }
  .top-about:before {
    bottom: -3%;
  }
  .top-nail .row,
  .top-nail .row2{
    flex-direction: column-reverse;
    gap:2.5rem;
    width: 90%;
  }
  .top-nail .row{
    margin: 0 auto ;
  }
  .top-nail .row2{
    margin: 10rem auto 0;
  }
  .top-nail-left,
  .top-nail .row2 .top-nail-left{
    width:100%;
    padding:10%;
  }
  .top-nail-right,
  .top-nail .row2 .top-nail-right{
    width:80%;
  }
  .top-nail-left:before,
  .top-nail .row2 .top-nail-left:before{
    width: 95%;
    left: 50%;
  }
  .top-menu-item {
    width: 33%;
  }
  .top-access-left {
    width: 80%;
  }
  .top-access-right {
    width: 90%;
  }
  .top-access .row {
    flex-direction: column;
    gap: 2.5rem;
  }
  .top-access .map {
    width: 90%;
    aspect-ratio: 2 / 1;
  }
  .top-cta {
    margin: 5rem auto;
  }
}

@media screen and (max-width: 767px) {
  .main-title{
    padding: 2.5% 2rem;
}
    .top-nail .main-title{
    padding: 2.5% 2rem;
}
  .fv{
    height:calc(100vh - 60px);
    margin-top:60px;
  min-height: auto;
  }
  .top-cta,
  .top-cta:before{
    display:none; 
  }
  .top-cta.top-cta-sp{
    display:block;
    padding:0;
  }
  .top-cta-sp .row{
    flex-direction: column;
    gap:1rem;
  }
  .top-cta img {
    width: 45%;
  }
  .top-cta h2 {
    margin: 5% auto 2%;
  }
  .top-cta .row > div:first-child:before{
    content: "";
    position: absolute;
    background: url(https://ruin-dog.com/system_panel/uploads/images/20241010143835134620.png) no-repeat center / cover;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
  }
  .top-cta .row > div {
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .top-cta .row > div p{
    text-align:center;
  }
  .top-access .row {
    margin: 4rem auto 0rem;
  }
  .top-access .map {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-top: 2.5rem;
  }
  .top-access{
    padding: 3rem 0;
  }
  .top-news {
    margin: 4rem 0;
  }
  .top-news .news-main {
    margin: 4rem auto 2.5rem;
  }
  .top-staff {
    padding: 4rem 0 2.5rem;
  }
  .top-staff .btn{
    margin:0 auto;
  }
  .top-staff-3 {
    flex-wrap: wrap;
    margin: 0 auto 2.5rem;
    gap: 1.5rem 0;
  }
  .top-staff-item {
    width: 45%;
  }
  .top-staff .row {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  .top-staff-left,
  .top-staff-right{
    width: 100%;
  }
  .top-menu-item {
    width: 50%;
  }
  .top-menu .row {
    width: 90%;
    gap: 1.5rem 0;
    margin: 0 auto 2.5rem;
  }
  .top-menu-item a >p:nth-child(2) {
    margin: 0rem 0 0.5rem;
  }
  .top-menu:before {
    width: 100%;
    left: -30%;
  }
  .top-menu {
    padding: 8rem 0 0;
  }
  .top-nail {
    padding: 5rem 0;
  }
  .top-nail-left:before, .top-nail .row2 .top-nail-left:before {
    width: 120%;
  }
  .top-nail-left h3 strong {
    margin-right: 0.25rem;
  }
  .top-nail-right img {
    border-radius: 100px 0 100px 0;
  }
  .top-nail .row2 .top-nail-right img {
    border-radius: 0 100px 0 100px;
  }
  .top-nail-right, .top-nail .row2 .top-nail-right {
    width: 95%;
  }
  .top-nail-right:before {
    width: 40%;
    bottom: -10%;
    left: -10%;
  }
  .top-nail .row2 {
    margin: 4rem auto 0;
  }
  .top-nail .row2 .top-nail-left:after {
    width: 33%;
    top: -11%;
    right: -10%;
    z-index: 1;
  }
  .top-nail:after {
    bottom: 22%;
  }
  .top-nail:before {
    top: 8%;
  }
  .top-nail .main-title {
    margin: 0 auto 7rem;
  }
  .top-about:after {
    width: 50%;
    right: -30%;
  }
}