@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap&subset=japanese");

/*----------------[Base]----------------*/
.lineupContents{
  margin: 5px auto 0;
}
.specialContents{
  margin: 5px auto 0;
}

/*----------------[Layout]----------------*/
.l_lineupMv{
  margin: 0 auto;
  height: 220px;
  background: #F5F7FA;
  position: relative;
}
.l_recommendNav{
border-bottom: 10px solid #fdb474;
border-image: linear-gradient(to right, #fdb474 0%, #ec9a53 100%);
border-image-slice: 1;
}
.l_recommendNav.navFix {
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
margin: 0 auto;
z-index: 100;
background: #fff;
}

/*----------------[Module]----------------*/
/*-----lineup-----*/
.m_lineupMv_inner {
  width: 1160px;
  margin: 0 auto;
}
.m_lineupMv_ttl {
  font-size: 4.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.08em;
  position: absolute;
  top: 45px;
}
.m_lineupMv_ttl_sub {
  font-size: 2.5rem;
  line-height: 1.2;
}
.m_lineupMv_img {
  max-width: none;
}

/*-----special-----*/
.l_specialMv{
  text-align: center;
}
.m_specialMv_inner {
  width: 1275px;
  margin: 0 auto;
}
.m_specialMv_date{
  padding: 10px 0 12px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

/*-----anchor-----*/
.m_anchor_inner {
  margin: 0 auto;
  width: 1160px;
  padding-top: 5px;
}
.m_anchor_list {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content:flex-start;
}
.m_anchor_item {
  width: calc((100% - 15px) / 4);
}
.m_anchor_item + .m_anchor_item{
  margin-left: 5px;
}
.m_anchor_item a {
  border-radius: 3px;
  background-color: #D2DCE6;
  line-height: 1.2;
  color: #333;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.6rem;
  height: 60px;
}
.m_anchor_item a:hover {
  background-color: #232B35;
  color: #FFFFFF;
}
.m_anchor_item a:after {
  font-family: 'FontAwesome';
  content: "\f107";
  line-height: 1;
  font-size: 2.0rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m_anchor_item a:after {
  right: 10px;
}
.m_anchor_text {
  display: block;
  text-align: center;
}
.m_anchor_text span {
  font-size: 1.4rem;
}

/*-----nav-----*/
.m_recommendNav_inner{
width: 1160px;
margin: 0 auto;
}

/*-----section-----*/
.m_section_inner01 {
  width: 1160px;
  margin: 0 auto;
  padding: 50px 0;
}
.m_section_inner02 {
  width: 1060px;
  margin: 0 auto;
  padding: 50px 0;
}
.m_section_ttl01 {
  font-size: 3.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.m_section_ttl02 {
  font-size: 3.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  /*! padding: 0px 0 2.3rem 0; */
  text-align: center;
  letter-spacing: 0.2rem;
  color: #464646;
}
.m_section_ttl02:before {
  /*! position: absolute; */
  /*! bottom: 0; */
  /*! left: calc(50% - 40px); */
  /*! width: 80px; */
  /*! height: 2px; */
  /*! content: ''; */
  /*! background: #606a76; */
}
.m_ttl_icon{
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.m_ttl_icon img{
  max-height: 40px;
}
.m_ttl_txt{
  /*! margin-left: 15px; */
}
.m_section_box{
  margin-top: 40px;
}
.m_section_txt {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.m_section_txt + .m_section_txt {
  margin-top: 15px;
}
.m_txtBold{
  font-weight: bold;
}
.m_txtRed{
  color: #c00;
}

/*-----button-----*/
.m_button {
padding: 10px 30px 12px;
background: #fff;
border: 2px solid #333;
border-radius: 50px;
color: #333;
text-decoration: none;
display: block;
text-align: center;
position: relative;
font-size: 2rem;
font-weight: bold;
}
.m_button:hover{
color: #fff;
background: linear-gradient(180deg, rgba(15,13,13,1) 0%, rgba(88,88,87,1) 100%);
text-decoration: none;
}
.m_button::after {
content: '';
width: 8px;
height: 8px;
border-top: 2px solid #181818;
border-right: 2px solid #181818;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
display: inline-block;
position: absolute;
right: 20px;
top: 43%;
bottom: 0;
}
.m_button:hover:after{
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}

/*-----pcitemBox-----*/
.m_pcitemBox, .pcitemArea {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webklit-flex-wrap: wrap;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
}
.m_pcitemBox .pcitemArea{
  align-items: center;
}
.m_pcitemBox li {
  background: #fff;
  width: calc((100% - 20px) / 3);
  border-radius: 3px;
}
.m_pcitemBox li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  padding: 10px 13px 15px;
  color: #333333;
  text-decoration: none;
}
.m_pcitemBox li a:before {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border-radius: 3px;
  border: solid 1px #ccc;
}
.m_pcitemBox li a:hover:before {
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border: 2px solid #0784E8;
}
.m_pcitemBox li .itemLeft {
  width: calc(40% - 10px);
}
.m_pcitemBox li .itemRight{
  width:calc(60% - 10px);
}
.m_pcitemBox li h3{
  font-size: 1.5rem;
  font-weight: bold;
}
.m_pcitemBox li .des{
  font-size: 1.2rem;
  margin-top: 5px;
}
.m_pcitemBox li .price{
  font-size: 2rem;
  font-weight: bold;
  color: #c00;
}
.m_pcitemBox li .price span{
  font-size: 1.4rem;
}
.m_pcitemLink {
  display: block;
  position: relative;
  font-weight: bold;
  background-color: #606A76;
  border-radius: 3px;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 20px;
  margin-top: 10px;
}
.m_pcitemLink::after {
  font-family: 'FontAwesome';
  content: "\f105";
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.0rem;
}

/*-----deta-----*/
.m_section_deta dl{
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webklit-flex-wrap: wrap;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  margin: 25px 0;
}
.m_section_deta dl + dl{
  padding-top: 25px;
  border-top: solid 1px #ccc;
}
.m_section_deta dt{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  background: #232b35;
  color: #fff;
  padding: 5px 10px 8px;
  width: 25%;
  text-align: center;
}
.m_section_deta dd{
  width: 72%;
}
.m_icon_cap{
  max-width: 260px;
  margin: 0 10px;
  vertical-align: text-bottom;
}
.m_section_txt + .m_section_detalist,
.m_section_detalist + .m_section_txt{
  margin-top: 15px;
}
.m_section_detalist{
  margin-left: 20px;
  font-size: 1.6rem;
}
.m_section_detalist li{
  list-style-type: disc;
}
.m_section_detalist li + li{
  margin-top: 5px;
}

/*----------------[original]----------------*/
.gigaContentsMv{
  background: #ffffd9;
}
.gigaContentsMv .m_specialMv_inner{
  min-height: 350px;
  position: relative;
}
.gigaContentsMv .gigaContentsTtl {
  position: relative;
	text-align: left;
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
	font-weight: bold;
	color: #6e6a61;
}
.gigaContentsMv .gigaContentsTtl p {
  position:absolute;
  top: 220px;
  left: 70px;
}

.m_section_box h3{
  font-size: 2.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0px 0 2rem 0;
}
.gigaContentsArea01 .leadArea{
  padding: 40px;
  background: #fff7ca;
  border-top : dotted 6px #fdb474;
  border-bottom: dotted 6px #fdb474;
}
.gigaContentsArea01 .leadArea h3{
  font-size: 2.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0px 0 2rem 0;
}
.stuBn{
  margin-top: 45px;
  text-align: center;
}
.stuBn p{
  color: #c00;
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
.stuBn a img{
  margin-top: 20px;
  /*! border: 2px solid #de0b27; */
}
.stuBn a:hover{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gigaContentsArea02{
  background: url(img_bg01_pc.png) no-repeat center bottom #ffffd9;
  background-size: cover;
}
.gigaContentsArea02 .pointBox{
  display: flex;
  justify-content: space-between;
  width: 720px;
  margin: 0 auto;
  align-items: baseline;
}
.gigaContentsArea02 .pointTxtBox{
  margin-top: 55px;
}
.gigaContentsArea02 .pointTxtBox li + li{
  margin-top: 40px;
}
.gigaContentsArea02 .pointTxtBox .pointTxt{
  display: flex;
  justify-content: space-between;
  align-items: top;
}
.gigaContentsArea02 .pointTxtBox h3{
  margin: 0px 0 4rem 0;
}
.gigaContentsArea02 .pointTxtBox h3 span{
  border-bottom: dotted 6px #fdb474;
  padding: 0px 0 0.8rem 0;
}
.gigaContentsArea02 .pointTxtBox .pointTxt > div{
  width: 66%;
}
.gigaContentsArea02 .pointTxtBox .pointTxt > img{
  width: 30%;
}
.cauTxt{
  font-size: 1.3rem;
  margin-top: 10px;
}

.gigaContentsArea03 .recommendBox .recommendItem{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gigaContentsArea03 .recommendBox .bnr_box{
  text-align: center;
  margin-top: 30px;
}
.gigaContentsArea03 .recommendBox .bnr_box a:hover{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.gigaContentsArea03 .recommendBox li + li{
  margin-top: 40px;
}
.gigaContentsArea03 .recommendBox li .recommendImg{
  width: 25%;
  text-align: center;
}
.gigaContentsArea03 .recommendBox li .recommendTxt{
  padding: 20px;
  width: 73%;
  display: inline-block;
  position: relative;
  border: 2px solid #6f6b62;
  border-radius: 10px;
  text-align: left;
  background: #ffffd9;
}
.gigaContentsArea03 .recommendBox li .recommendTxt::before {
  content: "";
  position: absolute;
  bottom: 55px;
  left: -27px;
  margin-top: -15px;
  border: 12px solid transparent;
      border-right-color: transparent;
      border-right-style: solid;
      border-right-width: 12px;
  border-right: 15px solid #ffffd9;
  z-index: 2;
}
.gigaContentsArea03 .recommendBox li .recommendTxt::after{
  content: "";
  position: absolute;
  bottom: 53px;
  left: -32px;
  margin-top: -17px;
  border: 14px solid transparent;
      border-right-color: transparent;
      border-right-style: solid;
      border-right-width: 14px;
  border-right: 17px solid #6f6b62;
  z-index: 1;
}
.gigaContentsArea03 .recommendLink{
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
}

/*-----nav-----*/
.rcmdNav{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
text-align: center;
align-items: center;
font-size: 1.7rem;
}
.rcmdLine{
width: calc(100% / 4);
position: relative;
}
.rcmdLine:not(:last-child)::after{
content:"";
width: 2px;
height: 60px;
background-color: #fdb474;
position: absolute;
top: 10px;
left: 0px;
}
.rcmdItem{
display: block;
text-decoration: none;
padding: 15px 0;
color: #353535;
}
.rcmdItem::after{content: "";width: 100%;height: 10px;background-color: rgba(0,0,0,0);position: absolute;bottom: -12px;left: 0px;}
.rcmdItem:hover, .rcmdLink:hover{
color: #db7319;
}
.rcmdItem:hover::after{
content: "";
width: 100%;
height: 10px;
background-color: #353535;
position: absolute;
bottom: -12px;
left: 0px;
color: #db7319;
}
.rcmdLink{
display: block;
text-decoration: none;
padding: 17px 0 17px;
color: #353535;
background-color: #fffa7a;
font-size: 1.7rem;
font-weight: bold;
}
.rcmdLink::after{
content: "";
width: 100%;
height: 10px;
background-color: rgba(0,0,0,0);
position: absolute;
bottom: -10px;
left: 0px;
}
.rcmdLink:hover::after{
content: "";
width: 100%;
height: 10px;
background-color: #353535;
position: absolute;
bottom: -10px;
left: 0px;
color: #2097be;
}
.rcmdLink::before{
content: '';
width: 8px;
height: 8px;
border-top: 3px solid #353535;
border-right: 3px solid #353535;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
display: inline-block;
position: absolute;
right: 20px;
top: 43%;
bottom: 0;
animation: slidemove 0.8s ease 0s infinite alternate;
}
@keyframes slidemove{
  from {
   right: 15px;
  }

  to {
   right: 20px;
  }
}
.rcmdLink:hover::before{
content: '';
width: 8px;
height: 8px;
border-top: 3px solid #db7319;
border-right: 3px solid #db7319;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
display: inline-block;
position: absolute;
right: 20px;
top: 43%;
bottom: 0;
}


/*-----userPikup-----*/
.userPikupList_col4{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.userPikupList_col4 li{
position: relative;
display: flex;
width: 32%;
margin-right: 2%;
}
.userPikupList_col4 li:nth-of-type(3n){
  margin-right: 0;
}
.userPikupList_col4 li:nth-of-type(n+4){
  margin-top: 30px;
}
.userPikupList_col4 li a{
  text-decoration: none;
  color: #333333;
  padding: 0;
}
.userPikupList_link {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 3px;
}
.userPikupList_link:before {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  /* border: 1px solid #cccccc; */
  border-radius: 3px;
}
.userPikupList_link:hover:before {
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border: 2px solid #0784E8;
}
.userPikupList_box img{
  width: 100%;
  border: 1px solid #ccc;
}
.userPikupList_box .m_section_txt{
  font-size: 1.6rem;
  padding: 10px 15px;
}


@media screen and (max-width: 767px) {
body {
    margin-top: 0px !important;
}
/*----------------[Base]----------------*/
.lineupContents{
  margin-top: 3px;
}
.specialContents {
  margin-top: 3px;
}

/*----------------[Layout]----------------*/
.l_lineupMv{
  height: auto;
}
.l_recommendNav{border: none;background: #ffffd9;padding: 0px 10px 10px;}
.l_recommendNav.navFix{
padding: 0px 10px 10px;
background: #ffffd9;
position: static!important;
}

/*----------------[Module]----------------*/
/*-----lineup-----*/
.m_lineupMv_inner {
  width: 100%;
  padding: 0 10px;
  text-align: center;
}
.m_lineupMv_ttl {
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  position: static;
  padding: 10px 0;
}
.m_lineupMv_ttl_sub {
  font-size: 1.5rem;
}
.m_lineupMv_img {
  max-width: 100%;
  max-height: 250px;
}

/*-----special-----*/
.m_specialMv_inner {
  width: 100%;
  /*! padding: 0 10px; */
  text-align: center;
}
.m_specialMv_date{
  padding: 5px 0 7px;
  font-size: 1.4rem;
}

/*-----anchor-----*/
.m_anchor_inner {
  padding: 0 5px;
  width: 100%;
}
.m_anchor_item {
  width: calc(50% - 10px);
margin: 0 5px 10px;
}
.m_anchor_item a {
  height: 40px;
  font-size: 1.2rem;
}
.m_anchor_item a:after {
  right: 5px;
}
.m_anchor_text span {
  font-size: 1.2rem;
}

/*-----nav-----*/
.m_recommendNav_inner{
width: 100%;
}

/*-----section-----*/
.m_section_inner01 {
  width: 100%;
  padding: 30px 10px;
}
.m_section_inner02 {
  width: 100%;
  padding: 25px 10px;
}
.m_section_ttl01 {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
.m_section_ttl02 {
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 0;
}
.m_section_ttl02:before {
  left: calc(50% - 20px);
  width: 40px;
}
.m_ttl_icon{
  width: 35px;
  height: 35px;
}
.m_ttl_icon img{
  max-height: 30px;
}
.m_ttl_txt{
  /*! margin-left: 10px; */
}
.m_section_box{
  margin-top: 30px;
}
.m_section_txt {
  font-size: 1.4rem;
}
.m_sectionTxt + .m_sectionTxt {
  margin-top: 10px;
}

/*-----button-----*/
.m_button {
padding: 10px 30px 13px;
width: 100%;
font-size: 1.7rem;
}

/*-----pcitemBox-----*/
.m_pcitemBox {
  display: block;
}
.m_pcitemBox li {
  width: 100%;
}
.m_pcitemBox li + li{
  margin-top: 15px;
}

.m_pcitemLink {
  font-size: 1.4rem;
}

/*-----deta-----*/
.m_section_deta dl{
  display: block;
  margin: 20px 0;
}
.m_section_deta dl + dl{
  padding-top: 0;
  border-top: none;
}
.m_section_deta dt{
  font-size: 1.6rem;
  width: 100%;
}
.m_section_deta dd{
  width: 100%;
  margin-top: 20px;
}
.m_icon_cap{
  max-width: 220px;
}
.m_section_detalist{
  font-size: 1.4rem;
}

/*----------------[original]----------------*/
.gigaContentsMv{
}
.gigaContentsMv .m_specialMv_inner{
  min-height: auto;
}
.gigaContentsMv .gigaContentsTtl {
	position: static;
  padding: 0 0 20px;
	font-size: 1.6rem;
}
.gigaContentsMv .gigaContentsTtl p {
  position: static;
  padding: 10px 10px 0;
}

.m_section_box h3{
  font-size: 2rem;
}
.gigaContentsArea01 .leadArea{
  padding: 20px 10px;
  margin: 0;
}
.gigaContentsArea01 .leadArea h3{
  font-size: 2rem;
}
.stuBn p{
  font-size: 1.6rem;
}

.gigaContentsArea02 .pointBox{
  width: 100%;
}
.gigaContentsArea02 .pointBox li + li{
  margin-left: 30px;
}
.gigaContentsArea02 .pointTxtBox .pointTxt{
  display: block;
  text-align: center;
}
.gigaContentsArea02 .pointTxtBox .pointTxt .m_section_txt{
  text-align: left;
}
.gigaContentsArea02 .pointTxtBox h3 span{
  display: block;
}
.gigaContentsArea02 .pointTxtBox h3 {
  margin: 0px 0 2rem 0;
  text-align: left;
}
.gigaContentsArea02 .pointTxtBox .pointTxt > div{
  width: 100%;
}
.gigaContentsArea02 .pointTxtBox .pointTxt > img{
  width: 70%;
  margin: 10px auto;
}
.gigaContentsArea02 .pointTxtBox li + li{
  margin-top: 20px;
}
.cauTxt{
  font-size: 1.2rem;
  text-align: left;
}

.gigaContentsArea03 .recommendBox .recommendItem{
  display: block;
  text-align: center;
}
.gigaContentsArea03 .recommendBox li .recommendImg{
  width: 100%;
}
.gigaContentsArea03 .recommendBox li .recommendTxt{
  width: 100%;
  margin-top: 40px;
}
.gigaContentsArea03 .recommendBox li .recommendTxt::before {
  top: -12px;
  bottom: auto;
  left: 46%;
  border: 12px solid transparent;
      border-right-color: transparent;
      border-right-style: solid;
      border-right-width: 12px;
  border-bottom: 15px solid #ffffd9;
}
.gigaContentsArea03 .recommendBox li .recommendTxt::after{
  top: -15px;
  bottom: auto;
  left: 45.4%;
  border: 14px solid transparent;
      border-right-color: transparent;
      border-right-style: solid;
      border-right-width: 14px;
  border-bottom: 17px solid #6f6b62;
}

/*-----nav-----*/
.rcmdItem{
color: #fff;
padding: 8px 30px 8px 15px;
}
  .rcmdItem:hover, .rcmdLink:hover {
    color: #fff;
  }
.rcmdItem::after {
content: '';
width: 8px;
height: 8px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
display: inline-block;
position: absolute;
right: 10px;
left: auto;
top: 33%;
bottom: 0;
}
.rcmdItem:hover::after{
content: '';
width: 8px;
height: 8px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
display: inline-block;
position: absolute;
right: 10px;
left: auto;
top: 33%;
bottom: 0;
background-color: rgba(0,0,0,0);
}
.m_recommendNav_inner ul{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.m_recommendNav_inner ul li{width: 100%;background: #fdb474;background: -moz-linear-gradient(right, #fdb474 0%, #d88a45 100%);background: -webkit-linear-gradient(right, #fdb474 0%, #d88a45 100%);background: linear-gradient(to left, #fdb474 0%, #d88a45 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f96be', endColorstr='#55b1d0', GradientType=0);margin-top: 10px;position: relative;font-size: 1.5rem;}
.m_recommendNav_inner .m_button{width: 100%;padding: 0px;background: #fff;font-size: 1.7rem;}
.m_recommendNav_inner .ankLink05{
color: #333;
padding: 10px 20px 12px;
display: inline-block;
width: 100%;
border-radius: 50px;
text-decoration: none;
}
.m_recommendNav_inner .m_button::after{
content: none;
}
.m_recommendNav_inner .m_button .ankLink05::after{
content: '';
width: 8px;
height: 8px;
border-top: 2px solid #333;
border-right: 2px solid #333;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
display: inline-block;
position: absolute;
right: 10px;
top: 43%;
bottom: 0;
}


/*-----userPikup-----*/
.userPikupList_col4 {
	justify-content: flex-start;
}
.userPikupList_col4 li{
	width: 49%;
	margin-right: 2%;
}
.userPikupList_col4 li:nth-of-type(2n){
  margin-right: 0;
}
.userPikupList_col4 li:nth-of-type(n+3){
  margin-top: 30px;
}
.userPikupList_link:hover:before {
  border: none;
}
.userPikupList_box .m_section_txt{
  font-size: 1.2rem;
  padding: 10px 0 0;
}

}