@charset "UTF-8";
/*******************************

商品 Css

*******************************/

/*-----------------------------
メインタイトル
-----------------------------*/
.page .mainimg {
    background: url(../img/head-ttl.jpg) 50% 50% no-repeat!important;
    background-size: cover!important;
    padding: 230px 0 180px;
}

.itemlist-wrap {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px) {
    .page .mainimg {
        padding: 100px 0;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 480px) {
    .page .mainimg {
        padding: 50px 0;
    }
}

/*-----------------------------
section
-----------------------------*/
section {
    padding-top: 100px
}

p.main-txt {
    max-width: 700px;
    margin: 0 auto;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    section {
        padding-top: 50px
    }
}

/*-----------------------------
リンク
-----------------------------*/
.category {
    margin-top: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
}

.category li {
    padding: 0 1%;
}

.category a {
    display: block;
    padding: 5px 0;
}

.category a:hover {
    text-decoration: underline;
}

.category a::after {
    content: "\f0d7";
    font-family: FontAwesome;
    display: inline-block;
    padding-left: 5px;
    color: #dbc67d;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .category {
        border: none;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 30px;
    }
    .category li {
        width: 48%;
        font-size: 110%;
        border-bottom: 1px solid #eaeaea;
    }
    .category a {
        padding: 10px 0;
    }
}

/*-----------------------------
アイテム
-----------------------------*/
.item-list ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.item-list ul::after {
    content: "";
    display: block;
    width: 32%;
}

.item-list li {
    width: 32%;
    margin-bottom: 80px;
    text-align: left;
    line-height: 1.8;
}

.item-list li:nth-last-child(n+1):nth-last-child(-n+3) {
    margin-bottom: 0;
}


.item-list figure {
    margin: 0 0 15px;
    height: 200px;
    text-align: center;
}
.item-list figure img{
    max-height: 100%;
    vertical-align: middle;
}


.item-list span {
    display: block;
    color: #b9b9b9;
    font-size: 90%;
    text-align: center;
}
.item-list h4 {
    text-align: center;
}


/*-----------------------------
カテゴリー固定
-----------------------------*/
.Page {
  position: relative;
}
.ScrollTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5bc8ac;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: all 0.65s;
}
.ScrollTop.isActive {
  opacity: 1;
  transition: all 0.65s;
}


.menu{
	position: fixed;
	display: flex;
	left: 0;
	bottom: 0;
	width: 100%;
	/* 1. メニューを画面下へ隠す */
	transform: translateY(100%);
	/* 2. 0.3秒かけて表示する */
	transition: .3s;
	margin-top: 60px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	padding: 15px 0;
	background: #fff;
}
.menu li{
    padding: 0 1%;
}
.menu li a{
    display: block;
    padding: 5px 0;
}

.menu li a::after {
    content: "\f0d7";
    font-family: FontAwesome;
    display: inline-block;
    padding-left: 5px;
    color: #dbc67d;
}

.active{
  /* 3. メニューを定位置へ戻す */
  transform: translate(0);
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .item-list ul {
        max-width: 316px;
        margin: 0 auto;
    }
    .item-list li {
        width: 100%;
        margin-bottom: 40px;
    }
    .item-list li:nth-last-child(n+1):nth-last-child(-n+3) {
        margin-bottom: 40px;
    }
    .item-list ul::after {
        display: none;
    }
}


/*-----------------------------
PCのみ・SPのみ
-----------------------------*/

/*PCの場合*/
.pc	{ display:inline!important; }
.mb	{ display:none!important; }
@media screen and (max-width: 480px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.mb { display:inline!important; }
}
