@charset "UTF-8";
/*------------------------------------------------------*/
/* element style */
input[type=checkbox],
input[type=radio] {
  margin-right: 4px;
}

textarea,
input[type="search"],
input[type=email],
input[type=text],
input[type=tel],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=password] {
  border-radius: 1px;
  border: solid 1px #dbd9d9;
  font-size: 100%;
  padding: 0 0.5em;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=password],
select,
select > option {
  min-height: 2em;
}

/*------------------------------------------------------*/
/* validationEngine */
.formError + input[type=text],
.formError + input[type=tel],
.formError + input[type="search"],
.formError + input[type=password],
.formError + select,
.formError + textarea {
  border-color: #ff1464;
  background: #e9d1d1;
}

/*------------------------------------------------------*/
/* warrning */
.input_color_warrning {
  background-color: #f5dcdc;
}

/*------------------------------------------------------*/
/* placeholder */
textarea::-webkit-input-placeholder {
  color: #858585;
}

textarea:-ms-input-placeholder {
  color: #858585;
}

textarea::-moz-placeholder {
  color: #858585;
}

textarea:input-placeholder {
  color: #858585;
}

input::-webkit-input-placeholder {
  color: #858585;
}

input:-ms-input-placeholder {
  color: #858585;
}

input::-moz-placeholder {
  color: #858585;
}

select {
  -webkit-appearance: normal;
  -moz-appearance: normal;
  appearance: normal;
  border-radius: 1px;
  border: solid 1px #dbd9d9;
  padding: 0 0.5em;
  line-height: 1;
}

select::-ms-expand {
  display: none;
}

/*------------------------------------------------------*/
/* input_select */
.input_select {
  display: table;
  border-collapse: separate;
  width: 100%;
}

.input_select > label {
  display: table-cell;
  vertical-align: middle;
}

.input_select > label > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ebebeb;
  border-radius: 0 4px 4px 0;
  box-shadow: none;
  background-image: url(../img/btn_select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 50%;
  background-size: auto 100%;
  background-color: #fff;
  color: var(--font_c);
  width: 100%;
  padding: 12px 22.5px 12px 13px;
}

.input_select > label > select::-ms-expand {
  display: none;
}

.input_select > label:first-child > select {
  border-radius: 6px;
}

/*------------------------------------------------------*/
/* input_file（プロフィール画像の入力など） */
.input_file {
  position: relative;
}

.input_file_select img {
  width: 125px;
  height: 125px;
  margin: 0 0 13px;
  -o-object-fit: cover;
  object-fit: cover;
}

.input_file_select .btn {
  display: block;
  text-align: center;
  max-width: 125px;
  height: auto;
  padding: 4px;
}

.input_file_delete {
  display: block;
  position: relative;
}

* + .input_file_delete {
  margin-top: 13px;
}

.input_file_delete input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 6px;
  z-index: 1;
  transform: translate(0, -50%);
}

.input_file_delete span {
  display: inline-block;
  border: 1px solid #ccced3;
  border-radius: 4px;
  line-height: 1;
  padding: 4px 4px 4px calc(1em + 13px);
  transition: all 0.2s ease;
}

.input_file_delete :checked + span {
  background: #ccced3;
}

.input_file input[type=file] {
  border: 0;
  outline: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}

/*------------------------------------------------------*/
/* form item */
.form_item {
  font-feature-settings: "palt";
}

.form_item_block {
  display: block;
  margin: 0 0 0.25em;
}

.form_item_block:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .form_item {
    display: block;
    margin: 0 0 0.5em;
  }
  .form_item input[type=text],
.form_item input[type=tel],
.form_item input[type="search"],
.form_item input[type=password] {
    min-width: 100%;
  }
  .form_item_inline {
    display: inline;
    margin-right: 1em;
  }
  .form_item_inline input[type=text],
.form_item_inline input[type=tel],
.form_item_inline input[type="search"],
.form_item_inline input[type=password] {
    min-width: 0;
  }
}
.input_size03 {
  width: 3em;
}

.input_size04 {
  width: 4em;
}

.input_size06 {
  width: 6em;
}

.input_size12 {
  width: 12em;
}

.input_size24 {
  width: 24em;
}

.input_size_w50 {
  width: 50%;
}

.input_size_w100 {
  width: 100%;
}

/*------------------------------------------------------*/
/* form body */
.table_form + .box_btn {
  text-align: center;
  margin: 16px 0 0;
}

.table_form + .box_btn form {
  display: inline-block;
}

.table_form + .box_btn .btn {
  min-width: 150px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin: 0 13px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .table_form + .box_btn form {
    display: block;
  }
  .table_form + .box_btn .btn {
    width: 100%;
    min-width: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    margin: 0 0 12px;
  }
  .table_form + .box_btn .btn:last-child {
    margin: 0;
  }
}
/* ---------------------------------------
  kiyaku sytle */
.box_kiyaku {
  box-shadow: 0 -4px 5.625px -4px rgba(0, 0, 0, 0.27) inset;
  font-size: 8.3px;
  line-height: 1.5;
  overflow-x: visible;
  overflow-y: auto;
  height: 100px;
  padding: 16px;
}

iframe.box_kiyaku {
  padding: 0;
  border: none;
}

/* ---------------------------------------
  flow style common
*/
/* init style */
/* style */
.form_stepflow {
  margin: 0 0 20px;
}

.form_stepflow ul {
  display: table;
  width: 100%;
  height: 4em;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.form_stepflow ul > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 0 0 1em;
  position: relative;
}

.form_stepflow ul > li > a,
.form_stepflow ul > li > div {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
  z-index: 10;
  color: inherit;
  width: 100%;
  height: 100%;
}

.form_stepflow ul > li > a > span,
.form_stepflow ul > li > div > span {
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

@media (max-width: 767px) {
  .form_stepflow ul > li > a > span,
.form_stepflow ul > li > div > span {
    font-size: 12px;
  }
}
/* ribbon type */
.stepflow_type_ribbon {
  padding: 0;
}

.stepflow_type_ribbon ul > li {
  background-color: #f0f3f5;
  color: #434343;
  padding-left: 1em;
}

.stepflow_type_ribbon ul > li::before {
  display: block;
  content: "";
  z-index: 1;
  position: absolute;
  right: -2em;
  top: 0;
  margin-right: -1px;
  border-style: solid;
  border-width: 2em 1em;
  border-color: transparent transparent transparent #fff;
}

.stepflow_type_ribbon ul > li::after {
  display: block;
  content: "";
  z-index: 2;
  position: absolute;
  right: -2em;
  top: 0;
  border-style: solid;
  border-width: 2em 1em;
  border-color: transparent transparent transparent #f0f3f5;
  border-left-color: #f0f3f5;
}

.stepflow_type_ribbon ul > li:last-child::before {
  display: none;
}

.stepflow_type_ribbon ul > li:last-child::after {
  display: none;
}

.stepflow_type_ribbon ul > li.active {
  background-color: var(--bg_ribbon_active);
}

.stepflow_type_ribbon ul > li.active::after {
  border-left-color: var(--bg_ribbon_active);
}

.stepflow_type_ribbon.stepflow_color01 {
  padding: 0;
}

.stepflow_type_ribbon.stepflow_color01 ul > li {
  background-color: #f0f3f5;
  color: #434343;
}

.stepflow_type_ribbon.stepflow_color01 ul > li::after {
  border-left-color: #f0f3f5;
}

.stepflow_type_ribbon.stepflow_color01 ul > li.active {
  background-color: var(--bg_ribbon_active);
}

.stepflow_type_ribbon.stepflow_color01 ul > li.active::after {
  border-left-color: var(--bg_ribbon_active);
}

.stepflow_type_ribbon.stepflow_color02 {
  padding: 0;
}

.stepflow_type_ribbon.stepflow_color02 ul > li {
  background-color: #ccc;
  color: #fff;
}

.stepflow_type_ribbon.stepflow_color02 ul > li::after {
  border-left-color: #ccc;
}

.stepflow_type_ribbon.stepflow_color02 ul > li.active {
  background-color: #999;
}

.stepflow_type_ribbon.stepflow_color02 ul > li.active::after {
  border-left-color: #999;
}

.stepflow_type_ribbon.stepflow_color03 {
  padding: 0;
}

.stepflow_type_ribbon.stepflow_color03 ul > li {
  background-color: #ccc;
  color: #fff;
}

.stepflow_type_ribbon.stepflow_color03 ul > li::after {
  border-left-color: #ccc;
}

.stepflow_type_ribbon.stepflow_color03 ul > li.active {
  background-color: #999;
}

.stepflow_type_ribbon.stepflow_color03 ul > li.active::after {
  border-left-color: #999;
}

/**
* サポートフォーム
**/
.form_support_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #e7e6e6;
  background-color: #fff;
  padding: 24px;
}

.form_support_wrap h4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 700;
  width: 100%;
  margin: 0 0 28px;
}

.form_support_wrap > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccced3;
  width: 100%;
  min-height: 50px;
  padding: 8px 0;
}

.form_support_wrap > div.form_stepflow {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border-top: none;
}

.form_support_wrap > div:nth-of-type(odd) {
  background-color: #eee;
}

.form_support_wrap > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 224px;
  padding: 4px 20px 4px 20px;
}

.form_support_wrap > div > div:last-child {
  border-left: 1px solid #ccced3;
  width: calc(100% - 224px);
  padding: 0 20px;
  padding: 4px 20px 4px 20px;
}

.form_support_wrap > div:last-child > div:last-child {
  border: none;
}

.form_support_wrap .support_checks ul li,
.form_support_wrap .pre-date {
  margin-top: 8px;
}

.form_support_wrap .support_checks ul li:first-child,
.form_support_wrap .pre-date:first-child {
  margin-top: 0;
}

.form_support_wrap .support_checks ul li,
.form_support_wrap .pre-date p {
  font-size: 14px;
}

.form_support_wrap .pre-date p {
  display: inline-block;
}

.form_support_wrap .pre-date span {
  background-color: #e9be38;
  color: #fff;
  font-size: 12px;
  margin-right: 4px;
  padding: 4px;
}

.form_support_wrap > div > div > p {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 24px;
  padding-right: 4px;
}

.form_support_wrap > div > div > span {
  background-color: #000;
  color: #fff;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  min-width: 40px;
  padding: 4px 6px;
}

.form_support_wrap > div > div > input {
  border-radius: 6px;
  border: 1px solid #ccced3;
  font-size: 14px;
  width: 60%;
  padding: 8px;
}

.form_support_wrap > div > div > input.delete {
  width: auto;
}

.form_support_wrap > div > div > select {
  border-radius: 6px;
  border: 1px solid #ccced3;
  font-size: 14px;
  padding: 8px;
}

.form_support_wrap > div > div > label {
  float: left;
  font-size: 14px;
  width: 40%;
  padding: 4px 8px 4px 0;
}

.form_support_wrap > div > div > label input[type=radio] {
  margin-right: 4px;
}

.form_support_wrap > div > div > textarea {
  border-radius: 6px;
  border: 1px solid #ccced3;
  font-size: 14px;
  width: 80%;
  min-height: 100px;
  padding: 8px;
  resize: vertical;
}

.form_support_wrap > div > .support_tos {
  margin: 0 0 8px;
}

.form_support_wrap > div > .support_tos p {
  font-size: 12px;
  font-weight: normal;
  line-height: 24px;
  height: 200px;
  overflow-y: auto;
}

.form_support_wrap .support_button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ccced3;
  background: none;
  padding-top: 28px;
}

.form_support_wrap .support_button form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 49%;
}

.form_support_wrap .support_button form:only-child {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.support_button > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 60%;
}

.support_button div button {
  border-radius: 6px;
  border: none;
  background-color: var(--main_c);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 48%;
  padding: 20px 16px;
  cursor: pointer;
}

.support_button > div:first-child > button,
.support_button > div > form button:only-of-type,
.support_button > div > form:only-child button {
  width: 100%;
}

.support_button > div .support_button_back {
  color: var(--main_c);
  background-color: #fff;
  border: 1px solid var(--main_c);
}

@media (max-width: 767px) {
  .form_support_wrap {
    border: none;
    font-size: 14px;
    padding: 0;
    margin: 0 -16px;
  }
  .form_support_wrap > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 4px 13px;
  }
  .form_support_wrap > div:nth-of-type(2n + 1) {
    background-color: #fff;
  }
  .form_support_wrap > div > div:first-child {
    width: 100%;
    padding: 13px 13px 0;
  }
  .form_support_wrap > div > div:last-child {
    width: 100%;
    padding: 13px;
    border-left: none;
  }
  .form_support_wrap > div:last-child > div:last-child {
    border: none;
  }
  .form_support_wrap > div > div > p {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-feature-settings: "palt";
  }
  .form_support_wrap > div > div > span {
    font-size: 13px;
    min-width: 20px;
    padding: 4px 13px;
  }
  .form_support_wrap > div > div > input {
    width: 100%;
  }
  .form_support_wrap > div > div > select {
    width: 100%;
  }
  .form_support_wrap > div > div > select.birth {
    width: 20%;
    margin-bottom: 13px;
  }
  .form_support_wrap > div > div > select.birth:last-child {
    margin-bottom: 0;
  }
  .form_support_wrap > div > .support_checks {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }
  .form_support_wrap > div > .support_checks > label {
    width: 100%;
    padding: 0;
    margin: 0 0 13px;
  }
  .form_support_wrap .pre-date input,
.form_support_wrap > div > div > textarea {
    width: 100%;
  }
  .form_support_wrap .pre-date p {
    margin-bottom: 3.125px;
  }
  .form_support_wrap .support_button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: none;
    background: none;
    padding-top: 16px;
  }
  .support_button > div {
    width: 100%;
    padding-top: 0;
  }
  .support_button div:last-child button:last-child {
    margin: 0;
  }
}
/**
* コンタクトフォーム（マイページ）
**/
@media (max-width: 767px) {
  .form_contact {
    margin: 0 0 17.5px;
    overflow: hidden;
  }
  .form_contact .form {
    display: block;
    border-top: 1px solid #ccced3;
    width: 100%;
    margin: 0 0 17.5px;
  }
}