@charset "UTF-8";
/*=============================
font
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*=============================
color
=============================*/
/*=============================
responsive
=============================*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*=============================
common
=============================*/
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  background-color: #fff;
  color: #333;
  font-family: sans-serif;
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1 {
  font-feature-settings: "palt";
}

h2 {
  font-size: 3rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 959px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: all ease 0.5s;
}

.inner {
  width: 85%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.caption {
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .caption {
    font-size: 8px;
  }
}

/*=============================
header
=============================*/
header {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header {
    padding: 13px 15px;
  }
}
header .header-l {
  width: 170px;
}
@media screen and (max-width: 768px) {
  header .header-l {
    width: 110px;
  }
}
header .header-r {
  width: 230px;
}
@media screen and (max-width: 768px) {
  header .header-r {
    width: 150px;
  }
}

/*=============================
売り手共通
=============================*/
.section {
  padding: 70px 0 50px;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 40px 0 30px;
  }
}
.section h1 {
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
}
.section h2 {
  font-family: "Shippori Mincho", serif;
  color: #005091;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.section p {
  text-align: justify;
  margin: 30px auto 40px;
}
@media screen and (max-width: 768px) {
  .section p {
    margin: 10px auto 20px;
  }
}

.pt0 {
  padding-top: 0px;
}

.bgg {
  background-color: #f7f7f7;
}

.red {
  color: #b10011;
}

.blue {
  color: #005091;
}

.red-line {
  border-bottom: 2px solid #b10011;
}

.small {
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .small {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

.mt {
  margin-top: 70px;
}

.mt_02 {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .mt_02 {
    margin-top: 30px;
  }
}

.de_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .de_wrapper {
    display: block;
  }
}
.de_wrapper img {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .de_wrapper img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.de_wrapper p {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .de_wrapper p {
    width: 100%;
  }
}

/*=============================
top
=============================*/
.top {
  background: linear-gradient(#fff, #e0e0e0);
}
.top .top-title {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top .top-title {
    width: 100%;
  }
}
.top .top-title .h1-wrap {
  max-width: 420px;
  display: flex;
  align-items: center;
  margin: 0 auto 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top .top-title .h1-wrap {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.top .top-title .h1-wrap img {
  width: 25%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top .top-title .h1-wrap img {
    width: 30%;
    max-width: 120px;
  }
}
.top .top-title .h1-wrap h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #005091;
}
@media screen and (max-width: 959px) {
  .top .top-title .h1-wrap h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top .top-title .h1-wrap h1 {
    margin-top: 20px;
    padding-left: 30px;
    width: 90%;
    font-size: 2.2rem;
    text-align: center;
  }
}
.top .top-title h2 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top .top-title h2 {
    margin-top: 10px;
  }
}
.top .top_graph {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .top .top_graph {
    margin-top: 40px;
  }
}
.top .top_graph img {
  width: 95%;
  margin: 0 auto 50px;
}

/*=============================
low_interest
=============================*/
.low_interest h3 {
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .low_interest h3 {
    font-size: 1.8rem;
  }
}
.low_interest h3 span {
  font-weight: 600;
  color: #b10011;
}
.low_interest .h3_border {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .low_interest .h3_border {
    width: 90%;
  }
}
.low_interest .h3_border:before,
.low_interest .h3_border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #333;
}
.low_interest .h3_border:before {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .low_interest .h3_border:before {
    margin-right: 2rem;
  }
}
.low_interest .h3_border:after {
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .low_interest .h3_border:after {
    margin-left: 2rem;
  }
}
.low_interest .market-graph01 {
  margin-top: 50px;
}
.low_interest .market-graph01 h3 span {
  color: #005091;
}
.low_interest .market-graph02 {
  margin: 50px auto;
}
.low_interest img {
  margin-top: 30px;
}

/*=============================
decision
=============================*/
.decision h2 {
  padding-left: 20px;
}

/*=============================
buysell
=============================*/
.buysell {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .buysell {
    padding-bottom: 10px;
  }
}
.buysell h2 {
  color: #333;
}
@media screen and (max-width: 768px) {
  .buysell h2 {
    margin-bottom: 30px;
    font-size: 1.7rem;
  }
}
.buysell .market-graph02 {
  margin: 70px 0;
}
@media screen and (max-width: 768px) {
  .buysell .market-graph02 {
    margin: 35px 0;
  }
}

/*=============================
map
=============================*/
/*=============================
contact03
=============================*/
.contact03 .contact-title {
  color: #333;
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contact03 .contact-title {
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.contact03 .satisfaction {
  max-width: 1150px;
}
@media screen and (max-width: 768px) {
  .contact03 .satisfaction {
    max-width: 500px;
  }
}
.contact03 .satisfaction .cs_plain {
  color: #333;
  margin-bottom: 10px;
}
.contact03 .satisfaction .cs_blue {
  background-color: #000036;
  color: #fff;
  font-size: 2.4rem;
  padding: 5px;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .contact03 .satisfaction .cs_blue {
    font-size: 1.6rem;
    padding: 10px;
    padding-left: 20px;
    line-height: 1.3;
  }
}
.contact03 .satisfaction .satisfaction_img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact03 .satisfaction .satisfaction_img {
    width: 90%;
    max-width: 450px;
  }
}
.contact03 .satisfaction .satisfaction_img p {
  margin-top: 10px;
  text-align: left;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact03 .satisfaction .satisfaction_img p {
    letter-spacing: 0px;
    font-size: 8px;
  }
}
.contact03 .contact-btn {
  margin-top: 50px;
}
.contact03 .contact-btn img {
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .contact03 .contact-btn img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
  }
}
.contact03 .access_map01 {
  width: 100%;
  height: 600px;
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .contact03 .access_map01 {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .contact03 .access_map01 {
    margin-top: 60px;
    height: 300px;
  }
}
.contact03 .access_map01 iframe {
  width: 100%;
  height: 100%;
}

/*=============================
footer
=============================*/
footer {
  padding: 0 0 50px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 0 30px;
  }
}
footer .footer-wrapper {
  margin: 0 auto;
  width: 65%;
  max-width: 550px;
}
@media screen and (max-width: 959px) {
  footer .footer-wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-wrapper {
    width: 75%;
    max-width: 380px;
  }
}/*# sourceMappingURL=style.css.map */