@charset "UTF-8";
/**
 * レスポンシブのブレイクポイント設定
 */
/*
COLORS
================================================ */
:root {
  --pink: #F279A2;
  --blue: #1B6EB1;
  --sky-blue: #56ADF0;
  --orange: #ED794D;
  --green: #008B80;
  --yellow: #FFDC5A;
  --light-blue: #F2FAFF;
  --light-green: #E4E8E5;
  --light-grey: #F7F7F7;
  --placeholder: #9B9B9B;
  --grey: #ddd;
  --navy: #2E3180;
  --black: #333;
  --white: #fff;
  --gradation-orange: linear-gradient(180deg, #EA8863, #CC5223);
  --gradation-orange_hover: linear-gradient(180deg, #ea7b52, #cd4510);
  --gradation-blue: linear-gradient(180deg, #1C96CE, #1F67AF);
  --gradation-blue_hover: linear-gradient(180deg, #0b8fcc, #0154a7);
}

/*
住宅ローンプラス
================================================ */
#plus {
  padding-bottom: 40px;
}
#plus .note {
  text-align: left;
}
@media (769px <= width) {
  #plus .note {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (width < 769px) {
  #plus .note {
    margin: 8vw auto;
    font-size: 2.667vw;
    line-height: 1.7;
  }
}
#plus .service-tit {
  text-align: center;
  margin: 0 auto 20px auto;
}
@media (width < 769px) {
  #plus .service-tit {
    max-width: 90%;
    margin: 5% auto;
  }
}
@media (769px <= width) {
  #plus .service-tit img {
    max-width: 400px;
  }
}
@media (width < 769px) {
  #plus .service-tit img {
    max-width: 90%;
  }
}
#plus .service-tit p {
  color: var(--blue);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (769px <= width) {
  #plus .lead {
    text-align: center;
  }
}
@media (width < 769px) {
  #plus .lead {
    text-align: left;
    margin: 5%;
  }
}
#plus .plus-wrap {
  margin: 0 auto;
}
@media (769px <= width) {
  #plus .plus-wrap {
    width: 900px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (width < 769px) {
  #plus .plus-wrap {
    width: 100%;
  }
}
#plus .plus-wrap .plus-box {
  background: var(--light-grey);
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  margin: 10px 0;
  text-align: left;
}
@media (769px <= width) {
  #plus .plus-wrap .plus-box {
    width: 49%;
  }
}
@media (width < 769px) {
  #plus .plus-wrap .plus-box {
    width: 90%;
    margin: 10px 5%;
  }
}
#plus .plus-wrap .plus-box h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 160%;
}
@media (769px <= width) {
  #plus .plus-wrap .plus-box:first-child {
    width: 100%;
    display: flex;
  }
}
@media (769px <= width) {
  #plus .plus-wrap .plus-box:first-child .plus-img {
    width: 30%;
    height: auto;
    margin-right: 20px;
  }
}
@media (width < 769px) {
  #plus .plus-wrap .plus-box:first-child .plus-img {
    width: 50%;
    margin: 10px auto;
  }
}
#plus .plus-wrap .plus-box h5 {
  margin: 30px 0 10px 0;
  font-weight: bold;
  color: var(--blue);
}
#plus .plus-wrap .plus-box p {
  margin-bottom: 10px;
}