/** //TOP SNS **/
.top-sns-area{
  display: none;
  width: 100%;
  background-color: #f4f4f4;
  margin-top: 10px;
}

.top-sns-container{
  width: 90%;
  margin: auto;
}

.top-sns-list{
  display: flex;
  list-style: none;
  justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .top-sns-area{
    display: block;
  }
  .top-sns-listitem{
    font-size: 22px;
    font-weight: bold;
    color: #464e54;
    margin: 3px 10px;
  }
  .top-sns-listitem.text{
    margin-top: 8px;
  }
  .top-sns-image{
    width: 40px;
  }
}
  
@media screen and (max-width: 450px) {
  .top-sns-listitem{
    font-size: 18px;
  }
  .top-sns-image{
    width: 35px;
  }
}
/** TOP SNS// **/

.main-content1{
    box-sizing: border-box;
    position: relative;
    margin: auto;
    padding: 0px 10px;
    width: 1200px;
    overflow-x: hidden;
}

/** //メインピックアップ **/

.content-mainpk{
    max-width: 1200px;
    width: 100%;
    background-color: #e5e5e5;
    display: flex;
    position: relative;
    border-radius: 10px;
    box-sizing: border-box;
}

.mainpk-image{
    width: 100%;
    max-width: 560px;
    max-height 420px;
    object-fit: contain;
    margin: auto;
    box-sizing: border-box;
}

.mainpk-logoimage{
    max-width: 40%;
    max-height: 100px;
}

.mainpk-link-button{
    width: 150px;
    padding: 5px 10px;
    box-sizing: border-box;
    background: #535353;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: all .35s ease;
}
.mainpk-link-button:hover{
    background: white;
    color: #535353;
}

.mainpk-list{
    display: flex;
    width: 100%;
}

.mainpk-listitem{
    width: 50%;
    padding: 10.5px;
    box-sizing: border-box;
}

.mainpk-left-list{
    height: 100%;
}

.mainpk-left-listitem.logo{
    display: none;
    position: relative;
}

.mainpk-left-listitem.image{
    display: flex;
    height: 100%;
    vertical-align: middle;
}

.mainpk-right-list{
    position: relative;
    height: 100%;
    padding: 100px 0px;
    box-sizing: border-box;
}

.mainpk-right-listitem{
    padding: 10px 0px;
}

.mainpk-right-listitem.logo{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 100%;
    text-align: right;
}

.mainpk-right-listitem.title{
    font-size: 30px;
    color: #000;
}

.mainpk-right-listitem.text{
    font-size: 16px;
    color: #000;
}

/** メインピックアップ// **/

/** //検索（レスポンシブ） **/

.content-search.responsive{
    display: none;
    box-sizing: border-box;
    width: 80%;
    height: 70px;
    margin: auto;
    padding: 15px;
}

.search-form.responsive{
    width: 100%;
    display: flex;
    position: relative;
    margin-right: 10px;
}

.content-search.responsive input[type="text"]{
    width: 75%;
    height: 28px;
    padding: 5px 5px 5px 10px;
    margin-right: 5px;
    border: none;
    color: #292929;
    font-size: 14px;
    background-color: #ffffff;
    border: solid 2px #444;
    border-radius: 3px;
}
.content-search.responsive input[type="submit"]{
    width: 20%;
    height: 40px;
    background:#3399ff;
    color:#fff;
    font-weight:bold;
    font-size:16px;
    cursor: pointer;
    border-color: inherit;
    border-radius: 3px;
}

input[type="text"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/** 検索（レスポンシブ）// **/

/** //新着情報NEWS **/

.content-news{
    margin-top: 50px;
}

.news-title{
    text-align: center;
    margin: 15px 0px;
    font-size: 22px;
    font-weight: bold;
    color: #464e54;
}

.news-container{
    margin: 20px auto 40px;
    width: 940px;
    height: 200px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    overflow: auto;
    line-height: 1.0;
}

.news-list{
    padding: 15px;
    border-top: 1px solid #a9a9a9;
}

.news-category{
    width: 75px;
    padding: 3px;
    margin-bottom: 5px;
    text-align: center;
    color: #000;
    font-size: 0.8em;
}
.news-category.news{
    background: #cff;
}
.news-category.re{
    background: #fec;
}
.news-category.na{
    background: #ffcccc;
}

.news-date{
    font-size: 0.9em;
    font-weight: bolder;
}

.news-text{
    padding-left: 10px;
    color: inherit;
    color: #464e54;
}
.news-text:hover{
    color: #838383;
}

/** 新着情報NEWS// **/

.main-content2{
    position: relative;
    box-sizing: border-box;
    padding: 20px 15px;
    width: 100%;
    height: 550px;
    overflow: hidden;
    transition: 1s;
    background-color: #f4f4f4;
}
.main-content2:before{
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  box-sizing: border-box;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
  transition: 1s;
  z-index: 50;
}
.main-content2.active:before{
  opacity: 0;
  visibility: hidden;
}

/** //ブランド **/

.content-brand{
    position: relative;
    width: 80%;
    height: 100%;
    margin: auto;
    box-sizing: border-box;
}

.brand-title{
    text-align: center;
    font-size: 22px;
    margin: 15px 0px;
    font-weight: bold;
    color: #464e54;
}

.brand-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
} 

.brand-onoff{
	position: relative;
	width: 120px;
    height: 120px;
	margin: 5px;
	display: block;
	border-radius: 80px;
	overflow: hidden;
	cursor: pointer;
}

.brand-button{
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 120px;
  height: 30px;
  cursor: pointer;
  background: #535353;
  color: white;
  text-align: center;
  transition: all .35s ease;
  border: none;
  z-index: 51;
}

/** ブランド// **/

/** //カテゴリー **/

.content-category{
    width: 100%;
    margin: 30px 0px;
}

.category-title{
    text-align: center;
    font-size: 22px;
    margin: 15px 0px;
    font-weight: bold;
    color: #464e54;
}

.category-list{
    display: flex;
    justify-content: center;
    width: 100%
}

.category-listitem{
    width: 16%;
    padding: 10px 5px;
    box-sizing: border-box;
}

.category-link{
    color: #444;
    text-decoration: none;
    text-align: center;
}
.category-link:hover{
    color: #464e54;
}

.category-image{
    width: 80%;
    display: block;
    margin: auto;
}

.category-name{
    font-size: 16px;
}

/** カテゴリー// **/

/** //ピックアップ **/

.content-pickup{
    margin-top: 50px;
}

.pickup-title{
    text-align: center;
    font-size: 22px;
    margin: 15px 0px;
    font-weight: bold;
    color: #464e54;
}

.pickup-list{
    display: flex;
    width: 100%;
    margin: 10px 0px 50px 0px;
    padding-inline-start: 0;
    box-sizing: border-box;
}

.pickup-listitem{
    list-style: none;
    width: 25%;
    height: auto;
    padding: 0px 7.5px;
    box-sizing: border-box;
}

.pickup-image-link{
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
.pickup-image-link:hover{
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pickup-image:hover{
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pickup-text{
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #464e54;
}
.pickup-text:hover{
    color: #838383;
}

/** ピックアップ// **/

/** //トピックス **/

.content-topics{
    margin-top: 50px;
}

.topics-title{
    text-align: center;
    font-size: 22px;
    margin: 15px 0px;
    font-weight: bold;
    color: #464e54;
}

.topics-list{
    display: flex;
    width: 100%;
    margin: 10px 0px 30px 0px;
    padding-inline-start: 0;
    box-sizing: border-box;
}

.topics-listitem{
    list-style: none;
    text-align: left;
    width: 25%;
    height: auto;
    padding: 0px 7.5px;
    box-sizing: border-box;
}

.topics-image-link{
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
.topics-image-link:hover{
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.topics-image:hover{
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.topics-text{
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #464e54;
}
.topics-text:hover{
    color: #838383;
}

.topics-text2.responsive{
    display: none;
}

/** トピックス// **/

/** //レスポンシブ **/

@media screen and (max-width: 1850px) {
    .content-brand{
        width: 95%;
    }
}

@media screen and (max-width: 1550px) {
    .main-content2{
        height: 500px;
    }
    .content-brand{
        width: 100%;
    }
    .brand-onoff{
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 1250px) {
    .main-content2{
        height: 350px;
    }
    .main-content2:before{
        display: block;
    }
    .brand-button{
        display: block;
    }
}

@media screen and (max-width: 1200px) {
    .main-content1{
        width: 100%;
        margin-top: 20px;
    }
    .content-mainpk{
        margin-bottom: 20px;
    }
    .content-search.responsive{
        display: block;
    }
}

@media screen and (max-width: 960px) {
    .news-container{
        width: 95%;
    }
}

@media screen and (max-width: 760px) {
    .content-mainpk{
        padding-bottom: 10px;
    }
    .mainpk-logoimage{
        max-width: 150px;
        position: absolute;
        top: -10px;
        right: -5px;
    }
    .mainpk-list{
        display: block;
    }
    .mainpk-listitem{
        width: 100%;
    }
    .mainpk-left-listitem.logo{
        display: block;
    }
    .mainpk-image{
        padding: 30px 10px 0px 10px;
    }
    .mainpk-right-list{
        padding: 0px;
    }
    .mainpk-right-listitem.logo{
        display: none;
    }
    .mainpk-right-listitem{
        text-align: center;
    }
    .news-responsive{
        display: flex;
        margin-bottom: 5px;
    }
    .news-date{
        padding: 5px 0px 0px 5px;
    }
    .category-list{
        flex-wrap: wrap;
    }
    .category-listitem{
        width: 33.3%;
    }
    .content-pickup.second{
        margin-top: 0px;
    }
    .pickup-list{
        flex-wrap: wrap;
        margin: 0px;
    }
    .pickup-listitem{
        width: 50%;
        margin-bottom: 25px;
        padding: 0px 10px;
    }
    .pickup-text2{
        margin: 2px 0px;
    }
    .topics-list{
        flex-wrap: wrap;
    }
    .topics-listitem{
        width: 50%;
        margin-bottom: 20px;
        padding: 0px 10px;
    }
    .topics-text2{
        display: none;
    }
    .topics-text2.responsive{
        display: block;
        margin: 2px 0px;
    }
}

@media screen and (max-width: 450px) {
    .mainpk-logoimage{
        width: 80px
    }
    .brand-onoff{
        width: 90px;
        height: 90px;
    }
}

/** レスポンシブ// **/