@charset "utf-8";
/* sell/category/appliances/配下ページ */

.content section {
    width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.section_title {
    margin-bottom: 24px;
}

/* メインビュー */
.mainview {
    width: 1200px;
    margin: 0 auto;
}

.mainview .mainview_inner {
    position: relative;
}

.mainview .mainview_inner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    padding: 13px 10px;
    display: inline-block;
    color: #FFFFFF;
    line-height: 1;
    background: rgba(0, 0, 0, .8);
}

/* ○○をお売りください */
.catch_text:not(:first-child) {
    margin-top: 20px;
}

/* ○○買取対象メーカー */
.brandList {
    background: #FFF;
    padding: 40px 60px;
    display: flex;
    flex-wrap: wrap;
}

.brandList li {
    width: calc(20% - 32px);
    position: relative;
    cursor: default;
}

.brandList li:not(:nth-child(5n)) {
    margin-right: 40px;
}

.brandList li:nth-child(n + 6) {
    margin-top: 24px;
}

.name_yomi {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: #FFF;
    opacity: 0;
}

.name_yomi:hover {
    opacity: 1;
    transition: 0.2s all;
}

.name_alpha p,
.name_yomi p {
    font-size: 14px;
    font-weight: 700;
}

.name_alpha span,
.name_yomi span {
    display: block;
    font-size: 12px;
    color: #909193;
    margin-top: 5px;
}

/* カテゴリ画像 */
.categoryImg {
    display: block;
    width: 660px;
    margin: 32px auto 0;
}

/* 買取実績 */
.itemList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.itemList li {
    width: 300px;
    padding: 0 5px 16px;
    border-bottom: 1px solid #DADDE3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.itemList li:nth-child(n+5) {
    padding-top: 16px;
}

.itemList_info {
    width: 100%;
}

.itemList_maker {
    font-weight: 700;
    line-height: 19px;
    margin-bottom: 8px;
}

.itemList_maker span {
    display: block;
}

.itemList_name {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #A2A2A2;
}

.itemList_priceTitle {
    font-size: 12px;
    line-height: 1;
    width: 84px;
    margin-bottom: 8px;
}

.itemList_priceText {
    font-size: 18px;
    line-height: 1;
    text-align: right;
    font-weight: 700;
}

.noteList {
    margin-top: 20px;
}

.noteList_item {
    color: #A2A2A2;
    font-size: 14px;
    padding-left: 1em;
    text-indent: -1em;
}

.itemList_title {
    margin-bottom: 20px;
}

.itemList_title:not(:first-of-type) {
    margin-top: 40px;
}

/* purchaseMethod */
ul.purchaseMethod {
    display: flex;
}

ul.purchaseMethod li {
    display: flex;
    flex-basis: calc((100% / 3) - 40px);
}

ul.purchaseMethod li:not(:first-child) {
    margin-left: 20px;
}

/* 買取基準と買取不可アイテム */
.condition_item:not(:first-child) {
    margin-top: 40px;
}

.condition_title {
    margin-bottom: 20px;
}

.conditionList {
    font-size: 14px;
    padding-left: 1em;
    text-indent: -1em;
}

.conditionList li::before {
    content: "・";
}

/* セカンドストリートの買取サービスの特徴 */
.feature {
    margin-bottom: 40px;
}

.feature_item:not(:first-child) {
    margin-top: 40px;
}

.feature_title {
    margin-bottom: 20px;
}

.feature_text {
    font-size: 14px;
}

/* 買取に関するポイント */
.qa {
    font-size: 14px;
}

.qa_item {
    padding: 0 10px;
    background: #FFFFFF;
}

.qa_item:not(:first-child) {
    margin-top: 8px;
}

.qa_question {
    font-weight: 700;
    position: relative;
    padding: 20px 30px 20px calc(1.25em + 10px);
    text-indent: -1.25em;
    cursor: pointer;
}

.qa_question::before {
    content: "Q.";
    margin-right: 5px;
}

.qa_question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #D52423;
    border-right: 1.5px solid #D52423;
    transform: translateY(-50%) rotate(135deg);
}

.qa_question.show::after {
    transform: translateY(0) rotate(-45deg);
}

.qa_answer {
    display: none;
    padding: 20px 10px 20px calc(1.25em + 10px);
    text-indent: -1.25em;
    border-top: 1px solid #DADDE3;
}

.qa_answer::before {
    content: "A.";
    margin-right: 5px;
}

/* その他のAV・生活家電の取扱い */
.otherList {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.otherList a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.otherList a:hover {
    opacity: 0.6;
}

.otherList img {
    width: 100%;
    background: #FFF;
}

.otherList_text {
    margin-top: 20px;
}