@charset "UTF-8";

/* ----- マイページ ----- */

#mypage-content {
  display: flex;
  margin: 20px auto 0;
  justify-content: center;
}

/* サイドバー */

.mypage-sidebar {
  width: 240px;
  padding: 0 2% 0 3%;
  box-sizing: border-box;
}

.mypage-title {
  font-size: 2.2rem;
}

.invitation-box {
  margin: 20px 0 0 -5px;
  font-size: 1.3rem;
  border-radius: 6px;
  background: #f5f5f5;
}

.invitation-box a {
  display: block;
  padding: 10px 12px 7px;
  color: #333333;
  line-height: 1.2;
  font-weight: bold;
  box-sizing: border-box;
}

.invitation-box a:link {
  color: #333333;
}

.invitation-box a:visited {
  color: #333333;
}

.invitation-box a.arrow:after {
  right: 20px;
}

.sidebar-title {
  font-size: 1.7rem;
  margin: 28px 0 16px 0;
}

.menu-item a {
  display: block;
  color: #999999;
  padding: 7px 0;
  font-size: 1.3rem;
}

.menu-item a:link,
.menu-item a:visited {
  color: #999999;
}

.arrow {
  position: relative;
}

.arrow:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  background: url("../../../img/common/icon-arrow-right.png") no-repeat
    center/contain;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-item.active a {
  color: #000000;
  font-weight: bold;
}

.menu-item.active.arrow:after {
  background: url("../../../img/common/icon-arrow-right-bk.png") no-repeat
    center/contain;
}

.menu-list.main .menu-item a {
  color: #333333;
}

@media screen and (max-width: 1024px) {
  .mypage-sidebar {
    width: 200px;
    padding: 0 2%;
  }
  .menu-item a {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 834px) {
  #mypage-content {
    flex-direction: column-reverse;
  }
  .mypage-sidebar {
    width: 100%;
  }
  .menu-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .menu-item a {
    padding: 10px 0;
    color: #333333;
  }
}

/* 右カラム */

.mypage-content {
  width: calc(100% - 240px);
  padding: 40px 4%;
  box-sizing: border-box;
}

.mypage-content-title {
  font-size: 2rem;
}

/* ユーザー情報 */

.profile-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 46px 40px;
  background: #f9f9f9;
  border-radius: 30px;
}

.user-imagebox {
  transform: translateY(-6px);
}

.user-image {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.user-introduction-textbox {
  position: relative;
  width: calc(100% - 340px);
  margin: 0 0 0 24px;
}

.user-name {
  width: 96%;
  font-size: 2.2rem;
  font-weight: bold;
}

a.identification {
  position: relative;
  margin: 5px 0 0 0;
  display: inline-block;
  font-size: 1.1rem;
  color: #004d89;
}

a.identification:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #004d89;
  bottom: -2px;
  left: 0;
  transform: translateY(-50%);
}

.user-introduction-txt {
  width: 96%;
  font-size: 1.3rem;
  color: #999999;
  margin: 14px 0 0 0;
  line-height: 1.5;
  word-break: break-all;
}

a.user-profile-edit {
  position: absolute;
  top: 0;
  right: 10px;
  width: 60px;
  border: 1px solid #999999;
  color: #999999;
  padding: 6px 10px 4px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 4px;
}

.user-post-mute-on,
.user-post-mute-off {
  position: absolute;
  display: inline-block;
  width: 24px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.user-post-mute-on img,
.user-post-mute-off img {
  width: 100%;
  height: auto;
}

.user-rank-block {
  position: relative;
  max-width: 220px;
  padding: 0 0 0 30px;
  margin: 0 0 0 30px;
  box-sizing: border-box;
}

a.user-rank-link {
  display: block;
  color: #000000;
}

.user-rank-block:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 80%;
  background: #e5e5e5;
}

.rank-title {
  font-size: 1.4rem;
}

.rank-status-en {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 10px 0 0 0;
  letter-spacing: 1px;
}

.rank-status-jp {
  margin: 4px 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.rank-status-jp.regular {
  color: #02a4ba;
}

.rank-status-jp.bronze {
  color: #723b12;
}

.rank-status-jp.silver {
  color: #686d73;
}

.rank-status-jp.gold {
  color: #d7b44c;
}

.rank-status-jp.platinum {
  color: #282828;
}

a.rank-privelege-link {
  display: inline-block;
  color: #333333;
  border: 1px solid #333333;
  padding: 4px 12px 3px;
  margin: 10px 0 0 0;
  border-radius: 50px;
  font-size: 1.2rem;
  box-sizing: border-box;
}

.user-rank-block.arrow:after {
  width: 10px;
  height: 16px;
  right: -30px;
}

@media screen and (max-width: 1024px) {
  .mypage-content {
    width: calc(100% - 200px);
  }
  .user-image {
    width: 60px;
    height: 60px;
  }
  .user-introduction-textbox {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 834px) {
  .mypage-content {
    width: 100%;
  }
  #mypage-content {
    width: 100%;
  }
  .user-image {
    width: 90px;
    height: 90px;
  }
  .user-rank-block {
    max-width: 200px;
    padding: 0 0 0 20px;
    margin: 0 0 0 20px;
  }
}

/* 取引状況 */

.transaction-status {
  background: #fafafa;
  padding: 24px 5% 20px;
  box-sizing: border-box;
  width: 96%;
  margin: 50px auto;
  border-radius: 10px;
}

.transaction-status-list {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.transaction-status-item {
  width: 25%;
  text-align: center;
}

.transaction-status-item a {
  color: #333333;
}

.transaction-status-title {
  display: block;
  font-size: 1.2rem;
  color: #444444;
}

.transaction-status-num {
  display: block;
  margin: 8px 0 0 0;
  font-size: 2.2rem;
  font-weight: bold;
}

.transaction-status-item.none {
  opacity: 0.4;
}

.transaction-status-item.none a {
  pointer-events: none;
}

@media screen and (max-width: 834px) {
  .user-rank-block {
    max-width: 200px;
    padding: 0 0 0 20px;
    margin: 0 0 0 20px;
  }
  .transaction-status {
    width: 100%;
    padding: 24px 0 20px;
  }
  .user-introduction-textbox {
    width: calc(100% - 344px);
  }
}

/* お気に入り商品 & 閲覧履歴  */
.mypage-favorite {
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
}

.mypage-content .section-title {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.9rem;
}

.mypage-favorite .post-list {
  box-sizing: border-box;
}

.mypage-content .market .item-list-box .item-list.used .item-block .img-box {
  height: 110px;
}

.mypage-history {
  width: 96%;
  margin: 50px auto 0;
  box-sizing: border-box;
}

.mypage-history .post-list {
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .mypage-content .market .item-list-box .item-list {
    min-width: 130px;
  }
}

@media screen and (max-width: 834px) {
  .mypage-title {
    display: none;
  }
  .invitation-box {
    display: none;
  }
  .mypage-sidebar {
    background: #f5f5f5;
  }
}

/* 各種ページ */

.account-page-title {
  font-size: 2rem;
}

/*
.mypage .user-box {
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  position: relative;
}

.mypage .user-box .user-icon-box {
  display: table-cell;
  vertical-align: top;
}

.mypage .user-box .user-icon-box .user-icon {
  width: 110px;
  height: 110px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.mypage .user-box .user-icon-box .user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mypage .user-box .user-data {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 0 0 0 20px;
}

.mypage .user-box .user-data .user-name {
  font-size: 1.9rem;
  font-weight: bold;
  color: #000;
  box-sizing: border-box;
  margin: 0 0 5px 0;
  width: 75%;
  line-height: 1.35;
}

.mypage .user-box .user-data .user-sns-id {
  color: #999;
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
  max-width: 35%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 20px;
  font-weight: bold;
}

.mypage .user-box .user-data .user-sns-id.instagram-id::before {
  content: " ";
  background-image: url(../../../img/common/sp-instagram-icon-color.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
}

.mypage .user-box .user-data .user-sns-id.twitter-id::before {
  content: " ";
  background-image: url(../../../img/common/sp-twitter-icon-color.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 6px;
  margin: 0 5px 0 0;
}

.mypage .user-box .setting-box {
  position: absolute;
  top: 15px;
  right: 15px;
}

.mypage .user-box .setting-box .setting-button {
  display: block;
  color: #999;
  border: 1px solid #999;
  padding: 10px;
  box-sizing: border-box;
  width: 80px;
  text-align: center;
  border-radius: 5px;
  font-size: 1.2rem;
}

.mypage .user-profile {
  box-sizing: border-box;
  margin: 10px 0 0 0;
}

.mypage .user-profile .text {
  font-size: 1.3rem;
  line-height: 1.6;
}

*/

.mypage .mypage-contents {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.mypage .mypage-contents .con-title {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
  margin: 80px 0 15px 0;
}

.mypage .posts-list .posts-list-box .posts-list-item {
  width: calc((100% / 4) - 10px);
}

/* マイスニーカー */

.mypage .mysneaker-list {
  padding: 0 0 30px 0;
  background: #fff;
}
.mypage .mysneaker-list .mysneaker-list-box {
  margin: 0 0 0 -1.5%;
}

.mypage .mysneaker-list .mysneaker-list-box li {
  width: calc(25% - 10px);
  height: 120px;
  float: left;
  margin: 10px 0 0 10px;
  border-radius: 5px;
  overflow: hidden;
}

.mypage .mysneaker-list .mysneaker-list-box li .mysneaker-list-1box {
  display: block;
}

.mypage
  .mysneaker-list
  .mysneaker-list-box
  li
  .mysneaker-list-1box
  .mysneaker-list-img {
  width: 100%;
  height: 120px;
  display: block;
  position: relative;
  background: #f5f5f5;
  vertical-align: top;
}

.mypage
  .mysneaker-list
  .mysneaker-list-box
  li
  .mysneaker-list-1box
  .mysneaker-list-img
  img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

.mypage
  .mysneaker-list
  .mysneaker-list-box
  li
  .mysneaker-list-1box
  .mysneaker-list-img
  .cover {
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6));
  z-index: 3;
}

.mypage
  .mysneaker-list
  .mysneaker-list-box
  li
  .mysneaker-list-1box
  .mysneaker-list-img
  .item-name {
  font-size: 1rem;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  margin: 7px 7px 5px 7px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 24px;
}

.mypage .mysneaker-list .mysneaker-list-none-text {
  font-size: 1.2rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin: 5px 0 10px;
  line-height: 1.3;
}

/* ----- 設定 ----- */

.user-setting .user-icon-box {
  display: table;
  table-layout: fixed;
}

.user-setting .user-icon-box .user-icon-img {
  display: table-cell;
  vertical-align: top;
}

.user-setting .user-icon-box .user-icon-img-inner {
  width: 100px;
  height: 100px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.user-setting .user-icon-box .user-icon-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.user-setting .user-icon-box .user-icon-button {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 15px;
}

.user-setting .user-icon-box .button {
  display: block;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 10px 0;
  text-align: center;
  width: 100px;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
}

.user-setting .user-icon-box .button.black {
  background: #000;
  color: #fff;
}

.user-setting .user-icon-box .button.black-2 {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  box-sizing: border-box;
}

.user-setting .form-box-type-1 textarea {
  min-height: 100px;
  max-height: 250px;
}

.user-setting .form-box-type-1 li.at-text-box {
  position: relative;
}

.user-setting
  .form-box-type-1
  li.at-text-box
  .label-name-type-1.instagram-icon::before {
  content: " ";
  background-image: url(../../../img/common/profile/instagram-icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px 0 0;
}

.user-setting
  .form-box-type-1
  li.at-text-box
  .label-name-type-1.twitter-icon::before {
  content: " ";
  background-image: url(../../../img/common/profile/x-icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
}

.user-setting
  .form-box-type-1
  li.at-text-box
  .label-name-type-1.tiktok-icon::before {
  content: " ";
  background-image: url(../../../img/common/profile/tiktok-icon.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px 0 0;
}

.user-setting .form-box-type-1 li.at-text-box .input-type-1 {
  padding: 10px 15px 10px 34px;
}

.user-setting .form-box-type-1 li.at-text-box .at-text {
  position: absolute;
  bottom: 13px;
  left: 15px;
  font-family: Avenir;
  color: #999;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}

/* ----- お気に入り ----- */

.mypage .favorites-list {
  background: #fff;
}

.mypage .favorites-list .item-list-box .item-list {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.mypage .favorites-list .item-list-box .item-list:last-child {
  box-shadow: none;
  margin: 0;
}

.mypage .favorites-list .item-list-box .item-list .item-master {
  padding: 10px 30px 10px 15px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  -webkit-align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  background-image: url(../../../img/common/icon-arrow-right.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.mypage .favorites-list .item-list-box .item-list .item-master .item-img-box {
  flex-basis: 20%;
  height: 105px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list
  .item-master
  .item-img-box
  img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -5px;
  margin: auto;
  border-radius: 5px;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list
  .item-master
  .item-img-box.article
  img {
  bottom: 0;
  position: absolute;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
  width: 100%;
  z-index: 1;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list
  .item-master
  .item-description-box {
  flex-basis: 70%;
  margin: 0 0 0 12px;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list
  .item-master
  .item-description-box
  .item-name {
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 30px;
  line-height: 1.2;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list
  .item-master
  .item-description-box
  .item-favorites-num {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.2;
  margin: 6px 0 0 0;
}

.mypage .favorites-list .favorites-more-button {
  display: block;
  text-align: center;
  padding: 20px 0;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: bold;
}

.mypage .favorites-list .favorites-list-none {
  padding: 15px;
}

.mypage .favorites-list .favorites-list-none .none-title {
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin: 5px 0 0;
  line-height: 1.3;
}

.mypage .favorites-list .favorites-list-none .none-text {
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  margin: 6px 0 10px;
  line-height: 1.5;
}

/* モノカブ引っ越しのお知らせPC */
.mypage-monokabu-move {
  width: 100%;
  margin: 50px auto;
}

.mypage-monokabu-move > a {
  display: block;
}

.mypage-monokabu-move img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 1px 1px 3px 1px rgb(0 0 0 / 8%);
}

/* 中古商品のお気に入り表示 */
.mypage
  .favorites-list
  .item-list-box
  .item-list.used
  .item-master
  .item-img-box {
  border-radius: 8px;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list.used.sold
  .item-master
  .item-img-box:before {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
  content: " ";
  display: block;
  background: url(../../../img/common/used-item-sold.png) center/contain
    no-repeat;
  z-index: 1;
}

.mypage
  .favorites-list
  .item-list-box
  .item-list.used
  .item-master
  .item-img-box
  img {
  position: static;
  object-fit: cover;
  height: 100%;
  border-radius: 0;
}

.section-notes {
  background: #ffe3e9;
  color: #ff577b;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 6px 18px 4px;
  box-sizing: border-box;
  border: 1px solid #ff577b;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  .section-notes {
    display: none;
  }
}

/* ランク情報 */
.rank {
  margin: 50px 0;
}
