@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap");
#Adviser .Adviser_list li {
  margin: 0 0;
}

/* --------------------------------
* 初期設定
* -------------------------------- */
* {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  letter-spacing: 0.1em;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figcaption {
  color: #707070;
  font-size: 80%;
  padding: 0.5em 0;
}

a {
  text-decoration: none;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

/*---------------------------------
    幅デザイン
---------------------------------*/
/* PC時の最小表示領域 */
@media screen and (min-width: 950px) {
  body {
    min-width: 950px;
  }
}
@media screen and (max-width: 599px) {
  body {
    width: 100%;
  }
}

/* WideArea */
@media screen and (min-width: 950px) {
  .WideArea {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .WideArea {
    width: 100vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .WideArea {
    width: 100vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

/* normalArea */
@media screen and (min-width: 950px) {
  .normalArea {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .normalArea {
    width: 100vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .normalArea {
    width: 100vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* narrowArea */
/* --------------------------------
* よく使うもの
* -------------------------------- */
@media screen and (max-width: 599px) {
  .sp_hidden {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 949px) {
  .tab_hidden {
    display: none;
  }
}

@media screen and (min-width: 950px) {
  .pc_hidden {
    display: none;
  }
}

/* --------------------------------
* ボタン
* -------------------------------- */
.btn {
  padding: 0.5em 2em;
  background-color: #FA7D2B;
  color: #fff;
  border-radius: 5px;
}

.btn:hover {
  position: relative;
  top: 2px;
}

.btn.inversion {
  border-radius: 5px;
  border: #fff solid 2px;
}

.btn.-arrow {
  position: relative;
  display: inline-block;
}

.btn.-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 1em;
  top: -2px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  transform: rotate(45deg);
}

.btn,
shadow {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2117647059);
}

/* --------------------------------
* 見出し
* -------------------------------- */
h2 {
  font-size: 36px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 30px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  h3 {
    font-size: 24px;
  }
}

h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

section:nth-child(2n-1) {
  background-color: #F8F5EC;
}

/* --------------------------------
* 本文
* -------------------------------- */
.s-text {
  font-size: 14px;
}

.m-text {
  font-size: 18px;
}

.l-text {
  font-size: 20px;
}

/* --------------------------------
* リストデザイン
* -------------------------------- */
.checkList li {
  list-style: none;
  padding-left: 2.5em;
  position: relative;
  margin: 1em 0;
  font-size: 24px;
}
@media screen and (max-width: 599px) {
  .checkList li {
    font-size: 19px;
  }
}
.checkList li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  display: inline-block;
  background-image: url(img/check.svg);
  background-size: 25px auto;
  width: 25px;
  height: 30px;
  color: #000;
  background-repeat: no-repeat;
  background-position: top left;
}

/* --------------------------------
* 文字装飾
* -------------------------------- */
.strongColor {
  color: #FA7D2B;
  font-size: 120%;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .strongColor {
    font-size: 110%;
  }
}

.bold {
  font-weight: 700;
}

.prText {
  font-size: 30px;
  font-weight: 700;
  color: #FA7D2B;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .prText {
    font-size: 21px;
  }
}

.center {
  text-align: center;
}

/* --------------------------------
* 幅調整
* -------------------------------- */
.-mt10 {
  margin-top: 10px;
}

.-mt20 {
  margin-top: 20px;
}

.-mt30 {
  margin-top: 30px;
}

.-mt40 {
  margin-top: 40px;
}

.-mt50 {
  margin-top: 50px;
}

.-mt60 {
  margin-top: 60px;
}

.-mr10 {
  margin-right: 10px;
}

.-mr20 {
  margin-right: 20px;
}

.-mr30 {
  margin-right: 30px;
}

.-mr40 {
  margin-right: 40px;
}

.-mr50 {
  margin-right: 50px;
}

.-mr60 {
  margin-right: 60px;
}

.-mb10 {
  margin-bottom: 10px;
}

.-mb20 {
  margin-bottom: 20px;
}

.-mb30 {
  margin-bottom: 30px;
}

.-mb40 {
  margin-bottom: 40px;
}

.-mb50 {
  margin-bottom: 50px;
}

.-mb60 {
  margin-bottom: 60px;
}

.-ml10 {
  margin-left: 10px;
}

.-ml20 {
  margin-left: 20px;
}

.-ml30 {
  margin-left: 30px;
}

.-ml40 {
  margin-left: 40px;
}

.-ml50 {
  margin-left: 50px;
}

.-ml60 {
  margin-left: 60px;
}

/* --------------------------------
* テーブル
* -------------------------------- */
@media screen and (max-width: 599px) {
  .table_scroll {
    overflow-x: scroll;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .table_scroll {
    overflow-x: scroll;
  }
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  max-width: 850px;
  table-layout: fixed;
  line-height: 1.25;
}

table tr {
  background-color: #fff;
  padding: 0.35em;
  border: 2px solid #eee;
  vertical-align: middle;
}

table th {
  padding: 0.8em;
  border-right: 2px solid #fff;
  vertical-align: middle;
}

table td {
  padding: 0.8em 0.5em;
  border-right: 2px solid #eee;
  text-align: center;
  vertical-align: middle;
}

table th {
  text-align: center;
}

table thead tr {
  background-color: #000;
  color: #fff;
}

table tbody th {
  border-right: 2px solid #eee;
}

.table_mainBk {
  background: #FA7D2B;
}

/* --------------------------------
* 背景
* -------------------------------- */
.Bg {
  position: relative;
}

.Bg_img {
  position: absolute;
  background-image: url(img/bg.png);
  z-index: 100;
  top: 0;
  width: 100vw;
  height: 10000px;
}

.Building {
  background-image: url(img/bg.png);
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .Building {
    background-image: url(img/bg_sp.png);
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Building {
    background-image: url(img/bg_sp.png);
  }
}

.Building_flex {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
}

.Building_figure {
  width: 45%;
  margin-top: 10px;
}

.Building_img {
  width: 100%;
}

.Call {
  margin: 60px auto 30px;
  width: 30vw;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .Call {
    width: 80vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Call {
    width: 60vw;
  }
}

.Call_text {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .Call_text {
    font-size: 4.5vw;
  }
}

.Fv .Call {
  margin: 4vh auto 4vh;
  width: 33vw;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .Fv .Call {
    margin: 2vh auto 2vh;
    width: 70vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Fv .Call {
    margin: 0 auto 2vh;
    width: 38vw;
  }
}
.Fv .Call_text {
  font-size: 2vw;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .Fv .Call_text {
    font-size: 4vw;
  }
}

.Company_prText {
  margin: 15px auto;
  max-width: 500px;
  padding: 20px;
  border: 2px solid #FA7D2B;
  background-color: #fff;
}

.Company_flowImg {
  width: 80%;
}
@media screen and (max-width: 599px) {
  .Company_flowImg {
    width: 100%;
  }
}

.Company_flowFigure {
  text-align: center;
}

.Fv .Cta {
  width: 50vw;
  margin: 0 auto 4vh;
}
@media screen and (max-width: 599px) {
  .Fv .Cta {
    margin: 0 auto 1vh;
    width: 95vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Fv .Cta {
    margin: 0 auto 1vh;
    width: 55vw;
  }
}

.Footer {
  background-color: #FA7D2B;
  padding: 60px 0 100px;
  color: #fff;
}

.Footer_flex {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .Footer_flex {
    height: 100px;
  }
}

.Footer_flexItem {
  text-align: center;
}

.Footer_copyRight {
  margin-top: 30px;
  text-align: center;
}

.FooterCta {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  /* opacity: 0;
    visibility: hidden; */
  transition: all 0.3s ease-in-out;
}

.FooterCta.-active {
  opacity: 1;
  visibility: visible;
}

.FooterCta_item {
  padding: 10px 0;
  font-size: 17px;
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .FooterCta_item {
    flex-direction: column;
    font-size: 3vw;
    white-space: nowrap;
    justify-content: space-around;
  }
}

.FooterCta_item.-apply {
  background-color: #29D159;
}

.FooterCta_item.-voice {
  background-color: #293694;
}

.FooterCta_item.-line {
  background-color: #FA7D2B;
}

.FooterCta_link {
  color: #fff;
  display: block;
}

.FooterCta_logo {
  display: block;
  width: 40px;
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .FooterCta_logo {
    display: inline;
    width: 5vw;
  }
}

.c-form {
  max-width: 600px;
  margin: 0 auto 60px;
}

.c-form__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.c-form__label,
.c-form__input {
  padding: 10px;
}

.c-form__label {
  width: 90%;
}

.c-form__input {
  width: 90%;
  font-size: 16px;
  border: solid 1px #333;
  border-radius: 4px;
}

.c-form__input:focus-visible {
  outline: #FA7D2B auto 1px;
}

.c-form__required {
  color: #fff;
  background-color: #FA7D2B;
  border-radius: 4px;
  padding: 5px 5px;
  margin: 0 0 0 18px;
}

textarea.c-form__input {
  height: 160px;
}

.c-form__submit {
  text-align: center;
  margin-top: 45px;
}

.c-form__submit button {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #FA7D2B;
  border: solid 1px #FA7D2B;
  border-radius: 4px;
  padding: 5px 32px;
  transition: 0.4s;
  cursor: pointer;
}

.c-form__submit button:hover {
  color: #FA7D2B;
  background-color: transparent;
}

@media (min-width: 640px) {
  .c-form__item {
    flex-wrap: nowrap;
  }
  .c-form__label {
    width: 40%;
  }
  .c-form__input {
    width: 55%;
  }
}
.Fv {
  position: relative;
  padding-top: 0;
}

.Fv_figureMain {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.Fv_ctaArea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .Fv_ctaArea {
    bottom: 4vh;
  }
}

.HeaderPc {
  padding: 10px 0;
  background-color: #F8F5EC;
}

.HeaderPc_inner {
  width: 90%;
  min-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.HeaderPc_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.HeaderPc_menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.HeaderPc_logoMain {
  font-size: 20px;
  font-weight: 700;
}

.HeaderPc_logoSub {
  font-size: 15px;
}

.HeaderPc_menuItem {
  width: 100%;
  display: block;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #000;
  text-align: center;
  border-left: rgba(85, 85, 85, 0.265) 1px solid;
}

.HeaderPc_menuItem:last-child {
  border-right: rgba(85, 85, 85, 0.265) 1px solid;
}

.HeaderPc_call {
  width: 300px;
}

.HeaderSp {
  background-color: #F8F5EC;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px;
}

.HeaderSp_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.HeaderSp_logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  margin-right: auto;
  margin-left: 3vw;
}

.HeaderSp_logoMain {
  font-size: 16px;
  font-weight: 500;
}

.HeaderSp_logoSub {
  font-size: 12px;
}

.HeaderSp_logoImage {
  width: 50px;
  margin-right: 5px;
}

.HeaderSp_logoLink {
  color: #333;
  font-size: 14px;
}

/* ナビボタン */
.HeaderSp_navBtn {
  position: relative;
  width: 52px;
  height: 52px;
  /* ホバー時カーソルデザイン */
  cursor: pointer;
  /* メニュー本体より前面に配置 */
  z-index: 100;
}

.HeaderSp_navBar {
  position: absolute;
  left: 20%;
  display: block;
  width: 60%;
  border-bottom: solid 2px #555;
  transition: 0.5s ease-in-out;
}

.HeaderSp_navBar:nth-child(1) {
  top: 10px;
}

.HeaderSp_navBar:nth-child(2) {
  top: 18px;
}

.HeaderSp_navBar:nth-child(3) {
  top: 26px;
}

.HeaderSp_navBtn::after {
  content: "MENU";
  position: absolute;
  left: 0;
  top: 32px;
  display: block;
  width: 100%;
  font-size: 10px;
  text-align: center;
  color: #333;
}

/* ナビボタンクリック時 */
.-active .HeaderSp_navBar:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}

.-active .HeaderSp_navBar:nth-child(2) {
  opacity: 0;
}

.-active .HeaderSp_navBar:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

.-active.HeaderSp_navBtn::after {
  content: "CLOSE";
}

/* ナビの内容 */
.HeaderSp_nav {
  position: fixed;
  top: 0vh;
  left: 150vw;
  width: 100vw;
  height: 100vh;
  background-color: #F8F5EC;
  padding: 62px 5vw 5vw;
  transition: 0.5s;
  opacity: 0;
}

.HeaderSp_nav.-active {
  top: 0;
  left: 0;
  opacity: 1;
}

.HeaderSp_navList li {
  border-top: dashed 1px #333;
  position: relative;
  list-style: none;
}

.HeaderSp_navList li::before {
  content: "〇";
  color: #FA7D2B;
  position: absolute;
  top: 1em;
  left: 1em;
}

.HeaderSp_navList li:last-child {
  border-bottom: dashed 1px #333;
}

.HeaderSp_navList a {
  display: block;
  color: #333;
  padding: 1em 0;
}

.HeaderSp_navList a {
  display: block;
  color: #333;
  padding: 1em 0 1em 3em;
}

.Layout {
  margin-top: 30px;
  margin-bottom: 30px;
}

.Layout_header {
  margin-top: 30px;
  margin-bottom: 30px;
}

.Layout_main {
  margin-top: 30px;
  margin-bottom: 30px;
}

.Layout_footer {
  margin-top: 30px;
  margin-bottom: 30px;
}

.Loan_flex {
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.Loan_flexItem {
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .Loan_flexItem {
    width: 40%;
  }
}

.Loan_subImg {
  width: 100px;
}

.Office_flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .Office_flex {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .Profile_flex {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
  }
}

.Profile_img {
  width: 100%;
}

.Profile_figure {
  width: 25%;
}
@media screen and (min-width: 950px) {
  .Profile_figure {
    float: left;
    margin-right: 20px;
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Profile_figure {
    float: left;
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .Profile_figure {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .Profile_textBox {
    margin-top: 20px;
    width: 100%;
  }
}

.Profile_title {
  font-size: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .Profile_title {
    font-size: 24px;
    text-align: center;
  }
}

.Result {
  background-image: url(img/bg.png);
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .Result {
    background-image: url(img/bg_sp.png);
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Result {
    background-image: url(img/bg_sp.png);
  }
}

.Result_flex {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  justify-content: space-around;
}

.Result_flexItem {
  width: 40%;
}

.Service {
  background-image: url(img/bg.png);
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .Service {
    background-image: url(img/bg_sp.png);
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Service {
    background-image: url(img/bg_sp.png);
  }
}

.Service_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.Service_flexItem {
  width: 300px;
}
@media screen and (min-width: 950px) {
  .Service_flexItem {
    width: 32%;
  }
}

.Service_flexItemImg {
  width: 100%;
  height: 100%;
}

.Voice {
  background-image: url(img/bg.png);
  background-size: contain;
  background-repeat: space;
}
@media screen and (max-width: 599px) {
  .Voice {
    background-image: url(img/bg_sp.png);
  }
}
@media screen and (min-width: 600px) and (max-width: 949px) {
  .Voice {
    background-image: url(img/bg_sp.png);
  }
}

.Voice_block {
  margin-top: 30px;
  margin-bottom: 30px;
}

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

figure.Voice_flexItem {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 30px;
}

.Voice_img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.Voice_letterFigure {
  text-align: center;
  margin-top: 20px;
}

.Voice_letterImg {
  width: auto;
}

.Voice_btn {
  text-align: center;
}/*# sourceMappingURL=style.css.map */