@charset "utf-8";
/* CSS Document for loan */

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1200px;

  --color-main: #F5D500;
  --color-red: #E70078;
  --color-orange: #FFA300;
  --color-yellow: #F5D500;
  --color-paleyellow: #FFF8CA;
  --color-navy: #030060;
  --color-blue: #0066CC;
  --color-lightblue: #00A7CB;
  --color-paleblue: #D7EAEE;
  --color-black: #1F1F1F;
  --color-charcoal: #444444;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #CCC;
  --color-palegray: #E0E0E0;
  --color-whitegray: #F0F0F0;

  --rad-common: 12px;

  --font-en: Arial, Helvetica, "sans-serif";
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
}

@media print, screen and (min-width: 768px) {
  :root {
    --gutter-supernarrow: 20px;
    --gutter-narrow: 40px;
    --gutter: 60px;
    --gutter-wide: 80px;
    --gutter-superwide: 120px;

    --font-xxlarge: 48px;
    --font-xlarge: 32px;
    --font-large: 24px;
    --font-medium: 18px;
    --font-normal: 16px;
    --font-sub: 14px;
    --font-small: 13px;
    --font-xsmall: 12px;
    --font-xxsmall: 11px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 10px;
    --gutter-narrow: 20px;
    --gutter: 40px;
    --gutter-wide: 60px;
    --gutter-superwide: 80px;

    --font-xxlarge: 28px;
    --font-xlarge: 22px;
    --font-large: 18px;
    --font-medium: 16px;
    --font-normal: 14px;
    --font-sub: 13px;
    --font-small: 12px;
    --font-xsmall: 11px;
    --font-xxsmall: 10px;
  }
}


/*==================================================
  HEADER common
==================================================*/
.header {
  display: flex;
  align-items: center;
}

.header__logo a {
  display: block;
  width: 100%;
  height: auto;
}

.header__btnlist {
  display: flex;
}

.header__btnitem__form {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: #FFF;
  font-weight: 999;
}

.header__btnitem__line {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #06C755;
}


/*==================================================
  FIRSTVIEW common
==================================================*/
.firstview {
  position: relative;
  background: url(../img/loan/bg_fv.webp) repeat top left;
  padding: var(--gutter-narrow) 0;
}

.firstview__inner {
  text-align: center;
}

.firstview__inner picture {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/*==================================================
　CALL-TO-ACTION common
==================================================*/
.call-to-action {
  background: var(--color-navy);
  position: relative;
}

.call-to-action::before {
  content: "";
  display: inline-block;
  width: 100%;
  background: url(../img/loan/bg_stripe-navy.webp) repeat-x left center / auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.call-to-action__inner {
  text-align: center;
}

.call-to-action__ttl {
  display: inline-block;
  text-align: center;
  font-weight: 900;
  font-size: var(--font-xlarge);
  color: #FFF;
  position: relative;
}

.call-to-action__ttl::before,
.call-to-action__ttl::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  clip-path: polygon(0 0,50% 0,25% 100%);
  background: var(--color-yellow);
  position: absolute;
  bottom: 0;
}

.call-to-action__ttl::before {
  left: -30px;
  transform: rotate(-30deg);
}

.call-to-action__ttl::after {
  right: -40px;
  transform: translateY(6px) rotate(30deg);
}

.call-to-action__btn,
.call-to-action__call {
  width: 95%;
  max-width: 900px;
  margin: var(--gutter-supernarrow) auto;
}

.call-to-action__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gutter-supernarrow);
}

.call-to-action__call {
  border: solid 2px #FFF;
  border-radius: var(--rad-common);
  overflow: hidden;
}

.call-to-action__call__ttl {
  background: #FFF;
  text-align: center;
  color: var(--color-navy);
  font-weight: 900;
  font-size: var(--font-medium);
  padding: 0.5em;
}

.call-to-action__call__ttl img {
  margin-right: 0.5em;
  filter: brightness(0) saturate(100%) invert(8%) sepia(60%) saturate(5986%) hue-rotate(225deg) brightness(82%) contrast(105%);
}

.call-to-action__call__inner {
  padding: var(--gutter-supernarrow);
  color: #FFF;
}

.call-to-action__call__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px var(--gutter-supernarrow);
}

.call-to-action__call__item {
  font-size: 0;
}

.call-to-action__call__item__label {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--font-normal);
  width: 6em;
  padding: 0.5em 0;
  font-weight: 900;
  border: solid 1px #FFF;
  line-height: 1;
  text-align: center;
}

.call-to-action__call__item__cont {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--font-xlarge);
  font-weight: bold;
  line-height: 1;
  margin-left: 5px;
  text-align: left;
}

.call-to-action__call__bizhour {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.call-to-action__call__bizhour > div{
  display: flex;
  justify-content: center;
}


/*==================================================
　PROBLEM common
==================================================*/
.problem__inner {
  background: url(../img/loan/bg_problem.webp) repeat left top;
}

.problem__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.problem__item {
  background: url(../img/loan/bg_problem_item.webp) no-repeat right 5px bottom 5px #FFF;
  border-radius: var(--rad-common);
  text-align: center;
  font-size: var(--font-medium);
  position: relative;
}

.problem__item__label {
  display: block;
  position: absolute;
  left: 0;
}

.problem__item__cont .emp {
  font-weight: 900;
  font-size: 1.2em;
}

.problem__catchbox {
  padding: var(--gutter-narrow) 0;
}

.problem__catchbox__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
}

.problem__catchbox__ttl__item {
  background: #FFF;
  font-weight: 900;
  padding: 0 0.5em;
}

.problem__catchbox__ttl__item .emp {
  color: var(--color-red);
  font-size: 1.2em;
}


/*==================================================
  CASE common
==================================================*/
.case--main {
  background: var(--color-paleyellow);
  padding: var(--gutter) 0;
  position: relative;
}

.case--main::before,
.case--main::after {
  content: "";
  display: inline-block;
  width: 50%;
  background: var(--color-navy);
  position: absolute;
  z-index: 0;
}

.case--main::before {
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
  top: 0;
  left: 0;
}

.case--main::after {
  clip-path: polygon(100% 100%, 0% 0%, 100% 0%);
  top: 0;
  right: 0;
}

.case__ttl {
  margin: 0 auto var(--gutter-supernarrow);
}

.case__catch {
  font-weight: 900;
}

.case__item {
  background: #FFF;
  border-radius: var(--rad-common);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

.case__item:nth-child(n+2) {
  margin-top: var(--gutter);
}

.case__item__numbering {
  display: flex;
  align-items: center;
  position: absolute;
}

.case__item__numbering__profile {
  background: var(--color-navy);
  font-weight: 900;
  color: #FFF;
  font-size: var(--font-medium);
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 6px;
}

.case__item__subttl {
  color: var(--color-charcoal);
  font-weight: 900;
  font-size: var(--font-large);
  margin: 1em 0 0.5em;
  padding-left: 2em;
  background: url(../img/loan/icon_pict_trouble.webp) no-repeat top left / 1.5em auto;
}

.case__item__ttl {
  display: inline;
  font-weight: 900;
  font-size: var(--font-xlarge);
  line-height: 1.75;
  background: var(--color-main);
  position: relative;
}

.case__item__ttl::before {
  content: "";
  display: inline-block;
  background: var(--color-red);
  clip-path: polygon(0 20.5%, 57.6% 20.5%, 57.6% 0, 100% 50%, 57.6% 100%, 57.6% 79.5%, 0 79.5%);
  position: absolute;
  top: 0;
}

.case__item__ttl .emp {
  color: var(--color-red);
}

.case__item__outline {
  margin: var(--gutter-supernarrow) 0 var(--gutter-narrow);
}

.case__item__outline__item {
  display: flex;
  align-items: center;
  gap: 0 1em;
  font-size: var(--font-medium);
}

.case__item__outline__item.item--price {
  color: var(--color-lightblue);
}

.case__item__outline__item__label {
  border: solid 1px var(--color-black);
  line-height: 1;
  padding: 0.5em 0;
}

.case__item__outline__item__label.label--price {
  border-color: var(--color-lightblue);
}

.case__item__outline__item__cont.cont--price span {
  font-size: var(--font-xlarge);
  font-weight: bold;
}

.case__item__itvw {
  margin-bottom: var(--gutter-narrow);
  padding-top: var(--gutter-narrow);
  border-top: dotted 4px var(--color-navy);
}

.case__item__itvw__ttl {
  font-size: var(--font-xlarge);
  font-weight: 900;
  padding-left: 0.5em;
  border-left: solid 6px var(--color-lightblue);
  margin-bottom: 1em;
}

.case__item__itvw__txt.txt--blank {
  margin-top: 1.5em;
}

.case__item__point__ttl {
  display: flex;
}

.case__item__point__ttl__sub {
  background: #FFF;
  border: solid 2px var(--color-orange);
  color: var(--color-orange);
  text-align: center;
}

.case__item__point__ttl__sub .image {
  display: inline-block;
  vertical-align: middle;
  width: calc(var(--font-large) * 1.3);
  margin-right: 5px;
}

.case__item__point__ttl__sub .font_en {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  font-size: var(--font-large);
}

.case__item__point__ttl__main {
  background: var(--color-orange);
  color: #FFF;
  font-weight: 900;
  font-size: var(--font-medium);
}

.case__item__point__inner {
  background: var(--color-paleyellow);
  padding: var(--gutter-supernarrow);
}

.case__item__point__payment {
  display: flex;
  gap: 0.5em 1em;
}

.case__item__point__payment__label {
  font-weight: bold;
  color: #FFF;
  font-size: var(--font-medium);
  line-height: 1;
  padding: 0.5em 1em;
}

.case__item__point__payment__label.label--before {
  background: var(--color-gray);
}

.case__item__point__payment__label.label--after {
  background: var(--color-orange);
}

.case__item__point__payment__cont__summery {
  font-weight: 900;
  font-size: var(--font-medium);
}

.case__item__point__payment__cont__summery span {
  font-weight: bold;
  font-size: var(--font-large);
}

.case__item__point__catch {
  background: #FFF;
  font-weight: 900;
  text-align: center;
  position: relative;
  border-radius: 50vh;
  border: solid 2px var(--color-red);
  font-size: var(--font-medium);
  padding: 0.5em;
}

.case__item__point__catch:before {
  content: "";
  display: inline-block;
  border: solid 10px transparent;
  border-bottom: solid 16px var(--color-red);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.case__item__point__catch .emp {
  color: var(--color-red);
}

.case__item__point__catch .font_en {
  font-size: var(--font-large);
  font-weight: bold;
}

.case--other {
  padding-bottom: var(--gutter);
  max-width: 100%;
  overflow: hidden;
}

.case__ttl--other {
  padding: 1em 1em calc(1em - 10px) 1em;
  line-height: 1;
  text-align: center;
  font-weight: 900;
  color: #FFF;
  font-size: var(--font-xlarge);
  background: linear-gradient(60deg, var(--color-navy) 0%, var(--color-navy) 50%, #454379 50%, #454379 100%);
}

.case__ttl--other::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 10px 0;
  background: url(../img/loan/icon_pict_happy.webp) no-repeat center center / contain;
}

.case__list--other {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.case__item--other {
  background: #FFF;
  border-radius: var(--rad-common);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
  position: relative;
}

.case__item--other:before {
  content: "";
  display: inline-block;
  width: 110px;
  height: 55px;
  background: var(--color-navy);
  border-top-left-radius: 50vh;
  border-top-right-radius: 50vh;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.case__item__numbering--other {
  width: 70px;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}

.case__item__ttl--other,
.case__item__subttl--other {
  font-weight: 900;
}

.case__item__subttl--other {
  font-size: var(--font-medium);
  color: var(--color-charcoal);
}

.case__item__ttl--other {
  display: inline;
  font-weight: 900;
  font-size: var(--font-large);
  line-height: 1.75;
  background: var(--color-main);
  position: relative;
  margin-left: 30px;
}

.case__item__ttl--other::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 28.3px;
  clip-path: polygon(0 16.4%, 43.4% 16.4%, 43.4% 0, 100% 50%, 43.4% 100%, 43.4% 83.6%, 0 83.6%);
  background: var(--color-red);
  position: absolute;
  left: -30px;
  top: 0;
}

.case__item__outline--other {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: dotted 4px var(--color-navy);
  padding-bottom: var(--gutter-supernarrow);
  margin: var(--gutter-supernarrow) 0;
}

.case__item__outline__item--other {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.case__item__outline__item__label--other {
  border: solid 1px var(--color-black);
  line-height: 1;
  padding: 0.5em 0;
}

.case__item__outline__item--payment {
  display: flex;
  gap: 0 1em;
}

.case__item__outline__item__label--payment {
  border: solid 1px var(--color-navy);
  text-align: center;
  line-height: 1;
  padding: 0.5em 0;
}

.case__item__outline__item__label--payment.summary {
  background: var(--color-navy);
  color: #FFF;
}

.case__item__outline__item__label--payment.monthly {
  color: var(--color-navy);
}

.case__item__outline__item__cont--payment {
  color: var(--color-navy);
  font-weight: 900;
}

.case__item__outline__item__cont--payment span.font_en {
  font-size: var(--font-large);
  font-weight: bold;
  line-height: 1;
}

.case__item__outline__item__cont--payment span.bonus {
  font-weight: 500;
  color: var(--color-black);
  display: block;
}

.case__item__itvw__txtbox--other {
  font-size: var(--font-sub);
  background: var(--color-whitegray);
}

.case__item__itvw__txt--other {
  padding: 1em;
}

.case__item__itvw__txt--other .emp {
  border-bottom: dotted 2px var(--color-red);
}


/*==================================================
  VOICE common
==================================================*/
.voice__inner {
  position: relative;
  padding: var(--gutter) 0;
}

.voice__inner::before,
.voice__inner::after {
  content: "";
  display: inline-block;
  background: var(--color-paleyellow);
  position: absolute;
  z-index: -1;
}

.voice__inner::before {
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
  top: 0;
  left: 0;
}

.voice__inner::after {
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  bottom: 0;
  right: 0;
}

.voice__ttl {
  background: url(../img/loan/bg_voice_ttl.webp) repeat-x left top / auto 100% var(--color-main);
  text-align: center;
  padding: var(--gutter-supernarrow);
}

.voice__ttl img {
  width: 100%;
  max-width: 613px;
}

.voice__item {
  background: #FFF;
  border-radius: var(--rad-common);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}

.voice__item__article__ttl {
  font-size: var(--font-large);
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 0.5em;
}

.voice__item__article__profile {
  display: inline-block;
  position: relative;
  font-size: var(--font-medium);
  font-weight: 900;
  line-height: 1;
  border: solid 1px var(--color-black);
  padding: 0.5em 1em;
}

.voice__item__article__profile:after {
  content: "★★★★★";
  color: var(--color-red);
  position: absolute;
  width: 5em;
  left: calc(100% + 0.5em);
}

.voice__item__article__txt {
  margin-top: 1em;
}


/*==================================================
  COMPANY common
==================================================*/
.company__ttlwrap {
  background: var(--color-main);
  position: relative;
}

.company__ttlwrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  background: url(../img/loan/bg_stripe-yellow.webp) repeat-x left center / auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.company__introbox__ttl {
  font-weight: 900;
  color: var(--color-navy);
}

.company__introbox__ttl > span {
  display: block;
}

.company__introbox__ttl__sub {
  font-size: var(--font-large);
}

.company__introbox__ttl__main {
  font-size: var(--font-xlarge);
}

.company__introbox__txtbox {
  margin-top: var(--gutter-narrow);
}

.company__introbox__txtbox__ttl {
  font-size: var(--font-medium);
  font-weight: 900;
  margin-bottom: 1em;
}

.company__introbox__txtbox__txt {
  margin-bottom: 1em;
}

.company__meritbox__ttl {
  text-align: center;
  font-size: var(--font-xlarge);
  margin-bottom: calc(1em + 12px);
}

.company__meritbox__ttl__inner {
  font-weight: 900;
  background: var(--color-yellow);
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 0.5em 0;
  width: 80%;
  max-width: 400px;
}

.company__meritbox__ttl__inner::after {
  content: "";
  display: inline-block;
  border: solid 12px transparent;
  border-top: solid 12px var(--color-yellow);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.company__meritbox__list {
  display: flex;
  justify-content: center;
  gap: var(--gutter-narrow);
  flex-wrap: wrap;
}

.company__meritbox__item {
  background: #FFF;
  border-radius: var(--rad-common);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
  overflow: hidden;
  position: relative;
}

.company__meritbox__item__number {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 9;
}

.company__meritbox__item__txtbox__ttl {
  font-weight: bold;
  font-size: var(--font-medium);
  text-align: center;
  margin-bottom: 0.5em;
}


/*==================================================
  FLOW common
==================================================*/
.flow {
  background: url(../img/loan/bg_flow.webp);
  background-size: 100% auto;
  padding: var(--gutter) 0;
  margin-top: var(--gutter-wide);
}

.flow__ttl {
  text-align: center;
  font-size: var(--font-xlarge);
  margin-top: calc(var(--gutter)* -1 - 30px);
  margin-bottom: calc(1em + 12px);
}

.flow__ttl__inner {
  font-weight: 900;
  background: var(--color-yellow);
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 0.5em 0;
  width: 80%;
  max-width: 400px;
}

.flow__ttl__inner::after {
  content: "";
  display: inline-block;
  border: solid 12px transparent;
  border-top: solid 12px var(--color-yellow);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.flow__item {
  background: #FFF;
  border-radius: var(--rad-common);
  position: relative;
}

.flow__item:nth-child(n+2) {
  margin-top: var(--gutter-supernarrow);
}

.flow__item:not(:last-child):after {
  content: "";
  display: inline-block;
  background: url(../img/loan/arrow_flow.webp) no-repeat top left / contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.flow__item__number span.font_en {
  font-size: var(--font-large);
  font-weight: bold;
  color: var(--color-navy);
  vertical-align: middle;
}

.flow__item__label {
  font-size: var(--font-medium);
}


/*==================================================
  FORM common
==================================================*/
.form__ttlwrap {
  padding: var(--gutter) 0;
  background: url(../img/loan/bg_form_ttl.webp) repeat-x left bottom var(--color-navy);
  position: relative;
}

.form__ttl {
  text-align: center;
  color: #FFF;
  font-weight: 900;
  position: relative;
  z-index: 9;
}

.form__ttl__sub {
  display: block;
  font-size: var(--font-large);
}

.form__ttl__main {
  display: block;
  font-size: var(--font-xlarge);
}

.form__formwrap {
  margin-top: var(--gutter);
}

.form__recaptchatxt {
  text-align: center;
  font-size: var(--font-small);
  margin-top: var(--gutter-narrow);
}

.wpcf7-form input.btn_form:not(:disabled){
  background: var(--color-navy);
}


/*==================================================
  INFOMATION common
==================================================*/
.infomation__wrap {
  margin-bottom: var(--gutter);
}

.infomation__ttl {
  text-align: center;
  padding: 1em;
  background: var(--color-yellow);
  font-weight: 900;
  font-size: var(--font-xlarge);
  margin-bottom: var(--gutter);
}

.information__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter-narrow);
  justify-content: center;
}

.information__ttl {
  margin-bottom: var(--gutter-supernarrow);
}

.infomation__item__ttl {
  margin-bottom: var(--gutter-supernarrow);
}

.infomation__item__photo {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
}

.infomation__item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infomation__item__shopname {
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  font-size: var(--font-medium);
  margin-left: 1em;
}

.infomation__item__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.infomation__item__info__label {
  width: 7em;
  margin-bottom: 1em;
}

.infomation__item__info__cont {
  width: calc(100% - 7em);
  margin-bottom: 1em;
}

.infomation__item__mapbox {
  height: 300px;
}

.infomation__ttl--company {
  font-size: var(--font-large);
  font-weight: 900;
  padding-left: 0.5em;
  border-left: solid 6px var(--color-yellow);
  margin-bottom: 1em;
}

.infomation__table--company {
  width: 100%;
}

.infomation__table--company th {
  background: var(--color-yellow);
}

.infomation__item__mapbox {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-lightgray);
}


/*==================================================
  FOOTER common
==================================================*/
.footer {
  text-align: center;
}

.footer__inner {
  padding: var(--gutter-superwide) 0;
}

.footer__logo {
  width: 90%;
  max-width: 500px;
  margin: 0 auto var(--gutter);
}

.footer__copyright {
  background: var(--color-main);
  color: var(--color-black);
  font-size: var(--font-small);
  text-align: center;
  line-height: 1;
  padding: 0.5em;
}

#footFix {
  z-index: 100;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

#footFix .ancPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  font-weight: bold;
  border-radius: 50%;
  background: var(--color-navy);
  border: solid 1px #fff;
  color: #fff;
  position: relative;
  font-family: var(--font-en);
}

#footFix .ancPagetop a::before {
  content: "";
  display: block;
  border: solid 6px transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: 10px;
}


/*==================================================
  THANKS PAGE common
==================================================*/
main.main--loan-thanks {
  padding-bottom: var(--gutter);
  border-bottom: solid 1px var(--color-palegray);
}

.loan-thanks__ttl {
  text-align: center;
  background: var(--color-yellow);
  font-size: var(--font-xlarge);
  font-weight: 900;
  line-height: 1;
  padding: 1.5em 5%;
}

.loan-thanks__inner {
  text-align: center;
  margin-top: var(--gutter);
}

.loan-thanks_btn {
  margin-top: var(--gutter-narrow);
}

.loan-thanks_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 4em;
  background: var(--color-darkgray);
  color: #FFF;
  font-weight: 900;
  margin: 0 auto;
}

.loan-thanks__thanks {
  font-weight: 900;
  font-size: var(--font-medium);
  margin-bottom: 1em;
}

.loan-thanks__img {
  width: 142px;
  margin: var(--gutter-supernarrow) auto 0px;
}



/*///////////////////////////////////////////////////////////

  Wide（768px～）

///////////////////////////////////////////////////////////*/

@media print,screen and (min-width: 768px) {
  /*==================================================
    HEADER min768
  ==================================================*/
  .header {
    height: 80px;
    justify-content: space-between;
  }

  .header > div {
    display: flex;
    font-size: var(--font-sub);
  }

  .header__inner01 {
    align-items: center;
    gap: 0 1em;
  }

  .header__logo {
    width: 232px;
    margin-left: 10px;
  }

  .header__navi__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.5em;
  }

  .header__navi__item a {
    font-weight: bold;
  }
  
  .header__shopinfo__telitem {
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0 0.25em;
  }

  .header__shopinfo__telitem__cont {
    font-size: var(--font-medium);
    font-weight: bold;
  }

  .header__shopinfo__bizhour {
    font-size: var(--font-small);
  }

  .header__shopinfo__bizhour > div{
    display: flex;
    gap: 0 0.25em;
  }

  .header__btnitem__form {
    width: 180px;
    height: 80px;
  }
  
  .header__btnitem__line {
    width: 80px;
    height: 80px;
  }

  .header__btnitem__line img {
    width: 40px;
    height: 40px;
  }


  /*==================================================
    FIRSTVIEW min768
  ==================================================*/
  .firstview__meritlist {
    justify-content: center;
    gap: 0 calc(var(--gutter)* 0.5);
    max-width: 95%;
    margin: 0 auto;
  }

  .firstview__merititem {
    width: calc((100% - var(--gutter)) / 3);
    max-width: 280px;
  }


  /*==================================================
  　CALL-TO-ACTION min768
  ==================================================*/
  .call-to-action {
    padding: calc(var(--gutter-narrow) + 20px) 0 var(--gutter-narrow);
  }
  
  .call-to-action::before {
    height: 20px;
  }

  .call-to-action__call__ttl img {
    width: 30px;
    height: 30px;
  }

  .call-to-action__call__bizhour {
    gap: 0 1em;
  }


  /*==================================================
  　PROBLEM min768
  ==================================================*/
  .problem__inner {
    padding: var(--gutter) 0 var(--gutter-narrow);
    background-size: 50vw auto;
  }

  .problem__ttl {
    width: 66vw;
    max-width: 750px;
    margin: 0 auto calc(var(--gutter-narrow) + 20px);
  }

  .problem__list {
    gap: var(--gutter) calc(var(--gutter) * 0.5);
  }

  .problem__item,
  .problem__item--empty {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc((100% - var(--gutter)) / 3);
    min-width: 290px;
    height: 9em;
  }

  .problem__item {
    background-size: 25% auto;
    border: solid 4px var(--color-navy);
  }

  .problem__item__label {
    width: 75px;
    height: 75px;
    top: -2em;
  }

  .problem__subttl {
    height: 4em;
  }

  .problem__subttl:before {
    border: solid 14em transparent;
    border-top: solid 4em var(--color-whitegray);
    position: absolute;
  }

  .problem__catchbox {
    background: url(../img/loan/bg_problem_catchbox.webp) no-repeat center center / cover;
  }

  .problem__catchbox__ttl {
    font-size: min(2.5vw, var(--font-large));
  }


  /*==================================================
    CASE min768
  ==================================================*/
  .case--main::before,
  .case--main::after {
    height: 10vw;
  }

  .case__ttl {
    max-width: 560px;
  }
  
  .case__list {
    margin-top: var(--gutter);
  }

  .case__item {
    padding: var(--gutter-narrow);
    border: solid 4px var(--color-navy);
  }

  .case__item__numbering {
    top: -50px;
    left: var(--gutter-narrow);
    gap: 0 2em;
  }

  .case__item__numbering img {
    width: 100px;
  }

  .case__item__ttl {
    margin-left: 50px;
  }

  .case__item__ttl::before {
    width: 40px;
    height: 42.4px;
    left: -50px;
  }

  .case__item__outline {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1em 0;
  }

  .case__item__outline__item {
    width: 33.3%;
    min-width: 270px;
  }

  .case__item__outline__item.item--price {
    width: 100%;
  }

  .case__item__outline__item__label {
    width: 7em;
    text-align: center;
  }

  .case__item__itvw {
    display: flex;
    justify-content: center;
    gap: var(--gutter-narrow);
  }

  .case__item__itvw__photo {
    width: 360px;
  }

  .case__item__itvw__txtbox {
    width: calc(100% - var(--gutter-narrow) - 360px);
    min-width: 400px;
    flex-shrink: 0;
  }

  .case__ttl--other::before {
    width: 68px;
    height: 60px;
  }

  .case__list--other {
    gap: calc(var(--gutter-narrow) + 45px) var(--gutter-narrow);
    margin-top: calc(var(--gutter) + 45px);
  }

  .case__item__outline--other {
    justify-content: center;
    gap: 1em 0.5em;
  }

  .case__item--other {
    width: calc(50% - var(--gutter-narrow) * 0.5);
    min-width: 440px;
    flex-grow: 1;
    padding: calc(var(--gutter) * 0.5);
    border: solid 4px var(--color-navy);
  }

  .case__item__outline__item--other {
    width: calc(50% - 0.5em);
    max-width: 220px;
    gap: 0 0.5em;
  }

  .case__item__outline__item__label--other {
    width: 6em;
    text-align: center;
  }

  .case__item__outline__item__label--payment {
    width: 8em;
  }

  .case__item__outline__item--payment {
    width: 350px;
    align-items: flex-start;
    margin: 0 auto 1em;
  }


  /*==================================================
    VOICE min768
  ==================================================*/
  .voice__inner::before,
  .voice__inner::after {
    width: 70%;
    height: 30vh;
  }

  .voice__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--gutter-narrow);
    gap: var(--gutter-narrow);
    border: solid 4px var(--color-navy);
  }

  .voice__item.voice--01 {
    margin-bottom: var(--gutter);
  }

  .voice__item__photo {
    width: 290px;
    max-width: 35%;
  }

  .voice__item__article {
    width: calc(100% - 290px - var(--gutter-narrow));
    flex-grow: 1;
  }


  /*==================================================
    COMPANY min768
  ==================================================*/
  .company__ttlwrap {
    display: flex;
    align-items: center;
    width: 100%;
    height: 220px;
  }

  .company__ttlwrap::before {
    height: 20px;
  }

  .company__introbox__txtbox > * {
    width: 56%;
  }

  .company__introbox__photo {
    position: absolute;
    z-index: 9;
  }

  .company__meritbox {
    margin-top: var(--gutter-wide);
  }

  .company__meritbox__item {
    width: calc((100% - var(--gutter-narrow) * 2) / 3);
    min-width: 290px;
  }

  .company__meritbox__item__number {
    width: 75px;
  }

  .company__meritbox__item__txtbox {
    padding: var(--gutter-supernarrow);
  }

  .company__meritbox__item__photo {
    width: 100%;
    height: clamp(160px, 15vw, 192px);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .company__meritbox__item__photo img {
    position: absolute;
  }

  .company__meritbox__item__photo.item--01 img,
  .company__meritbox__item__photo.item--02 img {
    top: -20px;
  }

  .company__meritbox__item__photo.item--03 img {
    top: -35px;
  }


  /*==================================================
    FLOW min768
  ==================================================*/
  .flow__inner {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }

  .flow__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter-supernarrow);
    border: solid 4px var(--color-main);
  }

  .flow__item:not(:last-child):after {
    width: 40px;
    height: 34px;
    bottom: -30px;
  }

  .flow__item__number {
    width: 190px;
  }

  .flow__item__number span.font_en {
    padding: 0 0.5em;
    margin-right: 0.5em;
    border-right: solid 1px var(--color-gray);
  }

  .flow__item__number img {
    width: 60px;
    height: 60px;
    vertical-align: middle;
  }

  .flow__item__label {
    width: calc(100% - 190px);
  }
  

  /*==================================================
    FORM min768
  ==================================================*/
  .form__ttlwrap {
    background-size: auto 100px;
  }


  /*==================================================
    INFOMATION min768
  ==================================================*/
  .infomation__item {
    width: calc(50% - var(--gutter-supernarrow));
  }

  .infomation__table--company th {
    text-align: center;
    padding: 1.5em;
    border-bottom: solid 1px #FFF;
    width: 25%;
  }

  .infomation__table--company td {
    padding: 1.5em;
    border-bottom: solid 1px var(--color-lightgray);
    width: 75%;
  }


  /*==================================================
    FOOTER min768
  ==================================================*/
  #footFix {
    width: 70px;
    height: 70px;
  }

  #footFix .ancPagetop a {
    width: 70px;
    height: 70px;
    font-size: var(--font-small);
  }
}



/*///////////////////////////////////////////////////////////

  Medium-Wide (768px～1199px）

///////////////////////////////////////////////////////////*/
@media print,screen and (min-width: 768px) and (max-width: 1199px) {
  /*==================================================
　  PROBLEM min768 and max1199
  ==================================================*/
  .problem__list {
    background: url(../img/loan/bg_problem_list.webp) no-repeat bottom right;
    background-size: 270px;
    width: 610px;
    justify-content: flex-start;
  }

  .problem__item--empty {
    display: none;
  }


  /*==================================================
　  CASE min768 and max1199
  ==================================================*/
  .case__item__head--other {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }


  /*==================================================
　  COMPANY min768 and max1199
  ==================================================*/
  .company__introbox__photo {
    width: calc(41.5% - var(--gutter-narrow));
    height: 480px;
    right: 2.5%;
    top: var(--gutter);
  }

  .company__introbox__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .company__introbox__ttl__main {
    width: 13em;
  }  
}



/*///////////////////////////////////////////////////////////

  Medium-Wide + Super-Wide（768px～1439px）

///////////////////////////////////////////////////////////*/
@media print,screen and (min-width: 768px) and (max-width: 1439px) {
  /*==================================================
  　HEADER min768 and max1439
  ==================================================*/
  .header__shopinfo {
    width: 80px;
    height: 80px;
  }

  .header__shopinfo #btn-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: var(--color-red);
    position: relative;
    cursor: pointer;
  }

  .header__shopinfo #btn-tel img {
    width: 40px;
    height: 40px;
  }

  .header__shopinfo__inner {
    display: none;
    background: rgba(231, 0, 120, 80%);
    color: #FFF;
    position: relative;
    z-index: 99;
    width: 214px;
  }

  .header__shopinfo #btn-tel:hover + .header__shopinfo__inner,
  .header__shopinfo__inner:hover {
    display: block;
  }

  .header__shopinfo__telitem {
    line-height: 1;
    padding: 1em;
    border-bottom: dotted 1px #FFF;
  }

  .header__shopinfo__telitem__label {
    width: 5em;
  }

  .header__shopinfo__bizhour {
    padding: 0.5em;
  }
  
  .header__shopinfo__bizhour > div{
    width: 100%;
    justify-content: center;
  }

  
  /*==================================================
    THANKS PAGE min768 and max1439
  ==================================================*/
  .header--loan-thanks .header__shopinfo__inner {
    position: absolute;
    right: 80px;
  }

}



/*///////////////////////////////////////////////////////////

  Super-Wide + Extra-Wide (1200px～)

///////////////////////////////////////////////////////////*/
@media print,screen and (min-width: 1200px) {
  
  /*==================================================
  　PROBLEM min1200
  ==================================================*/
  .problem__list {
    background: url(../img/loan/bg_problem_list.webp) no-repeat center center;
    background-size: 360px;
  }

  .problem__item:nth-child(2) {
    margin-top: -20px;
  }


  /*==================================================
  　CASE min1200
  ==================================================*/
  .case__item__ttl,
  .case__item__outline {
    width: 940px;
  }


  /*==================================================
  　COMPANY min1200
  ==================================================*/
  .company__introbox__photo {
    width: 480px;
    top: var(--gutter);
    right: calc(50vw - 600px);
  }

}



/*///////////////////////////////////////////////////////////

  Extra-Wide（1440px～）

///////////////////////////////////////////////////////////*/
@media print,screen and (min-width: 1440px) {
 /*==================================================
  　HEADER min1440
  ==================================================*/
  .header {
    justify-content: space-between;
  }
  
  .header__inner02 {
    gap: 0 1em;
  }

  .header__shopinfo {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    font-size: var(--font-small);
    width: initial;
    height: initial;
  }

  .header__shopinfo__telicon {
    width: 30px;
    height: 30px;
  }

  .header__shopinfo__inner {
    display: flex;
    align-items: center;
  }

  .header__shopinfo__tellist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em 1em;
    font-size: var(--font-small);
    width: 352px;
  }

  .header__shopinfo__telitem:nth-of-type(odd) .header__shopinfo__telitem__label {
    width: 5em;
  }

  .header__shopinfo__telitem:nth-of-type(even) .header__shopinfo__telitem__label {
    width: 3em;
  }

  .header__shopinfo__bizhour {
    margin-left: 1em;
    padding-left: 1em;
    border-left: solid 1px var(--color-gray);
  }

  .header__shopinfo__bizhour__label {
    width: 4em;
  }
}



/*///////////////////////////////////////////////////////////

  Narrow（～767px）

///////////////////////////////////////////////////////////*/
@media screen and (max-width: 767px) {
  /*==================================================
  　HEADER max767
  ==================================================*/
  .header {
    justify-content: space-between;
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #FFF;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
  }

  .header__inner01 {
    width: 180px;
    margin-left: 10px;
  }

  .header__btnitem {
    width: 40px;
    height: 40px;
  }

  .header__btnitem a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .header__btnitem a.header__btnitem__phone {
    background: var(--color-red);
  }

  .header__btnitem img {
    width: 25px;
    height: 25px;
  }


  /*==================================================
  　MAIN max767
  ==================================================*/
  .main {
    padding-top: 40px;
  }

  
  /*==================================================
  　FIRSTVIEW max767
  ==================================================*/
  .firstview__inner img {
    max-width: 540px;
    width: 100%;
  }

  .firstview__meritlist {
    justify-content: center;
    width: 95%;
    margin: 0 auto;
    gap: 0 1%;
  }

  .firstview__merititem {
    width: 32.6%;
  }


  /*==================================================
  　CALL-TO-ACTION max767
  ==================================================*/
  .call-to-action {
    padding: calc(var(--gutter-narrow) + 10px) 0 var(--gutter-narrow);
  }
  .call-to-action::before {
    height: 10px;
  }

  .call-to-action__call__ttl img {
    width: 23px;
    height: 23px;
  }

  .call-to-action__call__message {
    font-size: var(--font-small);
    margin-bottom: 1em;
    font-weight: 900;
  }

  .call-to-action__btn {
    flex-direction: column;
    max-width: 400px;
  }

  .call-to-action__call__item__cont a {
    display: inline-block;
    border-bottom: solid 1px currentColor;
  }

  .call-to-action__call__bizhour {
    gap: 0 1em;
  }


  /*==================================================
  　PROBLEM max767
  ==================================================*/
  .problem__inner {
    padding: var(--gutter-narrow) 0;
    background-size: 100% auto;
  }

  .problem__ttl {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .problem__item {
    width: 100%;
    max-width: 540px;
    padding: 1em;
    background-size: 18% auto;
    border: solid 2px var(--color-navy);
  }

  .problem__item:nth-child(-n+7) {
    margin-bottom: var(--gutter-narrow);
  }

  .problem__item__label {
    width: 55px;
    height: 55px;
    top: calc(var(--gutter-supernarrow) * -1);
  }

  .problem__item__cont {
    width: calc(100% - 55px);
    margin: 0 0 0 calc(55px - 1em);
  }

  .problem__subttl {
    height: 4em;
  }

  .problem__subttl:before {
    border: solid 40vw transparent;
    border-top: solid 4em var(--color-whitegray);
    position: absolute;
  }

  .problem__catchbox {
    background: url(../img/loan/bg_problem_catchbox-sp.webp) no-repeat center center / cover;
  }

  .problem__catchbox__ttl__item {
    font-size: min(5.3vw, var(--font-large));
  }


  /*==================================================
  　CASE max767
  ==================================================*/
  .case--main::before,
  .case--main::after {
    height: 10vw;
  }

  .case__ttl {
    max-width: 400px;
    width: 95%;
  }

  .case__list {
    margin-top: var(--gutter);
  }

  .case__item {
    padding: var(--gutter-narrow) 5%;
    border: solid 2px var(--color-navy);
  }

  .case__item__numbering {
    top: -30px;
    left: 10px;
    gap: 0 1em;
  }

  .case__item__numbering img {
    width: 56px;
  }

  .case__item__ttl {
    margin-left: 40px;
  }

  .case__item__ttl::before {
    width: 30px;
    height: 32.4px;
    left: -40px;
  }

  .case__item__outline__item {
    margin-bottom: 0.5em;
  }
  
  .case__item__outline__item__label {
    width: 7em;
    text-align: center;
  }

  .case__item__itvw__txtbox--other {
    margin-top: var(--gutter-supernarrow);
  }

  .case__item__itvw__photo {
    width: 60%;
    max-width: 540px;
    margin: 0 auto var(--gutter-narrow);
  }

  .case__list--other {
    gap: calc(var(--gutter-narrow) + 40px) var(--gutter-narrow);
    margin-top: calc(var(--gutter) + 25px);
  }

  .case__ttl--other::before {
    width: 34px;
    height: 30px;
  }
  
  .case__item--other {
    padding: var(--gutter-narrow) 5%;
    border: solid 2px var(--color-navy);
  }
  
  .case__item--other:before {
    width: 90px;
    height: 45px;
  }
  
  .case__item__numbering--other {
    width: 54px;
  }

  .case__item__outline--other {
    gap: 0.5em;
  }

  .case__item__outline__item--other {
    gap: 0 0.5em;
    min-width: 147px;
  }

  .case__item__outline__item--other.col1 {
    width: 100%;
  }

  .case__item__outline__item--other.col2 {
    width: calc(50% - 0.25em);
  }

  .case__item__outline__item--payment {
    align-items: flex-start;
    justify-content: center;
  }

  .case__item__outline__item__label--other {
    width: 7em;
    text-align: center;
    padding: 0.5em 0;
    line-height: 1;
  }

  .case__item__outline__item__label--payment {
    flex-shrink: 0;
    width: 8em;
    margin-bottom: 0.5em;
  }


  /*==================================================
  　VOICE max767
  ==================================================*/
  .voice__inner::before, .voice__inner::after {
    width: 100%;
    height: 17vh;
  }
  
  .voice__item {
    padding: var(--gutter-narrow) 5%;
    border: solid 2px var(--color-navy);
  }

  .voice__item.voice--01 {
    margin-bottom: var(--gutter-narrow);
  }

  .voice__item__photo {
    width: 60%;
    max-width: 540px;
    margin: 0 auto;
  }

  .voice__item__article {
    margin-top: var(--gutter-narrow);
  }


  /*==================================================
  　COMPANY max767
  ==================================================*/
  .company__ttlwrap::before {
    height: 10px;
  }

  .company__introbox {
    margin-bottom: var(--gutter-narrow);
  }

  .company__introbox__ttl {
    padding: var(--gutter-narrow) 0;
    text-align: center;
  }

  .company__introbox__photo {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    height: 180px;
    position: relative;
    overflow: hidden;
  }

  .company__introbox__photo img {
    position: absolute;
    top: -50%;
    transform: translateY(-8vw);
  }

  .company__meritbox__item {
    max-width: 540px;
  }

  .company__meritbox__item__number {
    width: 70px;
  }

  .company__meritbox__item__photo {
    max-width: 540px;
    height: 40vw;
    min-height: 180px;
    margin: 0 auto;
    overflow: hidden;
  }

  .company__meritbox__item__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .company__meritbox__item__txtbox {
    padding: var(--gutter-narrow);
  }


  /*==================================================
  　FLOW max767
  ==================================================*/
  .flow__ttl {
    text-align: center;
    margin-bottom: var(--gutter-narrow);
  }

  .flow__list {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .flow__item {
    padding: var(--gutter-narrow);
    text-align: center;
    border: solid 2px var(--color-main);
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .flow__item:not(:last-child):after {
    width: 25px;
    height: 20px;
    bottom: -18px;
  }

  .flow__item__number {
    margin-bottom: 0.5em;
  }

  .flow__item__number img {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
  }
  
  
  /*==================================================
    FORM max767
  ==================================================*/
  .form__ttlwrap {
    background-size: auto 70px;
  }


  /*==================================================
  　INFOMATION max767
  ==================================================*/
  .infomation__item {
    width: 100%;
    max-width: 540px;
  }

  .infomation__table--company {
    border: solid 1px var(--color-lightgray);
  }

  .infomation__table--company tr {
    display: flex;
    flex-direction: column;
  }

  .infomation__table--company th,
  .infomation__table--company td {
    width: 100%;
  }

  .infomation__table--company th {
    padding: 0.5em;
    background: var(--color-yellow);
  }

  .infomation__table--company td {
    padding: 1em;
    background: #FFF;
  }


  /*==================================================
    FOOTFIX max767
  ==================================================*/
  #footFix {
    width: 60px;
    height: 60px;
  }
  
  #footFix .ancPagetop a {
    width: 60px;
    height: 60px;
    font-size: var(--font-xxsmall);
  }


  /*==================================================
    TEL MODAL
  ==================================================*/
  .modal__telitem__btn {
    color: var(--color-black) !important;
  }
}
