.body {
    overflow: hidden;
}

/*内部リンクスクロールの動き*/
html { scroll-behavior: smooth;
}

/*コンテンツ幅*/
.wrapper {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
/*コンテンツ幅メディアクエリ*/
@media screen and (max-width:1024px) { 
    .wrapper {
        width: 100%;
        max-width: 824px;
    
    }
    }
    @media screen and (max-width:768px) {
     .wrapper {
        width: 100%;
        max-width: 568px;
    
    }
     }
        
    @media screen and (max-width:480px) {
    .wrapper {
        width: 100%;
        max-width: 280px;
    
        }   
    }

/*全体をふわっと表示*/
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fadeUp.show {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
    
/*ヘッダー画像*/
header {
    background-image: url("images/header-1-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

.logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-img img {
    width: 500px;
    display: block;
}
/*ヘッダー画像メディアクエリ*/
@media screen and (max-width:1024px) { 
  

}
@media screen and (max-width:768px) {
   header {
        height: 100svh; /* スマホ用の安定した高さ */
    }
        .logo-img img {
    width: 300px;
}
}
        
@media screen and (max-width:480px) {

    .logo-img img {
    width: 250px;
}
}  


/*PCナビゲーション*/
.header-inner {
  position: absolute;  /* fixed → absolute に戻す */
  top: 20px;
  right: 40px;
  z-index: 1000;
  left: 0;          /* ←追加 */
  right: 0;         /* ←追加 */
}

.nav-links {
  display: flex;
  justify-content: space-between; /* ←これが重要 */
  align-items: center;
  width: 100%;                    /* ←追加 */
  padding: 0 40px;                /* ←左右余白 */
  list-style: none;
  margin: 0;
}
header .nav-links li img{
    width: 25px;
    height: 25px;
    margin: 0;
}

header ul li {
    padding: 10px;
    color: white;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: right;
  }

.online-store-nav {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.online-store-nav:hover {
  background: rgba(255,255,255,0.2);
}
.arrow {
  margin-left: 6px;
  font-size: 14px;
}


/*ナビゲーションのメディアクエリ*/
@media screen and (max-width:1024px) { 


}
@media screen and (max-width:768px) {
  .header-inner {
    top: 15px;
    right: 15px;
  }

  .nav-links {
    gap: 10px;
  }

  header .nav-links li img{
    width: 20px;
    height: 20px;
    margin:10px;
  }

  .online-store-nav {
    padding: 6px 14px;
    font-size: 12px;
  }

  .arrow {
    font-size: 12px;
  } 
  
}
        
@media screen and (max-width:480px) {

  .online-store-nav {
    padding: 5px 12px;
    font-size: 11px;
  }
header ul li {
    padding: 0px;
}

}


/*共通テキスト*/
h2 {
    font-size: 18px;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #3d3d3d;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

p {
    color: #3d3d3d;
    font-size: 0.9em;
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 2.0;
}
p {
 overflow-wrap: anywhere;
  word-break: break-all;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*共通テキストメディアクエリ*/
@media screen and (max-width:1024px) { 


}
@media screen and (max-width:768px) {
h2 {
    margin-top: 100px;
    font-size: 16px;
}

p{
     font-size: 0.75em  
}
}

        
@media screen and (max-width:480px) {
h2 {
    font-size: 16px;
    margin-top: 100px;
}

br {
    display: none;
}  

p{  
    font-size: 0.75em;
    display: block;
}

}
/*リード文章*/
.lead-text {
    margin-top: 70px;
    margin-bottom: 70px;
}

/*画像スライダー*/
.slider img {
    width: 100%;
}
/*スライダーのドットを押せないように*/
.slick-dots {
  pointer-events: none;
}

/*--画像スライダーのメディアクエリ--*/
@media screen and (max-width:1024px) { 


}
@media screen and (max-width:768px) {   
   
}
        
@media screen and (max-width:480px) {
    .slick-dots {
        bottom: -60px;
    }

}
/*オンラインストア*/
.online-store-box {
    margin-top: 150px;
}
.online-store-box img {
    width: 100%;
}
/*オンラインストア*/
.online-store-box {
  position: relative;
}

.online-store-box img {
  width: 100%;
  display: block;
}

.online-store-content {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translate(-50%, -50%);
  text-align: left;
}
.online-store-content p {
  color: #fff;
}

.online-store-box-text1 {
   margin-bottom: 30px;
   font-size: 1.2em;
   font-weight: 600;
}
.online-store-box-text2 {
   font-size: 1.0em;
}

.online-store-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 7px 22px;
  background: rgba(255, 255, 255, 0.6);
  color: #333;
  text-decoration: none;
  font-size: 0.8em;
  font-family: "yu-gothic-pr6n", sans-serif;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.online-store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.online-store-box a {
  letter-spacing: 0.1em;
}
/*--オンラインストアのメディアクエリ--*/
@media screen and (max-width:1024px) { 


}
@media screen and (max-width:768px) {
  .online-store-box {
    margin-top: 100px;
  }
  .online-store-content p {
    color: #333;
  }
     
  .online-store-content {
    position: static; 
    transform: none;
    margin-top: 30px;
    text-align: center;
  }
  .online-store-btn {
  background: #dfdfdf;
  color: #ffffff;
  }
.online-store-box-text1 {
   font-size: 0.9em;
}
.online-store-box-text1 p {
   color: #dfdfdf;
}
.online-store-box-text2 {
    font-size: 0.8em;
}
        
}

@media screen and (max-width:480px) {
    .online-store-box-text2 {
   font-size: 0.7em;
}
}

/*アバウト*/
/*アバウトボックス1*/
#about-us {
    margin-top: 100px;
}
.about-box {
    display: flex;
    margin-bottom: 150px;
}
.about-box .about-text-2 {
    margin-left: 100px;
    width: 70%;
}
.about-img-box img {
    width: 100%;
    margin-bottom: 100px;
}

/*--アバウトボックス1エリアのメディアクエリ--*/
@media screen and (max-width:1024px) { 
    

}
@media screen and (max-width:768px) {   
.about-box {
    margin-bottom: 100px;
 }
 .about-img-box img {
    margin-bottom: 0px;
 }
}
        
@media screen and (max-width:480px) {
.about-box {
    display: block;
    margin-bottom: 50px;
 }
.about-box .about-text-2 {
    margin-left: 0px;
    width: 100%;
 }
.about-img-box img {
    width: 100%;
    margin-bottom: 0px;
 }
 .about-box .contact-text .sp-br{
display:block;
}
}
/*アバウトボックス2*/
.about-box2-text-1 {
   margin-bottom: 30px;
   font-size: 1.0em;
}
.about-box-2 {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: 100px;
}
.about-img-box2 {
    flex: 0 0 40%;
}
.about-img-box2 img {
    width: 100%;
    height: auto;
    display: block;
}

.about-box2-text {
    flex: 1;
}
.about-box2-text-1 {
font-weight: 700;
}



/*--アバウトボックス2のメディアクエリ--*/
@media screen and (max-width:1024px) { 
    

}
@media screen and (max-width:768px) {   
.about-box2-text-1 {
   margin-bottom: 10px;
}
.about-box-2 {
    gap: 30px;
    margin-top: 100px;
}
}
        
@media screen and (max-width:480px) {
.about-box-2 {
    display: block;
    margin-top: 50px;
}
.about-box2-text-1 {
   margin-top: 10px;
   margin-bottom: 10px;
   font-size: 0.9em;
}
}


/*デザイナー*/
.designer-box {
    display: flex;
    margin-bottom: 150px;
    margin-top: 150px;
}

.designer-box .designer-text-2 {
    margin-left: 100px;
    width: 70%;
}
.designer-img-box img {
    width: 100%;
}
/*--デザイナーメディアクエリ--*/
@media screen and (max-width:1024px) { 
    

}
@media screen and (max-width:768px) {   
.designer-box {
    margin-top: 100px;
 }
}
        
@media screen and (max-width:480px) {
.designer-box {
    display: block;
    margin-bottom: 50px;
    margin-top: 50px;
 }
.designer-box .designer-text-2 {
    margin-left: 0px;
    width: 100%;
 }
.designer-img-box img {
    width: 100%;
    margin-bottom: 0px;
 }
}

/*コンタクト*/
.contact-box {
    display: flex;
    margin-bottom: 150px;
    margin-top: 150px;
}

.contact-box .contact-text-2 {
    margin-left: 100px;
    width: 70%;
}
.contact-img-box img {
    width: 100%;
}

/*--コンタクトメディアクエリ--*/
@media screen and (max-width:1024px) { 
    

}
@media screen and (max-width:768px) {   
.contact-box {
    margin-top: 100px;
 }
 .sp-br {
  display: block;
 }
}
        
@media screen and (max-width:480px) {
.contact-box {
    display: block;
    margin-bottom: 50px;
    margin-top: 50px;
 }
.contact-box .contact-text-2 {
    margin-left: 0px;
    width: 100%;
 }
.contact-img-box img {
    width: 100%;
    margin-bottom: 0px;
 }
}
/*フッター*/

footer {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    background: linear-gradient(180deg, #f9f8f8 0%, #f3f3f3 100%);
}

.footer-nav {
    display: flex;
    align-items: center;
}

.footer-nav li {
    font-size: 0.8em;
    color: #3d3d3d;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    list-style: none;
    padding: 20px;
    margin-top: 90px;
    text-align: left;
}
.footer-nav a {
  letter-spacing: 0.1em;
}


/*--フッターのメディアクエリ--*/

@media screen and (max-width:1024px) { 

}

@media screen and (max-width:768px) {   
.footer-nav li {
    font-size: 0.8em;
    padding: 10px;
}
}
        

@media screen and (max-width:480px) {

footer{
    height: 200px;
    display: flex;
    align-items: center; 
    justify-content: center;  
}

.footer-nav{
    display: block;
    text-align: center;
}

.footer-nav li{
    margin-top: 0;
    padding: 8px 0;
}

}