* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}


.pc { display: block !important; }
.sp { display: none !important; }

/*========= ナビゲーションのためのCSS ===============*/


#g-nav{
  position:fixed;
  z-index: 999;
  top:0;
  left: -93%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:rgb(255, 255, 255);
  transition: all 0.6s;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .5);
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 999; 
  width:100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
  color: rgb(15, 15, 15);
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: 'Nunito Sans', sans-serif;
}

#g-nav li a:hover{
  color: rgb(139, 139, 139);
}

.info2{
  display: flex;
  margin: 24px 0;
  justify-content: center;
}

.info2 li img{
  width: 2vw;
  margin-left: 0;
}

.connect2 li a{
  font-size: .9vw;
  border: solid 1px #000000;
  margin: 8px 0;
  padding: 0;
  color: #000000;
}

.connect2 li a:hover{
  color: #ffffff;
  background-color: #000000;
  transition: .5s;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:16px;
  left: 16px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background-color: rgb(0, 0, 0);
  width: 45%;
}

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

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

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.logoname{
  height: 100px;
  width: 100vh;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  align-items: center;
  position: fixed;
  top: 0;
  left: 2.5vw;
  z-index: 1000;
  text-align: center;
}

.logoname h3{
  font-size: 3vh;
  color: #243368;
  text-align: center;
  letter-spacing: .1em;
  font-family: 'Nunito Sans', sans-serif;
}



/*　上に上がる動き　*/

#header.UpMove{
animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
from {
  opacity: 1;
transform: translateY(0);
}
to {
  opacity: 0;
transform: translateY(-100px);
}
}

/*　下に下がる動き　*/

#header.DownMove{
animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
from {
  opacity: 0;
transform: translateY(-100px);
}
to {
  opacity: 1;
transform: translateY(0);
}
}


.headermenu {
  /* headerを画面上部に固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgb(255, 255, 255);
  padding: 16px 24px;
  transition: 0.5s;
}

.p-global-header__cart-count{
  font-size: 1vw;
}

/* ナビゲーションのリンクを横並びにする */
.headermenu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7%;
}

.headermenu ul li {
  list-style: none;
}

/* ナビゲーションのリンクのスタイル調整 */
.headermenu ul a {
  display: inline-block;
  margin-left: 12px;
  color: rgb(0, 0, 0);
  font-size: 1.4vw;
  text-decoration: none;
  /* アニメーションの変化時間 */
  transition: 0.5s;
  font-weight: 300;
  font-family: 'Nunito Sans', sans-serif;
}

.headermenu ul a:hover{
  color: #c5c5c5;
  transition: .5s;
}

.headermenu ul a img{
  margin-left: 8px;
}

.topmenu li {
  margin-right: 8px;
}

.headerlogo img{
  width: 9vw;
}

.info li img{
  width: 2vw;
  margin-left: 8px;
}


/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.headermenu.scroll-nav {
  /* 余白を狭くする */
  padding: 10px 16px;
  /* 背景を白にする */
  background: none;
}



.topbannar img{
  width: 100%;
  overflow: hidden;
}


.about{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin:  80px 59px;
  margin-left: 10%;
}

.aboutcom{
  text-align: center;
}

.aboutcom h1{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9vw;
}

.aboutcom h2{
  font-size: 1.2vw;
  margin: 16px 0;
}

.aboutcom p{
  font-size: 1.2vw;
  margin-bottom: 16px;
}

.aboutimg img{
  width: 35vw;
}

.leadmore{
  text-align: center;
  margin-right: 50px;
}
.button3{
  display:inline-block;
  width: 250px;
  text-align:center;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 1vw;
}
.button3::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button3::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button3:hover::before{
  right: 10px;
  width: 60px;
}
.button3:hover::after{
  right: 10px;
}

hr{
  margin: 80px 0;
  width: 100%;
  height: 1px;
  background-color: rgb(0, 0, 0);
}



/*---------- vertical tab nav */
#vertical_tab_nav{
  position: relative;
  width: 90vw;
  text-align: center;
  margin:  40px 59px;
  margin-left: 10%;
}
#vertical_tab_nav ul{
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: hidden;
  width: 20%;
}
#vertical_tab_nav li{
  padding: 8px;
  border-bottom: solid .5px #adadad;
  text-align: left;
  display: flex;
  align-items: center;
}

#vertical_tab_nav li img{
  margin-right: 16px;
  width: 30px;
}

#vertical_tab_nav li:last-child{
  margin-bottom: 0px;
  border-bottom: 0px;
}
#vertical_tab_nav li a{
  display: block;
  font-weight: 400;
  font-size: 1.1vw;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

#vertical_tab_nav li a:hover{
  color: #adadad;
  transition: .5s;
}

#vertical_tab_nav li a.selected{
  color: #adadad;
}


#vertical_tab_nav .plate{
  display: block;
  float: left;
  background: #fff;
  background: #fff;
  width:80%;
}


.type{
  font-size: 1vw;
  padding: 0;
}

#vertical_tab_nav ul .size{
  font-size: 1vw;
  margin: 0;
  margin-top: 24px;
  padding-bottom: 16px;
}

#vertical_tab_nav ul .type{
  font-size: 1vw;
  margin: 0;
  margin-top: 24px;
  padding-bottom: 16px;
}

#vertical_tab_nav div article{
  /*
  display: none;
  */
  margin: 0px;
}

.Frame {
  display: flex;
  flex-wrap:wrap;
  padding-top: 32px;
}

.framecom{
  margin-left: 2rem;
  width: 80%;
  text-align: left;
}

.Frame h2{
  font-size: 1.5vw;
  font-weight: 400;
}

.framecom h2{
  font-size: 1.5vw;
  font-weight: 400;
}


.Frame p{
  font-size: 1.1vw;
  margin: 16px 0 40px;
  
}

.ContentTile {
  width: 20vw;
  margin: 1vw;
  text-align: center;
  align-items: center;
  border: solid 1px #ffffff;
  padding: 16px 16px 16px 0;
}

.ContentTile:hover{
  border: solid 1px #4e4e4e;
  transition: .5s;
}


.ContentTileImage {
  text-align: center;
  width: 20vw;
}

.ContentTileImage img {
  width: 20vw;
  padding: 16px;
  text-align: center;
  padding-bottom: 0;
}

.producttitle{
  text-align: left;
  font-size: 1vw;
  color: #000000;
  padding-left: 16px;
}


.sub{
  display: flex;
  justify-content: space-between;
  color: #000000;
  padding-left: 16px;
}

.sub .subsize{
  font-size: 1vw;
}

.sub .price{
  font-size: 1vw;
  font-weight: 500;
}

.ContentTile a{
  text-decoration: none;
}

/* ４８１以上１０２４以下　タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .sub{
    display: flex;
    justify-content: space-between;
    color: #000000;
  }
  
  .sub .subsize{
    font-size: .5vw;
  }
  
  .sub .price{
    font-size: .7vw;
    font-weight: 500;
  }
  
  .ContentTile a{
    text-decoration: none;
  }

  .footlink{
    display: flex;
    justify-content: center;
    margin:  300px 59px 0;
    margin-left: 10%;
  }
}



.footlink{
  display: flex;
  justify-content: center;
  margin:  240px 59px 0;
  margin-left: 10%;
}

.footlink img{
  width: 20vw;
}

.footlink h6{
  font-size: 1.5vw;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  text-align: left;
}

.shipping{
  background-color: #D5DAEA;
  text-align: center;
  width: 30vw;
  margin-right: 16px;
  padding: 40px;
}

.contact{
  background-color: #EAE7D5;
  text-align: center;
  width: 30vw;
  margin-left: 16px;
  margin-right: 16px;
  padding: 40px;
}



.leadmore2{
  text-align: left;
  margin: 32px 0 40px;
}
.button1{
  display:inline-block;
  width: 200px;
  text-align: left;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 1vw;
}
.button1::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button1::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button1:hover::before{
  right: 10px;
  width: 60px;
}
.button1:hover::after{
  right: 10px;
}

.button1:hover{
  color: #929292;
  transition: .5s;
}

.button2{
  display:inline-block;
  width: 250px;
  text-align: left;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 1vw;
}
.button2::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button2::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button2:hover::before{
  right: 10px;
  width: 60px;
}
.button2:hover::after{
  right: 10px;
}

.button2:hover{
  color: #929292;
  transition: .5s;
}

footer{
  background-color: #5F5F5F;
}

.footermenu{
  display: flex;
  justify-content: space-around;
  margin:  200px 59px 0;
  margin-left: 10%;
  color: #ffffff;
  
}

.footleft{
  display: flex;
  justify-content: baseline;
  padding-top: 104px;
}

.footleft ul{
  list-style: none;
  margin-right: 48px;
}
.footleft ul a{
  text-decoration: none;
  color: #ffffff;
}

.footleft ul a:hover{
  color: #8d8d8d;
}

.footleft ul li{
  line-height: 1.4em;
}

.footleft .title{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2vw;
  margin-bottom: 16px;
}

.product li a{
  line-height: 1.5em;
}


.infomation li a{
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.4em;
}



.connect li a{
  font-family: 'Nunito Sans', sans-serif;
  border: solid 1px #ffffff;
  padding: 8px;
  line-height: 4em;
  font-size: 1vw;
}

.connect li a:hover{
  border: solid 1px #ffffff;
  background-color: #ffffff;
  color: #5F5F5F;
  transition: .5s;
}

.line-vertical{
  width: 1px;
  height: 400px;
  background-color: #ffffff;
  margin: 24px 0;
}

.footright{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.add{
  font-size: 1.1vw;
  line-height: 1.4em;
}

.add a{
  color: #ffffff;
  text-decoration: none;
}

.add a:hover{
  color: #8d8d8d;
  text-decoration: none;
  transition: .5s;
}

.footlogo img{
  width: 15vw;
  margin-left: 32px;
}

.footline{
  margin: 0;
  border: solod .5px #ffffff;
}

.footservice{
  display: flex;
  margin: 0 59px;
  margin-left: 10%;
  padding: 24px 0 64px;
}

.footservice li {
  list-style: none;
  margin-right: 24px;
  font-size: .8vw;
  color: #ffffff;
}

.footservice li a{
  text-decoration: none;
  color: #ffffff;
}

.footservice li a:hover{
  text-decoration:underline;
  transition: .5s;
}

/* ４８１以上１０２４以下　タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .connect li a{
    font-family: 'Nunito Sans', sans-serif;
    border: solid 1px #ffffff;
    padding: 8px;
    line-height: 5em;
    font-size: 1vw;
  }

  .add{
    font-size: 1.1vw;
    line-height: 1.4em;
    margin-left: 16px;
  }

  .line-vertical{
    width: 1px;
    height: 300px;
    background-color: rgb(255, 255, 255);
    margin: 24px 0;
  }
  
}


/* アニメーション設定 */
.scr-target {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
.scr-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: .5s;
}





/* ０から４８０　スマートフォン)*/
@media (min-width: 0px) and (max-width: 480px) {
.sp { display: block !important; }
.pc { display: none !important; }
    

/*========= ナビゲーションのためのCSS ===============*/


#g-nav{
  position:fixed;
  z-index: 999;
  top:0;
  left: 100%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:rgb(255, 255, 255);
  transition: all 0.6s;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .5);
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 999; 
  width:100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  margin:0;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
  color: rgb(15, 15, 15);
  text-decoration: none;
  padding:6px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: 'Nunito Sans', sans-serif;
}

#g-nav li a:hover{
  color: rgb(139, 139, 139);
}

.info2{
  display: flex;
  margin: 16px 0;
  justify-content: center;
}

.info2 li img{
  width: 30px;
  margin: 0 4px;
}

.connect2 li a{
  font-size: 11px;
  border: solid 1px #000000;
  margin: 8px 0;
  padding: 0;
  color: #000000;
}

.connect2 li a:hover{
  color: #ffffff;
  background-color: #000000;
  transition: .5s;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:16px;
  left: 8px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background-color: rgb(0, 0, 0);
  width: 45%;
}

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

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

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.logoname{
  display: none;
}





/*　上に上がる動き　*/

#header.UpMove{
animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
from {
  opacity: 1;
transform: translateY(0);
}
to {
  opacity: 0;
transform: translateY(-100px);
}
}

/*　下に下がる動き　*/

#header.DownMove{
animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
from {
  opacity: 0;
transform: translateY(-100px);
}
to {
  opacity: 1;
transform: translateY(0);
}
}


.headermenu {
  /* headerを画面上部に固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  z-index: 10;
  background: rgb(255, 255, 255);
  padding: 32px 16px;
  transition: 0.5s;
}

/* ナビゲーションのリンクを横並びにする */
.headermenu ul {
  display: flex;
  align-items: center;
  margin-left: 7%;
}

.headermenu ul li {
  list-style: none;
}

/* ナビゲーションのリンクのスタイル調整 */
.headermenu ul a {
  display: inline-block;
  margin-left: 12px;
  color: rgb(0, 0, 0);
  font-size: 1.4vw;
  text-decoration: none;
  /* アニメーションの変化時間 */
  transition: 0.5s;
  font-weight: 300;
  font-family: 'Nunito Sans', sans-serif;
}

.headermenu ul a:hover{
  color: #c5c5c5;
  transition: .5s;
}

.headermenu ul a img{
  margin-left: 0;
}

.topmenu li {
  margin-right: 8px;
}

.headerlogo{
  position: fixed;
  left: 50%;
  transform: translate(-50%);
}
.headerlogo img{
  width:100px;
}

.info li img{
  width: 20px;
  margin-left: 4px;
}

.p-global-header__cart-count{
  font-size: 9px;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.headermenu.scroll-nav {
  /* 余白を狭くする */
  padding: 10px 16px;
  /* 背景を白にする */
  background: none;
}



.topbannar img{
  width: 100%;
  overflow: hidden;
}


.about{
  display: block;
  align-items: center;
  margin:  80px 0;
  text-align: center;
}

.aboutcom{
  text-align: center;
}

.aboutcom h1{
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
}

.aboutcom h2{
  font-size: 13px;
  margin: 16px 0;
}

.aboutcom p{
  font-size: 12px;
  margin-bottom: 16px;
}

.aboutimg img{
  width: 90%;
  margin-top: 24px;
  text-align: center;
}

.leadmore{
  text-align: center;
  margin-right: 50px;
}
.button3{
  display:inline-block;
  width: 220px;
  text-align:center;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size:12px;
}
.button3::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button3::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button3:hover::before{
  right: 10px;
  width: 60px;
}
.button3:hover::after{
  right: 10px;
}

hr{
  margin: 80px 0;
  width: 100%;
  height: 1px;
  background-color: rgb(0, 0, 0);
}







.footlink{
  display: block;
  text-align: center;
  margin: 104px 0;
  padding: 0 32px;
}

.footlink img{
  width: 200px;
}

.footlink h6{
  font-size: 23px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  text-align: left;
}

.shipping{
  background-color: #D5DAEA;
  width: 100%;
  margin: 0 0 32px;
  padding: 40px;
}

.contact{
  background-color: #EAE7D5;
  width: 100%;
  margin: 0;
  margin-right: 16px;
  padding: 40px;
}



.leadmore2{
  text-align: left;
  margin: 24px 0 32px;
}
.button1{
  display:inline-block;
  width: 180px;
  text-align: left;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 12px;
}
.button1::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button1::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button1:hover::before{
  right: 10px;
  width: 60px;
}
.button1:hover::after{
  right: 10px;
}

.button1:hover{
  color: #929292;
  transition: .5s;
}

.button2{
  display:inline-block;
  width: 240px;
  text-align: left;
  color:#000000;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 12px;
}
.button2::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000000;
  transition: .3s;
}
.button2::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-135deg);
  transition: .3s;
}
.button2:hover::before{
  right: 10px;
  width: 60px;
}
.button2:hover::after{
  right: 10px;
}

.button2:hover{
  color: #929292;
  transition: .5s;
}

footer{
  background-color: #5F5F5F;
}

.footermenu{
  display: block;
  justify-content: space-around;
  margin:  104px 32px 0;
  color: #ffffff;
  
}

.footleft{
  display: block;
  padding-top: 40px;
}

.footleft ul{
  list-style: none;
  margin-right: 0;
}
.footleft ul a{
  text-decoration: none;
  color: #ffffff;
  font-size: 11px;
}

.footleft ul a:hover{
  color: #8d8d8d;
}

.footleft ul li{
  line-height: 1em;
}

.footleft .title{
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.infomation li a{
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
}

.connect li a{
  font-family: 'Nunito Sans', sans-serif;
  border: solid 1px #ffffff;
  padding: 8px;
  line-height: 4em;
  font-size: 10px;
}

.connect li a:hover{
  border: solid 1px #ffffff;
  background-color: #ffffff;
  color: #5F5F5F;
  transition: .5s;
}

.line-vertical{
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255);
  margin: 24px 0;
}

.footright{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.add{
  font-size: 11px;
  line-height: 1.4em;
  color: #ffffff;
}

.add a{
  font-size: 11px;
  line-height: 1.4em;
  color: #ffffff;
  text-decoration: none;
}

.footlogo img{
  width: 120px;
}

.footline{
  margin-top: 40px;
}

.footservice{
  display: block;
  margin: 0;
  margin-left: 32px;
  padding: 24px 0 64px;
}

.footservice li {
  list-style: none;
  margin-right: 24px;
  font-size: 10px;
  color: #ffffff;
}

.footservice li a{
  text-decoration: none;
  color: #ffffff;
  line-height: 2em;
}

.footservice li a:hover{
  text-decoration:underline;
  transition: .5s;
}




/* タブの外枠 */
.tabs {
  margin: 0 16px;
}

/* タブのスタイル */
.tabs .tab-label {
  display: block;
}

.tab-label{
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: solid .5px #000000;
  display: flex;
}

.sptype{
  font-size: 11px;
  margin-left: 16px;
  margin-bottom: 16px;
}

.spsize{
  font-size: 11px;
  margin-left: 16px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.sizelist{
  text-align: center;
}

.sizelist li{
  list-style: none;
  line-height: 3em;
}

.sizelist li a{
  text-decoration: none;
  color: #000000;
  border: solid 1px #000000;
  padding: 8px;
  margin-right: 8px;
}

.sizelist li a:hover{
  background-color: #000000;
  color: #ffffff;
}

.col {
  display: flex;
  align-items: center;
}

.col h2{
  font-size: 15px;
  margin-left: 8px;
  font-weight: 400;
}


/* タブにマウスカーソルがのったときフッター */
.tabs .tab-label:hover {
  opacity: 0.7;
}

/* ラジオボタンと内容を非表示 */
.tabs input[name="tab-radio"],
.tabs .tab-content {
  display: none;
}

/* タブ内容のスタイル */
.tabs .tab-content{
  padding: 10px;
  min-height: 200px;
}

/* 選択されているタブのコンテンツのみを表示 */
.tabs #tab-1:checked ~ .tab-1-content,
.tabs #tab-2:checked ~ .tab-2-content,
.tabs #tab-3:checked ~ .tab-3-content{
  display: block;
}

/* 選択されているタブのスタイルを変える */
.tabs input[name="tab-radio"]:checked + .tab-label {
  background-color: #fff;
}

.splist{
  width: 100%;
  text-align: center;
}

.listflex{
  display: flex;
  margin: 0;
}

.framecom{
  margin-left: 0;
  width: 100%;
  text-align: center;
}

.framecom h2{
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 8px;
}


.framecom p{
  font-size: 13px;
  margin: 16px 0 24px;
  text-align: left;
}

.ContentTile {
  width: 100%;
  margin: 40px 0 16px;
  text-align: center;
  align-items: center;
  border: solid 1px #ffffff;
  padding: 0 4px;
}

.ContentTile:hover{
  border: solid 1px #4e4e4e;
  transition: .5s;
}


.ContentTileImage {
  text-align: center;
  width: 100%;
}

.ContentTileImage img {
  width: 100%;
  padding: 0;
  text-align: center;
  padding-bottom: 0;
}

.producttitle{
  text-align: left;
  font-size: 15px;
  color: #000000;
  padding-left: 0;
}


.sub{
  display: block;
  text-align: left;
  color: #000000;
  padding-left: 0;
}

.sub .subsize{
  font-size: 13px;
}

.sub .price{
  font-size: 13px;
  font-weight: 500;
}

.ContentTile a{
  text-decoration: none;
}





}













