@charset "UTF-8";
/*************************
*
*header
*
*************************/
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 5%;
  top: 6%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
  width: 24px;
  left: 9px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
  width: 24px;
  left: 9px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  right : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  max-width: 410px;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}


.hamburger p{
	font-size: 0.2rem;
	position: absolute;
	bottom: -13px;
	left: 7px;
	font-weight: bold;
}
/*************************
*
*common
*
*************************/
.wrap{
  padding: 3%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.container{
  background: #F2F2F2;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 3%;
  box-shadow: -3px 12px 43px rgb(107 77 77 / 38%);
  border: 5px solid #fff;
  position: relative;
  z-index: 1;
}
.container::after{
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 108%;
  background-image: url(https://maruccoi.net/asset/img/bg_img01.png),url(https://maruccoi.net/asset/img/bg_img02.png),url(https://maruccoi.net/asset/img/bg_img03.png);
  background-repeat: no-repeat;
  background-position: 98% 1%,1% 52%,100% 102%;
  top: -4%;
  z-index: 2;
  left: -4%;
  right: 0;
  bottom: 0px;
}
.content-wrap{
  position: relative;
  z-index: 3;
}

body{
	font-family: 'Noto Sans JP', sans-serif;
}
h1{
  text-align: center;
  margin: 10px 0 60px;
}
h2{
	font-family: 'Kaisei Opti', serif;
}
.copyright{
  position: absolute;
bottom: -10px;
font-size: 11px;
color: #ddd;
}

/*************************
*
*product-archives/product-single
*
*************************/
#product-archives{
  display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 16px;
}
#product-archives .item{
  width: 100%;
    display: flex;
    justify-content: flex-start;
    border: 2px solid #fff;
    box-shadow: 0px 0px 2px rgb(107 77 77 / 8%);
}
#product-archives .item img{
   vertical-align: bottom;
}

main{
  max-width: 775px;
  margin: 0 auto;
}
#product-single article{
  display: flex;
justify-content: space-between;
flex-wrap: wrap;
height: auto;
}
#product-single .left{
  width: 100%;
display: flex;
justify-content: flex-start;
border: 2px solid #fff;
box-shadow: 0px 0px 2px rgb(107 77 77 / 8%);
max-width: 336px;
}
#product-single .right{
  width: 51%;
}
#product-single .cat{}
#product-single h2{}
#product-single .material{}
#product-single .content{}
#product-single .link{}

.color-icon{
  font-size: 0;
      width: 18px;
      height: 18px;
      display: inline-block;
      border: 2px solid #fff;
      border-radius: 50px;
      margin-right: 7px;
      box-shadow: 0px 0px 8px rgb(107 77 77 / 30%);
}
.color-colorful{
background: linear-gradient(45deg, #9c27b0,#03a9f4,#e91e63,#ffeb3b,#00bcd4);
}
.color-white{
  background: #fff;
}
.color-black{
  background: #000;
}
.color-gray{
  background: #b3b3b3;
}
.color-beige {
  background: #ddc094;
}
.color-yellow {
  background: #ffd53b;
}
.color-orange{
  background: #f19000;
}
.color-red{
  background: #ff0e0e;
}
.color-pink{
  background: #ff9e97;
}
.color-green{
  background: #8bc34a;
}
.color-blue{
  background: #5aaad9;
}
.color-brown{
  background: #7e5a4c;
}
.color-purple{
  background: #af6bbb;
}

.entry-title{
  font-family: 'Kaisei Opti', serif;
}
/*************************
*
*category & tag
*
*************************/
.cat-list{}
.cat-list ul{
  margin: 0;
  padding: 0;
}
.cat-list ul li{
  list-style: none;
  padding: 0 15px;
  display: inline-block;
}
.keyword-list{}
.keyword-list a{
  list-style: none;
    padding: 0 15px;
    display: inline-block;
}

/*************************
*
*index
*
*************************/
#info{}
#info p{}

/*************************
*
*form
*
*************************/
label{
  font-size: 14px;
  color: #404040;
  font-weight: bold;
}
label span.wpcf7-list-item-label, label span.wpcf7-form-control-wrap {
  margin: 9px 5px 12px;
  display: inline-block;
}