/* カスタマイズ用CSS */
/*共通*/
body {
    color: #333;
    font-family: "Noto Sans JP","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    font-size: min(16px, 4vw);
    letter-spacing: .05rem;
    font-weight: 500;
    text-align: justify;
}
img{
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
a {
    margin: 0;
    padding: 0;
    background: transparent;
    color: #000;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
}
a:hover {
    opacity: 0.7;
    transition: 0.2s;
    text-decoration: none;
}
a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.simple-footer-nav{
    list-style-type: none;
}
.ec-layoutRole .ec-layoutRole__contents{
    padding: 60px 0 100px;
} 
.ec-topicpath {
    padding: 0 0 10px;
}
.pagetop {
    display: flex;
    z-index: 5;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #231714;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}
.pagetop span {
    -webkit-transform: rotate(-45deg);
    display: block;
    width: 25%;
    height: 25%;
    margin-top: 5px;
    transform: rotate(-45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

/*ヘッダー*/
.header {
    z-index: 13;
    position: relative;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    width: 100%;
}
.header.over {
  position: fixed;
  left: 0;
}
.header.over.active {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s 0.5s;
}
.inner-header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px;
}
.wrap-logo {
  display: flex;
  align-items: center;
}
.wrap-logo .logo {
  display: block;
}
.wrap-logo .logo:hover {
  opacity:1;
}
.wrap-logo .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 40px;
}
.head-header {
	margin-left: 1.5em;
	line-height: 1.25;
	margin-top:10px;
	font-size:14px;
}
.head-header > *{
	font-weight: 500;
	line-height: 1;
    margin: 0;
    font-size: 100%;
}
.wrap-tel-header p {
    /* font-size: 14px; */
  text-align: right;
	margin-top:14px;
	margin-right:50px;
	    word-break: keep-all;
    white-space: nowrap;
}
.tel {
  font-size: 28px;
  position:relative;
	/* top:8px; */
    top: 1px;
    font-family: 'Fjalla One', sans-serif;
}
.tel:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.list-sp-menu {
  display: none;
}
.list-sp-menu li {
    width: 40px;
    height: 40px;
}
.sp-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  text-align: center;
}
.sp-menu span {
  -webkit-transform: scale(0.8, 0.8);
  display: block;
  padding-top: 0.75em;
          transform: scale(0.8, 0.8);
  font-size: 10px;
  letter-spacing: 0;
}
.sp-menu:before {
  color: #231714;
  font-size: 24px;
}
.nav-open {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.nav-open:after {
  -webkit-transform: scale(0.8, 0.8);
          transform: scale(0.8, 0.8);
  font-size: 10px;
  text-align: center;
  content: "MENU";
}
.global-nav {
  display: flex;
  z-index: 2;
  width: 100%;
}
.header ul{
    list-style-type: none;
    margin: 0;
}
.global-nav > li {
  position: relative;
  flex: 1;
  border-right: 1px solid #ccc;
}
.global-nav > li:first-child {
  border-left: 1px solid #ccc;
}
.global-nav > li > a {
  display: block;
  padding:0.5em 0;
  text-align: center;
  position:relative;
	font-weight:bold;
}
.global-nav > li > a span{
  display:block;
  font-size:10px;
  margin-top:4px;
  margin-bottom:-4px;
}
.global-nav > li:before {
  content: none;
  display: block;
  height: 1px;
  width:0;
  background: #231714;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition:0.5s;
}
.global-nav > li:hover:before {
  width: 80%;

}
.global-nav > li > ul {
  z-index: 2;
  position: absolute;
  top: calc(100% + 0px);
  left: -10%;
  width: 120%;
  height:auto;
  opacity: 0;
  transition:0.5s;
  visibility: hidden;
}
.global-nav > li:hover > ul{
  height:auto;
  opacity:1;
  transition:0.5s;
  top: calc(100% + 15px);
  visibility: visible;
}
.global-nav > li:hover > ul:before{
  content:"";
  display:block;
  height:15px;
  width:100%;
  position:absolute;
  top:-15px;
  right:0;
  left:0;
  margin:0 auto;
}
.global-nav > li:hover > ul:after{
  content:"";
  height:0;
  width:0;
  display:block;
  border-color: transparent transparent #231714;
  border-style: solid;
  border-width: 0 10px 10px;
  position:absolute;
  top:-10px;
  right:0;
  left:0;
  margin:0 auto;
  z-index:-1;
}
.global-nav > li > ul.sub-menu > li > ul > li{
	position:relative;
}
.global-nav > li > ul.sub-menu > li > ul > li:nth-child(1):before{
  content: "";
  height: 0;
  width: 0;
  display: block;
  border-color: transparent transparent #231714;
  border-style: solid;
  border-width: 10px 10px 10px;
  position:absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto 0;
  z-index:2;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.global-nav > li:last-child > ul.sub-menu > li > ul > li:nth-child(1):before{
  left:initial;
  right: -20px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.global-nav > li > ul.sub-menu > li a:hover{
  background:#3b80b7;
  opacity:1;
}
.global-nav > li > ul > li{
  position:relative;
  transition:0.5s;
}
.global-nav > li > ul > li > ul{
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  visibility:hidden;
  transition:0.5s;
  z-index:1;
}
.global-nav > li > ul > li:hover > ul{
  opacity:1;
  visibility:visible;
  transition:0.5s;
}
.global-nav > li:last-child > ul > li > ul{
  right:100%;
  left:initial;
}
.global-nav > li > ul > li > ul > li{
  opacity:0;
  visibility:hidden;

}
.global-nav > li > ul > li:hover > ul > li{
  opacity:1;
  visibility:visible;
}
.global-nav > li > ul.sub-menu > li > ul > li > a{
  background:#104f82;
}
.global-nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}
.global-nav .sub-menu a {
  display: block;
  padding: 1em;
  text-align: center;
}
.global-nav li > ul > li > a{
	z-index:10;
}
.drawer-nav{
padding: 0;
}
.drawer-nav > li,.drawer-nav > li > ul > li,.drawer-nav > li > ul > li > ul >li {
  position: relative;
  border-bottom: 1px solid #ccc;
  line-height: 1.75;
}
.drawer-nav > li > ul > li:last-child,.drawer-nav > li > ul > li > ul >li:last-child {
  border-bottom: none;
}
.drawer-nav > li > a,.drawer-nav > li > ul > li > a,.drawer-nav > li > ul > li > ul > li > a {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
}
.drawer-nav > li > ul > li > a {
	background:#eeeeee;
}
.drawer-nav li a span{
  display:none;
}
.drawer-nav .sub-menu {
  display: none;
  border-top: 1px solid #ccc;
}
.drawer-nav a {
  display: block;
  padding: 0.5em 1em;
  position: relative;
}
.drawer-nav a:after {
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    transform: rotate( 45deg );
}
.drawer-nav .btn-sub + a:after {
	content:none;
}
.drawer-nav .btn-sub {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 50px;
    margin: auto;
    color: #999999;
}
.drawer-nav .fa-angle-down:before{
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(75%,-50%) rotate( 135deg );
}
.drawer-nav .fa-angle-up:before{
    content: "";
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    height: 9px;
    width: 9px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(75%,-50%) rotate( -45deg );
}

/*　疑似要素テキスト　*/
.attrTextLeft:before,
.attrTextTop:before,
.attrTextBottom:after,
.attrTextRight:after {
  content: attr(data-text);
}
.attrTextLeft:before,
.attrTextRight:after {
  display: inline-block;
}
.attrTextTop:before,
.attrTextBottom:after {
  display: block;
}

/*　疑似要素テキスト　*/
/*　疑似要素アイコン　*/
.attrIconLeft:before,
.attrIconTop:before,
.attrIconBottom:after,
.attrIconRight:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #e50012;
  position: absolute;
  left: -36px;
  /* top: -2px; */
  top: 4px;
  border-radius:5px;
}
.attrIconLeft:after{
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background:url(https://magurochan.net/wp-content/themes/amnk/images/tel.svg);
  background-size:cover;
  position: absolute;
  left: -36px;
  /* top: -2px; */
  top: 4px;
  border-radius:5px;
  margin:5px;
}
.attrIconTop:before,
.attrIconBottom:after {
  display: block;
}
.attrIconLeft:before,
.attrIconRight:after {
  display: inline-block;
}

/*　疑似要素アイコン　*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
#nav-open {
  z-index: 10000;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 40px;
  margin: auto;
  vertical-align: middle;
}
#nav-open:hover {
  cursor: pointer;
}
#nav-open span {
  position: absolute;
  right: 0;
  left: 0;
  width: 80%;
  height: 3px;
  margin: auto;
  background: #231714;
  transition: all 0.5s;
}
#nav-open span:nth-of-type(1) {
  top: 2px;
}
#nav-open span:nth-of-type(2) {
  top: 11px;
}
#nav-open span:nth-of-type(3) {
  top: 20px;
}

/*閉じる用の薄黒カバー*/
.btn-close {
    margin: 40px;
    padding: 1em;
    text-align: center;
    cursor: pointer;
    border: #666666 1px solid;
}
.btn-close:before {
	content:"×";
}
#nav-input:checked ~ #nav-open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
  transition: all 0.5s;
}
#nav-input:checked ~ #nav-open span:nth-of-type(2) {
  opacity: 0;
}
#nav-input:checked ~ #nav-open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
  transition: all 0.5s;
}
#nav-content .logo {
    display: none;
}
.header .mobile-header-banner {
    margin: 30px 20px 0;
    padding: 0;
}
.mobile-header-banner li{
	position: relative;
	top: unset;
}
.mobile-header-banner li:not(:first-child) {
    margin-top: 10px;
}
.mobile-header-banner li> *{
	font-family: "Noto Sans JP","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}
.mobile-header-banner a {
    display: block;
	display: flex;
	align-items: center;
    position: relative;
    padding: 15px;
    font-size: 12px;
    /*text-align: center;*/
    background: #231714;
    color: #fff;
}
.mobile-header-banner li.contact a:before{
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 10px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="white" d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg>') no-repeat center center;
	background-size: cover;
	fill: #fff;
}
.mobile-header-banner li.tel a:before{
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 10px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="white" d="M15,12H17A5,5 0 0,0 12,7V9A3,3 0 0,1 15,12M19,12H21C21,7 16.97,3 12,3V5C15.86,5 19,8.13 19,12M20,15.5C18.75,15.5 17.55,15.3 16.43,14.93C16.08,14.82 15.69,14.9 15.41,15.18L13.21,17.38C10.38,15.94 8.06,13.62 6.62,10.79L8.82,8.59C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4A1,1 0 0,0 7.5,3H4A1,1 0 0,0 3,4A17,17 0 0,0 20,21A1,1 0 0,0 21,20V16.5A1,1 0 0,0 20,15.5Z" /></svg>') no-repeat center center;
	background-size: cover;
	fill: #fff;	
}
.mobile-header-banner li a:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 16px;
}


/*フッター*/
.contact-box{
    background: #231714;
    background-blend-mode: multiply;
    background-position: center;
    padding: 100px 0;
    background-size: cover;
}
.contact-box h2 {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-size: min(30px, 5.5vw);
    margin-bottom: min(25px, 5vw);
    font-weight: bold;
    line-height: 1.5em;
    font-family: "M PLUS Rounded 1c";
    font-weight: 800;
}
.contact-box h2::after {
    background: #ffffff;
    display: block;
    width: 100px;
    height: 1px;
    margin-top: min(25px, 5vw);
    content: "";
}
.contact-box p {
    text-align: center;
    line-height: 2em;
    color: #ffffff;
}
.contact-box .telp{
	line-height: 1;
	margin-top: 20px;
}
.contact-btn-box {
    width: 700px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: space-between;
}
.contact-btn-box a {
    display: block;
    padding: 18px 18px 15px 30px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    background: #444444;
    width: calc((100% - 30px) / 2);
    font-size: 24px;
    border-radius: 4px;
    font-family: "M PLUS Rounded 1c";
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: 1;
}
.contact-btn-box a:nth-child(1) {
    background: #bbbbbb;
}
.contact-btn-box a:nth-child(1):before {
    content: "";
    height: 30px;
    min-width: 36px;
    background: url(https://magurochan.net/wp-content/themes/amnk/images/f-mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 15px;
}
.contact-btn-box a:nth-child(1):after {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    content: "";
}
.contact-btn-box a:nth-child(2) {
    background: #e50012;
}
.contact-btn-box a:nth-child(2):before {
    content: "";
    height: 30px;
    min-width: 30px;
    background: url(https://magurochan.net/wp-content/themes/amnk/images/f-tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 15px;
}
.contact-tel {
    color: #ffffff;
}
.contact-tel:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(https://magurochan.net/wp-content/themes/amnk/images/tel.svg)no-repeat;
    background-size: cover;
    margin-right: 5px;
    position: relative;
    top: 2px;
}
.footer-top {
    padding: 50px 0;
}
.inner-footer-top {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.box-info-footer {
    width: 300px;
    margin: 0 auto 30px;
    text-align: center;
}
.box-info-footer .logo {
    display: block;
    margin-bottom: 0.5em;
}
.box-info-footer img {
    width: 100%;
    height: auto;
}
.info-footer {
    margin-bottom: 1em;
    line-height: 1.5;
}
.simple-footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
}
.simple-footer-nav li a {
    padding: 0 1em;
    border-right: 1px solid #666666;
    color: #666666;
    font-size: 12px;
}
.copyright {
    padding: 0.5em 0;
    font-size: 12px;
    background: #231714;
    color: #ffffff;
    text-align: center;
}
small {
    font-size: 100%;
}

/*商品リスト*/
#page_product_list .ec-shelfGrid__item form{
    display: none;
}
#page_product_list .ec-productRole__btn{
    display: none;
}

/*商品ページ*/
.ec-productRole .ec-productRole__tags{
    padding: 5px 0 0 0;
    margin: 0;
}
.ec-productRole .ec-productRole__price {
    padding: 5px 0;
}
.ec-productRole__description > br{
    display: none;
}
.p-table{
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ccc;
    margin: 0;
}
.p-table tr{
    border-bottom: 1px solid #ccc;
}
.p-table th, .p-table td{
    padding: 1em;
    vertical-align: top;
}
.p-table th{
    background: #efefef;
    border-right: 1px solid #ccc;
    width: 135px;
}
.ec-productRole .ec-productRole__description {
    margin-top: 30px;
}
.ec-blockBtn--action{
    margin-top: 17px;
}
.ec-blockBtn--action.add-cart{
    margin-top: 0;
}
.ec-blockBtn--action.pro-zero{
    display: none;
}
.fuku-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.fuku-list li{
    position: relative;
    padding-left: 19px;
}
.fuku-list li:not(:last-of-type){
    margin-bottom: 13px;
}
.fuku-list li:before{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    background: #525263;
}
.fuku-list li span{
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
/* .ec-productRole .ec-sliderItemRole img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */


.link-icon > div{
/* 	width:calc((100% - 30px) / 2); */
	width:60px;
}
.link-icon > div:nth-child(1){
	
}

.f-btn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
/*     width: 75%;
    margin: 20px auto 0; */
	max-width: 700px;
    margin: 25px auto 0;
}
.f-btn div{
    width: calc((100% - 30px) / 2);
}
.f-btn a{
    box-sizing: border-box;
    line-height: 1.5;
/*     padding: 1em; */
    padding: 15px 18px;
    border-radius: 5px;
    text-align: left;
/*     font-size: 14px; */
    font-size: 17px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.insta-box {
    background: linear-gradient(160deg,#3D2AE4 0%,#DE4EB8 51%,#E6B037 100%);
    border-radius: 8px;
    padding: 3px;
}
.insta-box a {
    background: #fff;
    color: #333;
    height: 100%;
}
.insta-box a:before {
	content: "";
    display: block;
    position: absolute;
    left: 17px;
    width: 30px;
    height: 30px;
    background: url(https://magurochan.net/wp-content/themes/amnk/images/instalogo.svg) center no-repeat;
    background-size: contain;
    margin: 0 15px 0 0;
}
.line-box a{
/* 	border:3px solid #00b900; */
/*     background: #fff;
    color: #333; */
    background: #00b900;
	color: #fff;
}
.line-box{
   background: #00b900;
    border-radius: 5px;
    padding: 3px;
}
.line-box a:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(https://magurochan.net/wp-content/themes/amnk/images/line.svg) center no-repeat;
    background-size: contain;
    margin: 0 15px 0 0;
    position: absolute;
    left: 19px;
}
.f-btn > div:nth-child(1) a:after {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    content: "";
}
.f-btn > div:nth-child(2) a:after {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 1em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 3px solid #de4eb8;
    border-right: 3px solid #de4eb8;
    content: "";
}


@media screen and (min-width: 901px) {
.header.over {
    top: -40px;
  }
  .header.over .inner-header {
      /* display: none;*/
  }
  .wrap-tel-header {
    display: flex;
    flex-wrap: nowrap;
  }

  a[href^="tel:"] {
    pointer-events: none;
	word-break: keep-all;
    white-space: nowrap;
  }
  .btn-form,
  button.btn-form {
    width: 250px;
    padding: 1em;
    font-size: 15px;
  }
  .drawer-nav {
    display: none;
  }
 #nav-open{
display: none;
}
.btn-close {
    display: none;
  }
  /* .pagetop {
    right: 20px;
    bottom: -20px;
    opacity: 0;
    transition: 0.5s;
} */
  .pagetop {
    bottom: 20px;
    opacity: 0.7;
    transition: 0.5s;
}
}

@media screen and (min-width: 1241px) {
.contents {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
}

@media screen and (min-width: 901px) and (max-width:1240px) {
  .contents {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
  }
}

@media screen and (min-width: 901px) {
  body.over {
    padding-top: 100px;
  } 
	.nav > .contents{
		padding:5px 0;
	}
.mobile-header-banner{
    display: none;
}
}

@media screen and (max-width: 900px) {
/*共通*/
  body.over {
    padding-top: 80px;
  }
.pc{
    display: none;
}
.sp{
    display: block;
}
.ec-layoutRole .ec-layoutRole__contents{
    padding: 35px 0 100px;
}
/* .pagetop {
    right: 3vw;
    bottom: -60px;
} */
.pagetop {
    right: 3vw;
    bottom: 3vw;
}

/*ヘッダー*/
   .header.over {
    top: -80px;
  }
  .wrap-tel-header {
    display: none;
  }
  .wrap-logo {
    margin-left: 20px;
  }
   .global-nav {
    display: none;
  }
#nav-content .logo {
    display: none;
    display: block;
    margin: 4vw 3vw 2vw;
    overflow: hidden;
}
#nav-close {
    display: none;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #nav-content {
-webkit-transform: translateX(-105%); 
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 300px;
    min-width: 300px;
    height: 100%;
    overflow: auto;
    transform: translateX(-105%); 
    background: #fff;
    transition: 0.5s ease-in-out;
    white-space: nowrap;
    word-break: keep-all;
  }
  .btn-close {
    display: block;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
     -webkit-transform: translateX(0%); 
     transform: translateX(0%); 
    /*left: 0;*/
    box-shadow: 6px 0 25px rgb(0 0 0 / 15%);
  }
  
/*フッターメニュー*/
.simple-footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0;
}
.simple-footer-nav li {
    width: calc(100% / 2);
    text-align: center;
    border-top: 1px solid #999999;
}
.simple-footer-nav li:nth-child(odd) {
    border-right: 1px solid #999999;
}
.simple-footer-nav li a {
    border-right: none;
    width: 100%;
    padding: 15px 0;
    display: block;
}

/*フッター*/ 
.footer-top {
    padding: 50px 0 30px;
}
.contact-box .contents {
    padding: 0 6vw;
    }

  .contact-box h2 + p{
    text-align: justify;
    }
	
  .contact-btn-box {
    flex-direction: column;
    }
	
  .contact-btn-box {
    width: 100%;
    }
	
  .contact-btn-box a {
    width: 100%;
    }
	
  .contact-btn-box a:nth-child(1) {
    margin-bottom: 20px;
    }	

    body .telp {
    text-align: center;
    font-size: 3.5vw;
    }
	
	.single-post .head-common{
	font-size:4vw;
	}
	
	.wrap .wrap-message h3{
    margin: 0 2.5vw;
	}
	
	.contact-tel{
    font-size: 6vw;
    display: block;
    margin: 4vw 0 0;
	}

/*商品ページ*/
.ec-price .ec-price__price {
    padding-left: 0;
}

.f-btn{
		max-width:100%;
	}
	
	.f-btn div {
    width: 100%;
}
	.f-btn > div:nth-child(1){
    margin-bottom: 20px;
    }
	.f-btn a{
		padding: 15px;
	}
}

@media screen and (max-width: 640px) {
/*ヘッダー*/
.header.over {
    top: -83px;
  }
  .inner-header {
    height: 80px;
    padding: 25px 0 5px;
  }
  .wrap-logo {
    margin-left: 0;
  }
  .wrap-logo .logo {
    width: 180px;
    margin-left: 10px;
  }
  .head-header {
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    background: #231714;
    line-height: 15px;
  }
  .head-header > * {
    color: #fff;
    font-size: 8px;
    text-align: center;
	line-height: 1.75;
  }
  .list-sp-menu {
    display: flex;
    position: absolute;
	top: 30px;  
	right: 50px;
  }
  .sp-header-tel{
    position:relative;
    height:40px;
    width:40px;
    display:inline-block;
  }
  .sp-header-tel span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
  }
  #nav-open {
    top: 30px;
    right: 10px;
}

	/*spアイコンの色を変えるならfill内を"23"から初めて16進数のカラーコードで記述をする事*/
	
  .sp-header-tel:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
    position:absolute;
	background: url('/ec/html/user_data/common/h-tel.svg') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	/*top:-5px;*/
  }
  .sp-header-contact{
    position:relative;
    height:40px;
    width:40px;
    display:inline-block;
  }
  .sp-header-contact span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
    letter-spacing: 0;
  }
  .sp-header-contact:before{
    content:"";
    display:inline-block;
    height: 25px;
    width: 25px;
    position:absolute;
	background: url('/ec/html/user_data/common/h-mail.svg') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	/*top:-5px;*/
  }
  .sp-header-access{
    position:relative;
    height:40px;
    width:40px;
    display:inline-block;
  }
  .sp-header-access span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
  }
  .sp-header-access:before{
    content:"";
    display:inline-block;
    height:25px;
    width:25px;
    position:absolute;
	background: url('/ec/html/user_data/common/h-access.svg') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	/*top:-5px;*/
  }

/*商品ページ*/
.ec-productRole .ec-productRole__category {
    padding: 0 0 10px;
}
.p-table{

}
.p-table tr{

}
.p-table th, .p-table td{
    width: 100%;
    display: block;
}
.p-table th{
    border-right: none;
    border-bottom: 1px solid #ccc;
}
.p-table td{
    
}

}