/*-- PC版表示CSS  --*/

.pc {
  display: block;
}
.sp {
  display: none;
}

/* =============================================

全ページ共通

============================================= */

/* 全体 */
body {
  margin: 0;
  background: #f3f3f1;
  color: #222222;
}

.bg {
  height: 100%;
}

/* ヘッダー */
.line {
  background: #c4d700;
  height: 4px;
}

.header-area {
  display: flex;
  background-color: #ffffff;
  text-align: left;
}
.toppage {
  padding: 7px 0 10px 15px;
}
.header-area a {
  text-decoration: none;
}

.title-area {
  margin-right: auto;
  font-size: 24px;
  font-weight: bold;
  color: #444444;
}

.title-area h2 {
  font-size: 14px;
  margin: 5px 0 -27px 0;
}

.title-area h1 {
  font-size: 33px;
  color: #444444;
}

.large-font {
  font-size: 40px;
  vertical-align: -2px;
  color: #487b1b;
}

button {
  text-align: center;
  background: #c4d700;
  width: 70px;
  height: 70px;
  margin-top: -10px;
  cursor: pointer;
  cursor: hand;
  border: none;
}
button p {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  margin-top: 32%;
}

/* コラムメニュー */
.dropdown {
  margin: 0 0 0 auto;
  position: relative;
}
.dropdown__btn {
  display: block;
  background: none;
  margin: 0 15px 0 0;
  text-align: right;
}
.dropdown__btn.is-open::after {
  content: "";
  width: 100%;
  height: 100%;
  cursor: default;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.dropdown__btn.is-open + .dropdown__body {
  display: block;
  z-index: 5;
}
.dropdown__body {
  display: none;
  width: 220px;
  background: #fff;
  box-shadow: 0 2px 6px 2px rgba(60, 64, 67, 0.149),
    0 1px 2px 0 rgba(60, 64, 67, 0.302);
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: -50px;
}
.dropdown__list {
  margin: 20px 0px;
  padding: 0;
}
.dropdown__item {
  display: block;
}
.dropdown__item-link {
  display: block;
  padding: 1em 1.2em;
  font-size: 0.95em;
  text-decoration: none;
  color: rgb(68, 68, 68);
  font-weight: bold;
}
.dropdown__item-link:hover {
  background: #eeeeee;
}
.dropdown__btn img {
  width: 100%;
}

.column-text {
  position: absolute;
  left: 5px;
  top: 70px;
  font-size: 15px;
  color: #f3a115;
  font-weight: bold;
}

/* フッター */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  margin-top: auto;
}
.footer-area01 {
  margin-top: 30px;
  background-color: #f0ffd2;
  height: 40px;
}
.footer-area02 {
  display: flex;
  justify-content: center;
  background-color: #004730;
  height: 150px;
  padding-top: 30px;
}
.footer-area02 a {
  text-decoration: none;
}
.footer-area02 div {
  color: #fff;
}
.footer-space {
  margin: 0 2%;
  color: #fff;
}

/* =============================================

トップページ 

============================================= */

/* 横幅制御 */
.wide {
  margin: 0 auto;
  max-width: 900px;
}

/* スライダー */

.slick-prev,
.slick-next {
  z-index: 2;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.slider-container {
  margin-top: -45px;
}

#sliderA {
  margin: 0 auto;
  width: 50%;
}

#sliderB {
  margin: 0 auto;
  margin-top: 50px;
}

/* アローカスタマイズ */

.slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: -100px;
  margin-left: -100px;
  padding: 0;
  width: 50px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}

.slick-arrow:hover {
  opacity: 0.7;
}

/* 共通設定 */

.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.slick-next::after,
.slick-prev::after {
  width: 70px;
  height: 70px;
  border-top: 3px solid #999999;
  border-right: 3px solid #999999;
}

/* next */

.slick-next {
  right: 26px;
}

.slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}

/* prev */

.slick-prev {
  left: 26px;
}

.slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}

/* スライダーカスタマイズ */
.slick-dots {
  bottom: -35px;
}

.slick-dots li {
  margin: 0 4px;
  width: 70px;
  height: -10px;
}

.slick-dots li button:before {
  content: "";
  width: 70px;
  height: 8px;
  background: #e0e0e0;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background: #c4d700;
}

/* フェードイン */
.fade1,
.fade2,
.fade3 {
  margin-top: 15px;
}

/* スライダー内-横並び */

.company {
  display: flex;
}
.com1 {
  float: left;
  width: 500px;
  margin: 0px 10px 10px 20px;
}

.com2 {
  float: left;
}

.com3 {
  float: left;
}

/* スライダー内-ローン名 */
.product-name {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 15px;
}

/* スライダー内-チェックマーク */
.checkmark001 {
  padding-left: 26px;
  text-align: left;
  position: relative;
  margin-bottom: 5px;
}

.checkmark001:before,
.checkmark001:after {
  content: "";
  display: block;
  position: absolute;
}

.checkmark001:before {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgb(200, 200, 200);
  left: 0;
  top: 2px;
}

.checkmark001:after {
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  width: 18px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 1px;
  top: 3px;
}
.accent {
  color: rgb(255, 119, 70);
  font-weight: bold;
  font-size: large;
}

/* スライダー内-表 */

tbody {
  background-color: #e4f0f5;
}

table {
  width: 450px;
  table-layout: fixed;
  border-collapse: collapse;
  border: 2px solid rgb(200, 200, 200);
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 0.8rem;
}
td,
th {
  border: 1px solid rgb(190, 190, 190);
  padding: 5px 10px;
}

td {
  background-color: #fef0bd;
  text-align: center;
}

th {
  background-color: #fef7dc;
  font-size: larger;
}
.secondary {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}
.annotation {
  width: 400px;
  text-align: left;
  font-size: smaller;
  text-indent: -1em;
  padding-left: 1em;
  margin: 5px;
}
table dl {
  display: flex;
  list-style: none;
}
table dl dt {
  padding-left: 3px;
}

table dl img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* 申込ボタンエリア */
.application {
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

.app-area {
  display: flex;
}
.app-bn {
  text-align: center;
}
.app-bn img {
  vertical-align: top;
}
.catch {
  font-size: 30px;
  font-weight: bold;
  color: #004730;
  text-align: left;
  margin: 40px 0 0 30px;
}
.marker {
  background: linear-gradient(transparent 80%, #ceee67 0%);
}

/* 申込ボタン */
a.btn_green {
  display: block;
  width: 100%;
  padding: 1.5rem;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0ac903),
    to(#0d8b42)
  );
}
a.btn_green span.bl__text {
  display: block;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
a.btn_green span.bl__text:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 420px;
  bottom: 0;
  margin: auto;
}
a.btn_green span.bl__text:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #0ac903;
  border-right: 3px solid #0ac903;
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 427px;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
a.btn_green:hover {
  filter: opacity(70%);
}

/* ３つのポイント */
.point-area {
  text-align: center;
  margin: 40px 20px 50px 20px;
  padding: 30px 70px;
  background-color: #ffffff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.point-area-title01 {
  margin: 10px auto;
  text-align: center;
  background: #487b1b;
  padding: 10px 10px 7px 10px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 25px;
  width: 60%;
}
.point-area-title02 {
  font-weight: bold;
  color: #444444;
  font-size: 40px;
  position: relative;
  padding: 10px 0 0 0px;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid;
}
.point-area-title02 span {
  font-size: 50px;
  padding: 3px;
  color: #fe8c0a;
}
.point-area-title02:before,
.point-area-title02:after {
  position: absolute;
  top: 100%;
  left: 70%;
  content: "";
  height: 0;
  width: 0;
}
.point-area-title02:before {
  border: 12px solid;
  border-color: transparent;
  border-top-color: black;
  margin-left: -12px;
}

.point-area-title02:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -10px;
}
.column-01-title {
  text-align: left;
  font-size: 20px;
  margin: 20px 0 0 0px;
}
.column-01-title span {
  color: #487b1b;
  font-size: 45px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  vertical-align: middle;
  margin-right: 10px;
}
.column-01 {
  display: flex;
  margin: 5px 0 30px 0;
}
.column-01 span {
  text-align: left;
}
.column-01 img {
  margin-right: 20px;
}
.dashed {
  border-bottom: 1px dashed rgb(117, 117, 117);
}
.continuation {
  border: solid 1px #fe8c0a;
  color: #fe8c0a;
  font-size: 15px;
  font-weight: bold;
  padding: 3px 10px 1px 10px;
  float: right;
  position: relative;
  top: -40px;
}

/* おすすめカードローン */

.recommend-title {
  font-size: 45px;
  font-weight: bold;
  padding: 50px 0 0 0;
  color: #444444;
  text-align: center;
}
.recommend-area {
  margin: 0 auto;
  max-width: 900px;
}
.photo {
  text-align: center;
  padding: 30px;
}
.photo img {
  width: 50%;
}

/* =============================================

コラムページ 

============================================= */

/* ヘッダー背景色部分下げる処理 */
.singlepage {
  padding: 7px 0 80px 15px;
}
/* レイアウト */
.single-section {
  margin: 0 auto;
  display: flex;
  max-width: 1100px;
  margin-top: -50px;
  color: #444;
}
/* 白背景 */
.single-section main {
  border: 1px solid #ebebeb;
  margin-bottom: 50px;
  padding: 50px 80px 80px 80px;
  background: #fff;
  width: 67%;
  border-radius: 20px;
  box-shadow: 2px 2px 4px -2px gray;
  line-height: 190%;
}
/* カテゴリー */
.single-section .category {
  font-size: 14px;
  margin: 10px 0 -15px 0;
}
/* 日付 */
.single-section .day {
  text-align: right;
  font-size: 14px;
  margin-bottom: 5px;
}
/* h1～h4 */
.single-section h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: -5px;
  line-height: 130%;
}
.single-section h2 {
  font-size: 20px;
  margin: 30px 0;
  padding: 2rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
h3 {
  position: relative;
  padding: 10px 10px 0px 23px;
  font-size: 20px;
  margin: 20px 0px 25px 0px;
  background: linear-gradient(transparent 50%, #eeeeee 50%);
}
.single-section h3:before {
  content: "";
  position: absolute;
  top: 60%;
  display: inline-block;
  width: 12px;
  border-top: solid 2px black;
  margin-left: 6px;
}
h3:before {
  left: 0;
}
h4 {
  font-size: 18px;
}
/* サムネイル */
.single-section .thum {
  width: 100%;
  height: 300px;
}
.single-section .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ポイントボックス */
.single-section .point-box {
  margin: 20px 0;
  border: 1px solid #444444;
  padding: 5px 10px 0px 15px;
  background: #eeeeee;
}
.single-section .point-box .point {
  padding: 8px 0px 10px 13px;
  font-weight: bold;
  font-size: 19px;
}
.single-section .line-gray {
  border-top: 1px solid #bbbbbb;
  width: 96%;
  margin: 0 auto;
}
.single-section li {
  line-height: 190%;
}
.single-section .mark-list {
  list-style: "-  ";
  font-weight: bold;
  font-size: 16px;
}

/* 記事テキスト */

.single-section .marker {
  background: linear-gradient(transparent 10%, #ff6 10%);
}
.single-section .marker-bold {
  background: linear-gradient(transparent 40%, #ff6 40%);
  font-weight: bold;
}
.single-section ul {
  line-height: 240%;
}
.single-section li span {
  font-weight: bold;
  line-height: 240%;
}
.single-section ol {
  list-style-type: decimal;
  line-height: 240%;
}
.text-annotation {
  font-size: 12px;
  line-height: 140%;
}
.single-section table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  margin: 15px 0px;
  border-collapse: collapse;
}
.single-section table th {
  font-size: 15px;
  background-color: #eeeeee;
  padding: 7px;
  text-align: center;
}
.single-section table tr td {
  padding: 7px;
  font-size: 16px;
  background-color: #fff;
  padding: 10px 5px;
  text-align: left;
}

/* タグエリア */

.tag-list {
  margin: 70px 0 10px 0;
  background-image: linear-gradient(
    to right,
    #000,
    #000 2px,
    transparent 2px,
    transparent 8px
  ); /* 幅2の線を作る */
  background-size: 8px 1px; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}
.tag-list span {
  position: absolute;
  padding-left: 5px;
  font-size: 15px;
  font-weight: bold;
}

.tag::before {
  content: "#";
}
.tag {
  display: table;
  font-size: 12px;
  font-weight: bold;
  border: solid 1px #999999;
  border-radius: 10px;
  padding: 1px 5px;
}

/* ライトナビ */
.single-section nav {
  width: 33%;
  margin: 75px 0 0 20px;
}
nav .title-01,
nav .title-02 {
  font-size: 24px;
  color: #666;
  font-weight: bold;
}
nav .title-02 {
  margin-top: 60px;
}
nav .title-01:before,
nav .title-02:before {
  content: "－";
}
nav .title-01 span,
nav .title-02 span {
  color: #487b1b;
}
nav ul {
  list-style: none;
  padding: 10px 0 0 10px;
}
nav li {
  display: flex;
  align-items: center;
  padding-bottom: 0px;
  margin-bottom: 10px;
  background-image: linear-gradient(
    to right,
    #999,
    #999 3px,
    transparent 2px,
    transparent 8px
  ); /* 幅2の線を作る */
  background-size: 6px 1px; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}
nav .column-list {
  font-weight: normal;
  padding-left: 10px;
  line-height: 140%;
}
nav a {
  text-decoration: none;
  color: #444;
}
.advertisement-area {
  text-align: center;
  padding: 20px 0;
}
.advertisement-area .advertisement {
  width: 85%;
}
