#contents section {
  background: rgb(255, 255, 255);
  color: #333;
  margin-top: 30px;
}

#contents .single_column {
  width: 630px;
}

#user_reg_title {
  background: rgba(255, 255, 255, 0);
  font-size: 1.8rem;
  line-height: 1;
  margin: 40px 0 15px 0;
  padding: 0;
  font-weight: bold;
}

#title {
  display: flex;
  align-items: center;
}

#title #title_text {
  margin: auto 0;
  padding: 5px 7px;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
}

#title_icon {
  display: inline-block;
  background-image: url(/assets/user/member-5504a3b683027a1a159b6fcb4bb9ded5b3beaa1d58354275f87f7a18d9d0f79d.webp);
  background-repeat: no-repeat;
  /* 画像の繰り返しを指定  */
  height: 20px;
  width: 20px;
  margin-top: 2px;
  background-size: contain;
}

.overflow_auto {
  margin: 0 auto 4.5px auto;
  width: auto;
  padding: 3.25%;
  height: 150px;
  font-size: 1.2rem;
  border: solid 1px #000000;
  border-radius: 5px;
}

#contents p a {
  text-decoration: none;
  color: rgb(83, 152, 255);
}

.submit {
  margin-bottom: 40px;
}

.submit input {
  background: #4a70eb;
  font-size: 1.4rem;
  border-radius: 5px;
  height: 50px;
  width: 260px;
}
.submit input.is-disabled {
  position: relative;
  pointer-events: none;
  overflow: hidden;
  background: #C7C7C7;
}

#main .center {
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
}

.check_boxes {
  padding: 10px 0 15px 80px;
  width: 345px;
  /* IE11デザイン崩れ対応 */
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  font-size: 1.4rem;
}

.check_boxes#ym {
  padding: 10px 0 10px 0px;
  width: 345px;
  width: 100%;
  margin: auto;
  font-size: 1.4rem;
}

.check_boxes .center #agreement {
  line-height: 1.25;
}

.form_table th {
  margin-top: 10px;
  padding: 0;
  width: 30%;
}

/*TODO: common.cssが使用されなくなった際に削除 */
.form_table th label {
  cursor: default;
}

.form_table td {
  padding: 0 20px 0 0;
  margin-top: 5px;
}

#another_service_border {
  border: 1px solid rgb(218, 218, 218);
  display: block;
}

tr {
  margin-top: 20px;
}

.description {
  font-weight: bold;
  font-size: 1.2rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 17px;
}

.form_table {
  margin: 0;
  width: 100%;
  border-spacing: 0 25px;
  border-collapse: separate;
  font-size: 1.4rem;
  margin-top: 25px;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"] {
  display: inline-block;
  border: 1px solid rgb(100, 100, 100);
  border-radius: 5px;
  width: 95%;
  /* IE11デザイン崩れ対応 */
  width: -webkit-fill-available;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  padding: 7px;
  line-height: 1;
  font-size: 1.4rem;
}

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

input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  line-height: 1.5px;
  cursor: pointer;
}

input[type="checkbox"] + label {
  padding: 0 0 0 24px;
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  background-color: white;
}

input[type="checkbox"] + label::before {
  border: 1px solid #000000;
  border-radius: 3px;
}

input[type="checkbox"]:checked + label::before {
  border: none;
  border-radius: 3px;
}

input[type="checkbox"]:checked + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  background-color: #4a70eb;
}

input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}

input[type="checkbox"]:checked + label::after {
  left: 4px;
  width: 10px;
  height: 7px;
  margin-top: -3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.asterisk_list {
  margin-bottom: 20px;
}

.asterisk_list li {
  font-size: 1.2rem;
}

.align_right {
  font-size: 1.2rem;
  text-align: right;
}

.info {
  margin: 5px 0 0;
  color: #dd5500;
  font-size: 1.2rem;
}

.new_user {
  padding-bottom: 10px;
  /* border-bottom: 1px solid #ccc; */
}

#copy_domain {
  display: flex;
  align-items: center;
  height: 35px;
  margin: 15px 0 25px;
}

#copy_domain .copy_target {
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  font-size: 1.2rem;
  color: #333333;
  background-color: #f5f5f5;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  box-shadow: none;
  width: 105px;
  height: 35px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#copy_domain .copy_target::-moz-selection {
  background: transparent;
  -moz-user-select: none;
       user-select: none;
  color: #333333;
}

#copy_domain .copy_target::selection {
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #333333;
}

#copy_domain .copy_target:focus {
  outline: none;
}

#copy_domain .copy_button {
  font-size: 1.2rem;
  color: #333333;
  background-color: white;
  border: 1px solid #333333;
  height: 25px;
  width: 65px;
  border-radius: 6px;
}

#contents .align_right {
  text-align: right;
  font-size: 1.2rem;
  margin: 0 0 3px 0;
}

ul.before_true li:before {
  content: "・";
  display: inline-block;
}

ul.before_none li {
  margin-left: 2.2em;
  text-indent: -1.5em;
  margin-bottom: 15px;
}

ul.before_true li {
  margin-left: 1.6em;
  text-indent: -0.5em;
  font-size: 1.2rem;
  margin-bottom: 0;
}

#kiyaku .link:link {
  color: #416df3;
}

#kiyaku .link:visited {
  color: #8812c0;
}

@media screen and (max-width: 736px) {
  #contents section {
    padding: 5px 10px;
    margin-top: 10px;
  }

  #contents .single_column {
    width: 100%;
  }

  #user_reg_title {
    font-size: 1.6rem;
    margin: 20px 0 15px 0;
  }

  #kiyaku .kiyaku_title {
    font-size: 1.6rem;
  }

  p {
    font-size: 1.6rem;
  }

  .description {
    font-size: 1.6rem;
  }

  .asterisk_list {
    margin-bottom: 20px;
  }

  .asterisk_list li {
    font-size: 1.6rem;
  }

  .align_right {
    font-size: 1.6rem;
  }

  .info {
    margin-top: 3px;
    font-size: 1.6rem;
  }

  #main .center {
    font-size: 1.6rem;
  }

  #title #title_text {
    font-size: 1.8rem;
  }

  #title_icon {
    margin: 5px 0 0 7px;
  }

  .form_table {
    border-collapse: collapse;
    font-size: 1.8rem;
    margin-top: 5px;
  }

  .form_table th {
    margin-top: 10px;
    padding: 0;
    width: auto;
  }

  .form_table td {
    padding: 0;
  }

  .form_table td input {
    box-sizing: border-box;
  }

  .submit input {
    width: 230px;
    height: 40px;
    padding: 3% 0;
    font-size: 1.3rem;
    transition: none;
    margin: 0 0 1% !important;
    border-radius: 3px;
  }

  .overflow_auto {
    height: 100px;
    border-radius: 3px;
  }

  .check_boxes {
    padding: 20px 0 5px;
  }

  #copy_domain {
    height: 30px;
    margin: 5px 0 15px;
  }

  #contents .align_right {
    font-size: 1.6rem;
  }

  #copy_domain .copy_button {
    border-radius: 3px;
    height: 20px;
    width: 50px;
    font-size: 1.1rem;
  }

  #copy_domain .copy_target {
    width: 90px;
    height: 30px;
    font-size: 1.1rem;
    border-radius: 3px;
  }

  input[type="text"],
  input[type="password"],
  input[type="date"],
  input[type="email"],
  input[type="number"] {
    border-radius: 3px;
  }

  ul.before_none li {
    font-size: 1.6rem;
  }
}

.new_drop_down {
  position: relative;
}

.new_drop_down::after {
  top: 15%;
  right: 30px;
  font-size: 1rem;
  content: "\f078";
  font-family: "fontAwesome";
  position: absolute;
  pointer-events: none;
}

@media screen and (max-width: 736px) {
  .new_drop_down::after {
    top: 18%;
    right: 10px;
    font-size: 1rem;
    content: "\f078";
    font-family: "fontAwesome";
    position: absolute;
    pointer-events: none;
  }
}

.dropdown_box {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #333333;
  height: 36px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.4rem;
}



.faq_link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .faq_link{
    margin-bottom: 20px;
  }
  .faq_link .icon {
    height: 20px;
    padding: 0;
    margin-right: 5px;
    -o-object-fit: contain;
       object-fit: contain;
  }
