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

/*==================================================
  loan / sellers-contact
==================================================*/
/*
===== module ==========================================
*/
:root {
  --color-loan-paleyellow: #FBF3CA;
  --color-loan-green: #06C755;
}

/*
===== header ==========================================
*/
#header.loan-header {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: min(50%, 325px);
  padding: 13px 0;
}

.header__linkList {
  display: flex;
  gap: 15px;
}

.header__linkItem a {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 10px;
  line-height: 1;
  transition: all 0.5s ease;
}

.header__linkItem--line a {
  background: var(--color-loan-green);
  border: 1px solid var(--color-loan-green);
}

@media (any-hover:hover) {
  .header__linkItem a:hover {
    background: #fff;
    color: var(--color-blue);
    transition: all 0.5s ease;
  }
  .header__linkItem--line a:hover {
    color: var(--color-loan-green);
  }
}

/*
===== firstview ==========================================
*/
.fvBox {
  background: url(../img/page/loan/bg_fv.webp) no-repeat center / cover;
}

/*
===== introBox ==========================================
*/
.introBox {
  padding-top: clamp(3rem, 4vw, 6rem);
}

.introBox__ttl {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.introBox__imgWrap {
  position: relative;
}

.introBox__imgWrap img {
  display: block;
  margin: auto;
  padding-bottom: var(--gutter-narrow);
}

.introBox__imgWrap::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/page/loan/img_introBox_01.webp) no-repeat;
  width: 247px;
  height: auto;
  aspect-ratio: 247 / 393;
}

.introBox__imgWrap::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/page/loan/img_introBox_02.webp) no-repeat;
  width: 215px;
  height: auto;
  aspect-ratio: 215 / 393;
}

/*
===== ctaBox ==========================================
*/
.ctaBox {
  position:relative;
  padding: clamp(3rem, 4vw, 6rem) 0;
  overflow: hidden;
}

.ctaBox::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:300px;
  background: var(--color-blue);
}

.ctaBox__inner {
  background: #fff;
  border-radius: var(--rad-common);
  position: relative;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 8vw, 15rem) 0;
}

.ctaBox__ttl {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--gutter-narrow);
}

.ctaBox__btnWrap {
  display: flex;
  gap: clamp(1rem, 4vw, 2rem);
}

.ctaBox__btn {
  background: var(--color-blue);
  border-radius: var(--rad-common);
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 15px;
}

@media (any-hover:hover) {
  .ctaBox__btn:hover {
    transition: 1s;
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

.ctaBox__btn--mail {
  width: min(96% , 600px);
}

.ctaBox__btn--line {
  background: var(--color-loan-green);
  width: min(96% , 280px);
}

.ctaBox__telWrap {
  border: 1px solid var(--color-lightblue);
  border-radius: var(--rad-common);
  margin-top: var(--gutter-narrow);
}

.ctaBox__telTtl {
  background: var(--color-lightblue);
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  padding: 15px;
}

.ctaBox__telList {
  padding: 10px;
}

.ctaBox__telItemInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 1.5rem);
}

.ctaBox__telItemTtl {
  font-weight: bold;
  display: inline-block;
  line-height: 1.3;
  width: 240px;
  text-align: right;
}

.ctaBox__telItemDetail {
  font-size: clamp(1.4rem, 4vw, 1.4rem);
}

.ctaBox__telItem__tel {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: bold;
}

/*
===== questionBox ==========================================
*/
.questionBox {
  background: var(--color-palegray);
  position: relative;
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.questionBox::before,
.questionBox::after {
  content: "";
  display: inline-block;
  width: 50%;
  background: var(--color-lightgray);
  position: absolute;
  z-index: 0;
  height: 11vw;
}

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

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

.questionBox__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.questionBox__imgWrap {
  display: flex;
  justify-content: center;
}

.questionBox__imgWrap__left {
  padding-top: 50px;
  margin-right: -90px;
  width: 20%;
}

.questionBox__imgWrap__right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.questionBox__item {
  background: #fff;
  border-radius: 100px;
  padding: 15px 10px;
  width: 40%;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.questionBox__item::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  transform: rotate(13deg);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .1));
}

/* 奇数：左側 */
.questionBox__item:nth-child(odd) {
  align-self: flex-start;
}

/* 偶数：右側 */
.questionBox__item:nth-child(even) {
  align-self: flex-end;
}

.questionBox__item:nth-child(5) {
  margin-top: 16px;
}

/*
===== solveBox ==========================================
*/
.solveBox {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.solveBox__inner {
  background: url(../img/page/loan/bg_solve_01.webp) no-repeat center / contain;
  text-align: center;
}

.solveBox__ttl {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: bold;
  margin-bottom: var(--gutter-narrow);
}

.solveBox__ttl span {
  color: var(--color-blue);
}

.solveBox__txt {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  padding-bottom: var(--gutter-narrow);
}

.solveBox__txt span {
  color: var(--color-blue);
  background: linear-gradient(transparent 65%, var(--color-yellow) 65%);
}

/*
===== graphBox ==========================================
*/
.graphBox {
  background: var(--color-paleblue);
  text-align: center;
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.graphBox__ttl {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: bold;
}

.graphBox__txt {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
}

.graphBox__txt span {
  color: var(--color-blue);
}

/*
===== caseBox ==========================================
*/
.caseBox {
  background: var(--color-loan-paleyellow);
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.caseBox__ttl {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-top: 125px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.caseBox__ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: url(../img/page/loan/img_caseBox_01.webp) no-repeat;
  width: 199px;
  height: auto;
  aspect-ratio: 199 / 120;
}

.caseBox__ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.caseBox__ttl span::before,
.caseBox__ttl span::after {
  content: "";
  height: 1px;
  width: 146px;
  background-color: var(--color-black);
}

.caseBox__ttl span::before {
  margin-right: clamp(2rem, 4vw, 4rem);
}

.caseBox__ttl span::after {
  margin-left: clamp(2rem, 4vw, 4rem);
}

.caseBox__cardList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(3rem, 4vw, 5rem) clamp(4rem, 4vw, 7rem);
}

.caseBox__cardItem {
  width: calc((100% / 2) - 39px);
}

/*
===== faqBox ==========================================
*/
.faqBox {
  background: url(../img/index/bg_qaBox_01.webp);
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.faqBox__ttl {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.faqBox__list ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (any-hover:hover) {
  .faqBox__list li:hover {
    cursor: pointer;
  }
}

.faqBox__list dt {
  background: var(--color-paleblue);
  border-radius: var(--rad-common);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px 60px 30px 65px;
  position: relative;
}

.faqBox__list dt::before {
  content: "Q.";
  color: var(--color-blue);
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.faqBox__list dt.open {
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.faqBox__list dt::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_blue.svg) no-repeat center / contain;
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(90deg);
}

.faqBox__list dt.open::after {
  transform: translateY(-50%) rotate(270deg);
}

.faqBox__list dd {
  background: var(--color-paleblue);
  border-radius: 0 0 var(--rad-common) var(--rad-common);
  border-top: 1px solid #fff;
  font-size: 1.6rem;
  position: relative;
  padding: 30px 60px 30px 65px;
}

.faqBox__list dd::before {
  content: "A.";
  color: var(--color-black);
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.faqBox__list dd iframe {
  width: 100%;
}

/*
===== messageBox ==========================================
*/
.messageBox {
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.messageBox__ttl {
  display: flex;
  align-items: center;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  white-space: nowrap;
}

.messageBox__ttl::after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: var(--color-black);
  margin-left: clamp(2rem, 4vw, 4rem);
}

.messageBox__contentWrap {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
}

.messageBox__imgWrap {
  width: 440px;
}

.messageBox__txtWrap {
  width: calc(100% - 440px - 4rem);
}

.messageBox__name {
  margin-top: clamp(2rem, 4vw, 4rem);
}

/*
===== strengthBox ==========================================
*/
.strengthBox {
  padding: clamp(3rem, 4vw, 6rem) 0;
}

.strengthBox__ttl {
  display: flex;
  align-items: center;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  white-space: nowrap;
}

.strengthBox__ttl::after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: var(--color-black);
  margin-left: clamp(2rem, 4vw, 4rem);
}

.strengthBox__itemList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.strengthBox__itemItem {
  border-radius: var(--rad-common);
  background: var(--color-paleblue);
  display: flex;
  align-items: center;
  padding: 30px 20px;
  gap: clamp(2rem, 4vw, 8rem);
}

.strengthBox__itemItem__rightTtl {
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: bold;
  margin-bottom: clamp(1.8rem, 4vw, 2.5rem);
}

/*
===== formBox ==========================================
*/
/* flowWrap */
.flowWrap {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.flowWrap__ttl {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.flowList {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.flowItem {
  border: 3px solid var(--color-blue);
  padding: 15px;
  text-align: center;
  width: calc((100% - 30px)/3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.flowItem+.flowItem::before {
  position: absolute;
  content: '';
  background: url(../img/page/shop_reserve/flow_arrow.webp) center/100% no-repeat;
  width: 45px;
  height: 45px;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #fff;
}

.flowItem h3 {
  color: var(--color-blue);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.flowItem h3 span {
  font-weight: 900;
  font-size: 1.2em;
}

.flowItem p {
  margin-bottom: 20px;
  font-weight: 500;
}

.flowItem img {
  max-height: 100px;
}

.flowWrap__txt {
  text-align: center;
  margin-top: var(--gutter-narrow);
}

/*
===== shopBox ==========================================
*/
.shopBox {
  padding: clamp(4rem, 4vw, 8rem) 0 clamp(3rem, 4vw, 6rem);
}

.shopBox .shopInfoBox__ttl {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  background: var(--color-paleblue);
  padding: 10px;
}

.shopBox .shopInfoBox__shopWrap {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.shopBox .shopInfoBox__inner {
  width: calc((100% / 3) - 20px);
  display: block;
}

.shopBox .shopInfoBox__imgBox,
.shopBox .shopInfoBox__dataBox {
  width: 100%;
}

/*
===== footer ==========================================
*/
.footerBox {
  margin-top: var(--gutter);
}

.footerBox .footer__logo {
  width: min(50%, 500px);
  margin: 0 auto var(--gutter-narrow);
}

.footer__siteLogo {
  width: min(50%, 300px);
  margin: 0 auto var(--gutter);
}

.footerBox .footer__copyright {
  background: var(--color-black);
  color: #fff;
  text-align: center;
  padding: 8px 0;
}

/*
===== フォーム確認・送信画面 ==========================================
*/
.loanPage--thanks .thanksBox__ttl {
  color: var(--color-blue);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: var(--gutter-narrow);
}

.loanPage--thanks .thanksBox__siteTop {
  text-align: center;
  margin-top: var(--gutter-wide);
}

.loanPage--thanks .thanksBox__siteTop__ttl {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: var(--color-lightblue);
  border-radius: 100px;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}

.loanPage--thanks .thanksBox__siteTop__ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 12px 0 12px;
  border-color: var(--color-lightblue) transparent transparent transparent;
}

.loanPage--thanks .thanksBox__siteTop a {
  display: block;
  margin-top: var(--gutter-supernarrow);
}


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

PC-MIDIUM SETTINGS : Min768px & Max1079px

///////////////////////////////////////////////////////////*/
@media print, screen and (min-width: 768px) and (max-width: 1079px){
  .pc-wide_only {
    display: none;
  }

}

@media print, screen and (min-width: 768px) and (max-width: 1020px){
  .introBox__imgWrap::before {
    background-size: 100%;
    width: 190px;
  }

  .introBox__imgWrap::after {
    background-size: 100%;
    width: 155px;
  }


  /*
  ===== questionBox ==========================================
  */
  .questionBox__imgWrap__right {
    margin-left: 40px;
  }

  /*
  ===== solveBox ==========================================
  */
  .solveBox__inner {
    background-position: bottom;
  }
}


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

SP SETTINGS : Max768px

///////////////////////////////////////////////////////////*/
@media screen and (max-width: 767px) {
  /*
  ===== header : min768 ==========================================
  */
  #header.loan-header {
    width: 100%;
  }

  .header__logo {
    padding: 10px;
  }

  .header__linkList {
    gap: 0;
  }

  .header__linkItem a {
    width: 45px;
    height: 45px;
    border-radius: 0;
    display: block;
  }

  /*
  ===== firstview ==========================================
  */
  .fvBox {
    padding-top: 45px;
  }
  
  .fvBox .fvBox__inner {
    width: 100%;
  }

  /*
  ===== introBox ==========================================
  */
  .introBox__imgWrap img {
    width: 80%;
  }

  .introBox__imgWrap::before {
    background-size: 100%;
    width: 90px;
  }

  .introBox__imgWrap::after {
    background-size: 100%;
    width: 75px;
  }

  /*
  ===== ctaBox ==========================================
  */
  .ctaBox__inner {
    padding: 1.5rem 1.5rem 0;
  }

  .ctaBox__btnWrap {
    flex-direction: column;
  }

  .ctaBox__btn {
    width: 100%;
  }

  .ctaBox__telItem + .ctaBox__telItem {
    margin-top: 1.5rem;
  }

  .ctaBox__telItemInfo {
    flex-direction: column;
    gap: .5rem;
  }

  .ctaBox__telItemTtl {
    width: auto;
    text-align: left;
  }

  /*
  ===== questionBox ==========================================
  */
  .questionBox__imgWrap {
    flex-direction: column-reverse;
  }

  .questionBox__imgWrap__right {
    width: 100%;
    flex-direction: column;
  }

  .questionBox__item {
    width: fit-content;
  }

  .questionBox__item:nth-child(5) {
    margin-top: 0;
  }

  .questionBox__imgWrap__left {
    margin: 0;
    padding-top: 15px;
  }

  /*
  ===== solveBox ==========================================
  */
  .solveBox__inner {
    background-position: bottom;
  }

  /*
  ===== caseBox ==========================================
  */
  .caseBox__ttl {
    padding-top: 65px;
  }

  .caseBox__ttl::before {
    width: 100px;
    height: 60px;
    background-size: contain;
  }

  .caseBox__ttl span::before,
  .caseBox__ttl span::after {
    width: 45px;
  }

  .caseBox__cardList {
    gap: 1rem;
    flex-direction: column;
  }

  .caseBox__cardItem {
    width: 100%;
  }

  /*
  ===== faqBox ==========================================
  */
  .faqBox__list ul {
    gap: 15px;
  }

  .faqBox__list dt,
  .faqBox__list dd {
    padding: 20px 50px 20px 55px;
    font-size: 1.6rem;
  }

  .faqBox__list dt::before,
  .faqBox__list dd::before {
    font-size: 3rem;
  }

  /*
  ===== messageBox ==========================================
  */
  .messageBox__contentWrap {
    flex-direction: column;
  }

  .messageBox__imgWrap {
    width: 100%;
  }

  .messageBox__txtWrap {
    width: 100%;
  }

  /*
  ===== strengthBox ==========================================
  */
  .strengthBox__itemItem {
    flex-direction: column;
  }

  .strengthBox__itemItem__left {
    width: 30%;
  }

  /*
  ===== formBox ==========================================
  */
  /* flowWrap */
  .flowList {
    flex-direction: column;
    gap: 10px;
  }

  .flowItem {
    width: 100%;
    flex-direction: row;
    padding: 10px;
    justify-content: flex-start;
  }

  .flowItem+.flowItem::before {
    left: 50%;
    top: -11%;
    transform: rotate(90deg) translate(-50%, 50%);
    width: 30px;
    height: 30px;
  }

  .flowItem h3 {
    width: 25%;
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(13px, 4vw, 16px);
  }

  .flowItem p {
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
    width: 65%;
  }

  .flowItem .icon {
    width: 20%;
    text-align: center;
  }

  /*
  ===== shopBox ==========================================
  */
  .shopBox .shopInfoBox__shopWrap {
    flex-direction: column;
  }

  .shopBox .shopInfoBox__inner {
    width: 100%;
  }

  /*
  ===== フォーム確認・送信画面 ==========================================
  */
  .loanPage--thanks .ttlWrap {
    margin-top: 45px;
  }
}