@charset "utf-8";
/* CSS Document */


#under_mv_aria #goods_mv_1 {
    position: absolute;
    bottom: 25%;
    left: 2%;
    margin: auto;
    width: 25%;
    transform: rotate(-15deg);
}
#under_mv_aria #goods_mv_2 {
    position: absolute;
    bottom: 25%;
    right: 2%;
    margin: auto;
    width: 25%;
    transform: rotate(15deg);
}

/* ITEMS
--------------------------------------------------------- */
.ctgl_icon {
	font-size: 10px;
	line-height: 1;
	padding: 5px 10px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	color: #fff;
}
.ctgl_icon.icon_1 {
	background: skyblue;
}
.ctgl_icon.icon_2 {
	background: pink;
}

.ctgl_icon.icon_3 {
	background: #80c269;
}
.ctgl_icon.icon_4 {
	background: plum;
}

.items_list {
	display: flex;
	flex-wrap: wrap;
    margin: -50px -10px 60px 0px;
}
.items_list li {
	display: none;
	width: calc( (100% - 50px) / 5 );
	margin-bottom: 10px;
    margin-right: 10px
}
.items_list li a {
	pointer-events: none;
}
.items_list li.is-show {
  display: block;
}

.items_list li.dummy {
    margin-bottom: 0;
    height: 1px;
}
.items_list li .list_item_box {
	background: #fff;
	padding: 15px;
	position: relative;
}
.items_list li .list_item_box .item_img {
	margin-bottom: 10px;
	width: 100%;
	height: 0;
	padding-top: 100%;
	position: relative;
}
.items_list li .list_item_box .item_img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.items_list li .list_item_box .item_name {
	line-height: 1.3;
	margin: 10px 0;
}
.items_list li .list_item_box .item_price {
	font-size: 12px;
	line-height: 1;
    color: #aaa;
    text-indent: -2.9em;
    padding-left: 2.9em;
}
#items_box .button.button_items,
#items_box02 .button.button_items {
	width: 300px;
	line-height: 70px;
	cursor: pointer;
	margin-top: 20px;
}

#items_box .button.button_items.noneItem,
#items_box02 .button.button_items.noneItem {
	pointer-events: none;
	border-color: #ccc;
	color: #ccc;
	display: none;
}

#items_box02 .button.button_items {
	background: #fff;
}


/* Button
--------------------------------------------------------- */
.button {
	border: 1px solid #fff000;
	color: #fff000;
	text-align: center;
	margin: 40px auto 0;
	line-height: 1;
	position: relative;
	transition: 0.4s;
	box-sizing: border-box;
	font-family: Arial, Helvetica, "sans-serif";
}
.button a {
	color: #fff000;
	transition: 0.4s;
	display: block;
	z-index: 10;
	position: relative;
}
.button span{
	z-index: 10;
	position: relative;
	display: block;
}
.button:link:after, .button:visited:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}
.button:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: 0;
    content: '';
    color: #000 !important;
	background: #fff000; /* Old browsers */
	background: -moz-linear-gradient(left, #fff000 0%, #fff000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #fff000 0%,#fff000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #fff000 0%,#fff000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff000', endColorstr='#fff000',GradientType=1 ); /* IE6-9 */
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
	
	opacity: 0.7;
}
.button:hover {
	border-color: #f271a6;
}
.button:hover ,.button a:hover {
	color: #fff;
}
.button:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}
.button:link:hover:after, .button:visited:hover:after {
    height: 450%;
}


.button.button_arrow02 {
	position: relative;
}
.button.button_arrow02 a {
	padding-right: 20px;
}
.button.button_arrow02 span {
	display: block;
}
.button.button_arrow02 .arrow_position {
	position: absolute;
    display: flex;
    top: 0;
    bottom: 6px;
    margin: auto;
    right: 20px;
    justify-content: center;
    align-items: center;
}
.button.button_arrow02 .arrow {
	display: block;
	position: relative;
	width: 50px;
	height: 15px;
}
.button.button_arrow02 .arrow_item01 {
	width: 50px;
	height: 1px;
	background: #fff000;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: 0.4s;
}
.button.button_arrow02 .arrow_item02 {
	width: 20px;
	height: 1px;
	background: #fff000;
	transform: rotate(45deg);
	position: absolute;
	bottom: 7px;
    right: -3px;
	transition: 0.4s;
}

.button.button_arrow02 a:hover .arrow_item01,
.button.button_arrow02 a:hover .arrow_item02 {
	background: #fff;
}



/* HOVER
--------------------------------------------------------- */
.hover_border a {
	display: block;
	position: relative;
}
.hover_border a::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba( 0,0,0,0.5 );
	z-index: 10;
	transition: 0.4s;
	opacity: 0;
}
.hover_border .list_item_border {
	position: absolute;
	display: block;
	z-index: 11;
	opacity: 0.6;
	transition: 0s;
}
.hover_border li .hover_border_box::before {
	content: "みる";
 	color: #fff000;
	background: -webkit-linear-gradient(-45deg, #fff000, #fff000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	  font-family: "Yusei Magic", sans-serif;
	  font-weight: 400;
	  font-style: normal;
	font-size: 24px;
	width: 100%;
	height: 20px;
	z-index: 15;
	text-align: center;
	position: absolute;
	top: 60px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	line-height: 1;
	padding: 20px 0;
	transition: 0s;
	opacity: 0;
	letter-spacing: 0.12em;
}
.hover_border .list_item_border.border-top,
.hover_border .list_item_border.border-bottom {
	width: 0 ;
	height: 2px;
}
.hover_border .list_item_border.border-right,
.hover_border .list_item_border.border-left {
	width:2px ;
	height: 0 ;
}
.hover_border .list_item_border.border-top {
	background: #fff000; /* Old browsers */
	background: -moz-linear-gradient(left, #fff000 0%, #fff000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #fff000 0%,#fff000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #fff000 0%,#fff000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff000', 
	endColorstr='#fff000',GradientType=1 ); /* IE6-9 */
	top: 15px;
	left: 15px;
}
.hover_border .list_item_border.border-right {
	background: #fff000; /* Old browsers */
	background: -moz-linear-gradient(top, #fff000 0%, #fff000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fff000 0%,#fff000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fff000 0%,#fff000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff000', endColorstr='#fff000',GradientType=0 ); /* IE6-9 */
	top: 15px;
	right: 15px;
}
.hover_border .list_item_border.border-bottom {
	background: #fff000; /* Old browsers */
	background: -moz-linear-gradient(left, #fff000 0%, #fff000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #fff000 0%,#fff000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #fff000 0%,#fff000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff000', endColorstr='#fff000',GradientType=1 ); /* IE6-9 */
	bottom: 15px;
	right: 15px;
}
.hover_border .list_item_border.border-left {
	background: #fff000; /* Old browsers */
	background: -moz-linear-gradient(top, #fff000 0%, #fff000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fff000 0%,#fff000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fff000 0%,#fff000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff000', endColorstr='#fff000',GradientType=0 ); /* IE6-9 */
	bottom: 15px;
	left: 15px;
}


.hover_border a:hover .hover_border_box::before {
	opacity: 1;
	transition: 0.5s;
	top: 0;
}
.hover_border a:hover::before {
	opacity: 1;
	transition: 0.6s;
}
.hover_border a:hover .list_item_border {
	transition: 0.5s;
}
.hover_border li a:hover .list_item_border.border-top,
.hover_border li a:hover .list_item_border.border-bottom {
	width: calc(100% - 32px) ;
}
.hover_border li a:hover .list_item_border.border-right ,
.hover_border li a:hover .list_item_border.border-left {
	height: calc(100% - 32px) ;
}
.hover_border li a:hover {
	color: #222;
}


/* ========================================
     1600px
======================================== */
@media screen and (max-width:1600px){
    
    .items_list li {
        width: calc( (100% - 80px) / 4 );
        margin-bottom: 20px;
        margin-right: 20px
    }
}
/* ========================================
     1200px
======================================== */
@media screen and (max-width:1200px){
}
/* ========================================
     1000px
======================================== */
@media screen and (max-width:1000px){
    #under_mv_aria #goods_mv_1 {
        bottom: 25%;
        left: 0%;
        width: 30%;
    }
    #under_mv_aria #goods_mv_2 {
        bottom: 25%;
        right: 1%;
        width: 30%;
    }
    .items_list li {
        width: calc((100% - 30px) / 3);
        margin-bottom: 10px;
        margin-right: 10px;
    }
}
/* ========================================
     768px
======================================== */
@media screen and (max-width:768px){
    #under_mv_aria #goods_mv_1 {
        bottom: 15%;
        left: -2%;
        width: 35%;
    }
    #under_mv_aria #goods_mv_2 {
        bottom: 15%;
        right: -2%;
        width: 35%;
    }
    .items_list li {
        width: calc((100% - 20px) / 2);
    }
    .items_list {
		margin: -20px -10px 60px 0px;
	}
}
/* ========================================
     481px
======================================== */
@media screen and (max-width:481px){
    #under_mv_aria #goods_mv_1 {
        bottom: 12%;
        left: 0%;
        width: 35%;
    }
    #under_mv_aria #goods_mv_2 {
        bottom: 10%;
        right: 0.5%;
        width: 35%;
    }
}
