@charset "UTF-8";

.cp-section__inner {
  max-width: 1080px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .cp-section__inner {
    width: calc(100% - 32px);
  }
}

/* 見出し */
div + .cp-head_h1 {
    margin-top: 50px;
}
.cp-head_h1 h1 {
    width: 100%;
    position: relative;
    background: #F5F5F7;
    line-height: 34px;
    font-weight: 700;
    font-size: 26px;
    padding: 20px 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
}
.cp-head_h1.typeLower h1 {
    width: calc(100% - 32px);
}
.cp-head_h1 h1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #FC9810;
    height: 100%;
    width: 12px;
}
@media screen and (max-width: 768px) {
    div + .cp-head_h1 {
        margin-top: 40px;
    }
    .cp-head_h1 h1 {
        font-size: 20px;
        padding: 5.5px 16px;
    }
    .cp-head_h1 h1:before {
        width: 5px;
    }
}

div + .cp-head_h2 {
    margin-top: 50px;
}
.cp-head_h2 h2 {
    width: 100%;
    position: relative;
    background: #F5F5F7;
    line-height: 34px;
    font-weight: 700;
    font-size: 26px;
    padding: 20px 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
}
.cp-head_h2.typeLower h2 {
    width: calc(100% - 32px);
}
.cp-head_h2 h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #FC9810;
    height: 100%;
    width: 12px;
}
@media screen and (max-width: 768px) {
    div + .cp-head_h2 {
        margin-top: 40px;
    }
    .cp-head_h2 h2 {
        font-size: 20px;
        padding: 5.5px 16px;
    }
    .cp-head_h2 h2:before {
        width: 5px;
    }
}

.cp-head_h2_line h2 {
    width: 100%;
    position: relative;
    background: #FFF;
    line-height: 34px;
    font-weight: 700;
    font-size: 24px;
    padding: 10px 5px 10px 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
	border-bottom: 5px solid #FC9810;
}
.cp-head_h2_line.typeLower h2 {
    width: calc(100% - 32px);
}
div + .cp-head_h2_line {
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    div + .cp-head_h2_line {
        margin-top: 40px;
    }
    .cp-head_h2_line h2 {
        font-size: 18px;
    	padding: 5px 5px 5px 10px;
	}
}

.cp-head_h3 {
    margin-top: 50px;
}
.cp-head_h3 > div:first-child {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 14px 10px 14px;
    background: rgba(252, 152, 16, 0.1);
}
.cp-head_h3 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-left: 14px;
}
.cp-head_h3-icon {
    content: "";
    width: 18px;
    height: 18px;
    position: relative;
}
.cp-head_h3-icon:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: #1DAFB9;
}
.cp-head_h3-icon:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: #1DAFB9;
}

@media screen and (max-width: 768px) {
    .cp-head_h3 {
        margin-top: 40px;
    }
    .cp-head_h3 > div:first-child {
        padding: 5px 10px;
    }
    .cp-head_h3 h3 {
        font-size: 16px;
        font-weight: 700;
    }
}

.cp-head_h4 {
    margin-top: 50px;
}
.cp-head_h4 h4 {
    font-size: 1.25rem;
    color: #FD8A24;
    padding-bottom: 4.5px;
    border-bottom: 1px solid #FD8A24;
}
@media screen and (max-width: 768px) {
    .cp-head_h4 {
        margin-top: 40px;
    }
    .cp-head_h4 h4 {
        font-size: 1rem;
        padding-bottom: 5.5px;
    }
}

/* 段落 */
.cp-paragraph {
  width: 100%;
  display: block;
}
div + .cp-paragraph {
  margin-top: 20px;
}
.cp-paragraph + .cp-paragraph {
  margin-top: 20px;
}
.cp-paragraph p {
  font-size: 16px;
  line-height: 28px;
}
.cp-paragraph p a {
    color: #FC9810;
    text-decoration: underline;
}
.cp-paragraph p a:hover {
    text-decoration: none;
}
@media screen and (max-width: 768px) {
  .cp-paragraph p {
    font-size: 13px;
    line-height: 20px;
  }
}

/* リスト */
.cp-paragraph ul li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 28px;
}
.cp-paragraph ul li:after {
    content: "◉";
    position: absolute;
    left: 0;
    top: 0;
    color: #FD8A24;
    font-size: 16px;
    line-height: 28px;  
}
.cp-paragraph ol {
    list-style-type: decimal;
    padding-left: 17px;
}
.cp-paragraph ol li {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    padding-left: 3px;
}
.cp-paragraph ol li::marker {
    color: #FD8A24;
}

@media screen and (max-width: 768px) {
    .cp-paragraph ul li {
        font-size: 13px;
        line-height: 20px;
    }
    .cp-paragraph ul li:after {
        font-size: 13px;
        line-height: 20px;  
    }
    .cp-paragraph ol li {
        font-size: 13px;
        line-height: 20px;
    }
}

/* 画像 */
.cp-image {
    text-align: center;
}
div + .cp-image {
    margin-top: 20px;
}
.cp-image img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.cp-image.width_max img {
    width: 100%!important;
    height: auto!important;
}

/* table */
div + .cp-table_wrapper { 
    margin-top: 30px;
}
.cp-table_icon {
    display: none;
}
.cp-table_inner,
.cp-table_inner > div:first-child {
    overflow-x: auto;
}
.cp-table_inner table {
    width: 1080px;
    table-layout: fixed;
}
.cp-table_inner table th {
    padding: 13px 0;
    background: #1DAFB9;
    text-align: center;
    color: #ffffff;
    border: 2px solid #DEDEDE;
}
.cp-table_inner table td {
    padding: 13px 20px;
    font-size: 15px;
    line-height: 26px;
    vertical-align: middle;
    text-align: center;
    border: 2px solid #DEDEDE;
}
@media screen and (max-width: 768px) {
    div + .cp-table_wrapper { 
        margin-top: 20px;
    }
    .cp-table_icon {
        display: block;
        max-width: 172px;
        margin: 14px auto 20px;
    }
    .cp-table_icon img {
        width: 100%;
        display: block;
    }
}

/* 3カラム */
.cp-column_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
div + .cp-column_3 {
    margin-top: 30px;
}
.cp-column_3 .block_title {
    margin-bottom: 10px;
}
.cp-column_3 .block_title h5,
.cp-column_3 .block_title p {
    font-size: 1.125rem;
    font-weight: 700;
}
.cp-column_3 .block_img {
    width: 100%;
    margin-bottom: 20px;
}
.cp-column_3 .block_img img {
    width: 100%;
    height: auto;
    display: block;
}
.cp-column_3 .block_text p {
    font-size: 1rem;
    line-height: 26px;
}
@media screen and (max-width: 768px) {
  .cp-column_3 {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
  }
  div + .cp-column_3 {
      margin-top: 20px;
  }
  .cp-column_3 .block_title h5,
  .cp-column_3 .block_title p {
      font-size: 17px;
  }
  .cp-column_3 .block_text p {
      font-size: 0.875rem;
      line-height: 24px;
  }
}

/* 2カラム */
.cp-column_2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
div + .cp-column_2 {
    margin-top: 30px;
}
.cp-column_2 .block_image {
    width: 31.8%;
}
.cp-column_2 .block_image img {
    display: block;
    width: 100%;
    height: auto;
}
.cp-column_2 .block_text {
    width: 68.2%;
    padding-left: 38px;
}
.cp-column_2 .block_text .text_paragraph p {
    font-size: 1rem;
    line-height: 28px;
}
.cp-column_2 .block_text .text_paragraph + .text_paragraph {
    margin-top: 20px;
}
.cp-column_2 .block_text .text_paragraph.text_note p {
    color: #FF0000;
}
@media screen and (max-width: 768px) {
    .cp-column_2 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    div + .cp-column_2 {
      margin-top: 20px;
    }
    .cp-column_2 .block_image {
        width: 100%;
    }
    .cp-column_2 .block_text {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .cp-column_2 .block_text .text_paragraph p {
        font-size: 0.875rem;
        line-height: 24px;
    }
    .cp-column_2 .block_text .text_paragraph + .text_paragraph {
        margin-top: 10px;
    }
}

.cp-column_2_text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
div + .cp-column_2_text {
    margin-top: 30px;
}
.cp-column_2_text .inner_block {
    width: calc((100% - 20px) / 2);
}
.cp-column_2_text .block_title {
    margin-bottom: 10px;
}
.cp-column_2_text .block_title h5,
.cp-column_2_text .block_title p {
    font-size: 1.125rem;
    font-weight: 700;
}
.cp-column_2_text .block_img {
    width: 100%;
    margin-bottom: 20px;
}
.cp-column_2_text .block_img img {
    width: 100%;
    height: auto;
    display: block;
}
.cp-column_2_text .block_text p {
    font-size: 1rem;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .cp-column_2_text {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .cp-column_2_text.sp_2c {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: unset;
      -ms-flex-direction: unset;
      flex-direction: unset;
    }
    div + .cp-column_2_text {
      margin-top: 20px;
    }
    .cp-column_2_text .inner_block {
        width: 100%;
    }
    .cp-column_2_text.sp_2c .inner_block {
        width: calc((100% - 20px) / 2);
    }
    .cp-column_2_text .inner_block + .inner_block {
        margin-top: 20px;
    }
    .cp-column_2_text.sp_2c .inner_block + .inner_block {
        margin-top: 0;
    }
    .cp-column_2_text .block_title h5,
    .cp-column_2_text .block_title p {
        font-size: 17px;
    }
    .cp-column_2_text .block_text p {
        font-size: 0.875rem;
        line-height: 24px;
    }
}


/* ボタン */
.cp-button {
    margin-top: 80px 0 0;
}
.cp-button a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    height: 70px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    background: #FD8A24;
    font-size: 1.25rem;
    max-width: 612px;
    margin: 0 auto;
    height: 95px;
    transition: opacity 0.3s;
}
.cp-button a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    .cp-button {
      margin-top: 40px 0 0;
    }
    .cp-button a {
      max-width: 306px;
      height: 72px;
      font-size: 1rem;
      border-radius: 4px;
    }
}

/* 特選タイトル */
.cp-special_wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-top: 30px;
}
.cp-special_wrapper .cp-special_item {
    padding-bottom: 2px;
    border-bottom: 1px solid #DEDEDE;
}
.cp-special_item-title p {
    text-align: center;
    width: 100%;
    background: #1DAFB9;
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
    padding: 3px 0;
    position: relative;
}
.cp-special_item-title p:before {
    content: "";
    left: 18px;
    background-image: url(../../img/kaitori/en.png);
    width: 22.68px;
    height: 22.28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cp-special_item-image {
    padding: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F8FCFE;
}
.cp-special_item-image img {
    max-height: 160px;
}
.cp-special_item-name {
    margin-top: 10px;
    min-height: 42px;
}
.cp-special_item-name p {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 21px;
}
.cp-special_item-kan {
    margin-top: 5px;
    min-height: 21px;
}
.cp-special_item-kan p {
    font-size: 0.875rem;
    line-height: 21px;
}
.cp-special_item-celebrity {
    margin-top: 5px;
    min-height: 21px;
}
.cp-special_item-celebrity p {
    font-size: 0.875rem;
    line-height: 21px;
    text-align: right;
}
.cp-special_item-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cp-special_item-grid-img {
    display: block;
    width: 38.5px;
}
.cp-special_item-grid-img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.cp-special_item-grid-text p {
    font-size: 1.375rem;
    color: #A1341A;
    font-weight: 700;
}
@media screen and (max-width: 992px) {
    .cp-special_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .cp-special_item-title p {
        font-size: 12px;
    }
    .cp-special_item-title p:before {
        left: 14px;
        width: 17.23px;
        height: 16.5px;
    }
}
@media screen and (max-width: 768px) {
    .cp-special_wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
        gap: 22px 13px;
    }
    .cp-special_item-name p {
        font-size: 13px;
        line-height: 18px;
        min-height: 36px;
    }
    .cp-special_item-kan p {
        font-size: 0.75rem;
    }
    .cp-special_item-celebrity p {
        font-size: 0.75rem;
    }
}

/* 強化買取 */
.cp-brand_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.cp-brand_item {
    padding-bottom: 3px;
    border-bottom: 1px solid #DEDEDE;
}
.cp-brand_item-image {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.cp-brand_item-image img {
    display: block;
    width: 100%;
}
.cp-brand_item-title {
    min-height: 42px;
}
.cp-brand_item-title p {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 21px;
}
.cp-brand_item-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}
.cp-brand_item-grid-image {
    display: block;
    width: 81px;
}
.cp-brand_item-grid-image img {
    width: 100%;
    height: auto;
    display: block;
}
.cp-brand_item-grid-text p {
    font-size: 1.625rem;
    color: #A1341A;
    font-weight: 700;
}
.cp-brand_item-grid-text p span {
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .cp-brand_wrapper {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }
    .cp-brand_item {
        padding: 0 18px;
    }
    .cp-brand_item-grid {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 5px;
    }
    .cp-brand_item-grid-image {
        width: 110.91px;
    }
    .cp-brand_item-grid-text p {
        font-size: 2.1875rem;
    }
}

/* サイトマップ */
.cp-sitemap_wrapper {
    margin-top: 30px;
}
.cp-sitemap_first a {
    font-size: 1.25rem;
    position: relative;
    padding-left: 13px;
    font-weight: 700;
    display: block;
    color: #333333;
    transition: opacity 0.3s;
}
.cp-sitemap_first a:hover {
    opacity: 0.5;
}
.cp-sitemap_first a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8.57px;
    height: 15px;
    background-image: url(../../img/icon/sitemap01.svg);
    background-size: cover;
}
.cp-sitemap_first + .cp-sitemap_first {
    margin-top: 30px;
}
.cp-sitemap_second {
    padding: 15px 30px;
    background: #F5F5F7;
    margin-top: 30px;
}
.cp-sitemap_second a {
    padding-left: 34px;
    font-size: 1.25rem;
    position: relative;
    font-weight: 700;
    color: #333333;
    transition: opacity 0.3s;
}
.cp-sitemap_second a:hover {
    opacity: 0.5;
}
.cp-sitemap_second a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../../img/icon/sitemap02.svg);
    background-size: cover;
}
.cp-sitemap_third {
    padding: 10px 40px 30px;
    background: #F8FCFE;
}
.cp-sitemap_third-inner {
    max-width: 910px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.cp-sitemap_third-item {
    width: 33.3333333%;
    position: relative;
    display: block;
    margin-top: 20px;
}
.cp-sitemap_third-item a {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 13px;
    padding-right: 13px;
    color: #333333;
    transition: opacity 0.3s;
}
.cp-sitemap_third-item a:hover {
    opacity: 0.5;
}
.cp-sitemap_third-item a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5.66px;
    height: 9.89px;
    background-image: url(../../img/icon/sitemap01.svg);
    background-size: cover;
}
@media screen and (max-width: 768px) {
    .cp-sitemap_wrapper {
        margin-top: 20px;
    }
    .cp-sitemap_first a {
        font-size: 1.125rem;
        padding-left: 14.3px;
    }
    .cp-sitemap_first a:after {
        top: 7px;
        height: 14.16px;
        width: 8.09px;
    }
    .cp-sitemap_first + .cp-sitemap_first {
        margin-top: 20px;
    }
    .cp-sitemap_second {
        margin-top: 20px;
        padding: 15px 19px;
    }
    .cp-sitemap_second a {
        font-size: 15px;
        padding-left: 24.3px;
    }
    .cp-sitemap_second a:after {
        width: 15px;
        height: 15px;
        top: 4px;
    }
    .cp-sitemap_third {
        padding: 5px 30px 20px;
    }
    .cp-sitemap_third-item {
        width: 100%;
        margin-top: 15px;
    }
    .cp-sitemap_third-item a {
        font-size: 0.875rem;
        padding-left: 12.18px;
        padding-right: 12.18px;
    }
    .cp-sitemap_third-item a:after {
        width: 5.28px;
        height: 8.86px;
        top: 6px;
  }
}



/* 個人保護方針 */
.cp-privacy_intro {
  margin: 20px 0;
}
.cp-privacy_intro p {
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .cp-privacy_intro p {
    font-size: 13px;
    line-height: 20px;
  }
}
.cp-privacy_block + .cp-privacy_block {
  margin-top: 30px;
}
.cp-privacy_block .cp-privacy_title {
  margin-bottom: 10px;
}
.cp-privacy_block .cp-privacy_title h3 {
  font-size: 20px;
  font-weight: bold;
  padding: 3px 3px 10px 3px;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .cp-privacy_block .cp-privacy_title h3 {
    font-size: 18px;
  }
}
.cp-privacy_block .cp-privacy_text p {
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .cp-privacy_block .cp-privacy_text p {
    font-size: 13px;
    line-height: 20px;
  }
}
.cp-privacy_block .cp-privacy_text + .cp-privacy_text {
  margin-top: 10px;
}

/* Twitterキャンペーン */
.cp-campaign_intro {
  margin: 20px 0;
}
.cp-campaign_intro p {
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .cp-campaign_intro p {
    font-size: 13px;
    line-height: 20px;
  }
}
.cp-campaign_block + .cp-campaign_block {
  margin-top: 30px;
}
.cp-campaign_block .cp-campaign_title {
  margin-bottom: 10px;
}
.cp-campaign_block .cp-campaign_title p {
  font-weight: bold;
}
.cp-campaign_block .cp-campaign_text p {
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .cp-campaign_block .cp-campaign_text p {
    font-size: 13px;
    line-height: 20px;
  }
}