@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    overflow-x: hidden; /*スクロールバーを隠す*/
}
a{
    display: block;
    text-decoration: none;
}
li{
    text-decoration: none;
}
ul {
    list-style: none;
}
body{
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(62,58,57,1);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* @media screen and (max-width: 480px){
    body{
        line-height: 1.5;
        letter-spacing: 0;
    }    
} */
/* 横幅が1500px以上の時は内側は1400px以上にはならない */
/* @media(min-width:1500px){
    .area01{
        max-width: 1400px;
    }
} */
/* #home{
    background-image: url(../image/top01.jpg);
    min-height: 100vh;
} */
/* .big-bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.hamburger , .globalMenuSp{
    display: none;
}

.pc{
    display: block;
}
.sp{
    display: none;
}

/* ナビ */
.header-nav{
    width: 90vw;
    /* max-width: 1200px; */
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}
.header-logo{
    display: flex;
    align-items: center;
}
.header-logo h1{
    margin-top: 0.5rem;
}
.header-logo p{
    margin-left: 1.5rem;
    font-size: 1.1rem;
    /* font-weight: 500; */
    letter-spacing: 0;
}
.header-nav-in{
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
.header-nav-in li{
    margin-left: 2rem;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.95rem;
}
.header-nav-in li a{
    color: rgb(89,87,87);
}

/* 取り扱い商品 */
.item-wrapper01{
    max-width: 1200px;
    /* width: 80vw; */
    margin: 0 auto;
    padding: 8rem 1rem 8rem 1rem;
    background-image: url(../image/back03.jpg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: left 0 bottom 18%;
}
.item-wrapper01 h2{
    /* display: inline-block; */
    font-size: 2rem;
    margin-bottom: -2rem;
}
.item-top{
    position: relative;
    height: 75vh;
    background: url(../image/item-top.jpg) no-repeat center;
    background-size: cover;
    margin: 0 0 3rem 25%;
}
/* .item-top ::after{
    content: '';
    position: absolute;
    top: 20%;
    left: -32%;
    width: 100%;
    height: 55vh;
    background: rgb(89,87,87);
    z-index: -1;
} */
/* .sub-top-cap{
    background: url(../image/back03.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 1rem 3rem 1rem;
} */
.sub-top-cap{
    width: 75vw;
    padding: 0 1rem 2rem 2.5rem;
}
.sub-top-cap h3{
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.sub-top-cap p{
    color: #fff;
}

/* 富士山熔岩プレート */

.item-wrapper02{
    padding: 8rem 1rem;
    color:rgb(62,58,57);
}
.item-wrapper02 h3{
    max-width: 1300px;
    padding: 0 1rem;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 500;  
    position:relative;
}
.item-wrapper02 h3:before {
    content: url(../image/doco01.png);
    margin: 0 3rem 0 2rem;
  }
.item-wrapper02 h3::after{
    margin: 0 auto;
    content:"";
    display:block;
    width:100%;
    height:1rem;
    background-color: rgb(201,202,202);
    position:absolute;
    bottom:-1rem;
    /* left:10px; */
 }
.item-grid{
    max-width: 1000px;
    margin: 6rem auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 5%;
    place-items: center;
    padding: 0 1rem;
}
.item-grid img{
    width: 100%;
}
.item-grid h4{
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    position:relative;
}
.item-grid h4::after{
    margin: 0 auto;
    content:"";
    display:block;
    width:40px;
    height:0.25rem;
    background-color: rgb(201,202,202);
    position:absolute;
    bottom: -1.5em;
    text-align: center;
    left:43%;
 }
 .item-grid div p{
    margin-top: 4rem;
 }
.item-wrapper02 div ol{
    counter-reset:number; /*数字をリセット*/
    list-style-type: none!important; /*数字を一旦消す*/
    padding:0.5em;
    /* background: #f5faff; */
}
.item-wrapper02 div ol li{
    position: relative;
    padding-left: 30px;
     line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 30px;
}
.item-wrapper02 div ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: rgb(160,160,160);
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.item-grid-point{
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}
.item-grid-point p{
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.item-grid-det{
    max-width: 1000px;
    margin: 5rem auto;
}
.item-det-tit{
    font-size: 1.2rem;
    font-weight: 500;
}
.item-grid-con{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 3%;
    padding: 3rem 0;
    letter-spacing: 0;
}
.item-grid-con figure img{
    width: 100%;
}
.item-grid-con figure figcaption{
    padding: 0.3rem;
    margin: 1rem 0;
}
.item-grid-con figure a{
    /* display: inline-block; */
    color: #fff;
    background-color: rgb(113,113,113);
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    width: 80%;
}
.item-size{
    font-size: 0.8rem;
    /* letter-spacing: 0; */
}
.item-price{
    font-size: 1.5rem;
    font-weight: 500;
}
.item-tax{
    font-size: 0.8rem;
    font-weight: 500;
}
.plate-form a{
    color: #fff;
    background-color: rgb(113,113,113);
    text-align: center;
    margin: 2rem auto 0 auto;
    padding: 0.5rem 2rem;
    width: 60%;
}

/* 溶岩マリモのみ */
.item-wrapper03 .item-grid h4{
    text-align: left;
}