@charset "UTF-8";
/* Reset CSS */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Josefin Sans", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit; /* ボタンのテキストが親要素のフォント設定を引き継ぐ */
  color: inherit; /* ボタンのテキストカラーが親要素を引き継ぐ */
  cursor: pointer; /* ホバー時にカーソルが指マークになる */
  outline: none; /* フォーカス時のアウトラインを消す */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* reset css End */
.customerInfo__table {
  margin: 2rem auto 0;
  max-width: 660px;
}

.customerInfo__table__one {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  border: 1px solid #353535;
  border-bottom: none;
}
@media screen and (min-width: 780px) {
  .customerInfo__table__one {
    flex-direction: row;
  }
}

.customerInfo__table__one:last-child {
  border: 1px solid #353535;
}

.customerInfo__table__one__left {
  width: 100%;
  padding: 1rem;
  background: #f6f3f3;
  display: flex;
  justify-content: left;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 780px) {
  .customerInfo__table__one__left {
    width: 50%;
    padding: 1rem;
  }
}

.customerInfo__table__one_left__title {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.customerInfo__table__one_left__title--must::after {
  content: "※";
  color: var(--theme_color);
  position: relative;
  top: 50%;
  left: 4px;
  font-size: var(--fontSize_xs);
}

.customerInfo__table__one__right {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  background: white;
  font-weight: bold;
}
@media screen and (min-width: 780px) {
  .customerInfo__table__one__right {
    width: 50%;
    padding: 1rem 1.2rem;
  }
}

.customerInfo__table__one__right__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.customerInfo__table__one__right__content--double {
  flex-direction: row;
}

.customerInfo__table__one__right__content__input {
  padding: 0.8rem;
  width: 100%;
}

.customerInfo__table__one__right__content__inputWrap__inner {
  width: calc((100% - 8px - 4px) / 2);
}

.customerInfo__table__one__right__confirmTxt {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}

.customerInfo__table__one__right__content__inputWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* common rules */
:root {
  --theme_color: #1b288e;
  --base_color: #ffffff;
  --text_color: #231205;
  --text_color_wh: #ffffff;
  --dark_gray: #454545;
  --accent_color: #ff5123;
  --accent_blue: #02a2dc;
}

body {
  line-height: 1.4;
  word-wrap: break-word;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

main {
  width: 100%;
  min-height: 80vh;
}

html {
  scroll-behavior: lgooth;
  scroll-padding-top: 60px;
}

label {
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
}

.lg_br {
  display: block;
}
@media screen and (min-width: 780px) {
  .lg_br {
    display: none;
  }
}

.fit-content-center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.main_wrapper {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 16px;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-6 {
  margin-top: 6px;
}

.mt-12 {
  margin-top: 12px;
}

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

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

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

.fz-20 {
  font-size: 20px !important;
}

.fz-h2 {
  font-size: 1.3rem !important;
}
@media screen and (min-width: 780px) {
  .fz-h2 {
    font-size: 1.5rem !important;
  }
}

.fz-h3 {
  font-size: 1.1rem !important;
}
@media screen and (min-width: 780px) {
  .fz-h3 {
    font-size: 1.2rem !important;
  }
}

.fz-base {
  font-size: 1rem !important;
}
@media screen and (min-width: 780px) {
  .fz-base {
    font-size: 1.1rem !important;
  }
}

.h1 {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  margin: 60px auto;
}
@media screen and (min-width: 780px) {
  .h1 {
    font-size: 2rem;
  }
}

.attention {
  font-size: 0.8rem;
  padding-top: 0.5rem;
}
@media screen and (min-width: 780px) {
  .attention {
    font-size: 0.9rem;
  }
}
.attention a {
  font-weight: bold;
  text-decoration: underline;
}

.main_wrapper {
  color: var(--theme_color);
}
.main_wrapper a {
  color: var(--theme_color);
}
.main_wrapper .error .to_contact {
  color: var(--accent_color);
}

.baseInfo_title {
  padding-bottom: 0.5em;
  font-weight: bold;
  color: var(--theme_color);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  vertical-align: middle;
}
.baseInfo_title.must::after {
  content: "※";
  color: var(--accent_color);
  position: absolute;
  right: -1.2em;
}
.baseInfo_content_inner {
  width: 100%;
  margin: 0 auto;
}
.baseInfo_content_h2 {
  font-weight: 600;
  border-bottom: 3px solid var(--theme_color);
  color: var(--theme_color);
}
.baseInfo_content_inputArea_title {
  font-size: 0.8rem;
  padding-bottom: 10px;
  font-weight: bold;
  color: var(--theme_color);
}
.baseInfo_content_inputArea_one {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25em;
}
.baseInfo_content_inputArea_one.hp_column {
  flex-direction: column;
}
.baseInfo_content_inputArea_one_inner {
  width: 100%;
}
.baseInfo_content_inputArea_one_inner_txt {
  font-size: 0.8rem;
  padding-bottom: 10px;
}
.baseInfo_content_inputArea_one_input {
  padding: 1em;
  width: 100%;
  font-size: 0.9rem;
  border: 2px solid #efefef;
  border-radius: 8px;
  box-sizing: border-box;
}

.btnArea {
  margin: 60px auto 100px;
}

.submitBtn {
  background: var(--dark_gray);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 20px;
  font-weight: bold;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.submitBtn p {
  font-size: 1.1rem;
  color: white;
}
@media screen and (min-width: 780px) {
  .submitBtn {
    max-width: 400px;
    gap: 10px;
  }
}

.consensusBtn {
  display: block;
  background: var(--theme_color);
  width: 100%;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  max-width: 400px;
  margin: 30px auto 0;
  font-weight: 500;
}

.reference {
  color: var(--theme_color);
  text-decoration: underline;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.reference:first-child {
  margin-top: 0;
}
.reference svg {
  margin-left: 8px;
  vertical-align: middle;
}

.error {
  display: none;
  color: var(--accent_color);
}
.error a.to_contact {
  color: var(--accent_color);
  text-decoration: underline;
  font-weight: bold;
}

#myModal {
  margin-top: 20px;
  padding: 2rem 1rem;
}

.blocker {
  padding: 20px 0 !important;
}

.submitError {
  margin: 30px auto;
  max-width: 600px;
  border: 2px solid var(--accent_color);
  padding: 1em;
}

.credit_register-page .fv {
  background-image: url("../../../img/credit-register-fv.png");
}

.bank_register-page .fv {
  background-image: url("../../../img/bank-register-fv.jpeg");
}

footer .inner_wrapper {
  margin-top: 0 !important;
}

.bl_page_top_title {
  padding-right: 12px;
}