@charset "utf-8";
.content-area {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
}
.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: calc(100% - 20px);
}
/*LOAN SIMULATION*/
.sec-head {
  background: linear-gradient(to right,  rgba(79,40,0,1) 0%,rgba(121,80,0,1) 50%,rgba(79,40,0,1) 100%);
  padding: 25px 0;
}
.sec-head > h2 > span {
  color: #FFF;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec-head > h2 > span:first-child {
  font-size: 24px;
  font-weight: 500;
}
.sec-head > h2 > span:last-child {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .sec-head { padding: 35px 0; }
}
.sec-loan { padding: clamp(40px, 4.16666667vw, 80px) 0 0;}
.sec-loan h2 {
  font-size: clamp(20px, 2.0833333333333333333vw, 40px);
  letter-spacing: 0.2em;
  line-height: 1.75;
  color: #8c7d5a;
  font-weight: 400;
  margin-bottom: clamp(40px, 4.16666667vw, 80px);
}

.list-variations {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: clamp(30px, 4.6875vw, 90px);
}
.list-variations li {
  background-color: #f0efea;
  padding: clamp(20px, 2.08333333vw, 40px);
  width: calc(100% / 2 - 40px);
}
@media screen and (max-width:1024px) {
  .list-variations { gap: 40px;}
  .list-variations li { width: calc(100% / 2 - 20px); }
}
@media screen and (max-width:767px) {
  .list-variations {
    flex-direction: column;
    gap: 30px;
  }
  .list-variations li {
    padding-bottom: 30px;
    width: 100%;
  }
}
.list-btns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.list-btns .btn {
  background-color: #8c7d5a;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.729166667vw, 14px);
  /*font-size: clamp(12px, 0.729166667vw, 14px);*/
  font-weight: 500;
  line-height: 1.3;
  padding: 20px 6px;
  text-align: center;
  text-decoration: none;
  transition: .5s opacity;
  width: calc(100% / 2 - 10px);
}
.list-btns .btn:hover { opacity: 0.7; }
.list-btns .btn > span { display: inline-block;}
@media screen and (max-width:767px) {
  .list-btns { flex-direction: column; gap: 10px; margin-top: 15px; padding: 0 10px; }
  .list-btns .btn { width: 100%}
}

.c-notes > img { width: clamp(300px, 23.6979167vw, 455px); }