@charset "UTF-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
:root{/*色彩設定*/
    --nav-background:black;
    --nav-text-color:white;
    --search-button:rgb(255, 255, 106);
    --nomal-line:#666;
    --background-color-section:#f6f6f6;
    --button-orange-color:#ff9355;

}
h2{
    text-align: center;
    font-size: 3rem;
    margin: 5rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
    font-family: "Edu TAS Beginner", cursive;
    font-optical-sizing: auto;
    font-weight: bold;    
}

.h2-ruby{
    text-align: center;
    background-color: var(--background-color-section);
    font-family: "Hachi Maru Pop", cursive;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

.h2-ruby::after{
    content: '';
    background-color: #4c9ac0;
    width: 5em;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 1.5rem;
  }
  .more-item-button-warraper{
    text-align: center;
    background-color: var(--background-color-section);
    padding-top: 6rem;
  }
  .more-item-button{
    border: 1px dotted #000000;
    line-height: 2.5;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 3rem;
    text-decoration: none;
    background-color: white;
    padding: 0.5rem 2rem;
    color: black;  

   color: #000000;
   overflow: hidden;
   position: relative;
   transition-duration: .4s;
   z-index: 2;
}

/*カートボタンにホバーした時のアニメーション*/
.more-item-button::after {
    background: #dcdcdc;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
  }
   
  .more-item-button:hover {
    color: var(--button-orange-color);
  }
  .more-item-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }


  a{
    text-decoration: none;
  }
  a:hover{
    color: var(--search-button);
    transition: color .5s, transform 0s;

  }

  ul{
    list-style: none;
}



/* ここからヘッダーの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.header{
    position: relative;
}
.header-catch{
    display: flex;
    width: 100%;
    justify-content: center;
}


.logo{
    width: 15vw;
    position: relative;
}


.header-left-menu{
    display: flex;
    align-items: center;
    right: 1rem;
    top: 3rem;
    position: fixed;
    z-index: 9999999999;
    
}


.nav-menu{
    background-color: var(--nav-background);
    color: var(--nav-text-color);
    display: none;
}


.nav-menu.open{
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    z-index: 3;
    /* animationプロパティ設定 */
   animation-name: fadeIn;
   animation-fill-mode:forwards;
   animation-duration:1s;
}

.nav-link-white{
    color: #fff;
}


.nav-top{
    display: flex;
    justify-content: flex-start
}
.language-button{
    height: 2rem;
    margin-left: 50vw;
    margin-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;

}
.nav-bottom{
    display: flex;
    justify-content: space-around
}
.nav-left{
    margin-top: 16rem;
}
.sns-area{
    font-size: 2.5rem;
    text-align: center;
}

.nav-right{
    font-size: 2rem;
    line-height: 2;
    margin-top: -1.5rem;
}

.nav-name{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.ruby{
    margin-top: -1.7rem;
    font-size: 1.3rem;
    display: block;
}
.nav-about-child{
    font-size: 1.8rem;
    margin-top: 2.1rem;
}

/*フェードインアニメ*/
@keyframes fadeIn{
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
}

.nav-shop-logo{
    width:15vw;
    
}

/*==================================================
　ハンバーガーメニュー 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
    z-index: 999999;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #000000;
  	width: 45%;
    z-index: 999999;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
    z-index: 999999;

}

.openbtn span:nth-of-type(2) {
	top:23px;
    z-index: 999999;

}

.openbtn span:nth-of-type(3) {
	top:31px;
    z-index: 999999;

}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background: #FFF;
    z-index: 3;

}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background: #FFF;
    z-index: 3;

}

.cart-button{/*カートボタンの記述*/
   border: 1px solid #000000;
   line-height: 2.5;
   padding-left: 2rem;
   padding-right: 2rem;
   border-radius: 3rem;
   text-decoration: none;
   background-color: #fff;
   color: var(--button-orange-color);
   overflow: hidden;
   position: relative;
   transition-duration: .4s;
   z-index: 2;
}

/*カートボタンにホバーした時のアニメーション*/
.cart-button::after {
    background: var(--button-orange-color);
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
  }
   
  .cart-button:hover {
    color: #fff;
  }
  .cart-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }
   
/* ここからヒーローイメージの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.hero-image{
    margin-bottom: 5rem;
}
.hero-image img{
    border-radius: 3rem;
    margin: 1rem;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);   
 }
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
     margin:0 auto;
     gap: 3rem;
 }
 
 .slider img {
     width:28vw;/*スライダー内の画像を横幅100%に*/
     height:auto;
 }
 
 /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
 
 .slider .slick-slide {
     margin:0 10px;
 }
 
 /*矢印の設定*/
 
 /*戻る、次へ矢印の位置*/
 .slick-prev, 
 .slick-next {
     position: absolute;/*絶対配置にする*/
     top: 42%;
     cursor: pointer;/*マウスカーソルを指マークに*/
     outline: none;/*クリックをしたら出てくる枠線を消す*/
     border-top: 2px solid var(--nomal-line);/*矢印の色*/
     border-right: 2px solid var(--nomal-line);/*矢印の色*/
     height: 15px;
     width: 15px;
 }
 
 .slick-prev {/*戻る矢印の位置と形状*/
     left: -1.5%;
     transform: rotate(-135deg);
 }
 
 .slick-next {/*次へ矢印の位置と形状*/
     right: -1.5%;
     transform: rotate(45deg);
 }
 
 /*ドットナビゲーションの設定*/
 
 .slick-dots {
     text-align:center;
     margin:50px 0 0 0;
     border-color: #d5d5d5;


 }
 
 .slick-dots li {
     display:inline-block;
     margin:0 5px;

 }
 
 .slick-dots button {
     color: transparent;
     outline: none;
     width:6px;/*ドットボタンのサイズ*/
     height:15px;/*ドットボタンのサイズ*/
     display:block;
     border-radius:50%;
     background:#ffffff;/*ドットボタンの色*/
     border-color: #d5d5d5;

 }
 
 .slick-dots .slick-active button{
     background:#d5d5d5;/*ドットボタンの現在地表示の色*/

 }
 





/* ここからバナーエリア＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.banner-area{
    display: grid;
    grid-template-columns: 30rem 30rem;
    gap: 1rem 0;
    justify-content: center;
    margin-bottom: 5rem;
}

.banner-area a{
    margin-left: auto;
    margin-right: auto;
}

.banner-area img{
    width: 25rem;
}

.banner-area-contents{
    margin: auto;
}

/*==================================================
検索窓のためのcss
===================================*/
.ky-search-bar-area{
    display: flex;
    justify-content: space-evenly
 
}

.ky-search-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 550px;
    border-radius: 30px;
    margin: 5px;
    border: solid 1px #dcdcdc;
    margin-bottom: 5rem;
}
 


.ky-search-box{
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 1rem;
}

.ky-search-button{
    background-color: var(--search-button);
    border: solid 1px #dcdcdc;
    border-radius: 30px;
    width: 7rem;
    height: 45px;
    font-family: "Edu TAS Beginner", cursive;
    font-optical-sizing: auto;
    font-weight: 500;

}

.ky-search-button:hover{
    background-color: var(--button-orange-color);
    color: white;
    transition: color 0.3s ease 0.01s;

}
.ky-search-button:active{
    box-shadow:
    inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
}



@media only screen and (max-width:480px){
    .ky-search-bar{
        width: 90%;
    }
}

/*ここから新着情報エリア*/
/* 背景の波型切り取り＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
svg{
    z-index: -1;
    width: 100vw;
    height: 12vw;
    position: absolute;
    /* left: 0;
    bottom: 0; */
    fill: var(--background-color-section) /* 色を変更 */
}
.warapper-grid-back{
    background-color: var(--background-color-section);
    padding-top: 7rem;
}
.bottom-svg{
    transform: scale(1,-1);
    padding-top: 3rem;
}

  /*画像のグリッド配置＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.warapper-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 61vw;
    margin-left: auto;
    margin-right: auto;    
}
.warapper-grid img{
    width: 20vw;
    text-align: center; 
    box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.2);   
}

.warapper-grid img:hover{
    transform: scale(1.05);
    transition-duration: 500ms;
    border-radius: 2rem;
}

/*大きい画像のサイズ調整*/
.div2 img {
    width: 40vw;
}
.div4 img {
    width: 40vw;
}


.warapper-grid-containts{
    text-align: center;
    width: fit-content;
}


.div1 { grid-area: 1 / 1 / 3 / 3; }
.div2 { grid-area: 1 / 3 / 5 / 7; }
.div3 { grid-area: 3 / 1 / 5 / 3; }
.div4 { grid-area: 5 / 1 / 9 / 5; }
.div5 { grid-area: 5 / 5 / 7 / 7; }
.div6 { grid-area: 7 / 5 / 9 / 7; }


/*ここからコラボグッズエリアの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.h2-collabo{
    margin-top: 25rem;
    padding-bottom: 0;
}
.svg-collabo{
    height: 27vh;
    margin-top: -12rem;
}

/*ここからフッターの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer{
    margin-top: 15rem;
    background-color: #000000;
    color: white;
    padding: 4rem;
    display: flex;
    justify-content: space-around
}

.footer-law-link{
    font-size: 1rem;
    padding-top: 15rem;
    display: flex;
    width: 30rem;
    flex-direction: row;
    align-content: center;

}

.link-white{
    color: white;
    line-height: 0.8;
}

.footer-nav{
    display: grid;
    grid-template-columns: 10rem 10rem 10rem;
    gap: 4rem;
    font-size: 2rem;
}

.link-white-span{
    font-size: 1rem;
}

.footer-link{
    display: flex;
    margin-top: 10rem;
    justify-content: space-between;
}

.cart-button-footer{
    border: 1px solid #ffffff;
   line-height: 2.5;
   padding-left: 2rem;
   padding-right: 2rem;
   border-radius: 3rem;
   text-decoration: none;
   background-color: #000000;
    color: #FFF;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
  }

  /*ホバーした時のカートボタンのアニメーション*/
  .cart-button-footer::after {
    background: var(--nav-text-color);
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
  }
   
  .cart-button-footer:hover {
    color: #000;
  }
  .cart-button-footer:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }

  .footer-sns-area{
    font-size: 1.8rem;
    margin-top: -5rem;
    text-align: center;
  }

  .slick-dots{
    margin: 5px 0 0 0;
    margin-right: 5rem;
  }



 
  /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ここからモバイル版の設定

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media(max-width:799px){
    body{
        width: 100vw;
        margin: 0;
    }

    .header-left-menu{
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        flex-direction: column;
        top: 1rem

    }
    h1{
        width: auto;
    }
    svg{
        display: none;
    }

    h2{
        font-size: 2rem;
    }
    /* ヘッダーの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    .logo{
        width: 8rem;
    }

    .openbtn{
        left: 4rem;
    }
    /* ヘッダーの記述ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */



    /* ナビの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
    .nav-shop-logo{
        display: none;
    }

    .nav-bottom{
        flex-direction: column-reverse;
    }

    .language-button {
    margin-left: 10vw;
    }

    .nav-bottom{
        margin-top: -1rem;
    }

    .nav-right{
        margin: 1.5rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .nav-left{
        margin-top: 0;
    }

    .mobile-display-block{
        display: block;
    }

    .nav-name{
        display: block;
    }
    .ruby {
        margin-top: -0.5rem;
        font-size: 1rem;
    }

    .nav-about-child {
        font-size: 1.3rem;
        margin-top: 0;
        margin-left: 4.5rem;
        line-height: 1;
    }

    .sns-area{
        font-size: 2rem;
    }

    .law-link{
        margin-top: -1rem;
    }
    /* ナビの記述ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    
    /* スライダーの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    .slider img{
        border-radius: 1rem;
        width: 40vw;
    }

    .slick-dots {
        margin-right: 1rem;
    }

    .slider{
        padding-left: 0;
    }
    /* スライダーの記述ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


    /* バナーエリアの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
    .banner-area{
        display: block;
        text-align: center;
        
    }

    .banner-area-contents{
        text-align: center;
    }

    .banner-area img {
        width: 18rem;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 1rem;
    }
    /* バナーエリアの記述ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    /* メインエリアの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
    .cart-button{
        padding-left: 0.3rem;
        padding-right: 0.3rem;
        z-index: 1;
        line-height: 1.5;
        width: 7rem;
        left: auto;
        text-align: center;
        white-space: nowrap;
        overflow:hidden;
    }
   
    .ky-search-box{
        font-size: 14px;
    }

    .more-item-button-warraper{
        padding-top: 3rem;
    }

    .h2-collabo {
        margin-top: 10rem;
    }
    /* メインエリアの記述ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


    /* フッターの記述＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    footer{
        width: 100%;
        display: flex;
        padding: 1rem;
        flex-direction: column-reverse;
    }

    .footer-right{
        margin-top: 1rem;
    }

    .footer-law-link{
        display: block;
        padding-top: 1rem;
        width: 80vw;
    }

    .footer-nav{
        display: block;
    }

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

    .link-white{
        display: flex;
        line-height: 2;
        gap: 0.5rem;
    }
    
    .link-white span{
        margin-top: 1rem;
    }

    .footer-sns-area{
        text-align: center;
        margin-top: 1rem;
    }

    .cart-button-footer{
      display: block;
      margin-top: -6rem;
    }
}