* {
	margin: 0px;
	padding: 0px;
}
body {
	text-align: center;
}
a {
	color: #007CB6;
  opacity: 1;
  transition-duration: 0.3s;
}
a:hover {
	text-decoration: none;
  opacity: 0.6;
  transition-duration: 0.3s;
}

#bg {
}

#wrapper {
	font-size: 12px;
	text-align: left;
}
#header_bg {
}
#header {
	 margin: 0px auto;
    width: 100%;
}
#container {
	  margin: 0px auto;
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#side {
	width: 20%;
	margin-right: 2%;
}
#contents {
	    width: 78%;
    margin: 0px 0px 20px;
}
#inn-box {
	padding-bottom: 20px;
}

#footer {
	    margin: 0px auto;
    width: 100%;
    max-width: 1080px;
    padding: 0px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer_bg {

}
.header_promotion_wrap {
      background: #FDF105;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_promotion_wrap p {
      font-size: 13px;
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.header_promotion_icon {
  width: 35px;
}
.header_promotion_red {
  font-size: 16px;
  color: #CC0909;
  font-weight: 600;
}
#header ul {
	padding: 0px;
	list-style-type:none;
	list-style-image:none;
}

#header p.logo {
	font-size: 14px;
	line-height: 2em;
	font-weight: bold;
	margin: 15px 0px 0px;
	float: left;
}
#header p.logo a {
	text-decoration: none;
}
#header p.logo a:hover {
	text-decoration: underline;
}
#header p.logo a img {
	border-style: none;
}
#header .logo img {
  width: 100%;
  max-width: 300px;
}
#header .header_inner_wrap {
  background: #F5F5F5;
  padding: 10px 0;
}
#header .header_inner {
      display: flex;
    align-items: center;
    justify-content: space-between;
   margin: 0px auto;
    width: 100%;
    max-width: 1080px;
}
#header .header_inner_left {
    width: 30%;
}
#header h1 {
	text-align: center;
}
#header h1 span {
	font-size: 12px;
	line-height: 20px;
	font-weight: normal;
}

#header .header_inner_center {
     width: 30%;
}
#header .header_tel_icon {
  width: 35px;
  height: 35px;
}
.header_tel {
        display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #0255A1;
    font-family: "Oswald", sans-serif;
}
#header .header_fax_icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.header_fax {
       display: flex;
    align-items: center;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #0255A1;
    margin-left: 12px;
    font-family: "Oswald", sans-serif;
}


#header .header_inner_right {
     width: 36%;
}
.header_inner_right_menu {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.header_inner_right_menu li a{
       display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
    padding: 3px 10px;
    border-radius: 4px;
}
.header_inner_right_menu li a img {
  margin-right: 5px;
}
.header_inner_right_menu li .header_cart{
    background: #CC0909;
  margin-right: 0px;
  color: #fff;
}


#header p.cart {
	line-height: 0;
	height: 37px;
	width: 150px;
	text-indent: -9999px;
	clear: right;
	float: right;
	margin: 0px 0px 8px 10px;
}
#header p.cart a {
	display: block;
	height: 32px;
	line-height: normal;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_header_cart.gif) left;
	margin: 5px 7px 0px 0px;
}
#header p.cart a:hover {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_header_cart.gif) right;
}


#header .header_payment {
  width: 100%;
}
#header .header_account_icon {
  width: 30px;
}
#header .header_cart_icon {
  width: 30px;
}
/*グローバルナビ*/
#header nav{
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    margin-bottom: 15px;
}

/*ナビゲーションを横並びに*/
#header nav ul{
    /*2階層目の基点にするためrelativeを指定*/
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
}

/*2階層目以降は横並びにしない*/
#header nav ul ul{
  display: block;
}

/*ナビゲーションのリンク設定*/
#header nav ul li a{
    /*矢印の基点にするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
 color: #333;
  padding: 18px 40px;
  transition:all .3s;
  font-size: 15px;
  font-weight: 600;
}

#header nav ul li li a{
  padding:20px;
}

#header nav ul li a:hover{
  color:#0255A1; 
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/

#header nav ul li.has-child > a::before{
  content:'';
  position: absolute;
  right: 20px;
  top:22px;
  width:6px;
  height:6px;
  border-top: 2px solid #333;
    border-right:2px solid #333;
    transform: rotate(135deg);
}

/*==2階層目以降の画像設定*/

#header nav ul li.has-child img{
  max-width: 100%;
  height: auto;
  transition: all .5s;
  vertical-align: bottom;
}

/*hoverしたら画像拡大*/
#header nav ul li.has-child img:hover{
  transform: scale(1.2);
}

#header nav ul li.has-child dt{
  overflow: hidden;
  height: 20vh;
  margin:0 0 20px 0;
}

@media screen and (max-width:1200px){
#header nav ul li.has-child dt{
  height: 12vh;
}
  
}

/*== 2層目の設定 */

#header nav li.has-child ul{
  /*絶対配置で位置を指定*/
    position: absolute;
  left:5%;
  top:58px;
  z-index: 4;
  /*子要素を横並びに*/    
 justify-content: flex-start;
  flex-wrap: wrap;
    /*形状を指定*/
  background:#f5f5f5;
  width:90%;
    /*はじめは非表示*/
  display: none;
  visibility: hidden;
  opacity: 0;
     /*アニメーション設定*/
  transition: all .3s;
}

/*hoverしたら表示
#header nav li.has-child:hover > ul{
  visibility: visible;
  opacity: 1;
  display: flex;
}*/

/*クリックしたら表示*/
#header nav li.has-child.active > ul{
  visibility: visible;
  opacity: 1;
  display: flex;
}

/*各ナビゲーション横幅*/
#header nav li.has-child ul li{
  width:20%;
}

/*ナビゲーションaタグの形状*/
#header nav li.has-child ul li a{
      color: #333;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#header nav li.has-child ul li a img{
      width: 50px;
    margin-right: 5px;
    /* margin: 0 auto 10px; */
}

#header nav li.has-child ul li a:hover,
#header nav li.has-child ul li a:active{
}

/*==768px以下の形状*/
@media screen and (max-width:768px){
  
  #header nav ul{
    display: block;
  }

  #header nav li.has-child ul{
    position: relative;
  left:0;
  top:0;
  width:100%;
  visibility:visible;/*JSで制御するため一旦表示*/
  opacity:1;/*JSで制御するため一旦表示*/
  display: none;/*JSのslidetoggleで表示させるため非表示に*/
  transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
    #header nav li.has-child:hover > ul {
      display: none;
    }
  #header nav li.has-child ul li{
    width:100%;
    text-align: left;
  }
  
  #header nav li.has-child ul li dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header nav li.has-child ul li dt{
    width:30%;
    height: auto;
    margin: 0;
  }

  #header nav li.has-child ul li dd{
    width:64%;      
  }

    
    #header nav ul li a{
      padding: 10px 20px;
      border-bottom:1px solid #ccc;
}
    
   #header  nav ul li li a{
    padding: 0;
}
  
/*矢印の位置と向き*/
  
#header nav ul li.has-child > a::before{
  top:17px;
  left:20px;
    transform: rotate(135deg);
}
    
#header nav ul li.has-child.active > a::before{
    transform: rotate(-45deg);
}
}
/*#header ul.global-navi {
	width:  100%;
	padding-top: 11px;
	float: left;

}
#header ul.global-navi li {
	float: left;
	height: 42px;
	line-height: 0;
	margin: 0px 0px 0px 0px;
	width: 150px;
	text-indent: -9999px;
}

#header ul.global-navi li a {
	display: block;
	height: 100%;
	line-height: normal;
	background: url(https://img06.shop-pro.jp/PA01309/122/etc/header_globalnavi.png?cmsp_timestamp=20230131041326);
}
#header ul.global-navi li a:hover {
	display: block;
	height: 100%;
	line-height: normal;
	background: url(https://img06.shop-pro.jp/PA01309/122/etc/header_globalnavi.png?cmsp_timestamp=20230131041326);
}
#header ul.global-navi li.home a {
	background-position: 0px top;
}
#header ul.global-navi li.sk-payment a {
	background-position: -150px top;
}
#header ul.global-navi li.blog a {
	background-position: -300px top;
}
#header ul.global-navi li.inq a {
	background-position: -450px top;
}
#header ul.global-navi li.supplier a {
	background-position: -600px top;
}
#header ul.global-navi li.home a:hover {
	background-position: 0px bottom;
}
#header ul.global-navi li.sk-payment a:hover {
	background-position: -150px bottom;
}
#header ul.global-navi li.blog a:hover {
	background-position: -300px bottom;
}
#header ul.global-navi li.inq a:hover {
	background-position: -450px bottom;
}
#header ul.global-navi li.supplier a:hover {
	background-position: -600px bottom;
}
#header div.member {
	margin: 0px;
	float: right;
	width: 360px;
	height: 62px;
padding-top: 0px;
}
#header div.member ul {
	padding: 0px;
	margin: 0px;
	float: left;
	width: 200px;

}
#header div.member ul li {
	line-height: 42px;
	height: 42px;
	margin: 0px 0px 8px 10px;
	float: right;
	font-size: 10px;
}
#header div.member ul li a {
	color: #000;
	text-decoration: none;

}
#header div.member ul li.login {

}
#header div.member ul li.regist {

}
#header div.member ul li.mypage {

}
#header div.member ul li.logout {

}
#header div.member p.member {
	line-height: 10px;
	clear: both;
	text-align: right;
	margin-right: 10px;
	font-size: 10px;
}
#header div.navi-box {
	clear: both;
	height: 62px;
	margin: 0px 1px;
}*/
/**
 * GLOBAL NAVIGATION
 */
#gMenu{
	width: 960px;
	height: 162px;
	background-repeat: no-repeat;
	padding-left: 5px;

}
#gMenu_box {
	height: 162px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

#gMenu ul{
	width: 960px;
	height: 162px;
	display: inline;
}
#gMenu li{
	display: inline;
	float: left;
}
#gMenu li a{
	height: 54px;
	text-indent: -5000px;
	display: block;
}


#gMenu li a span{
	display: block;
	visibility: hidden;
	line-height: normal;
}


/* A */
.gMenu01 a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_01.jpg?cmsp_timestamp=20150716173610);
	background-repeat: no-repeat;
	height: 54px;
}
.gMenu02 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_02.jpg?cmsp_timestamp=20150716173625);
	background-repeat: no-repeat;
}
.gMenu03 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_03.jpg?cmsp_timestamp=20150716173637);
	background-repeat: no-repeat;
}
.gMenu04 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_04.jpg?cmsp_timestamp=20150716173653);
	background-repeat: no-repeat;
}
.gMenu05 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_05.jpg?cmsp_timestamp=20150716173708);
	background-repeat: no-repeat;
}
.gMenu06 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_06.jpg?cmsp_timestamp=20150716173727);
	background-repeat: no-repeat;
}


.gMenu07 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_07.jpg?cmsp_timestamp=20150716173907);
	background-repeat: no-repeat;
}

.gMenu08 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_08.jpg?cmsp_timestamp=20150716173919);
	background-repeat: no-repeat;
}

.gMenu09 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img06.shop-pro.jp/PA01309/122/etc/navi_09.jpg?cmsp_timestamp=20230131041104);
	background-repeat: no-repeat;
}

.gMenu10 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_10.jpg?cmsp_timestamp=20150716173946);
	background-repeat: no-repeat;
}

.gMenu11 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_11.jpg?cmsp_timestamp=20150716173959);
	background-repeat: no-repeat;
}

.gMenu12 a{
	width: 240px;
	height: 54px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_12.jpg?cmsp_timestamp=20150716174012);
	background-repeat: no-repeat;
}


/* A:OVER */
.gMenu01 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_01.jpg?cmsp_timestamp=20150716174038);
	background-repeat: no-repeat;
}
.gMenu02 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_02.jpg?cmsp_timestamp=20150716174048);
	background-repeat: no-repeat;
}
.gMenu03 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_03.jpg?cmsp_timestamp=20150716174100);
	background-repeat: no-repeat;
}
.gMenu04 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_04.jpg?cmsp_timestamp=20150716174111);
	background-repeat: no-repeat;
}
.gMenu05 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_05.jpg?cmsp_timestamp=20150716174127);
	background-repeat: no-repeat;
}
.gMenu06 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_06.jpg?cmsp_timestamp=20150716174139);
	background-repeat: no-repeat;
}

.gMenu07 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_07.jpg?cmsp_timestamp=20150716174258);
	background-repeat: no-repeat;
}

.gMenu08 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_08.jpg?cmsp_timestamp=20150716174309);
	background-repeat: no-repeat;
}

.gMenu09 a:hover{
	width: 240px;
	background-image: url(https://img06.shop-pro.jp/PA01309/122/etc/navi_on_09.jpg?cmsp_timestamp=20230131045334);
	background-repeat: no-repeat;
}

.gMenu10 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_10.jpg?cmsp_timestamp=20150716174336);
	background-repeat: no-repeat;
}

.gMenu11 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_11.jpg?cmsp_timestamp=20150716174348);
	background-repeat: no-repeat;
}

.gMenu12 a:hover{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_12.jpg?cmsp_timestamp=20150716174408);
	background-repeat: no-repeat;
}




/* A.ON */
.gMenu01On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_01.jpg?cmsp_timestamp=20150716174446);
	background-repeat: no-repeat;
}
.gMenu02On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_02.jpg?cmsp_timestamp=20150716174457);
	background-repeat: no-repeat;
}

.gMenu03On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_03.jpg?cmsp_timestamp=20150716174747);
	background-repeat: no-repeat;
}
.gMenu04On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_04.jpg?cmsp_timestamp=20150716174758);
	background-repeat: no-repeat;
}
.gMenu05On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_05.jpg?cmsp_timestamp=20150716174809);
	background-repeat: no-repeat;
}
.gMenu06On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_06.jpg?cmsp_timestamp=20150716174819);
	background-repeat: no-repeat;
}


.gMenu07On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_07.jpg?cmsp_timestamp=20150716175016);
	background-repeat: no-repeat;
}

.gMenu08On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_08.jpg?cmsp_timestamp=20150716175026);
	background-repeat: no-repeat;
}

.gMenu09On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_09.jpg?cmsp_timestamp=20150716175040);
	background-repeat: no-repeat;
}

.gMenu10On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_10.jpg?cmsp_timestamp=20150716175055);
	background-repeat: no-repeat;
}

.gMenu11On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_11.jpg?cmsp_timestamp=20150716175108);
	background-repeat: no-repeat;
}

.gMenu12On a{
	width: 240px;
	background-image: url(https://img05.shop-pro.jp/PA01309/122/etc/navi_on_12.jpg?cmsp_timestamp=20150716175123);
	background-repeat: no-repeat;
}

.header_search_wrap {
      display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    /* padding: 0 15px; */
    margin: 15px auto 25px;
}
#header form {
}
#header form select {
	    width: 180px;
    margin: 0px 7px 0px 0px;
    padding: 12px 7px;
    background: #F5F5F5;
    border-radius: 3px;
  height: 42px;
}
#header form input {
   width: 350px;
   margin-right: 7px;
   vertical-align: top;
  padding: 12px 7px;
    background: #F5F5F5;
  border-radius: 3px;
border: solid 1px #5f5f5f;
}
#header form button {
	border-style: none;
	padding: 0px;
	width: 90px;
	border-width: 0px;
	cursor: pointer;
	height: 40px;
background: #0255A1; 
	vertical-align: top;
  border-radius: 3px;
}
#header form button span {
  font-weight:bold;
  color:#fff;
}



#side h3 {
	    font-size: 18px;
    text-align: left;
    color: #0255A1;
    border-bottom: solid 3px #F5E300;
    padding-bottom: 5px;
    margin: 40px 0 10px;
	
}
#side div.category h3 {
  margin-top: 0;
}
#side div {
	clear: both;
	margin: 0px 0px 0px;
}
#side div ul {
    margin: 0px;
	padding: 0px;
	list-style-type:none;
	list-style-image:none;
  text-align: left;
}
#side div.category {
  
}

#side div ul {
  　font-size: 18px;
  　margin: 2px 8px;
}

#side div ul li {
	    line-height: 0;
    margin-bottom: 15px;
}
#side div ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
  line-height: 1.6;
  font-size: 16px;
}
#side div ul li a:hover {
	background-color: #F2EEE9;
}
#side div ul li a img {
    width: 35px;
    margin-right: 5px;
}
#side div.group {
}

#side div.freepage {
}
#side .side_banner {
  list-style: none;
}
#side .side_banner li {
  margin-bottom: 10px;
}
#side .side_banner li img {
  width: 100%;
}

#side div.cart {

}

#side div.cart h3 {
	height: 32px;
	font-size: 10px;
	line-height: 10px;
	text-indent: -9999px;
	margin-bottom: 5px;
}
#side div.cart h3 a {
	display: block;
	height: 100%;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_cart_h3.gif);
}
#side div.cart ul {
	background: #F5F5F5;
	padding: 8px;
}

#side div.cart ul li {
	line-height: 1.2em;
	padding: 4px 0px;
	border-bottom: 1px dotted #D4E2EA;
}
#side div.cart ul li a {
	text-decoration: none;
}
#side div.cart ul li a:hover {
	text-decoration: underline;
}
#side div.cart ul li span {
	font-size: 10px;
}
#side div.cart p {
	line-height: 70px;
	text-align: center;
	background: #F5F5F5;
}

/*送料無料表示*/
#side div.cart p.incart_name {
	line-height:1.4;
	text-align:left;
	padding:5px;
}
#side div.cart p.stotal {
	line-height:1.4;
	text-align:right;
	padding:5px;
}
#side div.cart p.total {
	line-height:1.4;
	text-align:right;
	padding:5px;
	border-top:1px dotted #666;
	border-bottom:1px solid #666;
}
#side div.cart ul.postage li {
	color:red;
}
#side div.subtotal {
	margin-bottom:0;
}
/*送料無料表示ここまで*/

#side div.mailmaga {
	text-align: center;
}

#side div.mailmaga h3 {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_mailmaga_h3.gif);
	height: 27px;
	font-size: 10px;
	line-height: 10px;
	text-indent: -9999px;
}
#side div.mailmaga p {
	font-size: 10px;
	line-height: 3em;
}
#side div.manager {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_manager_bg.gif);
}
#side div.manager h3 {
	font-size: 10px;
	line-height: 10px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_manager_h3.gif);
	text-indent: -9999px;
	height: 36px;
}
#side div.manager h4 {
	line-height: 1.3em;
	font-weight: bold;
	text-align: center;
	margin: 6px 0px 8px;
	color: #333;
}
#side div.manager div {
	margin: 0px;
	padding: 0px 10px 35px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_manager_btm.gif) no-repeat bottom;
}
#side div.manager img.photo {
    display: block;
    margin: 0px auto 4px;
    max-width: 100%;
    height: auto;
}
#side div.manager p.memo {
	font-size: 10px;
	line-height: 1.4em;
	margin: 0px;
}
#side div.manager p.blog {
	height: 0px;
	margin: 0px auto;
	text-align: center;
	line-height: 30px;
}
#side div.manager p.blog a {
	text-decoration: none;

}
#side div.manager p.blog a:hover {
	text-decoration: underline;
}

#side div.qrcode {

}
#side div.qrcode h3 {
	display: none;
}
#side div.qrcode img {
	display: block;
	margin: 0px auto;
}
#side div.seller h3 {
	font-size: 10px;
	line-height: 10px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_seller_h3.gif);
	text-indent: -9999px;
	height: 27px;
}
#side div.seller ul {
	padding: 8px 4px;
}
#side div.seller ul li {
	line-height: 0;
}
#side div.seller ul li a {
	text-decoration: none;
	line-height: 1.4em;
}
#side div.seller ul li a:hover {
	text-decoration: underline;
}
#side div.seller ul li span {
	font: 10px Verdana, Geneva, sans-serif;
	display: block;
	line-height: 1.2em;
}
#side div.seller ul li span.num {
	font-weight: bold;
	color: #FFF;
	background: #999;
	text-align: center;
	width: 50px;
	line-height: 1.4em;
}
#side div.seller ul li span.price {
	color: #666;
}
#side div.seller ul li span.soldout {
	font-weight: bold;
}
#side div.seller ul li.type1 {
	margin: 0px auto 15px;
	width: 180px;
	text-align: center;
}
#side div.seller ul li.type1 img {
	display: block;
	margin: 0px auto 3px;
	border-style: none;
	max-width: 100%;
	height: auto;
}
#side div.seller ul li.type1 span.num {
	width: 180px;
	margin: 0px auto 5px;
}
#side div.seller ul li.type1 span.none {
	height: 118px;
	width: 118px;
	font-family: 'メイリオ';
	line-height: 118px;
	background: #FFF;
	border: 1px solid #CCC;
	color: #CCC;
	cursor: pointer;
	margin: 0px auto 3px;
}
#side div.seller ul li.type2 {
	text-align: center;
	float: left;
	width: 92px;
	font-size: 10px;
	margin: 0px 0px 2px;
}
#side div.seller ul li.type2 img {
	display: block;
	margin: 0px auto 3px;
	border-style: none;
	width: 80px;
}
#side div.seller ul li.type2 span.num {
	width: 84px;
	margin: 0px auto 5px;
}
#side div.seller ul li.type2 span.none {
	height: 78px;
	width: 78px;
	font-family: 'メイリオ';
	line-height: 78px;
	background: #FFF;
	border: 1px solid #CCC;
	color: #CCC;
	cursor: pointer;
	margin: 0px auto 3px;
}
#side div.seller ul li.type3 {
	padding: 2px 0px;
	border-top: 1px dotted #D4E2EA;
	clear: both;
	margin: 0px 8px;
}
#side div.seller ul li.type3 span.num {
	margin: 0px 5px 2px 0px;
	float: left;
}
#side div.seller ul li.type3 span.price {
	text-align: right;
	clear: both;
}
#side div.seller ul li.type3 span.soldout {
	text-align: right;
	clear: both;
}


#side div.feed h3 {
	display: none;
}
#side div.feed ul {
	text-align: center;
	height: 39px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_feed.gif);
	position: relative;
}
#side div.feed ul li {
	margin: 0px;
	font-size: 10px;
	line-height: 10px;
	text-indent: -9999px;
	position: absolute;
	height: 18px;
	top: 15px;
}
#side div.feed ul li a {
	display: block;
	height: 100%;
}
#side div.feed ul li.rss {
	width: 30px;
	left: 56px;
}
#side div.feed ul li.atom {
	width: 48px;
	left: 95px;
}
#side div.recent-trackback {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_tb_bg.gif);
}


#side div.recent-trackback h3 {
	font-size: 10px;
	line-height: 10px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_tb_h3.gif);
	text-indent: -9999px;
	height: 61px;
}
#side div.recent-trackback dl {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_side_tb_btm.gif) no-repeat bottom;
	padding: 0px 16px 20px;
}
#side div.recent-trackback dl dt {
	line-height: 1.4em;
}

#side div.recent-trackback dl dd {
	line-height: 1.2em;
	margin-bottom: 6px;
}
#side div.recent-trackback dl dd a {
	text-decoration: none;
}
#side div.recent-trackback dl dd a:hover {
	text-decoration: underline;
}

#side div.recent-trackback dl dd span.date {
	display: block;
	font: 10px Verdana, Geneva, sans-serif;
}


#contents p.none {
	font-size: 14px;
	line-height: 200px;
	letter-spacing: 0.1em;
	text-align: center;
}
#contents p.sort {
	text-align: right;
}
#contents p.sort a {
    background: #C4C4C4;
    color: #000;
    padding: 7px 10px;
    border-radius: 50px;
    text-decoration: none;
}
#contents p.sort span {
    background: #333;
    color: #fff;
    padding: 7px 10px;
    border-radius: 50px;
}

#contents ul.topicpass {
	margin:0 5px 5px 7px;
  text-align: left;
}
#contents ul.topicpass li {
	display: inline;
	margin: 0;
	line-height: 1.5em;
	padding: 0px;
	background-image: none;
}
#contents ul.topicpass li a {
	    margin: 0;
    font-size: 14px;
    text-decoration: none;
}
#contents ul.product {
	    margin: 20px 0 25px;
    list-style-type: none;
    list-style-image: none;
    clear: both;
}
#contents ul.product li {
    border-bottom: solid 1px #ccc;
    padding-bottom: 20px;
    width: 100%;
}
#contents ul.product li table {
    width: 100%;
}
#contents div.recommend ul.product li {
  	margin: 0px 22px 20px 0px;
	float: left;
	width: 150px;
	text-align: center;
	line-height: 0;
	padding: 0px;
	background: url(none);
  border:none;
}
#contents ul.product li a {
	text-decoration: none;
	line-height: 1.2em;
}
#contents ul.product li a:hover {
	text-decoration: underline;
}
#contents ul.product li a img{
    display: block;
    margin: 0px auto 3px;
    border-style: none;
    max-width: 100%;
    height: auto;
}
#contents ul.product li span {
	display: block;
	text-align: center;
	margin: 0px auto 3px;
	font-size: 10px;
	line-height: 1.2em;
}
#contents ul.product li span.none {
	height: 118px;
	width: 118px;
	font-family: 'メイリオ';
	line-height: 118px;
	background: #FFF;
	border: 1px solid #CCC;
	color: #CCC;
	cursor: pointer;
}
#contents ul.product li span.exp {
	    line-height: 1.3em;
    margin: 10px 0;
    text-align: left;
}
#contents ul.product li span.regular {
	font-family: 'メイリオ';
	text-decoration: line-through;
	color: #818181;
}
#contents ul.product li span.price {
	font-family: 'メイリオ';
	color: #333;
	font-weight: bold;
}
#contents ul.product li span.soldout {
	font-family: 'メイリオ';
	line-height: 1.4em;
	font-weight: bold;
  	font-size: medium;
	color: #111111;
	background: #FFF;
}
#contents ul.product li span.detail_link {
	    font-family: 'メイリオ';
    line-height: 1.4em;
    font-weight: bold;
    color: #FFF;
    background: #CC0909;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
}
#contents ul.product li span.detail_link  a{
    color: #fff;
    width: 100%;
    display: block;
    padding: 15px;
    box-sizing: border-box;
  position: relative;
}
#contents ul.product li span.detail_link  a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 19px;
    right: 21px;
    transform: rotate(45deg);
}
#contents ul.product li a.product_list_link {
  display:block;
  width:180px;
  background: #fff;
}
#contents ul.product li p.product_list_text {
      display: block;
    width: 100%;
    font-size: 20px;
    margin: 0px;
    text-align: left;
    padding: 0 10px 0 20px;
    box-sizing: border-box;
}
#contents ul.product li p.product_list_text a {
  color: #333;
  text-align: left;
}
#contents ul.product li p.product_list_detail {
  display:block;
  width:220px;
  font-size:18px;
  margin:0px;
}
#contents ul.product li p.product_list_detail span.price{
  font-size:22px;
}
#contents ul.page {
	text-align: center;
	margin: 0px auto 30px;
	clear: both;
	width: 700px;
}
#contents ul.page li {	list-style-type:none;
	list-style-image:none;
	margin: 0px;
	padding: 0px;
	background: url(none);
	font: 10px Verdana, Geneva, sans-serif;
	display: inline;
}
#contents ul.page li a, #contents ul.page li span {
	display: inline-block;
	padding: 5px 7px;
	text-decoration: none;
	margin: 0px 0px 10px;
}
#contents ul.page li a {
	border: 1px solid #000;
	background: #000;
	color: #FFF;
}
#contents ul.page li a:hover {
	border: 1px solid #000;
	background: #FFF;
	color: #000;
}
#contents ul.page li span{
	border: 1px solid #CCC;
	background: #FFF;
	font-weight: bold;
	color: #CCC;
}
#contents dl.posted {
	margin: 0px 40px 20px;
}
#contents dl.posted dt {
	font-size: 10px;
	line-height: 1.6em;
	font-weight: bolder;
}
#contents dl.posted dt span {
	font-family: 'メイリオ';
	margin-left: 8px;
}
#contents dl.posted dd {
	line-height: 1.4em;
	margin-bottom: 8px;
}
#contents dl.posted dd a {
	font-weight: bold;
}
#contents dl.posted dd p {
	font-size: 10px;
	color: #666;
	margin: 0px 0px;
}



#contents div.pickup {
	clear: both;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_pickup_bg.gif);
}
#contents div.pickup h2 {
	font-size: 10px;
	line-height: 10px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_pickup_h2.gif);
	text-indent: -9999px;
	height: 48px;
	padding: 0px;
	margin: 0px;
}
#contents div.pickup h2.none {
	display: none;
}
#contents div.pickup div.box {
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_pickup_btm.gif) no-repeat bottom;
	width: 740px;
	padding-bottom: 20px;
	overflow: hidden;
}

#contents div.pickup div.btm-half ul.product li {
	margin: 0px 10px 20px 0px;
	float: left;
	width: 70px;
	text-align: center;
	line-height: 0;
	padding: 0px;
	background: url(none);
}
#contents div.pickup div.btm-half ul.product li a img{
	display: block;
	margin: 0px auto 3px;
	border-style: none;
	width: 70px;
}
#contents div.pickup div.btm-half ul.product li span.none {
	height: 68px;
	width: 68px;
	line-height: 68px;
}

#item_check {
	width:100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
#item_check h3 {
	    border-bottom: 3px solid #0A4A80;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0 0 8px;
    text-align: left;
	}

#item_check ul.checkitem li {
	width: 10%;
	background-image: none;
	padding: 0;
	margin: 0 10px 20px 0;
	}

#item_check ul.checkitem li img.ci_img {
	width:100%;
	border:none;
	}

#item_check ul.checkitem {
	list-style-image: none;
	list-style-type: none;
  display: flex;
	margin: 0 0px 20px;
	}

#item_check ul.checkitem li span {
	display: block;
	font-size: 10px;
	line-height: 1.2em;
	margin: 0 auto 6px;
	text-align: center;
	}

#item_check ul.checkitem li span.soldout {
	background: none repeat scroll 0 0 #999999;
	color: #FFFFFF;
	font-family: 'メイリオ';
	font-weight: bold;
	line-height: 1.4em;
	}

#item_check ul.checkitem li span.none {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #CCCCCC;
	color: #CCCCCC;
	font-family: 'メイリオ';
	height: 68px;
	line-height: 68px;
	width: 68px;
	}

#item_check ul.checkitem li span.price {
	color: #333333;
	font-family: 'メイリオ';
	font-weight: bold;
	}

#item_check ul.checkitem li a {
	    text-decoration: none;
    line-height: 1.2em;
    color: #333;
    font-size: 14px;
	}

#item_check ul.checkitem li a:hover {
	text-decoration:underline;
	}

.footer_guide_wrap {
  background: #E7EBEF;
}
.footer_guide {
      max-width: 1080px;
    margin: 20px auto;
    padding: 20px 20px 60px;
}
.footer_h3 {
      font-size: 25px;
    margin: 30px 0 20px;
}
.footer_guide_list {
      list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.footer_guide_list li {
       background: #fff;
    padding: 25px 20px;
    border-radius: 7px;
    width: 31%;
    text-align: left;
    box-sizing: border-box;
  text-align: center;
}
.footer_guide_list li p {
      text-align: left;
}
.footer_guide_h4 {
      font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px 3px;
    border-bottom: solid 3px #F5E300;
    display: inline-block;
}
.footer_guide_list_head {
      font-weight: bold;
    margin: 10px 0 10px;
}
.footer_guide_list_btn {
      border: solid 1px #333;
    color: #333;
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
    border-radius: 50px;
    margin: 20px 0 10px;
}
.footer_guide_list_btn::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    position: absolute;
    top: 18px;
  right: 21px;
    transform: rotate(45deg);
}
.footer_payment_icon {
      width: 60%;
    text-align: left;
    display: block;
}
.footer_contact_list {
   list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.footer_contact_list li {
    border-radius: 7px;
    width: 31%;
    box-sizing: border-box;
  text-align: center;
}
.footer_contact_h4 {
        font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer_contact_icon {
      width: 42px;
    margin-right: 5px;
}
.footer_contact_tel {
        font-size: 40px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}
.footer_contact_btn {
  background: #F5E300;
  border: none;
}
#footer .footer_logo img {
  width: 300px;
}
#footer a {
	color: #333;
  text-decoration: none;
}

#footer p.pagetop {
	line-height: 10px;
	height: 29px;
	font-size: 10px;
	text-indent: -9999px;
	width: 123px;
	background: url(https://img.shop-pro.jp/tmpl_img/46/0902_footer_pagetop.gif);
	margin: 0px 0px 20px 847px;
}
#footer p.pagetop a {
	display: block;
	height: 100%;
}
.copyright {
	font-size: 10px;
	line-height: 1.4em;
	text-align: center;
  margin: 20px 0;
}

#footer p.credit {
	font-size: 10px;
	color: #CCC;
	text-align: right;
	margin: 0px 10px;
}
#footer p.credit a {
	color: #CCC;
}
#footer ul.footernavi {
	
}
#footer ul.footernavi li {
	display: inline;
	margin: 6px;
}

.category_link{
      position:absolute
      margin-left: 10px
       margin-top:10px
}

/******************************/
/* landing page */
/******************************/
.LP-free61 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
    color: #fff;
    font-family: sans-serif;
    text-align: left;
    line-height: 1.7;
    background-image: url(https://img06.shop-pro.jp/PA01309/122/etc/pc-back.jpg?cmsp_timestamp=20211103222907);
    background-repeat: repeat;
}

.LP-free61 a {
    text-decoration: none;
}

.LP-header {
    width: 100%;
    padding: 25px 0 10px;
    z-index: 10;
}

.LP-header .header-inner {
    width: calc(100% - 20px);
    max-width: 980px;
    margin: 0 auto;
}

.LP-header .kenki-logo {
    display: block;
    width: 30%;
    max-width: 300px;
    margin: 0 0 0 auto;
}

.LP-header .sale-btn-pos {
    position: fixed;
    right: 11vw;
    top: 110px;
    z-index: 1000;
}

.LP-header .sale-btn-pos .button-wrap {
    position: relative;
}

.LP-sale-btn {
    position: absolute;
    text-decoration: none;
    display: block;
    width: max(120px,10vw);
    height: max(120px,10vw);
    border-radius: 160px;
    overflow: hidden;
}

.LP-header .sale-btn-pos .button-wrap img {
    width: max(120px,10vw);
}

.LP-top-inner, .LP-block-inner {
    max-width: 1020px;
    margin: 0 auto;
}

.LP-top-inner {
    padding: 0 20px 40px;
}

.LP-block-inner {
    padding: 40px 20px;
}

.LP-top .KW-Attachment span {
    display: block;
    font-family: serif;
    font-size: min(10.5vw,110px);
    color: #dc9c2b;
    background: -webkit-linear-gradient(#a97410, #dc9c2b, #a97410, #dc9c2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    margin: 0 auto;
}

.LP-top .KW-Attachment {
    font-size: min(4vw,50px);
    margin: 0;
}

.LP-top .KW-Attachment:before {
    content: "";
    background-image: url("https://img06.shop-pro.jp/PA01309/122/etc/crown.png?cmsp_timestamp=20211103223017");
    width: calc(83 / 50 * 4vw);
    max-width: 83px;
    height: calc(60 / 83 * (83 / 50 * 4vw));
    max-height: 60px;
    margin-right: min(1.2vw,15px);
    display: inline-block;
    background-size: contain;
    vertical-align: text-bottom;
}

.LP-top .LP-juki-img {
    width: min(47vw,463px);
}

.LP-top .LP-juki-img img {
    display: block;
    width: 100%;
}

.LP-top .top-copy {
    bottom: 1vw;
    left: 20.5vw;
}

.LP-middle-txt {
    font-size: min(3.7vw,40px);
    margin: 0 0 10px;
}

.LP-middle-txt-strong {
    font-size: min(3.7vw,40px);
    text-align: center;
    background-color: rgba(255,0,15,0.8);
    margin: 0 0 10px;
}

.LP-top .top-col-wrap {
    display: flex;
    justify-content: space-between;
}

.KW-line-up .line-up-h2 {
    font-size: clamp(20px,3.2vw,35px);
    color: #000;
    background: -webkit-linear-gradient(left, #a87310, #dd9d2b, #a87310, #dd9d2b);
    width: 55%;
    margin: 0;
    text-indent: 15%;
}

.KW-line-up .line-up-col-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.KW-line-up .line-up-imgs {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 30%;
    max-width: 370px;
    margin: clamp(-60px,-9.6vw,-105px) 0 0 0;
}

.KW-line-up .line-up-imgs .img-wrapper {
    width: 100%;
}

.KW-line-up .line-up-imgs .img-wrapper img {
    width: 100%;
    height: auto;
}

.KW-line-up .line-up-txt {
    width: 70%;
}

.LP-standard-txt {
    margin: 10px 0 0;
    line-height: clamp(40px,10vw,100px);
    font-size: clamp(10px,2.5vw,27px);
    color: #fff;
}

.LP-sp-only {
    display: none;
}

.LP-standard-h2 {
    position: relative;
    font-size: clamp(30px,5vw,54px);
    font-weight: 700;
    line-height: clamp(37px,calc(67 / 54 * 5vw), 67px);
    margin: 0 0 15px 0;
    background: -webkit-linear-gradient(88deg, rgba(255,0,15,0.7) 0%, rgba(0,0,0,0) 40%);
    text-shadow: 2px 2px 3px #808080;
}

.KW-movies {
    background-color: #141414;
}

.KW-movies .movie-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 60px auto 0;
    flex-wrap: wrap;
}

.KW-movies .movie-wrapper:after {
    display: block;
    content:"";
    width: 300px;
}

.KW-movies .movie-wrapper-s {
    width: 300px;
    text-align: center;
    margin: 0;
}

.KW-movies .movie-txt {
    margin-bottom: 10px;
}

.LP-company-info .company-info-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
}

.LP-company-info .company-map {
    width: 50%;
    box-sizing: border-box;
    margin-right: 10px;
}

.LP-company-info .company-map .inner {
    position: relative;
    height: 0;
    padding-top: 70%;
    overflow: hidden;
}

.LP-company-info .company-map .inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.LP-company-info p.company-name {
    font-size: clamp(20px,3vw,30px);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.LP-company-info p.notes {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
}

.LP-company-info table {
    margin: 10px auto;
    border-collapse: collapse;
    color: #000;
    font-size: .9rem;
}

.LP-company-info table th {
    font-weight: 400;
    border: 1px solid #646464;
    background: #e0e0e0;
}

.LP-company-info table td,
.LP-company-info table th {
    text-align: center;
    padding: 6px 18px;
    min-width: 100px;
}

.LP-company-info table td {
    background-color: #fff;
    border: 1px solid #646464;
}

.LP-company-info .tel-btn-wrap {
    width: 70%;
    height: 60px;
    margin: 0 auto 10px;
    background-color: #0bda51;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 25%) inset;
}

.LP-company-info .tel-btn-wrap a {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgb(0 190 0), -1px -1px 3px rgb(0 190 0);
    margin: 0;
    line-height: 60px;
}

.LP-company-info .tel-btn-wrap a:hover,
.LP-company-info .tel-btn-wrap a:focus,
.KW-product-detail .pdf-btn-wrap a:hover,
.KW-product-detail .pdf-btn-wrap a:focus {
    text-decoration: none;
}

.LP-company-info .tel-btn-wrap a img {
    width: 32px;
    height: 32px;
    margin: 14px;
    margin-left: 0;
    filter: drop-shadow(1px 1px 1px rgb(0 190 0)) drop-shadow(-1px -1px 1px rgb(0 190 0));
}

.KW-product-detail {
    background: #141414;
}

.KW-product-detail .product-detail-h2 {
    width: 45%;
    position: relative;
    font-size: clamp(28px,4vw,43.2px);
    font-weight: 700;
    line-height: clamp(35px,5vw, 54px);
    margin: 0;
}

.KW-product-detail .product-detail-h2 span {
    display: block;
    font-size: clamp(18px,2.5vw,27px);
    font-weight: 700;
    line-height: clamp(24px,3.3vw, 36px);
    text-shadow: 3px 3px 5px #000;
    background: -webkit-linear-gradient(88deg, rgba(255,0,15,0.7) 0%, rgba(0,0,0,0) 40%);
}

.KW-product-detail.left .product-detail-h2 {
    margin: 0 0 0 auto;
}

.KW-product-detail .product-col-wrap {
    display: flex;
    justify-content: space-between;
}

.KW-product-detail.right .product-col-wrap {
    flex-direction: row-reverse;
}

.KW-product-detail.left .product-col-wrap {
    flex-direction: row;
}

.KW-product-detail .product-img {
    position: relative;
    width: 50%;
    margin: clamp(-59px,-8.3vw,-90px) 0 0 0;
}

.KW-product-detail img {
    width: 100%;
}

.KW-product-detail .product-txt {
    width: 45%;
    margin: 10px 0 0;
    color: #fff;
}

.KW-product-detail .product-txt p {
    font-size: clamp(15px,2vw,18px);
    line-height: clamp(30px,4vw,34px);
    margin: 0 0 10px;
}

.KW-product-detail .pdf-btn-wrap {
    width: 70%;
    height: 60px;
    margin: 0 auto 10px;
    background-color: #ff4511;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 25%) inset;
}

.KW-product-detail .pdf-btn-wrap a {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 3px #D93B0E, -1px -1px 3px #D93B0E;
    margin: 0;
    line-height: 60px;
}

.all-KW-products {
    background-color: #f0f0f0;
}

.all-KW-products .all-products-h2 {
    color: #3F3F3F;
    font-size: clamp(24px,2.8vw,30px);
    font-weight: 700;
    line-height: clamp(28px,3.3vw,35px);
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 3px #fff;
    background: -webkit-linear-gradient(89deg, #ebb52f 0%, rgba(255,255,255,0) 20%);
    margin: 0 0 20px;
}

.all-KW-products .all-products-h2:first-letter {
    color: rgba(230,0,0,1);
    font-size: 120%;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}

.all-KW-products ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.all-KW-products ul:after {
    display: block;
    content:"";
    width: 240px;
}

.all-KW-products ul li {
    width: 240px;
    height: 320px;
    margin: 0 0 20px;
    display: flex;
    flex-flow: column;
    justify-content: start;
}

.all-KW-products ul li a {
    display: block;
}

.all-KW-products ul li a:hover div.product-img-wrap {
    background: #191919;
}

.all-KW-products ul li a:hover p.description {
    text-decoration: underline;
}

.all-KW-products ul li .product-img-wrap {
    height: 200px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    background: #f8f8f8;
}

.all-KW-products ul li .product-img-wrap img {
    width: 100%;
    height: auto;
}

.all-KW-products .product-info {
    margin: 5px 0 0;
    line-height: 1.7;
}

.all-KW-products .product-info .description {
    font-size: 15px;
    text-decoration: none;
    color: #000;
    margin: 0 0 5px;
}

.all-KW-products ul li .price {
    color: #5e5e5e;
    font-weight: 700;
    font-size: 15px;
    margin: 10px 0;
}

.LP-footer {
    position: relative;
    padding: 35px 20px;
    background: #000;
    font-size: 16px;
    text-align: center;
    align-self: auto;
}

@media screen and (max-width: 979px) {
    .LP-header .sale-btn-pos {
        right: 5vw!important;
        top: initial!important;
        bottom: 5vw!important;
    }

    .KW-product-detail .pdf-btn-wrap a {
        font-size: 20px!important;
    }

    .LP-company-info .company-info-detail {
        flex-direction: column!important;
    }

    .LP-company-info .company-map {
        width: 100%!important;
        margin-right: 0!important;
        margin-bottom: 20px;
    }

    .LP-company-info .tel-btn-wrap a {
        font-size: 20px!important;
    }

    .all-KW-products ul:after {
        width: 29vw!important;
    }

    .all-KW-products ul li {
        width: 29vw!important;
    }

    .all-KW-products ul li .product-img-wrap {
        height: 24.2vw!important;
    }
}

@media screen and (max-width: 599px) {
    .LP-top .KW-Attachment {
        text-align: center;
    }

    .LP-top .KW-Attachment span {
        font-size: 9vw!important;
    }

    .LP-top .KW-Attachment span:before {
        content: "";
        background-image: url("https://img06.shop-pro.jp/PA01309/122/etc/KW-Attachment-deco.png?cmsp_timestamp=20211103223536");
        width: min(5vw,40px);
        max-width: 40px;
        height: calc(96 / 40 * 5vw);
        max-height: 96px;
        display: inline-block;
        background-size: contain;
        vertical-align: middle;
    }

    .LP-top .KW-Attachment span:after {
        content: "";
        background-image: url("https://img06.shop-pro.jp/PA01309/122/etc/KW-Attachment-deco.png?cmsp_timestamp=20211103223536");
        width: min(5vw,40px);
        max-width: 40px;
        height: calc(96 / 40 * 5vw);
        max-height: 96px;
        display: inline-block;
        background-size: contain;
        vertical-align: middle;
        transform: scale(-1, 1);
    }

    .LP-top .LP-juki-img {
        width: 100%!important;
    }

    .LP-top .top-copy {
        text-align: center;
    }

    .LP-pc-only {
        display: none;
    }

    .LP-sp-only {
        display: block!important;
    }

    .LP-top .top-col-wrap {
        flex-flow: column;
    }

    .LP-top .LP-juki-img img {
        width: 70%;
        margin: 0 auto;
    }

    .KW-line-up .line-up-col-wrap {
        flex-direction: column!important;
    }

    .KW-line-up .line-up-imgs {
        width: 100%!important;
        max-width: initial!important;
        margin: 10px 0!important;
    }

    .KW-line-up .line-up-imgs .img-wrapper {
        width: 50%!important;
    }

    .KW-line-up .line-up-txt {
        width: 100%!important;
    }

    .LP-standard-txt {
        font-size: 15px!important;
        line-height: 40px!important;
    }

    .KW-movies .movie-wrapper {
        margin: 20px auto 0!important;
    }

    .KW-product-detail .product-col-wrap {
        flex-direction: column!important;
    }

    .KW-product-detail .product-detail-h2,
    .KW-product-detail .product-txt {
        width: 100%!important;
    }

    .KW-product-detail .product-img {
        width: 100%!important;
        margin: 10px 0!important;
    }

    .all-KW-products ul li {
        height: 270px!important;
    }

    .LP-footer .copyright {
        font-size: 0.7em!important;
    }
}

/* 光エフェクト */
.LP-tel-btn:before, .LP-sale-btn:before, .LP-pdf-btn:before {
    content: "";
    background-color: hsla(0,0%,100%,.5);
    height: 100%;
    width: 60px;
    display: block;
    position: absolute;
    top: 0;
    left: -300%;
    transform: skewX(-45deg) translateX(0);
    transition: none;
    animation: shine 1.4s ease-in-out infinite;
}

.LP-tel-btn, .LP-sale-btn:before, .LP-pdf-btn {
    font-size: 24px;
    display: inline-block;
    border-radius: .3em;
    transition: all .2s ease-in-out;
    position: relative;
    overflow: hidden;
}

@-webkit-keyframes shine {
  100% {
    left: 300%;
  }
}

@keyframes shine {
  100% {
    left: 300%;
  }
}

/* フェードインエフェクト */
 /* 左から */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }

/* 右から */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
 }

 .fixed_btn { 
	position: fixed;
	bottom: 20px;
	right: -20px;
	padding: 6px 20px;
	background: none;
    border: none;
	z-index: 1000;
 }
 .line_fixed_btn { 
	bottom: 83px;
	right: -20px;
	padding: 6px 20px;
	background: none;
    border: none;
	z-index: 1000;
 }
 .fixed_btn img { 
	width: 170px;
 }

 /*.btn__bound {
	animation: key .3s ease infinite alternate;
  }
  @keyframes key {
	0% {transform: translateY(0px);}
	100% {transform: translateY(-10px);}
  }*/

/*フリーページ*/
.free_page {
  text-align: left;
  line-height: 1.6;
}
.free_page img {
  width: 100%;
}
.free_page_headimg {
  width: 100%;
  margin-bottom: 30px;
}
.free_page h2 {
    display: flex;
    align-items: center;
    margin: 40px 0 20px;
}
.free_page h2:before, .free_page h2:after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: #F5E300;
}
.free_page h2:before {
    margin-right: 2rem;
}
.free_page h2:after {
    margin-left: 2rem;
}

.free_page h3 {
    padding: 0.5em;
    color: #333;
    background: #F5F5F5;
    border-left: solid 5px #0255A1;
    text-align: left;
    margin: 40px 0 20px;
    font-size: 22px;
}
.free_page h4 {
    margin: 20px 0 10px;
}
.free_page_h4 {
        display: inline-block;
    border-bottom: solid 3px #0255A1;
    padding-bottom: 5px;
    font-size: 20px;
    margin: 40px 0 10px;
}

.free_recommend_list {
      list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
   justify-content: space-between;
}
.free_recommend_list li {
      width: 48%;
    margin-bottom: 3%;
    border: solid 3px #868686;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}
.w100 {
  width: 100%!important;
}
.free_recommend_title {
      display: flex;
    align-items: center;
    border-bottom: solid 1px #707070;
    margin-bottom: 15px;
    font-size: 20px;
    color: #CC0909;
}
.free_recommend_title_prev {
      font-size: 14px;
    color: #333;
}
.free_recommend_title_number {
         font-size: 50px;
    font-weight: 500;
    margin: 0 20px 0 6px;
    color: #333;
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
}

.accessories_list {
      display: flex;
    list-style: none;
}
.accessories_list li {
         text-align: center;
    width: 40%;
    margin-right: 3%;
    font-weight: bold;
}

.f41_recommend_list {
      list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  margin-bottom: 20px;
}
.f41_recommend_list li {
  width: 23%
}
.f41_recommend_list li a {
      background: #0255A1;
    color: #fff;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    padding: 20px 10px;
}
.free_tokuten_wrap {
      border: solid 3px #CC0909;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    text-align: center;
    margin: 40px 0;
}
.free_tokuten_wrap p {
  font-weight: bold;
}
.free_page_tokuten_h3 {
    display: inline-block;
    background: #fff;
    margin-top: -38px;
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 25px;
    color: #CC0909;
}
.bold {
  font-weight: bold;
}
.big {
  font-size: 20px;
}
.free_page_caution_title {
      font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 40px 0 15px;
}
.free_page_caution_title img {
  width: 40px;
  margin-right: 5px;
}

.f43_table {
    width: 100%;
    margin: 30px 0;
  border-collapse: collapse;
}
.f43_table th , .f43_table td {
  padding: 7px;
  border: solid 1px #a2a2a2;
}
.f43_table th {
      background: #e9e9e9;
    text-align: center;
}
.freepage_cart_btn {
       border-style: none;
    padding: 0px;
    width: 100%;
    border-width: 0px;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    background: #CC0909;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    margin: 60px 0;
  box-sizing: border-box;
}
.freepage_cart_btn img {
  width: 30px;
  margin-right: 5px;
}
.freepage_more_btn {
        color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 20px 30px;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
    margin: 40px 0;
    background: #CC0909;
}
.freepage_more_btn::before {
        content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 24px;
    right: 30px;
    transform: rotate(45deg);
}

.f47_section {
      display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.f47_section_img {
  width: 48%!important;
}
.f47_section_img > img {
  margin-bottom: 10px;
}
.f47_section_text {
   width: 48%;
}

.f48_h4 {
      display: flex;
    align-items: baseline;
    border-bottom: solid 1px #707070;
    margin-bottom: 20px;
  margin-top: 20px;
    font-size: 20px;
    color: #333;
}
.free_recommend_title_prev {
      font-size: 14px;
    color: #333;
}
.f48_h4_number {
         font-size: 40px;
    font-weight: 500;
    margin: 0 20px 0 6px;
    color: #CC0909;
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
}

.f48_point {
  color: #CC0909;
    font-family: "Oswald", sans-serif;
  font-weight: bold;
  margin-top: 20px;
}
.f48_caution {
      font-weight: bold;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.f48_caution img {
  width: 25px;
  margin-right: 5px;
}

/*LINE連携ボタン修正に伴い変更*/
.line_fixed_btn {
    bottom: 140px !important;
}
.fixed_btn {
    bottom: 83px;
}
/*LINE連携ボタン修正に伴い変更した箇所ここまで*/
