@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ===============================
フォント設定
=============================== */
:root {
  --font_noto_sans: 'Noto Sans JP', sans-serif;
  --font_noto_serif: 'Noto Serif JP', sans-serif;
  --font_libre: 'Libre Baskerville', serif;
  --navy: #254280;
  --light_blue: #D5DBEB;
  --pale_blue: #EEEEF4;
}
.font_libre {
  font-family: 'Libre Baskerville', serif;
}
/* ===============================
レイアウト・基本
=============================== */
@media screen and (max-width: 599px) {
  #resale_page {
    width: calc(100% + 16px);
    margin: 0 -8px;
    padding-bottom: 0.5rem;
  }
}
#resale_page h2,
#resale_page h3,
#resale_page h4{
  line-height: 1.8em!important;
  letter-spacing: 0.05em!important;
}
#resale_page p,
#resale_page p span {
  line-height: 2.2em!important;
  letter-spacing: 0.05em!important;
  font-family: var(--font_noto_sans)!important;
  font-weight: 400;
  font-size: 1.4rem;
}
#resale_page li {
  letter-spacing: 0.05em!important;
  font-family: var(--font_noto_sans)!important;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  #resale_page h2,
  #resale_page h3,
  #resale_page h4 {
    line-height: 1.5em!important;
    letter-spacing: 0.02em!important;
  }
  #resale_page p,
  #resale_page p span,
  #resale_page li {
    letter-spacing: 0em!important;
  }
}
/* ===============================
リンク設定
=============================== */
#resale_page a {
  text-decoration: none!important;
}
#resale_page a:hover {
  color: inherit!important;
}
/* ===============================
カラム
=============================== */
.resale_2col_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.resale_col2_box {
  width: 48.5%;
  display: flex;
  justify-content: space-between;
  border: solid 1px #CCC;
  padding: 2rem;
  margin-bottom: 3%;
}
@media screen and (max-width: 1430px) {
  .resale_col2_box {
    padding: 1rem;
  }
}
@media screen and (max-width: 699px) {
  .resale_col2_box {
    width: 100%;
    margin-bottom: 6%;
  }  
}
.resale_col2_img {
  width: 170px;
}
.resale_col2_img img {
  object-fit: cover;
  width: 170px;
  height: 170px;
}
@media screen and (max-width: 1430px) {
  .resale_col2_img {
    width: 100px;
  }
  .resale_col2_img img {
    object-fit: cover;
    width: 100px;
    height: 100px;
  }
}
.resale_col2_txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2rem;
}
@media screen and (max-width: 1430px) {
  .resale_col2_txt {
    margin-left: 1rem;
  }
}
#resale_page .resale_col2_txt h2 {
  font-size: 1.7rem;
  line-height: 1.6!important;
  order: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 599px) {
  #resale_page .resale_col2_txt h2 {
    font-size: 1.5rem;
    font-weight: 600!important;
  }  
}
#resale_page p.resale_date {
  font-size: 1.4rem!important;
  font-weight: 500!important;
  border-bottom: dotted 1px #707070;
  display: inline-block;
  margin-bottom: 0.6rem;
  order: -1;
}
@media screen and (max-width: 599px) {
  #resale_page p.resale_date {
    font-size: 1.3rem!important;
  }  
}
#resale_page .resale_col2_txt dl {
  font-size: 1.3rem;
  font-family: var(--font_noto_sans);
  display: flex;
  align-items: flex-start;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 599px) {
  #resale_page .resale_col2_txt dl {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
}
.resale_col2_txt dl dt {
  background-color: #000;
  color: #FFF;
  padding: 0 1rem;
  width: 50px;
  text-align: center;
  white-space: nowrap;
}
.resale_col2_txt dd {
  padding-left: 0.5rem;
  flex: 1;
}
#resale_page .resale_col2_txt dd p {
  display: inline-block;
  font-size: 1.3rem!important;
  line-height: 1.4!important;
}
@media screen and (max-width: 599px) {
  #resale_page .resale_col2_txt dd p {
    font-size: 1.2rem!important;
  }
}
.resale_col2_txt dl p:after {
  content: '/';
}
.resale_col2_txt dl p:last-child:after {
  content:'';
  margin: 0;
}
#resale_page p.resale_price {
  font-size: 1.7rem!important;
  font-family: var(--font_noto_serif)!important;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #resale_page p.resale_price {
    font-size: 1.4rem!important;
  }  
}
#resale_page p.resale_price:after {
  content: '（税込）';
  font-size: 1.3rem!important;
}
#resale_page p.resale_price:before {
  content: '\0a5';
}


