/**
 * PRODUCTSタイトル
 */
 .products-title {
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 100px;
}
.products-title p {
    color: #FFFFFF;
    font-size: 90px;
    margin: 0;
}
.products-title span:not(:last-child) {
    margin-right: -17px;
}

/* 商品メニュー リンク */
.product-menu-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
}

/**
 * 商品メニュー(PC)
 */
.product-menu-pc {
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 80px;
    /* margin-top: 300px; */
    margin-top: 60px;
}
/* 商品メニュー アイテム */
.product-menu-pc .product-menu-item {
    width: 221px;
    height: 223px;
    min-width: 80px;
    min-height: 82px;
    background-color: #FFFFFF;
    margin: 10px 0px 10px 0px;
    text-align : center;
    position: relative;
}
.product-menu-pc .product-menu-item:nth-child(2) {
    margin-left: 10px;
    margin-right: 10px;
}
/* 商品ロゴ */
.product-menu-pc .product-menu-logo {
    position: relative;
    top: 55px;
    color: #9F9F9F;
}
.product-menu-pc .product-menu-logo img {
    max-width: 100%;
    margin-bottom: 18.5px;
}
.product-menu-pc .product-menu-logo .product-menu-logo-text {
    letter-spacing: 3.5px;
}
/* 矢印アイコン */
.product-menu-pc .product-menu-item-arrow {
    width: 55px;
    height: 55px;
    background-color: #796A53;
    margin : 0 auto;
    position: relative;
    bottom: -100px;
    background-image: url("../../../image/product/product_menu/link-mark.svg");
    background-repeat: no-repeat;
    background-position: center;
}

/**
 * 商品メニュー(SP)
 */
.product-menu-sp {
    display: none;
    justify-content: space-between;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 80px;
    margin-top: 60px;
}
/* 商品メニュー アイテム */
.product-menu-sp .product-menu-item-frame {
    position: relative;
    width: 100%;
}
.product-menu-sp .product-menu-item-frame:before {
    content:"";
    display: block;
    padding-top: 114.8514%; /* 高さを幅の114.8514%に固定 */
    background-color: #FFFFFF;
}
.product-menu-sp .product-menu-item-frame:nth-child(2) {
    margin-left: 6px;
    margin-right: 6px;
}
.product-menu-sp .product-menu-item {
    /* width: 221px; */
    background-color: #FFFFFF;
    margin: 0;
    text-align : center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
/* 商品ロゴ */
.product-menu-sp .product-menu-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;  
    color: #9F9F9F;
    padding: 20%;
    box-sizing: border-box;
}
.product-menu-sp .product-menu-logo img {
    max-height: 100%;
    max-width: 100%;
}
.product-menu-sp .product-menu-logo .product-menu-logo-text {
    font-size: 12px;
    margin-top: 12%;
    line-height: 12px;
    letter-spacing: 3px;
}
.product-menu-img-wrap {
    width: 100%;
    height: 40%;
    position: revert;
}
/* 矢印アイコン */
.product-menu-sp .product-menu-item-arrow {
    width: 30%;
    height: 30%;
    background-color: #796A53;
    margin : 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15%;
    padding: 7.5%;
    display:flex
}
.product-menu-sp .product-menu-item-arrow img {
    max-height: 100%;
    max-width: 100%;
}

/**
 * SP
 */
@media only screen and (max-width: 767px){
    .products-title p {
        font-size: 40px;
    }
    .products-title span:not(:last-child) {
        margin-right: -7px;
    }

    .product-menu .contents-narrow{
        max-width: 1240px;
        width: 100%;
    }
    
    .product-menu-pc {
        display: none;
    }
    .product-menu-sp {
        display: flex;
    }
}
