@charset "UTF-8";
.login_attention {
  width: 100%;
  max-width: 780px;
  padding: 20px;
  margin: 0 auto 20px;
  border: 3px solid #F00;
}

.dl_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}

@media screen and (max-width: 768px) {
  .dl_list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.dl_list li a {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 60px;
  border: 1px solid #0067DE;
  color: #0067DE;
  font-size: 14px;
}

.dl_list li a::after {
  right: 10px;
}

.dl_list li a span {
  text-align: center;
}

#contact .title_wrap {
  background-image: url(../img/ttl_contact.jpg);
}

.lead {
  margin-bottom: 20px;
}

.required::before {
  display: inline-block;
  content: "必須";
  background: #EA7E00;
  width: 40px;
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

span.required::before {
  display: inline-block;
  margin-right: 5px;
}

th.required {
  position: relative;
}

th.required::before {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 10px;
}

@media screen and (max-width: 768px) {
  th.required::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 15px;
    right: 20px;
  }
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 726px;
  margin: 0 auto 30px;
  font-size: 14px;
  font-weight: bold;
}

.step li {
  background: #D8D8D8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: calc(100%/3);
  color: #727272;
  position: relative;
  text-align: center;
}

.step li:not(:last-child)::after, .step li:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 25px 0 25px 20px;
  border-style: solid;
  border-color: transparent transparent transparent #D8D8D8;
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1;
}

.step li:not(:last-child)::before {
  border-width: 26px 0 26px 21px;
  border-color: transparent transparent transparent #fff;
  top: -1px;
  right: -21px;
}

.step li.active {
  background: #0067DE;
  color: #fff;
}

.step li.active::after {
  border-color: transparent transparent transparent #0067DE;
}

@media screen and (max-width: 768px) {
  .step li {
    padding-left: 10px;
  }
  .step li:not(:last-child)::after, .step li:not(:last-child)::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 25px 0 25px 15px;
    right: -15px;
  }
  .step li:not(:last-child)::before {
    border-width: 26px 0 26px 16px;
    right: -16px;
  }
}

.info {
  border: none;
  width: 100%;
}

.info th, .info td {
  background: #EDEEF6;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 20px;
  vertical-align: middle;
  text-align: left;
}

.info th {
  width: 220px;
  padding-right: 50px;
  color: #0067DE;
}

.info th.vertical_top {
  vertical-align: top;
  padding-top: 34px;
}

.info th.vertical_top::before {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  top: 36px;
}

.info .postal_code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info .postal_code > div:nth-of-type(1) {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info .postal_code > div:nth-of-type(1) span {
  display: inline-block;
  margin-right: 10px;
}

.info .postal_code > div.btn {
  display: inline-block;
  vertical-align: middle;
  width: 152px;
}

.info .postal_code > div.btn button {
  font-size: 14px;
  padding-right: 15px;
}

.info .postal_code > div.btn button:after {
  right: 10px;
}

@media screen and (max-width: 768px) {
  .info .postal_code > div:nth-of-type(1) span {
    display: inline-block;
    margin-right: 10px;
  }
  .info .postal_code > div.btn {
    width: 140px;
  }
  .info .postal_code > div.btn button {
    font-size: 13px;
    padding-right: 15px;
  }
  .info .postal_code > div.btn button:after {
    right: 8px;
  }
}

@media screen and (max-width: 768px) {
  .info {
    display: block;
  }
  .info tbody, .info tr {
    display: block;
    width: 100%;
  }
  .info th, .info td {
    display: block;
    width: 100%;
    padding: 15px 20px;
  }
  .info th {
    border: none;
    width: 100%;
    padding-right: 70px;
    padding-bottom: 0;
  }
  .info th.vertical_top {
    padding-top: 15px;
  }
  .info th.vertical_top::before {
    top: 15px;
  }
  .info td:not(.privacy) {
    padding-top: 10px;
  }
}

form input, .container textarea {
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 13px 15px;
}

form input.w_sm, .container textarea.w_sm {
  width: 195px;
}

form input.number, .container textarea.number {
  width: 109px;
}

@media screen and (max-width: 768px) {
  form input input, form input textarea, .container textarea input, .container textarea textarea {
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 14px;
  }
  form input input.w_sm, form input textarea.w_sm, .container textarea input.w_sm, .container textarea textarea.w_sm {
    width: 195px;
  }
  form input input.number, form input textarea.number, .container textarea input.number, .container textarea textarea.number {
    width: 109px;
  }
}

.check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
}

.check_list li {
  margin: 10px 20px 0 0;
}

.check_list li:last-child {
  margin-bottom: 0;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + .checkbox01-parts::after {
  content: "";
  display: inline-block;
  border-bottom: 2px solid #EA7E00;
  border-right: 2px solid #EA7E00;
  position: absolute;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  top: 6px;
  left: 8px;
  width: 5px;
  height: 10px;
}

.checkbox01-parts {
  display: inline-block;
  padding-left: 27px;
  cursor: pointer;
  position: relative;
}

.checkbox01-parts::before {
  content: "";
  background: #fff;
  border: 1px solid #999;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  left: 0;
}

.btn {
  width: 200px;
}

button {
  background: #0067DE;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  width: 100%;
  height: 50px;
  color: #fff;
  letter-spacing: .08em;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

button::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent #fff #fff transparent;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 15px;
}

.back button {
  background: #D8D8D8;
  color: #0067DE;
}

.back button::after {
  display: none !important;
}

.back button::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent #0067DE #0067DE;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 15px;
}

.scroll {
  background: #fff;
  border: 1px solid #ccc;
  height: 220px;
  padding: 25px 30px;
  margin-bottom: 30px;
  overflow-x: auto;
}

.scroll dt {
  font-size: 20px;
  margin-bottom: 10px;
}

.scroll dd:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .scroll {
    padding: 20px 15px;
  }
}

.agree {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .agree {
    margin-bottom: 30px;
  }
}

.btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn_list li {
  width: 250px;
  margin: 0 10px;
}

.btn_list li button {
  height: 70px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .btn_list li {
    width: 100%;
    margin: 0 0 15px;
  }
  .btn_list li button {
    height: 60px;
    padding-left: 40px;
    font-size: 16px;
  }
  .btn_list li button:after, .btn_list li button::before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px -4px;
    position: static;
  }
  .btn_list li.back button {
    padding-left: 0;
    padding-right: 40px;
  }
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_wrap .input_area {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin-right: 25px;
}

.flex_wrap .input_area + div {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex_wrap .input_area dt, .flex_wrap .input_area dd {
  margin-bottom: 15px;
}

.flex_wrap .input_area .btn {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .flex_wrap {
    display: block;
  }
  .flex_wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .flex_wrap .input_area {
    margin: 0 0 25px;
  }
  .flex_wrap .input_area + div {
    height: 154px;
  }
  .flex_wrap .input_area dt {
    margin-bottom: 10px;
  }
  .flex_wrap .input_area .btn {
    margin: 30px auto 0;
  }
}

.bg_box {
  background: #EDEEF6;
  padding: 30px 45px;
}

.bg_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg_box dl dt {
  width: 175px;
  color: #0067DE;
}

.bg_box dl dd {
  width: calc(100% - 175px);
}

@media screen and (max-width: 768px) {
  .bg_box {
    padding: 20px 15px;
  }
  .bg_box dl {
    display: block;
  }
  .bg_box dl dt {
    width: 100%;
  }
  .bg_box dl dd {
    width: 100%;
  }
}

#mypage .flex_wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  #mypage .flex_wrap p {
    margin-bottom: 20px;
  }
  #mypage .flex_wrap div {
    margin-left: auto;
  }
}

#password_reissue .bg_box {
  max-width: 810px;
  margin: 0;
}

#password_reissue .bg_box dt {
  width: auto;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#password_reissue .bg_box dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#password_reissue .bg_box dd .input_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#password_reissue .bg_box dd .input_flex input {
  margin-right: 20px;
}

#password_reissue .bg_box dd .input_flex .btn a {
  height: 50px;
}

@media screen and (max-width: 768px) {
  #password_reissue .bg_box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #password_reissue .bg_box dt {
    margin: 0 0 10px;
  }
  #password_reissue .bg_box dd .input_flex {
    display: block;
  }
  #password_reissue .bg_box dd .input_flex .btn {
    margin: 20px auto 0;
  }
}
