@charset "UTF-8";
/*--------------------------------------------------
BASE
--------------------------------------------------*/
html {
  background-color: #f0f0f0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  line-height: 1.8;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  line-height: 1.33;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: unset;
  }
}

p {
  font-weight: 400;
}

em {
  display: block;
  font-style: normal;
}

input {
  color: #383838;
  font-size: 16px;
}
input:disabled {
  opacity: 1;
}

select {
  color: #383838;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/*--------------------------------------------------
COMMON 入力項目等
--------------------------------------------------*/
.common-head {
  border-top: 1px rgba(80, 100, 153, 0.1) solid;
  color: #383838;
  padding-top: 12px;
  position: relative;
}
.common-head::before {
  background: #506499;
  content: "";
  width: 42px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
}

.common-subhead {
  color: #484848;
  font-size: 18px;
  position: relative;
}
.common-subhead span {
  margin-right: 12px;
  position: absolute;
  top: 3px;
}
.common-subhead p {
  font-weight: 700;
  padding-left: 45px;
}
.common-subhead p.padding--none {
  padding-left: 0;
}
.common-subhead em {
  font-weight: 700;
  font-style: normal;
  display: block;
  padding-left: 45px;
}
.common-subhead em.padding--none {
  padding-left: 0;
}
.common-subhead small {
  font-weight: 500;
  padding-left: 45px;
}
.common-subhead small.padding--none {
  padding-left: 0;
}
.common-subhead a {
  color: #484848;
  pointer-events: none;
}

.common-btn_view {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.common-btn_view img {
  max-width: 16px;
}

.common-textbox {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.common-textbox input[type=text] {
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px;
  width: 100%;
}
.common-textbox input[type=email] {
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px;
  width: 100%;
}
.common-textbox input[type=password] {
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px;
  width: 100%;
  max-width: 100%;
}
.common-textbox input[type=date] {
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px;
  width: 100%;
}
.common-textbox input[type=file] {
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px;
  width: 100%;
}
.common-textbox input[type=file] .common-checkbox__dummy-input {
  border: none;
}
.common-textbox.calender label::before {
  background: url("../img/icon-calender.png");
  background-size: 16px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.common-textbox.calender label input {
  padding: 12px 36px 12px 12px;
}
.common-textbox.calender label input::-webkit-calendar-picker-indicator {
  display: none;
}

.c-input_error {
  background: #f7e9e9 !important;
  border: 1px #b22222 solid !important;
  color: #b22222 !important;
  margin-bottom: 8px;
}
.c-input_error__text {
  color: #b22222;
  font-size: 12px;
}

select.c-input_error {
  margin-bottom: 0;
}

.common-pulldown {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  width: 100%;
  position: relative;
}
.common-pulldown::before {
  background: url("../img/icon-pulldown.png");
  background-size: 16px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.common-pulldown select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: none;
  border-radius: 4px;
  display: block;
  padding: 12px 36px 12px 12px;
  width: 100%;
}
.common-pulldown__item {
  background: #fff;
  border: 1px #f0f0f0 solid;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  color: #506499;
  font-size: 16px;
  padding: 12px;
  position: relative;
  width: 100%;
}
.common-pulldown__item p {
  font-weight: 700;
}
.common-pulldown__item::before {
  background: url("../img/icon-pulldown.png");
  background-size: 16px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.common-pulldown__item.active {
  border: 1px #506499 solid;
}
.common-pulldown.c-input_error select {
  background: #f7e9e9 !important;
}

.common-input_btn--02 input[type=button] {
  border: 1px #f0f0f0;
  border-radius: 8px;
}
.common-input_btn--02 input[type=button]:checked {
  background: #506499;
}
.common-input_btn--02 input[type=button]:hover {
  opacity: 0.5;
}
.common-input_btn--02 input[type=radio] {
  display: none;
}
.common-input_btn--02 input[type=radio] + label {
  background: #ffffff;
  border: 1px #f0f0f0;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  color: #506499;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 12px;
  text-align: center;
  width: 100%;
}
.common-input_btn--02 input[type=radio]:checked + label {
  background: #506499;
  color: #ffffff;
}
.common-input_btn--02 input[type=radio]:hover {
  opacity: 0.5;
}
.common-input_btn--03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common-input_btn--03 input[type=radio] {
  display: none;
}
.common-input_btn--03 input[type=radio] + label {
  background: #ffffff;
  border: 1px #f0f0f0;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  color: #506499;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}
.common-input_btn--03 input[type=radio] + label:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.common-input_btn--03 input[type=radio]:checked + label {
  background: #506499;
  -webkit-box-shadow: 2px 2px 0 rgb(80, 100, 153);
          box-shadow: 2px 2px 0 rgb(80, 100, 153);
  color: #ffffff;
}
.common-input_btn--03 input[type=radio]:checked + label.c-input_error {
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1) !important;
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1) !important;
}
.common-input_btn--03 input[type=radio]:checked + label.c-inactive {
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
}

.common-checkbox {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common-checkbox.c-input_error .common-checkbox__label-text {
  color: #b22222 !important;
}
.common-checkbox.c-input_error .common-checkbox__dummy-input {
  border: 1px #b22222 solid !important;
}
.common-checkbox__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.common-checkbox__input:checked + .common-checkbox__dummy-input {
  border: solid 1px #506499;
  background: #506499;
}
.common-checkbox__input:checked + .common-checkbox__dummy-input::before {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  position: absolute;
  top: 25%;
  left: 50%;
}
.common-checkbox__dummy-input {
  border: solid 1px #506499;
  background: #ffffff;
  border-radius: 4px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.common-checkbox__label-text {
  display: block;
  font-size: 14px;
  margin-left: 4px;
}
.common-checkbox.line {
  background: #f6f6f6;
  border: 1px #d0d0d0 solid;
  border-radius: 8px;
  color: #484848;
  display: block;
  font-weight: 700;
  padding: 24px;
  position: relative;
  width: 100%;
}
.common-checkbox.line.active {
  border: 1px #506499 solid;
}
.common-checkbox.line .common-checkbox__input {
  display: none;
}
.common-checkbox.line .common-checkbox__input:checked {
  border: 1px #506499 solid;
}
.common-checkbox.line .common-checkbox__label-text {
  font-size: 14px;
  margin-left: 32px;
}
.common-checkbox.line .common-checkbox__label-text a {
  color: #506499;
}
.common-checkbox.line .common-checkbox__label-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.common-checkbox.line .common-checkbox__dummy-input {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  left: 24px;
}
.common-checkbox.line.circle {
  background: #fff;
  padding: 16px;
}
.common-checkbox.line.circle.active {
  border: 1px #506499 solid;
}
.common-checkbox.line.circle.checked-border {
  border: 1px solid #506499;
}
.common-checkbox.line.circle .common-checkbox__label-text {
  margin-left: 24px;
}
.common-checkbox.line.circle .common-checkbox__label-text.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .common-checkbox.line.circle .common-checkbox__label-text.u-flex {
    display: block;
  }
}
.common-checkbox.line.circle .common-checkbox__label-text.u-flex .text {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .common-checkbox.line.circle .common-checkbox__label-text.u-flex .text {
    max-width: 100%;
  }
}
.common-checkbox.line.circle .common-checkbox__label-text.u-flex img {
  max-width: 130px;
  max-height: 83px;
}
@media screen and (max-width: 768px) {
  .common-checkbox.line.circle .common-checkbox__label-text.u-flex img {
    max-width: 263px;
    max-height: 166px;
    margin-top: 8px;
  }
}
.common-checkbox.line.circle .common-checkbox__input:checked + .common-checkbox__dummy-input {
  border: 1px #506499 solid;
}
.common-checkbox.line.circle .common-checkbox__dummy-input {
  background: none;
  border: 1px #bbb solid;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  top: 20px;
  left: 16px;
}
.common-checkbox.line.circle .common-checkbox__dummy-input::before {
  background: #506499;
  border: 1px #506499 solid;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(0) translate(-50%, -50%);
          transform: rotate(0) translate(-50%, -50%);
  top: 50%;
}
.common-checkbox.line.circle.center {
  padding: 24px 24px 24px 16px;
}
.common-checkbox.line.circle.center .common-checkbox__dummy-input {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .common-checkbox.line.circle.center .common-checkbox__dummy-input {
    top: 36px;
  }
}
.common-checkbox.line.circle.center .common-checkbox__label-text.u-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.common-checkbox.btn {
  background: #ffffff;
  border: 1px #f0f0f0 solid;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  color: #484848;
  display: block;
  font-weight: 700;
  padding: 12px;
  position: relative;
  width: 100%;
}
.common-checkbox.btn.active {
  border: 1px #506499 solid;
}
.common-checkbox.btn .common-checkbox__input {
  display: none;
}
.common-checkbox.btn .common-checkbox__label-text {
  font-size: 16px;
  margin-left: 32px;
}
.common-checkbox.btn .common-checkbox__label-text a {
  color: #506499;
}
.common-checkbox.btn .common-checkbox__label-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.common-checkbox.btn .common-checkbox__dummy-input {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
}
.common-checkbox.upload {
  background: #ffffff;
  border: 1px #f0f0f0 solid;
  border-radius: 50px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  color: #484848;
  display: block;
  font-weight: 700;
  padding: 12px;
  position: relative;
  width: 100%;
}
.common-checkbox.upload .common-checkbox__input {
  display: none;
}
.common-checkbox.upload .common-checkbox__label-text {
  font-size: 16px;
  text-align: center;
}
.common-checkbox.upload .common-checkbox__label-text a {
  color: #506499;
}
.common-checkbox.upload .common-checkbox__label-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.common-checkbox.upload .common-checkbox__dummy-input {
  display: none;
}

.js-zipcodeArea {
  position: relative;
}
.js-zipcodeArea .js-zipcodeCandidates {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  z-index: 999;
}
.js-zipcodeArea .js-zipcodeCandidates ul {
  background: #fff;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: block;
  list-style: none;
  padding: 0;
}
.js-zipcodeArea .js-zipcodeCandidates ul li {
  background: #fff;
  cursor: pointer;
  padding: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.js-zipcodeArea .js-zipcodeCandidates ul li:first-of-type {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.js-zipcodeArea .js-zipcodeCandidates ul li:last-of-type {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.js-zipcodeArea .js-zipcodeCandidates ul li:hover {
  background: rgba(208, 208, 208, 0.5);
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.js-zipcodeArea .js-zipcodeCandidates ul li ~ li:hover:first-of-type {
  background: none;
}

.common-listbox__radio {
  background: #fff;
  border-radius: 12px;
  color: #383838;
  font-size: 14px;
  line-height: 1.5;
  padding: 24px 16px;
}

/*--------------------------------------------------
COMPONENT
--------------------------------------------------*/
.c-wrapper {
  margin: 32px;
}
.c-wrapper--640 {
  background: #f0f0f0;
  -webkit-box-shadow: 2px 2px 0px rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0px rgba(43, 43, 43, 0.1);
  border-radius: 24px;
  margin: 0 auto;
  max-width: 640px;
  padding: 56px 64px 64px 64px;
}
@media screen and (max-width: 768px) {
  .c-wrapper--640 {
    border-radius: 0;
    padding: 48px 24px 40px 24px;
  }
}
.c-wrapper--960 {
  margin: 0 auto;
  max-width: 960px;
}
.c-wrapper--1040 {
  margin: 0 auto;
  max-width: 1040px;
}
.c-wrapper__input {
  background: #f6f6f6;
  padding: 56px 64px 64px 64px;
}
@media screen and (max-width: 768px) {
  .c-wrapper__input {
    padding: 48px 24px 40px 24px;
  }
}

.c-inner {
  background: #f6f6f6;
  margin-bottom: 16px;
}

.c-error {
  background: #f7e9e9;
  border: 1px #b22222 solid;
  border-radius: 8px;
  color: #383838;
  font-size: 14px;
  margin: 0 auto;
  width: 100%;
  padding: 18px 16px 18px 52px;
  position: relative;
}
.c-error::before {
  background: url("../img/icon-error.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  left: 15px;
}
.c-error__desc {
  color: #5d5d5d;
}
.c-error__wrap {
  padding-bottom: 32px;
  margin: 0 auto;
  max-width: 512px;
}
@media screen and (max-width: 768px) {
  .c-error__wrap {
    background: #f6f6f6;
    max-width: 100%;
    padding: 32px 24px 0;
  }
}
.c-error__wrap.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-error__wrap.pc {
    display: none;
  }
}
.c-error__wrap.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-error__wrap.sp {
    display: block;
  }
}

.c-caution {
  background: #fffae6;
  border: 1px #ffce00 solid;
  border-radius: 8px;
  color: #383838;
  font-size: 14px;
  margin: 0 auto;
  width: 100%;
  padding: 18px 16px 18px 52px;
  position: relative;
}
.c-caution::before {
  background: url("../img/icon-caution.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  left: 15px;
}
.c-caution__desc {
  color: #5d5d5d;
}
.c-caution__wrap {
  padding: 100px 32px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .c-caution__wrap {
    display: none;
  }
}
.c-caution.u-display--pc {
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  .c-caution.u-display--pc {
    display: none;
  }
}

.c-info {
  background: #eef0f5;
  border: 1px #506499 solid;
  border-radius: 8px;
  color: #383838;
  font-size: 14px;
  margin: 0 auto;
  width: 100%;
  padding: 18px 16px 18px 52px;
  position: relative;
}
.c-info::before {
  background: url("../img/icon-info.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  left: 15px;
}
.c-info__desc {
  color: #5d5d5d;
}
.c-info__abnormal {
  background: #eef0f5;
  border: 1px #506499 solid;
  border-radius: 8px;
  color: #383838;
  font-size: 14px;
  margin: 0 auto;
  width: 100%;
  padding: 16px;
  position: relative;
}
.c-info__abnormal__wrap {
  padding-left: 36px;
}
.c-info__abnormal::before {
  background: url("../img/icon-info.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  left: 15px;
}

.c-inactive {
  background: #d0d0d0 !important;
  border: 1px #d0d0d0 solid !important;
  color: rgba(255, 255, 255, 0.8) !important;
  pointer-events: none !important;
}
.c-inactive::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
.c-inactive::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
.c-inactive:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
.c-inactive::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
.c-inactive::placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
::-webkit-input-placeholder {
  color: rgba(56, 56, 56, 0.2) !important;
}
::-moz-placeholder {
  color: rgba(56, 56, 56, 0.2) !important;
}
:-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.2) !important;
}
::-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.2) !important;
}
::placeholder {
  color: rgba(56, 56, 56, 0.2) !important;
}

.c-btn__emphasis {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  background: #ffce00;
  border: 1px #ffce00 solid;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__emphasis:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__primary {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  background: #506499;
  border: 1px #506499 solid;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__primary:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn__primary:hover {
    opacity: 1;
    -webkit-transition: 0;
    transition: 0;
  }
}
.c-btn__secondary {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  background: #ffffff;
  border: 1px #ffffff solid;
  color: #506499;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__secondary:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__inactive {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  background: #d0d0d0;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.c-btn__toppage_btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px #ffffff solid;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  color: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;
  width: 200px;
}
.c-btn__toppage_btn:hover {
  border: 1px #506499 solid;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__toppage_btn img {
  max-width: 48px;
}
.c-btn__info {
  background: #ffffff;
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  margin: 0 auto;
  max-width: 64px;
  padding: 16px;
  position: fixed;
  bottom: 0;
  right: 16px;
}
.c-btn__info img {
  max-width: 32px;
}
.c-btn__proost {
  display: block;
  max-width: 118px;
}
.c-btn__save {
  background: #506499;
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
  padding: 12px 14px;
  width: 66px;
  height: 66px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}
.c-btn__save img {
  max-width: 39px;
  max-height: 37px;
}
.c-btn__edit {
  border: 1px #506499 solid;
  border-radius: 8px;
  cursor: pointer;
  max-width: 80px;
  padding: 6px 12px;
  position: absolute;
}
.c-btn__edit::before {
  background: url("../img/icon-add.png") no-repeat;
  background-size: 16px;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn__edit p {
  color: #506499;
  font-size: 14px;
  padding-left: 26px;
}
.c-btn__square {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px #ffffff solid;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  color: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
.c-btn__square:hover {
  border: 1px #506499 solid;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn__square img {
  max-width: 24px;
}
.c-btn__square--link {
  background: #ffffff;
  border: 1px #f0f0f0 solid;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
  box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
  color: #2b2b2b;
  display: block;
  font-size: 14px;
  padding: 16px 32px 16px 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.c-btn__square--link::before {
  background: url(../img/icon-chevron.png) no-repeat;
  background-size: 16px;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
}
.c-btn__square--link:hover {
  border: 1px #506499 solid;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-link {
  color: #506499;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-link img {
  display: inline-block;
  max-width: 16px;
  position: relative;
  top: 3px;
}
.c-link__underline {
  color: #506499;
  font-size: 14px;
  text-decoration: underline;
}
.c-link:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-popup {
  position: relative;
}
.c-popup__desc {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: none;
  position: fixed;
  bottom: 116px;
  right: 16px;
  padding: 20px 24px 24px 24px;
  width: 343px;
  z-index: 999;
}
.c-popup__desc::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 27px;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffffff;
}
.c-popup__desc.active {
  display: block;
}
.c-popup__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.c-popup__icon img {
  max-width: 76px;
}
.c-popup__info {
  width: 100%;
  position: relative;
}
.c-popup__info dl {
  border-bottom: #d0cbcc 1px dotted;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-popup__info dl:first-of-type {
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.c-popup__info dl:nth-child(2) {
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.c-popup__info dl:nth-child(3) {
  border-bottom: none;
  padding-bottom: 16px;
}
.c-popup__info dl dt {
  color: #666666;
  font-size: 12px;
  max-width: 60px;
  width: 100%;
}
.c-popup__info dl dd {
  color: #484848;
  font-size: 18px;
}
.c-popup__btn__close {
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
}
.c-popup__btn__close img {
  max-width: 24px;
}
.c-popup__btn__chat {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px #506499 solid;
  border-radius: 14px;
  color: #506499;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 50px;
}
.c-popup__btn__chat img {
  max-width: 24px;
}

.c-tag img {
  max-width: 16px;
  position: relative;
  top: 3px;
}
.c-tag.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
}
.c-tag__pdf {
  background: #506499;
  border-radius: 10px;
  color: #ffffff;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  padding: 3px 6px;
  vertical-align: middle;
}
.c-tag__necessary {
  background: #ffce00;
  border-radius: 4px;
  color: #383838;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
}
.c-tag__optional {
  background: #d0d0d0;
  border-radius: 4px;
  color: #383838;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
}

.c-modal {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-modal {
    padding: 0 24px;
  }
}
.c-modal__content {
  background: #fff;
  border: 1px solid #888;
  border-radius: 12px;
  padding: 40px 64px;
  pointer-events: all;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-modal__content {
    padding: 40px 24px;
  }
}
.c-modal__content h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.c-modal__content p {
  font-size: 14px;
}
.c-modal__btn_close {
  color: #506499;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  pointer-events: all;
  top: 12px;
  right: 12px;
}
.c-modal__btn_close:hover, .c-modal__btn_close:focus {
  text-decoration: none;
  cursor: pointer;
}
.c-modal__complete {
  background: rgba(0, 0, 0, 0.7);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-modal__complete {
    padding: 0 24px;
  }
}
.c-modal__complete__content {
  background: #fff;
  border: 1px solid #888;
  border-radius: 12px;
  padding: 40px 64px;
  pointer-events: all;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .c-modal__complete__content {
    padding: 40px 24px;
  }
}
.c-modal__complete__content h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.c-modal__complete__content p {
  font-size: 14px;
}

.c-modal_scroll {
  overflow: auto;
  height: 80vh;
}
.c-modal_scroll__tb {
  border-collapse: collapse;
  width: 100%;
}
.c-modal_scroll__tb th,
.c-modal_scroll__tb td {
  border: solid 1px #506499;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  padding: 6px;
  text-align: center;
}
.c-modal_scroll__tb th {
  background: #506499;
  border: solid 1px #fff;
  border-top: solid 1px #506499;
  border-bottom: solid 1px #506499;
  color: #fff;
  font-weight: 700;
}
.c-modal_scroll__tb th:first-of-type {
  border-left: solid 1px #506499;
}
.c-modal_scroll__tb th:last-of-type {
  border-right: solid 1px #506499;
}
.c-modal_scroll__tb--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-modal_scroll__tb--sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-modal_scroll__tb--pc {
    display: none;
  }
}
.c-modal_scroll--right {
  overflow-x: scroll;
}
.c-modal_scroll--right p {
  font-size: 12px;
}
.c-modal_scroll--right table {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 510px;
}
.c-modal_scroll--right table tr td:first-of-type {
  background: #eef0f5;
  color: #506499;
}

.c-textarea {
  border: none;
  border-radius: 4px;
  color: #383838;
  width: 100%;
  max-height: 150px;
  padding: 12px;
}

/*--------------------------------------------------
LAYOUT
--------------------------------------------------*/
.l-header {
  margin: 32px 32px 0;
}
@media screen and (max-width: 768px) {
  .l-header {
    margin: 0 auto;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__wrap {
  background: #ffffff;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 48px 16px 48px;
}
@media screen and (max-width: 768px) {
  .l-header__wrap {
    border-radius: 0;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding: 12px 16px 12px 16px;
  }
}
.l-header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    -webkit-column-gap: 14.5px;
       -moz-column-gap: 14.5px;
            column-gap: 14.5px;
  }
}
.l-header__img--01 {
  max-width: 196px;
}
@media screen and (max-width: 768px) {
  .l-header__img--01 {
    max-width: 131px;
  }
}
.l-header__img--02 {
  max-width: 74.44px;
  max-height: 15.34px;
}
@media screen and (max-width: 768px) {
  .l-header__img--02 {
    max-width: 49.63px;
    max-height: 10.23px;
  }
}
.l-header__menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-header__flex img {
  margin: 0 auto;
  max-width: 24px;
}
.l-header__logout {
  background: #f9f9f9;
  border: none;
  border-radius: 8px;
  color: #383838;
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 17px 0;
  text-align: center;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}
.l-header--out {
  color: #506499;
  font-size: 12px;
  font-weight: 700;
}
.l-header--logo {
  position: absolute;
  top: 40px;
  left: 48px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-header--logo {
    background: #f6f6f6;
    position: relative;
    top: 0;
    left: 0;
    padding: 16px;
  }
}
.l-header--logo img {
  max-width: 131px;
}
.l-header__accountopen {
  background: #f6f6f6;
  display: block;
  margin: 32px 32px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header__accountopen {
    display: block;
    margin: 0 auto;
  }
}
.l-header__sub {
  background: #f6f6f6;
  display: block;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-header__sub {
    padding: 16px;
  }
}
.l-header__sub--logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: absolute;
  top: 40px;
  left: 48px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-header__sub--logo {
    position: relative;
    top: 0;
    left: 0;
  }
}
.l-header__sub--logo img {
  max-width: 131px;
}

#js-closeButton {
  display: none;
}

.l-footer__wrapper {
  margin: 0 auto;
  max-width: 690px;
}
@media screen and (max-width: 768px) {
  .l-footer__wrapper {
    padding: 0 24px;
  }
}
.l-footer__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__flex {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.l-footer__flex img {
  max-width: 165px;
}
@media screen and (max-width: 768px) {
  .l-footer__flex img {
    margin: 0 auto 16px;
  }
}
.l-footer__bank_code {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px #7d001a solid;
  border-radius: 8px;
  color: #7d001a;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  height: 26px;
  padding: 5px 8px;
}
@media screen and (max-width: 768px) {
  .l-footer__bank_code {
    text-align: center;
  }
}
.l-footer__company {
  color: #666;
  font-size: 10px;
}
.l-footer__copyright {
  color: #383838;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  padding: 15px 0;
  text-align: center;
}
.l-footer__accountopen {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-footer__accountopen {
    display: block;
  }
}

.l-portal_toppage {
  position: relative;
}
.l-portal_toppage .u-flex {
  -webkit-column-gap: 31px;
     -moz-column-gap: 31px;
          column-gap: 31px;
}
.l-portal_toppage__main {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__main {
    padding-bottom: 50px;
  }
}
.l-portal_toppage__main .bg {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.l-portal_toppage .c-wrapper--1040 {
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__inner.u-flex {
    display: block;
  }
}
.l-portal_toppage__profile {
  width: 36.44%;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__profile {
    width: 100%;
  }
}
.l-portal_toppage__profile--account {
  color: #383838;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
}
.l-portal_toppage__profile--account span {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-right: 12px;
}
.l-portal_toppage__profile--name {
  color: #484848;
  font-size: 28px;
  font-weight: 400;
}
.l-portal_toppage__profile--name span {
  font-size: 20px;
  margin-left: 4px;
}
.l-portal_toppage__profile__box {
  background: #ffffff;
  border: 1px #f0f0f0 solid;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
  color: #2b2b2b;
  display: block;
  padding: 20px 24px;
  width: 100%;
}
.l-portal_toppage__profile__box button {
  background: none;
  border: 1px #506499 solid;
  border-radius: 50px;
  color: #506499;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}
.l-portal_toppage__profile--item {
  color: #666666;
  font-size: 14px;
}
.l-portal_toppage__profile--answer {
  color: #383838;
  font-size: 16px;
}
.l-portal_toppage__profile .u-flex {
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.l-portal_toppage__profile .c-btn__toppage_btn {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__profile .c-btn__toppage_btn {
    max-width: 100%;
  }
}
.l-portal_toppage__profile.bqlportal {
  width: 100%;
}
.l-portal_toppage__buttons {
  width: 63.56%;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__buttons {
    width: 100%;
  }
}
.l-portal_toppage__buttons__head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__buttons .u-flex {
    display: block;
  }
}
.l-portal_toppage__btn {
  background: #ffffff;
  border: 1px #f0f0f0 solid;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 0 2px 0 rgba(43, 43, 43, 0.1);
  color: #2b2b2b;
  display: block;
  font-size: 16px;
  padding: 8px 32px 8px 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.l-portal_toppage__btn::before {
  background: url("../img/icon-chevron.png") no-repeat;
  background-size: 16px;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}
.l-portal_toppage__btn:hover {
  border: 1px #506499 solid;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__btn.height--75 {
    height: 75.59px;
  }
}
.l-portal_toppage__btn.height--75.pc {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 75px;
}
.l-portal_toppage__btn.height--75.sp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-portal_toppage__progress {
  background: #bde4a5;
  padding: 100px 24px 100px 24px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress {
    padding: 50px 24px 50px 24px;
  }
}
.l-portal_toppage__progress__head {
  color: #ffffff;
}
.l-portal_toppage__progress__head h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 84px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress__head h1 {
    font-size: 48px;
  }
}
.l-portal_toppage__progress__head p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.l-portal_toppage__progress details {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.l-portal_toppage__progress details[open] {
  padding: 16px 16px 32px 16px;
}
.l-portal_toppage__progress details[open] summary {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-portal_toppage__progress details[open] summary::before {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
}
.l-portal_toppage__progress details summary {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  position: relative;
  padding-left: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress details summary {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding-left: 30px;
  }
}
.l-portal_toppage__progress details summary strong {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress details summary strong {
    width: 50%;
  }
}
.l-portal_toppage__progress details summary strong::after {
  background: url("../img/icon-info.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-portal_toppage__progress details summary b {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #b22222;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress details summary b {
    width: 50%;
  }
}
.l-portal_toppage__progress details summary b img {
  width: 16px;
  height: 17px;
}
.l-portal_toppage__progress details summary::after {
  background: #506499;
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-portal_toppage__progress details summary::before {
  background: #506499;
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-portal_toppage__progress details .contents__wrap {
  padding: 0 64px 0 64px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress details .contents__wrap {
    padding: 0;
  }
}
.l-portal_toppage__progress details .contents__btn {
  max-width: 545px;
  margin: 0 auto;
}
.l-portal_toppage__progress details .contents .l-input__head {
  margin-top: 24px;
}
.l-portal_toppage__progress details .contents .l-input__head.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-portal_toppage__progress details .contents .l-input__head.u-flex img {
  position: relative;
}
.l-portal_toppage__progress details .contents .l-input__head.u-flex .p-input_heading {
  padding-left: 0;
}
.l-portal_toppage__progress details .contents h3 {
  font-size: 18px;
  font-weight: 700;
}
.l-portal_toppage__progress details .contents p {
  font-size: 14px;
}
.l-portal_toppage__progress details .contents .c-info {
  padding: 18px;
}
.l-portal_toppage__progress details .contents .c-info::before {
  display: none;
}
.l-portal_toppage__progress .box {
  background: #fff;
  border-radius: 8px;
  padding: 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box {
    padding: 12px;
  }
}
.l-portal_toppage__progress .box__img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__img {
    width: 100%;
  }
}
.l-portal_toppage__progress .box__img img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__img img {
    max-width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__img--pc {
    display: none;
  }
}
.l-portal_toppage__progress .box__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__img--sp {
    display: block;
  }
}
.l-portal_toppage__progress .box__contents {
  width: 62%;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__contents--head--pc {
    display: none;
  }
}
.l-portal_toppage__progress .box__contents--head--pc.u-flex {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-portal_toppage__progress .box__contents--head--pc.u-flex p {
  width: 20%;
}
.l-portal_toppage__progress .box__contents--head--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box__contents--head--sp {
    display: block;
  }
}
.l-portal_toppage__progress .box__contents--head--sp p {
  float: right;
}
.l-portal_toppage__progress .box__contents .l-input__head.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.l-portal_toppage__progress .box__contents .l-input__head img {
  position: relative;
}
.l-portal_toppage__progress .box__contents .l-input__head .p-input_heading {
  padding-left: 0;
}
.l-portal_toppage__progress .box__contents .link {
  text-align: center;
}
.l-portal_toppage__progress .box .c-info {
  padding: 18px;
}
.l-portal_toppage__progress .box .c-info::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__progress .box.u-flex {
    display: block;
  }
}
.l-portal_toppage__info {
  background: #95b9db;
  padding: 100px 24px 100px 24px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__info {
    padding: 50px 24px;
  }
}
.l-portal_toppage__info__head {
  color: #ffffff;
}
.l-portal_toppage__info__head h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 84px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__info__head h1 {
    font-size: 48px;
  }
}
.l-portal_toppage__info__head p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.l-portal_toppage__info--item:hover {
  opacity: 0.65;
}
.l-portal_toppage__info--item img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__info--item img {
    max-width: 116px;
  }
}
.l-portal_toppage__info--item p {
  color: #ffffff;
  font-size: 14px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__info--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_toppage__info .u-flex {
    display: block;
  }
}

.l-portal_changepassword {
  background: url(../img/common-bg.png) no-repeat top/cover;
  color: #383838;
  font-size: 14px;
  padding: 48px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword {
    padding: 0;
  }
}
.l-portal_changepassword .l-header--logo {
  background: none;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .l-header--logo {
    background: #f6f6f6;
  }
}
.l-portal_changepassword .c-wrapper--640 {
  background: #f6f6f6;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .c-wrapper--640 {
    max-width: 100%;
  }
}
.l-portal_changepassword__intro h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.l-portal_changepassword__intro p span {
  font-weight: 700;
}
.l-portal_changepassword__intro ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  position: relative;
}
.l-portal_changepassword__intro ul li::before {
  background: #506499;
  border-radius: 50px;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 0;
}
.l-portal_changepassword__intro ul li button {
  background: #f6f6f6;
  border: none;
  position: relative;
}
.l-portal_changepassword__intro ul li button:hover::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
          box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
  content: "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -70px;
  width: 343px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword__intro ul li button:hover::before {
    width: 150px;
  }
}
.l-portal_changepassword__intro ul li button img {
  max-width: 16px;
  max-height: 16px;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-portal_changepassword .u-flex a {
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .u-flex a {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-portal_changepassword .u-flex.button {
  -webkit-column-gap: 92px;
     -moz-column-gap: 92px;
          column-gap: 92px;
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .u-flex.button input {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_changepassword .u-flex button {
    margin-bottom: 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-portal_changepassword .u-flex.date {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.l-portal_changepassword .u-flex .common-textbox {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: 100%;
}

.l-portal_login {
  background: url(../img/common-bg.png) no-repeat top/cover;
  padding: 80px 0;
  height: 100vh;
  height: unset;
}
@media screen and (max-width: 768px) {
  .l-portal_login {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_login .l-header--logo {
    max-width: 98.82px;
    padding: 0;
  }
}
.l-portal_login .l-header__img--02 {
  max-width: 88px;
  max-height: 29px;
}
.l-portal_login .c-wrapper--640 {
  background: #f6f6f6;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-portal_login .c-wrapper--640 {
    border-radius: 24px;
  }
}
.l-portal_login__wrap {
  margin: 0 auto;
  max-width: 327px;
  padding-top: 40px;
}
.l-portal_login__head p {
  color: #7d001a;
  font-size: 10px;
  text-align: center;
}
.l-portal_login__head img {
  margin: 0 auto;
}
.l-portal_login .u-flex {
  -webkit-column-gap: 92px;
     -moz-column-gap: 92px;
          column-gap: 92px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-portal_login .u-flex {
    display: block;
  }
}
.l-portal_login .u-flex a {
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .l-portal_login .u-flex a {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.l-portal_passwordreset {
  background: url(../img/common-bg.png) no-repeat top/cover;
  padding: 80px 0;
  height: 100vh;
  height: unset;
}
@media screen and (max-width: 768px) {
  .l-portal_passwordreset {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_passwordreset .l-header--logo {
    max-width: 98.82px;
    padding: 0;
  }
}
.l-portal_passwordreset .l-header__img--02 {
  max-width: 88px;
  max-height: 29px;
}
.l-portal_passwordreset .c-wrapper--640 {
  background: #f6f6f6;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-portal_passwordreset .c-wrapper--640 {
    border-radius: 24px;
  }
}
.l-portal_passwordreset__wrap {
  margin: 0 auto;
  max-width: 327px;
  padding-top: 40px;
}
.l-portal_passwordreset__head p {
  color: #7d001a;
  font-size: 10px;
  text-align: center;
}
.l-portal_passwordreset__head img {
  margin: 0 auto;
}
.l-portal_passwordreset .u-flex {
  -webkit-column-gap: 92px;
     -moz-column-gap: 92px;
          column-gap: 92px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-portal_passwordreset .u-flex {
    display: block;
  }
}
.l-portal_passwordreset .u-flex a {
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .l-portal_passwordreset .u-flex a {
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.l-portal_passwordreset__title h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.l-portal_passwordreset__title p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .l-portal_error {
    padding: 64px 24px 0 24px;
  }
}
.l-portal_error__head {
  color: #707070;
  font-size: 22px;
  font-weight: 700;
}
.l-portal_error .c-btn__secondary {
  margin: 0 auto;
  max-width: 327px;
}

.l-portal_changemailaddress {
  background: url(../img/common-bg.png) no-repeat top/cover;
  color: #383838;
  font-size: 14px;
  padding: 48px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress {
    padding: 0;
  }
}
.l-portal_changemailaddress .l-header--logo {
  background: none;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .l-header--logo {
    background: #f6f6f6;
  }
}
.l-portal_changemailaddress .c-wrapper--640 {
  background: #f6f6f6;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .c-wrapper--640 {
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: 100%;
  }
}
.l-portal_changemailaddress__intro h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .u-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-portal_changemailaddress .u-flex a {
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .u-flex a {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-portal_changemailaddress .u-flex.button {
  -webkit-column-gap: 92px;
     -moz-column-gap: 92px;
          column-gap: 92px;
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .u-flex.button input {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-portal_changemailaddress .u-flex button {
    margin-bottom: 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-portal_changemailaddress .common-checkbox__dummy-input {
  top: 5px;
}

.l-application {
  height: 100vh;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-application {
    display: block;
    height: 100%;
  }
}
.l-application .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-application .c-btn__save {
    display: block;
  }
}
.l-application .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-application .l-header {
    display: block;
  }
}
.l-application .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-application.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-application.l-input {
    display: block;
  }
}
.l-application .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-application .l-footer {
    display: block;
  }
}
.l-application .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-application .c-wrapper--640 {
    display: block;
  }
}
.l-application.l-input {
  display: block;
}
@media screen and (max-width: 768px) {
  .l-application .c-wrapper {
    margin: 0;
  }
}
.l-application .c-inner {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-application .c-inner {
    display: block;
  }
}
.l-application details {
  background: #f6f6f6;
  border: 1px #d0d0d0 solid;
  border-radius: 8px;
  color: #484848;
  display: block;
  font-weight: 700;
  font-size: 14px;
  padding: 24px;
  position: relative;
  width: 100%;
}
.l-application details[open] summary::before {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-application details summary {
  position: relative;
}
.l-application details summary::before {
  background: url("../img/icon-pulldown.png");
  background-size: 16px;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-application .l-footer {
  display: block;
}

.l-requirements {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-requirements {
    display: block;
    height: 100%;
  }
}
.l-requirements .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-requirements .c-btn__save {
    display: block;
  }
}
.l-requirements .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-requirements .l-header {
    display: block;
  }
}
.l-requirements .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-requirements.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-requirements.l-input {
    display: block;
  }
}
.l-requirements .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-requirements .l-footer {
    display: block;
  }
}
.l-requirements .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-requirements .c-wrapper--640 {
    display: block;
  }
}
.l-requirements .c-btn__primary.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-requirements .c-link .c-tag__pdf {
  margin-left: 4px;
  margin-right: 4px;
}

.l-information {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-information {
    display: block;
    height: 100%;
  }
}
.l-information .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-information .c-btn__save {
    display: block;
  }
}
.l-information .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-information .l-header {
    display: block;
  }
}
.l-information .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-information.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-information.l-input {
    display: block;
  }
}
.l-information .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-information .l-footer {
    display: block;
  }
}
.l-information .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-information .c-wrapper--640 {
    display: block;
  }
}
.l-information .u-flex .common-textbox {
  width: 100%;
}

.l-registration {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-registration {
    display: block;
    height: 100%;
  }
}
.l-registration .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-registration .c-btn__save {
    display: block;
  }
}
.l-registration .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-registration .l-header {
    display: block;
  }
}
.l-registration .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-registration.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-registration.l-input {
    display: block;
  }
}
.l-registration .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-registration .l-footer {
    display: block;
  }
}
.l-registration .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-registration .c-wrapper--640 {
    display: block;
  }
}

.l-customer {
  height: 100vh;
  position: relative;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-customer {
    display: block;
    height: 100%;
  }
}
.l-customer .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-customer .c-btn__save {
    display: block;
  }
}
.l-customer .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-customer .l-header {
    display: block;
  }
}
.l-customer .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-customer.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-customer.l-input {
    display: block;
  }
}
.l-customer .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-customer .l-footer {
    display: block;
  }
}
.l-customer .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-customer .c-wrapper--640 {
    display: block;
  }
}
.l-customer .u-flex .common-textbox {
  width: 100%;
}

.l-deposit {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-deposit {
    display: block;
    height: 100%;
  }
}
.l-deposit .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-deposit .c-btn__save {
    display: block;
  }
}
.l-deposit .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-deposit .l-header {
    display: block;
  }
}
.l-deposit .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-deposit.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-deposit.l-input {
    display: block;
  }
}
.l-deposit .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-deposit .l-footer {
    display: block;
  }
}
.l-deposit .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-deposit .c-wrapper--640 {
    display: block;
  }
}
.l-deposit .common-textbox .u-flex label {
  position: relative;
}
.l-deposit .common-textbox .u-flex label .year {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-deposit .common-textbox .u-flex label .month {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-deposit .common-textbox .u-flex label .c-input_error {
  margin-bottom: 0;
}
.l-deposit .u-flex .common-textbox {
  width: 100%;
}

.l-investment {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-investment {
    display: block;
    height: 100%;
  }
}
.l-investment .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-investment .c-btn__save {
    display: block;
  }
}
.l-investment .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-investment .l-header {
    display: block;
  }
}
.l-investment .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-investment.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-investment.l-input {
    display: block;
  }
}
.l-investment .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-investment .l-footer {
    display: block;
  }
}
.l-investment .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-investment .c-wrapper--640 {
    display: block;
  }
}
.l-investment .js-investmentBtn03__accordion .u-flex {
  position: relative;
}
.l-investment .js-investmentBtn03__accordion .u-flex .about {
  position: absolute;
  top: 25%;
  left: 15px;
}
.l-investment .js-investmentBtn03__accordion.common-textbox input[type=text] {
  padding-left: 40px;
}

.l-securities {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-securities {
    display: block;
    height: 100%;
  }
}
.l-securities .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-securities .c-btn__save {
    display: block;
  }
}
.l-securities .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-securities .l-header {
    display: block;
  }
}
.l-securities .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-securities.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-securities.l-input {
    display: block;
  }
}
.l-securities .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-securities .l-footer {
    display: block;
  }
}
.l-securities .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-securities .c-wrapper--640 {
    display: block;
  }
}

.l-password {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-password {
    display: block;
    height: 100%;
  }
}
.l-password .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-password .c-btn__save {
    display: block;
  }
}
.l-password .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-password .l-header {
    display: block;
  }
}
.l-password .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-password.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-password.l-input {
    display: block;
  }
}
.l-password .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-password .l-footer {
    display: block;
  }
}
.l-password .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-password .c-wrapper--640 {
    display: block;
  }
}

.l-confirm {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-confirm {
    display: block;
    height: 100%;
  }
}
.l-confirm .c-btn__save {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-confirm .c-btn__save {
    display: block;
  }
}
.l-confirm .l-header {
  display: block;
  padding: 24px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-confirm .l-header {
    display: block;
  }
}
.l-confirm .l-header--logo {
  position: relative;
  left: 0;
  top: 0;
}
.l-confirm.l-input {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-confirm.l-input {
    display: block;
  }
}
.l-confirm .l-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-confirm .l-footer {
    display: block;
  }
}
.l-confirm .c-wrapper--640 {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-confirm .c-wrapper--640 {
    display: block;
  }
}
.l-confirm__text p:first-of-type {
  color: #666;
  font-size: 14px;
}
.l-confirm__text p:last-of-type {
  color: #383838;
  font-size: 16px;
}
.l-confirm .c-wrapper__input {
  padding: 48px 24px 40px 24px;
}

.l-input .c-wrapper--640 {
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 100%;
}
.l-input__head.u-flex {
  position: relative;
}
.l-input__head.u-flex img {
  position: absolute;
  top: 0;
  left: 0;
}
.l-input__head.u-flex .p-input_heading {
  padding-left: 80px;
}
.l-input__img--01 {
  max-width: 64px;
}
.l-input__name .u-flex .common-textbox {
  width: 50%;
}
.l-input__address .common-textbox .u-flex input[type=text] {
  width: 100%;
  max-width: 336px;
}
.l-input__address .common-textbox .u-flex input[type=button] {
  width: 100%;
  max-width: 160px;
}
.l-input__address .common-textbox input[type=text] {
  max-width: 100%;
}
.l-input__mail .common-textbox input[type=text] {
  max-width: 100%;
}
.l-input__phone .common-textbox .u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.l-input__shop .common-textbox input[type=text] {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .l-input__place .u-flex {
    display: block;
  }
}
.l-input .u-flex {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.l-input .c-btn__empty {
  background: #f6f6f6;
  display: block;
  pointer-events: none;
  width: 100%;
}

.l-document {
  background: url(../img/common-bg.png);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  color: #383838;
  font-size: 14px;
  padding: 48px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-document {
    padding: 0;
  }
}
.l-document .l-input__name .u-flex {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.l-document .c-wrapper--640 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-document .c-wrapper--640 {
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: 100%;
  }
}
.l-document .c-wrapper__input {
  background: none;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 48px 64px 40px 64px;
}
@media screen and (max-width: 768px) {
  .l-document .c-wrapper__input {
    padding: 48px 24px 40px 24px;
  }
}
.l-document .c-inner {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .l-document .c-inner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.l-document .c-inner.u-border--none {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.l-document .c-link .c-tag__pdf {
  margin-left: 4px;
  margin-right: 4px;
}
.l-document__intro h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.l-document__intro p span {
  font-weight: 700;
}
.l-document__intro ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  position: relative;
}
.l-document__intro ul li::before {
  background: #506499;
  border-radius: 50px;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 0;
}
.l-document__intro ul li button {
  background: #f6f6f6;
  border: none;
  position: relative;
}
.l-document__intro ul li button::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
          box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
  content: ": !#$%-_=+<>";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -70px;
  width: 343px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .l-document__intro ul li button::before {
    width: 150px;
  }
}
.l-document__intro ul li button img {
  max-width: 16px;
  max-height: 16px;
}
.l-document .u-flex {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .l-document .u-flex a {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-document .u-flex button {
    display: block;
  }
}
.l-document .u-flex.button {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .l-document .u-flex.button {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .l-document .u-flex.button input {
    margin-bottom: 16px;
  }
}
.l-document .u-flex .common-textbox {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: 100%;
}
.l-document.none_bg {
  background: none;
}
.l-error {
  padding: 150px 24px 0 24px;
}
@media screen and (max-width: 768px) {
  .l-error {
    padding: 64px 24px 0 24px;
  }
}
.l-error.l-header {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-error.l-header {
    background: #f0f0f0;
    padding: 16px 16px 0;
  }
}
.l-error__head {
  color: #707070;
  font-size: 22px;
  font-weight: 700;
}
.l-error .c-btn__secondary {
  margin: 0 auto;
  max-width: 327px;
}

.air-datepicker {
  font-family: "Roboto Condensed", sans-serif !important;
}
.air-datepicker-nav--title {
  color: #506499 !important;
  font-weight: 700;
}
.air-datepicker-cell.-month- {
  color: #506499 !important;
  font-weight: 700;
}
.air-datepicker-cell.-year- {
  color: #506499 !important;
  font-weight: 700;
}
.air-datepicker-cell.-day- {
  color: #4a4a4a;
  font-weight: 700;
}
.air-datepicker-cell.-day-.-current-.-disabled- {
  background: #fff !important;
  color: #dedede !important;
}
.air-datepicker-cell.-day-.-current-.-disabled-.-focus- {
  color: #ffffff !important;
}
.air-datepicker-cell.-day-.-current-.-min-date-.selectable-day {
  background: #eef0f5 !important;
  border-radius: 0 !important;
  color: #4a4a4a !important;
}
.air-datepicker-cell.-day-.-current-.-min-date-.selectable-day.-selected- {
  background: #506499 !important;
  color: #fff !important;
}
.air-datepicker-cell.-day-.-disabled- {
  background: #fff !important;
  color: #dedede !important;
}
.air-datepicker-cell.selectable-day {
  background: #eef0f5 !important;
  border-radius: 0 !important;
}
.air-datepicker-cell.selectable-day.-selected- {
  background: #506499 !important;
  color: #fff !important;
}
.air-datepicker-body--day-name {
  color: #506499 !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/*--------------------------------------------------
PROJECT
--------------------------------------------------*/
.p-h1_top {
  color: #506499;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 64px;
  line-height: 1.5;
}
.p-h1_top__additional {
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.p-input_heading .p-h1_top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.p-input_heading .p-h1_top__additional {
  font-size: 12px;
  font-weight: 500;
}
.p-input_heading .p-h1_top__additional.ast {
  padding-left: 20px;
  position: relative;
}
.p-input_heading .p-h1_top__additional.ast::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.p-pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-pagetop:hover {
  opacity: 0.5;
}
.p-pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #506499;
  border-right: 3px solid #506499;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.p-side_menu {
  margin: 120px 0 0 68px;
  position: fixed;
}
.p-side_menu::before {
  background-color: #c9cfdf;
  border-radius: 13px;
  content: "";
  display: inline-block;
  height: 100%;
  left: -20px;
  margin-right: 10px;
  position: absolute;
  vertical-align: middle;
  width: 5px;
}
@media screen and (max-width: 768px) {
  .p-side_menu {
    display: none;
  }
}
.p-side_menu__txt a {
  color: #383838;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
.p-side_menu .active::before {
  background-color: #506499;
  border-radius: 13px;
  content: "";
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  width: 5px;
  position: absolute;
  left: -20px;
}

.p-ac {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
.p-ac__menu {
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 0 rgba(43, 43, 43, 0.1);
  position: relative;
  overflow: hidden;
}
.p-ac__parent {
  border-bottom: 1px solid #fff;
  background-color: #fcfcfc;
  color: #383838;
  cursor: pointer;
  font-size: 16px;
  padding: 16px 32px 16px 16px;
  position: relative;
}
.p-ac__parent::before {
  background: #506499;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-ac__parent::after {
  background: #506499;
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 2px;
  height: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-ac__parent.open {
  background-color: #506499;
  color: #fff;
}
.p-ac__parent.open::before {
  background: #fff;
}
.p-ac__parent.open::after {
  top: 25%;
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-ac__child {
  display: none;
}
.p-ac__child--label {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  padding: 16px;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-ac__child--label .common-checkbox__dummy-input {
  position: absolute;
  display: block;
  top: 20px;
  left: 16px;
}
.p-ac__child--label .common-checkbox__label-text {
  font-size: 16px;
  margin-left: 28px;
}
.p-ac__details {
  display: none;
}

/*--------------------------------------------------
UTILITY
--------------------------------------------------*/
.u-color__brand {
  color: #7d001a;
}
.u-color__primary--blue {
  color: #506499;
}
.u-color__primary--white {
  color: #fff;
}
.u-color__caution--500 {
  color: #ffce00;
}
.u-color__caution--50 {
  color: #fffae6;
}
.u-color__error--500 {
  color: #b22222;
}
.u-color__error--100 {
  color: #e7baba;
}
.u-color__error--50 {
  color: #f7e9e9;
}
.u-color__inactive--400 {
  color: #858585;
}
.u-color__inactive--50 {
  color: #f0f0f0;
}
.u-color__background--50 {
  color: #f0f0f0;
}
.u-color__background--30 {
  color: #f6f6f6;
}
.u-color__text--666 {
  color: #666;
}
.u-color__text--333 {
  color: #333;
}
.u-color__text--383838 {
  color: #383838;
}
.u-color__red {
  color: #e68e91;
}

.u-display--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-display--pc {
    display: none;
  }
}
.u-display--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sp {
    display: block;
  }
}

.u-text_deco {
  text-decoration: underline;
}
.u-text__left {
  text-align: left;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-flex.currency {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex.currency input {
  width: 85%;
}
.u-flex.currency p {
  width: 15%;
}
.u-flex.align-items--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex.edit {
  position: relative;
}
.u-flex.edit h2 {
  width: 100%;
  padding-right: 102px;
}
.u-flex.edit .c-btn__edit {
  top: 12px;
  right: 0;
}
.u-flex__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex__link img {
  width: 16px;
}
.u-flex.delete {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex.delete .common-checkbox.upload {
  width: 40px;
  height: 40px;
}
.u-flex.delete .common-checkbox__label-text {
  line-height: 1;
  margin-left: 0;
}
.u-flex.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .u-flex.btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .u-flex.btn input {
    margin-bottom: 12px;
  }
}
.u-flex.btn a {
  display: block;
  max-width: 327px;
}
@media screen and (max-width: 768px) {
  .u-flex.btn a {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .u-flex.btn.order input {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .u-flex.btn.order a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.u-font_family--noto {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font_family--roboto {
  font-family: "Roboto Condensed", sans-serif;
}

.u-font_size--22 {
  font-size: 22px;
}
.u-font_size--18 {
  font-size: 18px;
}
.u-font_size--16 {
  font-size: 16px;
}
.u-font_size--14 {
  font-size: 14px;
}
.u-font_size--12 {
  font-size: 12px;
}
.u-font_size--10 {
  font-size: 10px;
}

.u-font_weight--700 {
  font-weight: 700;
}
.u-font_weight--500 {
  font-weight: 500;
}

.u-display--block {
  display: block;
}
.u-display--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-display--pc {
    display: none;
  }
}
.u-display--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sp {
    display: block;
  }
}

.u-line_height {
  line-height: 1.8;
}

.u-interpunct {
  padding-left: 20px;
  position: relative;
}
.u-interpunct::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-interpunct__first {
  display: block;
  padding-left: 12px;
  position: relative;
}
.u-interpunct__first::before {
  content: "①";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-interpunct__second {
  display: block;
  padding-left: 12px;
  position: relative;
}
.u-interpunct__second::before {
  content: "②";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.u-txt__center {
  text-align: center;
}
.u-txt__right {
  text-align: right;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt12 {
  margin-top: 12px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt32 {
  margin-top: 32px;
}

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

.u-mt48 {
  margin-top: 48px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb32 {
  margin-bottom: 32px;
}

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

.u-mb48 {
  margin-bottom: 48px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-note {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.u-note__ast {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__ast::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__ast::before {
  content: "※";
}
.u-note__astro {
  color: #383838;
  padding-left: 20px;
  position: relative;
}
.u-note__astro::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--1 {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__num--1::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--1::before {
  content: "※1";
}
.u-note__num--2 {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__num--2::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--2::before {
  content: "※2";
}
.u-note__num--circle1 {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__num--circle1::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--circle1::before {
  content: "①";
}
.u-note__num--circle2 {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__num--circle2::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--circle2::before {
  content: "②";
}
.u-note__num--circle3 {
  color: #383838;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.u-note__num--circle3::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-note__num--circle3::before {
  content: "③";
}
.u-note__semicolon .col {
  display: inline-block;
  width: 133px;
}

.u-circle {
  padding-left: 20px;
  position: relative;
}
.u-circle::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-circle-small {
  padding-left: 20px;
  position: relative;
}
.u-circle-small::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-circle--mid {
  padding-left: 20px;
  position: relative;
}
.u-circle--mid::before {
  background: #383838;
  border-radius: 50px;
  width: 6px;
  height: 6px;
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 6px;
}

.u-img--140 {
  margin: 0 auto;
  max-width: 140px;
}

.u-rad--bright {
  border-bottom-right-radius: 24px;
}
.u-rad--bleft {
  border-bottom-left-radius: 24px;
}
.u-rad--bboth {
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

.u-hover_disabled {
  opacity: 1 !important;
}

.u-wid--327 {
  max-width: 327px;
  margin: 0 auto;
}
.u-wid--512 {
  max-width: 512px;
  margin: 0 auto;
}
.u-wid--abn {
  max-width: 197px;
}
@media screen and (max-width: 768px) {
  .u-wid--abn {
    max-width: 119px;
  }
}

.u-list ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  padding-left: 18px;
  position: relative;
}
.u-list ul li::before {
  background: #383838;
  border-radius: 50px;
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
}
.u-list ul li button {
  background: #f6f6f6;
  border: none;
  position: relative;
}
.u-list ul li button:hover::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
          box-shadow: 0 3px 12px rgba(43, 43, 43, 0.1);
  content: "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -70px;
  width: 343px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .u-list ul li button:hover::before {
    width: 150px;
  }
}
.u-list ul li button img {
  max-width: 16px;
  max-height: 16px;
}

.u-details {
  background: #fff;
  border-radius: 8px;
  color: #383838;
  padding: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.u-details[open] {
  padding: 16px 16px 42px 16px;
}
.u-details[open] summary {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-details[open] summary::before {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
}
.u-details summary {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  position: relative;
  padding-left: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .u-details summary {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding-left: 30px;
  }
}
.u-details summary strong {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .u-details summary strong {
    width: 50%;
  }
}
.u-details summary strong::after {
  background: url("../img/icon-info.png") no-repeat;
  background-size: 24px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.u-details summary b {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #b22222;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .u-details summary b {
    width: 50%;
  }
}
.u-details summary b img {
  width: 16px;
  height: 17px;
}
.u-details summary::after {
  background: #506499;
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-details summary::before {
  background: #506499;
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .u-details .contents__wrap {
    padding: 0;
  }
}
.u-details .contents__btn {
  max-width: 545px;
  margin: 0 auto;
}
.u-details .contents .l-input__head {
  margin-top: 24px;
}
.u-details .contents .l-input__head.u-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-details .contents .l-input__head.u-flex img {
  position: relative;
}
.u-details .contents .l-input__head.u-flex .p-input_heading {
  padding-left: 0;
}
.u-details .contents h3 {
  font-size: 18px;
  font-weight: 700;
}
.u-details .contents p {
  font-size: 14px;
}
.u-details .contents .c-info {
  padding: 18px;
}
.u-details .contents .c-info::before {
  display: none;
}

.u-pad--rl {
  padding-right: 24px;
  padding-left: 24px;
}

.u-column-gap {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}