
/*引数：初期値はすべて_variables.scssで設定
$pcsize：PCデザイン文字サイズ
$pcspacing：PCデザイン文字間
$spsize：SPデザイン文字サイズ
$spspacing：SPデザイン文字間
$pccontainer：PCデザインコンテンツ幅
$spcontainer：SPデザインコンテンツ幅
*/
/*引数
$property：cssのプロパティ
$pcsize：PCデザインpx
$spsize：SPデザインpx
$pccontainer：PCデザインコンテンツ幅：初期値は_variables.scssで設定
$spcontainer：SPデザインコンテンツ幅：初期値は_variables.scssで設定
*/
/*引数
$vertical：横比率
$horizontal：縦比率
*/
/*引数
$col：PCカラム数
$margin_h：PC横マージンpx
$margin_v：PC縦マージンpx
$spcol：SPカラム数
$spmargin_h：SP横マージンpx
$spmargin_v：SP縦マージンpx
$pccontainer：PCデザインコンテンツ幅：初期値は_variables.scssで設定
$spcontainer：SPデザインコンテンツ幅：初期値は_variables.scssで設定
*/
.c-heading {
  text-align: center;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 24px;
    margin: 0 0 20px;
  }
}

.c-breadcrumb + .c-form {
  margin: 28px 0 0;
}

.c-form {
  /* Edge/IE のパスワード表示(目)とクリア(×) */
  /* Safari の鍵(パスワードAutoFill) */
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=password] {
  width: 100%;
  height: 52px;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  border: 1px solid #999;
  border-radius: 0;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form input[type=password] {
    font-size: 16px;
    height: 64px;
  }
}
.c-form input[type=text]::-webkit-input-placeholder, .c-form input[type=email]::-webkit-input-placeholder, .c-form input[type=tel]::-webkit-input-placeholder, .c-form input[type=password]::-webkit-input-placeholder {
  color: #aaa;
}
.c-form input[type=text]::-moz-placeholder, .c-form input[type=email]::-moz-placeholder, .c-form input[type=tel]::-moz-placeholder, .c-form input[type=password]::-moz-placeholder {
  color: #aaa;
}
.c-form input[type=text]:-ms-input-placeholder, .c-form input[type=email]:-ms-input-placeholder, .c-form input[type=tel]:-ms-input-placeholder, .c-form input[type=password]:-ms-input-placeholder {
  color: #aaa;
}
.c-form input[type=text]::-ms-input-placeholder, .c-form input[type=email]::-ms-input-placeholder, .c-form input[type=tel]::-ms-input-placeholder, .c-form input[type=password]::-ms-input-placeholder {
  color: #aaa;
}
.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form input[type=password]::placeholder {
  color: #aaa;
}
.c-form input[type=password]::-ms-reveal,
.c-form input[type=password]::-ms-clear {
  display: none !important;
}
.c-form input[type=password]::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
}
.c-form textarea {
  width: 100%;
  min-height: 196px;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: inherit;
  border: 1px solid #999;
  line-height: 1.4;
  padding: 16px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .c-form textarea {
    font-size: 16px;
  }
}
.c-form textarea::-webkit-input-placeholder {
  color: #aaa;
}
.c-form textarea::-moz-placeholder {
  color: #aaa;
}
.c-form textarea:-ms-input-placeholder {
  color: #aaa;
}
.c-form textarea::-ms-input-placeholder {
  color: #aaa;
}
.c-form textarea::placeholder {
  color: #aaa;
}
.c-form__pre {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px dashed #595757;
  padding: 0 0 10px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form__pre {
    font-size: 13px;
    padding: 0 0 5px;
  }
}
.c-form .required {
  color: #ff0000;
}
.c-form-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-form-name__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .c-form-name__item {
    width: calc(50% - 5px);
  }
}
.c-form-name__txt {
  width: 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 0;
  margin: 0;
}
.-kana .c-form-name__txt {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .c-form-name__txt {
    width: 25px;
    font-size: 18px;
  }
}
.c-form-name__input {
  width: calc(100% - 32px);
}
@media screen and (max-width: 768px) {
  .c-form-name__input {
    width: calc(100% - 25px);
  }
}
.-kana .c-form-name__input {
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .-kana .c-form-name__input {
    width: calc(100% - 25px);
  }
}
.c-form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  gap: 0 30px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-form-radio {
    gap: 0 20px;
  }
}
.c-form-radio.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
  .c-form-radio.-column {
    gap: 16px 0;
  }
}
.c-form-radio.-col4 {
  gap: 10px 0;
}
@media screen and (max-width: 768px) {
  .c-form-radio.-col4 {
    gap: 18px 0;
  }
}
@media screen and (max-width: 768px) {
  .c-form-radio.-half {
    margin: 0 0 18px;
  }
}
@media screen and (max-width: 768px) {
  .c-form-radio.-free {
    gap: 18px 0;
  }
}
.c-form-radio.-entity {
  gap: 10px 0;
}
@media screen and (max-width: 768px) {
  .c-form-radio.-entity {
    gap: 18px 0;
  }
}
.c-form-radio.u-mt {
  margin-top: 10px;
}
.c-form-radio__item {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .c-form-radio__item {
    font-size: 17px;
    line-height: 1.6;
  }
}
.-col4 .c-form-radio__item {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .-col4 .c-form-radio__item {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .-half .c-form-radio__item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .-free .c-form-radio__item .txt {
    letter-spacing: -0.04em;
  }
  .-free .c-form-radio__item:nth-child(-n+2) {
    width: auto;
    padding-right: 12px;
  }
  .-free .c-form-radio__item:nth-child(3) {
    width: calc(100% - 160px);
  }
  .-free .c-form-radio__item:nth-child(4) {
    width: auto;
  }
  .-free .c-form-radio__item:nth-child(5) {
    width: calc(100% - 110px);
    padding-left: 12px;
  }
  .-free .c-form-radio__item:nth-last-child(-n+3) {
    width: auto;
    padding-right: 12px;
  }
  .-free .c-form-radio__item:last-child {
    padding-right: 0;
  }
}
.-entity .c-form-radio__item {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .-entity .c-form-radio__item:nth-child(-n+3) {
    width: 33.3333333333%;
  }
}
.-entity .c-form-radio__item:nth-child(4) {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .-entity .c-form-radio__item:nth-child(4) {
    width: 50%;
  }
}
.-entity .c-form-radio__item:nth-child(5) {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .-entity .c-form-radio__item:nth-child(5) {
    width: 50%;
  }
}
.-entity .c-form-radio__item:nth-child(6) {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .-entity .c-form-radio__item:nth-child(6) {
    width: 100%;
  }
}
.c-form-radio__item label {
  position: relative;
}
.c-form-radio__item label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-form-radio__item label input[type=radio]:checked + .txt::before {
  background: url(../img/common/icon_radio_on.svg) 0 0/100% auto no-repeat;
}
.c-form-radio__item label .txt {
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 768px) {
  .c-form-radio__item label .txt {
    padding: 0 0 0 18px;
  }
}
.c-form-radio__item label .txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../img/common/icon_radio_off.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
  .c-form-radio__item label .txt::before {
    width: 16px;
    height: 16px;
  }
}
.c-form-radio__item:has(.c-form-radio-other) {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-form-radio__item:has(.c-form-radio-other) {
    width: 100% !important;
  }
}
.c-form-radio-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.c-form-radio-other__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .c-form-radio-other__input input[type=text] {
    height: 44px;
  }
}
.c-form-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .c-form-zip {
    height: auto;
    margin: 0 0 30px;
  }
}
.c-form-zip__input {
  width: 365px;
}
@media screen and (max-width: 768px) {
  .c-form-zip__input {
    width: 100%;
  }
}
.c-form-zip__btn {
  width: 365px;
  height: 52px;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-form-zip__btn {
    width: 100%;
    font-size: 18px;
    margin-top: 16px;
  }
}
.c-form-zip__btn a {
  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;
  width: 100%;
  height: 100%;
  background: #2EB6AA;
  border: 1px solid #2EB6AA;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  -webkit-box-shadow: 0 7px 0 #D6DFE5;
  box-shadow: 0 7px 0 #D6DFE5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-form-zip__btn a {
    -webkit-box-shadow: 0 6px 0 #D6DFE5;
    box-shadow: 0 6px 0 #D6DFE5;
  }
}
.c-form-zip__btn a:hover {
  background: #fff;
  color: #2EB6AA;
}
.c-form-zip__txt {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form-zip__txt {
    font-size: 13px;
  }
}
.c-form-zip__txt + .error {
  margin-top: 0 !important;
}
.c-form-address {
  height: 140px;
}
@media screen and (max-width: 768px) {
  .c-form-address {
    height: auto;
    margin: 0 0 18px;
  }
}
.c-form-address__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-form-address__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 10px 0;
  }
}
.c-form-address__item {
  width: 365px;
}
@media screen and (max-width: 768px) {
  .c-form-address__item {
    width: 100%;
  }
}
.c-form-building {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-form-building {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 10px 0;
  }
}
.c-form-building__item {
  width: 365px;
}
@media screen and (max-width: 768px) {
  .c-form-building__item {
    width: 100%;
  }
}
.c-form-select {
  position: relative;
  height: 52px;
}
@media screen and (max-width: 768px) {
  .c-form-select {
    height: 64px;
  }
}
.c-form-select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 19px;
  height: 16px;
  background: #595757;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  pointer-events: none;
}
.c-form-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  width: 100%;
  height: 100%;
  border: 1px solid #999;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #fff;
  padding: 0 36px 0 16px;
}
@media screen and (max-width: 768px) {
  .c-form-select select {
    padding: 0 36px 0 16px;
  }
}
.c-form-select select.is-placeholder {
  color: #aaa;
}
.c-form-select select:not(.is-placeholder) {
  color: #595757;
}
.c-form-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-form-access__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 365px;
}
@media screen and (max-width: 768px) {
  .c-form-access__item {
    width: 53%;
  }
}
.c-form-access__item .c-form-select {
  width: calc(100% - 32px);
}
@media screen and (max-width: 768px) {
  .c-form-access__item .c-form-select {
    width: calc(100% - 22px);
  }
}
.c-form-access__item + .c-form-access__item {
  width: 333px;
}
@media screen and (max-width: 768px) {
  .c-form-access__item + .c-form-access__item {
    width: 43%;
  }
}
.c-form-access__item + .c-form-access__item .c-form-select {
  width: 100%;
}
.c-form-access__txt {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-access__txt {
    font-size: 18px;
  }
}
.c-form-access-way {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form-access-way {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 18px 0 0;
  }
  .c-form-access-way .c-form-radio {
    width: 100%;
    margin-bottom: 18px;
  }
}
.c-form-access-way-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 195px;
}
@media screen and (max-width: 768px) {
  .c-form-access-way-time {
    width: 53%;
  }
}
.c-form-access-way-time__input {
  width: calc(100% - 32px);
}
@media screen and (max-width: 768px) {
  .c-form-access-way-time__input {
    width: calc(100% - 22px);
  }
}
.c-form-access-way-time__txt {
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-access-way-time__txt {
    font-size: 18px;
  }
}
.c-form-access-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 102px;
  line-height: 1;
  padding: 0 16px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form-access-btns {
    width: 98px;
    padding: 0 0 0 12px;
  }
}
.c-form-access-btns__item {
  position: relative;
  width: 36px;
  height: 36px;
  background: #595757;
  border-radius: 100%;
  border: 0;
  cursor: pointer;
}
.c-form-access-btns__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-form-access-btns__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-form-access-btns__item.-minus::after {
  content: none;
}
.c-form-join__ttl {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-join__ttl {
    font-size: 18px;
  }
}
.c-form-join__block {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-form-join__block {
    margin-top: 20px;
  }
}
.c-form-join__block:first-child {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c-form-join__block:first-child {
    margin-top: 18px;
  }
}
.c-form-join__block label {
  position: relative;
}
.c-form-join__block label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-form-join__block label input:checked ~ .txt::before {
  background: url(../img/common/icon_checkbox_on.svg) 0 0/100% auto no-repeat;
}
.c-form-join__block label .txt {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 10px;
  padding: 0 0 3px 27px;
}
@media screen and (max-width: 768px) {
  .c-form-join__block label .txt {
    font-size: 18px;
    padding: 0 0 2px 20px;
  }
}
.c-form-join__block label .txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  background: url(../img/common/icon_checkbox_off.svg) 0 0/100% auto no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-form-join__block label .txt::before {
    width: 14px;
    height: 14px;
  }
}
.c-form-join__select .select2-container--default .select2-selection--multiple {
  min-height: 52px;
  letter-spacing: 0.06em;
  font-weight: 700;
  border: 1px solid #999;
  border-radius: 0;
}
.c-form-join__select .select2-results__option {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .c-form-join__select .select2-container--default .select2-selection--multiple {
    font-size: 16px;
    min-height: 64px;
  }
}
.c-form-subjects__btn {
  width: 365px;
  height: 52px;
}
@media screen and (max-width: 768px) {
  .c-form-subjects__btn {
    width: 100%;
  }
}
.c-form-subjects__btn button {
  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;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  background: #2EB6AA;
  border: 1px solid #2EB6AA;
  border-radius: 50px;
  color: #fff;
  font-family: inherit;
  text-decoration: none;
  -webkit-box-shadow: 0 7px 0 #D6DFE5;
  box-shadow: 0 7px 0 #D6DFE5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-form-subjects__btn button {
    font-size: 18px;
    -webkit-box-shadow: 0 6px 0 #D6DFE5;
    box-shadow: 0 6px 0 #D6DFE5;
  }
}
.c-form-subjects__btn button:hover {
  color: #2EB6AA;
  background: #fff;
}
.c-form-subjects-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 9px;
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 290px;
    gap: 16px 0;
    margin: 32px auto 0;
  }
}
.c-form-subjects-list__item {
  position: relative;
  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;
  width: 178px;
  min-height: 36px;
  font-size: 16px;
  font-weight: 500;
  background: #159FF1;
  color: #fff;
  border-radius: 8px;
}
.c-form-subjects-list__txt {
  margin: 0;
  padding: 5px;
}
.-u .c-form-subjects-list__item {
  background: #FF8700;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-list__item {
    width: 138px;
    font-size: 14px;
  }
}
.c-form-subjects-list__btn {
  position: absolute;
  top: -6px;
  right: -7px;
  width: 21px;
  height: 21px;
  background: url(../img/common/icon_subjects_close.svg) 0 0/100% auto no-repeat;
  cursor: pointer;
}
.-u .c-form-subjects-list__btn {
  background: url(../img/common/icon_subjects_close_u.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-list__btn {
    top: -8px;
    right: -8px;
  }
}
.c-form-subjects-modal {
  position: relative;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  margin: 0 auto;
  padding: 21px 43px 32px;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal {
    padding: 20px;
  }
}
.c-form-subjects-modal__close {
  position: absolute;
  top: 18px;
  right: 43px;
  width: 20px;
  height: 20px;
  background: none;
  border: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal__close {
    top: 14px;
    right: 11px;
    width: 20px;
    height: 20px;
  }
}
.c-form-subjects-modal__close:hover {
  opacity: 0.7;
}
.c-form-subjects-modal__decision {
  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;
  width: 312px;
  height: 46px;
  font-size: 18px;
  font-family: inherit;
  color: #fff;
  border: 1px solid #159FF1;
  background: #159FF1;
  border-radius: 50px;
  font-weight: 700;
  -webkit-box-shadow: 0 6px 0 #E5E5E5;
  box-shadow: 0 6px 0 #E5E5E5;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 38px auto 0;
  cursor: pointer;
}
.-u .c-form-subjects-modal__decision {
  border: 1px solid #FF8700;
  background: #FF8700;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal__decision {
    font-size: 20px;
    margin-top: 32px;
  }
}
.c-form-subjects-modal__decision:hover {
  background: #fff;
  color: #159FF1;
}
.-u .c-form-subjects-modal__decision:hover {
  color: #FF8700;
}
.c-form-subjects-modal__ttl {
  text-align: center;
  font-size: 18px;
  line-height: 1;
  border-bottom: 1px dashed #595757;
  padding: 0 0 16px;
  margin: 0 0 32px;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal__ttl {
    letter-spacing: 0.1em;
    padding: 0 0 13px;
    margin: 0 0 24px;
  }
}
.c-form-subjects-modal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px 0;
  }
}
.c-form-subjects-modal-list__item {
  position: relative;
  width: 178px;
  min-height: 42px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-form-subjects-modal-list__item {
    width: calc(50% - 8px);
    min-height: 36px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.c-form-subjects-modal-list__item input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-form-subjects-modal-list__item input[type=checkbox]:checked ~ .txt {
  border-color: #159FF1;
  background: #159FF1;
  color: #fff;
}
.c-form-subjects-modal-list__item .txt {
  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;
  width: 100%;
  height: 100%;
  padding: 5px;
  border: 1px solid #595757;
  color: #595757;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-u .c-form-subjects-modal-list__item input[type=checkbox]:checked ~ .txt {
  border-color: #FF8700;
  background: #FF8700;
}
.c-form-subjects-modal-list__btn {
  position: absolute;
  top: -6px;
  right: -7px;
  width: 21px;
  height: 21px;
  background: url(../img/common/icon_subjects_close.svg) 0 0/100% auto no-repeat;
}
.c-form-time__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .c-form-time__block {
    display: block;
    margin-top: 20px;
  }
}
.c-form-time__block:first-child {
  margin-top: 0;
}
.c-form-time__txt {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-time__txt {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
.c-form-time__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  .c-form-time__end {
    gap: 0;
    margin-top: 10px;
  }
}
.c-form-time__end > p {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-time__end > p {
    font-size: 18px;
  }
}
.c-form-time__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  .c-form-time__wrap {
    width: calc(100% - 24px);
    margin: 0 0 0 auto;
  }
}
.c-form-time__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 154px;
}
@media screen and (max-width: 768px) {
  .c-form-time__inner {
    width: calc(50% - 4px);
  }
}
.c-form-time__inner .c-form-select {
  width: calc(100% - 32px);
}
@media screen and (max-width: 768px) {
  .c-form-time__inner .c-form-select {
    width: calc(100% - 24px);
  }
}
.c-form-time__inner p {
  width: 32px;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-time__inner p {
    width: 24px;
    font-size: 18px;
  }
}
.c-form-birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-form-birth {
    gap: 0 2%;
  }
}
.c-form-birth__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 226px;
}
@media screen and (max-width: 768px) {
  .c-form-birth__item {
    width: 32%;
  }
}
.c-form-birth__item p {
  text-align: right;
  margin: 0;
}
.c-form-birth__select {
  width: calc(100% - 32px);
}
@media screen and (max-width: 768px) {
  .c-form-birth__select {
    width: calc(100% - 20px);
    font-size: 18px;
  }
  .c-form-birth__select::before {
    right: 3px;
  }
  .c-form-birth__select select {
    padding: 0 20px 0 4px;
  }
}
.c-form-birth.m-work {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1em;
}
.c-form-birth.m-work .c-form-birth__select.m-wide {
  width: calc(100% - 4.5em);
}
@media screen and (max-width: 768px) {
  .c-form-birth.m-work .c-form-birth__select.m-wide {
    width: calc(100% - 20px);
  }
}
.c-form-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
}
.c-form-tel:first-of-type {
  margin-top: 0;
}
.c-form-tel p {
  text-align: right;
  margin: 0;
}
.c-form-tel__input {
  width: calc(100% - 56px);
}
.c-form-tip {
  position: relative;
}
.c-form-tip__btn {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 0 #E5E5E5;
  box-shadow: 0 5px 0 #E5E5E5;
  background: #2EB6AA;
  border: 1px solid #2EB6AA;
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-form-tip__btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}
.c-form-tip__btn:hover {
  background: #fff;
  color: #2EB6AA;
}
.c-form-tip__balloon {
  position: absolute;
  top: 0;
  left: 0;
  width: 356px;
  border: 1px solid #2EB6AA;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 0 #E5E5E5;
  box-shadow: 0 5px 0 #E5E5E5;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-form-tip__balloon {
    top: 50px;
    width: 100%;
  }
}
.is-open .c-form-tip__balloon {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.c-form-tip__inner {
  position: relative;
  padding: 10px 13px;
}
@media screen and (max-width: 768px) {
  .c-form-tip__inner {
    padding: 12px 22px;
  }
}
.c-form-tip__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-form-tip__close {
    top: -15px;
  }
}
.c-form-tip__txt {
  font-size: 17px;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-tip__txt {
    font-size: 16px;
    line-height: 1.625;
  }
}
.c-form table {
  width: 100%;
  table-layout: fixed;
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .c-form table {
    margin: 0 0 24px;
  }
}
.c-form table th {
  width: 440px;
  text-align: left;
  font-size: 24px;
  line-height: 2.1;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed #595757;
  padding: 46px 0;
}
@media screen and (max-width: 768px) {
  .c-form table th {
    display: block;
    width: 100%;
    font-size: 18px;
    border-bottom: 0;
    padding: 18px 0 15px;
  }
}
.c-form table th.top {
  vertical-align: top;
}
.c-form table th .indent {
  line-height: 1.4;
  text-indent: -1em;
  letter-spacing: 0;
  margin: 0;
  padding: 10px 0 10px 1em;
}
.c-form table td {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px dashed #595757;
  padding: 46px 0;
}
@media screen and (max-width: 768px) {
  .c-form table td {
    display: block;
    width: 100%;
    min-height: calc(1em + 24px);
    font-size: 18px;
    padding: 0 0 24px;
  }
}
.c-form table td .notes {
  font-size: 15px;
  font-weight: 700;
  text-indent: -1em;
  padding-left: 1em;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form table td .notes {
    font-size: 13px;
    margin: 8px 0 0;
  }
}
.c-form table td .notes + .notes {
  margin-top: 0;
}
.c-form table td .notes + .error {
  margin-top: 0;
}
.c-form table td .js-password .notes + .error {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .c-form table td .js-password .notes + .error {
    margin-top: 8px;
  }
}
.c-form table td .mail {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form table td .mail {
    font-size: 18px;
  }
}
.c-form table td p.error {
  color: #ff0000;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form table td p.error {
    font-size: 13px;
    margin: 8px 0 0;
  }
}
.c-form table td p.error + p.error {
  margin-top: 0 !important;
}
.c-form table td:has(.c-form-name) p.error {
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .c-form table td:has(.c-form-name) p.error {
    padding-left: 25px;
  }
}
.c-form table td:has(.c-form-name.-kana) p.error {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .c-form table td:has(.c-form-name.-kana) p.error {
    padding-left: 43px;
  }
}
.c-form table td input.error,
.c-form table td textarea.error {
  margin: 0;
  color: #595757;
}
@media screen and (max-width: 768px) {
  .c-form.-confirm table th {
    padding: 18px 0 0;
  }
}
.c-form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}
.c-form__btns.m-link {
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}
@media screen and (max-width: 768px) {
  .c-form__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 16px 0;
  }
}
.c-form__btns .c-form__btn {
  margin: 0;
}
.c-form__btn {
  width: 446px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-form__btn {
    width: 100%;
    margin: 0 auto;
  }
}
.c-form__btn.-orange a,
.c-form__btn.-orange button {
  background: #FF8700;
  font-family: inherit;
  border: 1px solid #FF8700;
}
.c-form__btn.-orange a:hover,
.c-form__btn.-orange button:hover {
  background: #fff;
  color: #FF8700;
}
.c-form__btn.-orange a:hover::before,
.c-form__btn.-orange button:hover::before {
  background: url(../img/common/icon_arrow-orange.svg) 0 0/100% auto no-repeat;
}
.c-form__btn.-blue a,
.c-form__btn.-blue button {
  font-family: inherit;
  background: #159FF1;
  border: 1px solid #159FF1;
}
.c-form__btn.-blue a:hover,
.c-form__btn.-blue button:hover {
  background: #fff;
  color: #159FF1;
}
.c-form__btn.-blue a:hover::before,
.c-form__btn.-blue button:hover::before {
  background: url(../img/common/icon_arrow-blue.svg) 0 0/100% auto no-repeat;
}
.c-form__btn.-green a,
.c-form__btn.-green button {
  font-family: inherit;
  letter-spacing: 0;
  background: #2EB6AA;
  border: 1px solid #2EB6AA;
}
@media screen and (max-width: 768px) {
  .c-form__btn.-green a,
  .c-form__btn.-green button {
    font-size: 18px;
    padding-right: 20px;
  }
}
.c-form__btn.-green a::before,
.c-form__btn.-green button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_blank_white.svg) 0 0/100% auto no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-form__btn.-green a:hover,
.c-form__btn.-green button:hover {
  background: #fff;
  color: #2EB6AA;
}
.c-form__btn.-green a:hover::before,
.c-form__btn.-green button:hover::before {
  background: url(../img/common/icon_blank_green.svg) 0 0/100% auto no-repeat;
}
.c-form__btn a,
.c-form__btn button {
  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;
  position: relative;
  width: 100%;
  min-height: 81px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  letter-spacing: 0.08em;
  border: 0;
  -webkit-box-shadow: 0 7px 0 #E5E5E5;
  box-shadow: 0 7px 0 #E5E5E5;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-form__btn a,
  .c-form__btn button {
    min-height: 64px;
    font-size: 20px;
  }
}
.c-form__btn a::before,
.c-form__btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13px;
  height: 23px;
  background: url(../img/common/icon_arrow-white.svg) 0 0/100% auto no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-form__btn a::before,
  .c-form__btn button::before {
    right: 16px;
    width: 9px;
    height: 16px;
  }
}
.c-form-thanks {
  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: 430px;
}
@media screen and (max-width: 768px) {
  .c-form-thanks {
    height: 230px;
  }
}
.c-form-thanks.-f {
  background: #cae9fb;
  margin: 0 0 45px;
}
@media screen and (max-width: 768px) {
  .c-form-thanks.-f {
    height: 330px;
    margin: 0 0 32px;
  }
}
.c-form-thanks.-u {
  display: block;
  height: auto;
  background: #fff7c7;
  padding: 24px 0;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .c-form-thanks.-u {
    height: auto;
    padding: 30px 0;
    margin: 0 0 24px;
  }
}
.c-form-thanks__ttl {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .c-form-thanks__ttl {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 18px;
  }
  .-f .c-form-thanks__ttl {
    font-size: 20px;
    letter-spacing: 0.02em;
  }
}
.c-form-thanks__txt {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-thanks__txt {
    font-size: 12px;
  }
  .c-form-thanks__txt.-shorten {
    letter-spacing: -0.03em;
  }
}
.c-form-items {
  text-align: center;
  border: 1px solid #FF8700;
  margin: 0 0 45px;
}
@media screen and (max-width: 768px) {
  .c-form-items {
    margin: 0 0 32px;
  }
}
.c-form-items__ttl {
  text-align: center;
  background: #FF8700;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .c-form-items__ttl {
    font-size: 18px;
  }
}
.c-form-items-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .c-form-items-list {
    padding: 16px 20px;
  }
}
.c-form-items-list__item {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 768px) {
  .c-form-items-list__item {
    font-size: 14px;
  }
}
.c-form-items-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-form-agree {
  text-align: center;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .c-form-agree {
    margin: 30px 0;
  }
}
.c-form-agree label {
  position: relative;
}
.c-form-agree label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-form-agree label input:checked + .txt::before {
  background: url(../img/common/icon_checkbox_on.svg) 0 0/100% auto no-repeat;
}
.c-form-agree label .txt {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  padding: 0 0 3px 27px;
}
@media screen and (max-width: 768px) {
  .c-form-agree label .txt {
    line-height: 1.6;
    font-size: 18px;
    padding: 0 0 2px 20px;
  }
}
.c-form-agree label .txt a {
  color: #2EB6AA;
}
.c-form-agree label .txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  background: url(../img/common/icon_checkbox_off.svg) 0 0/100% auto no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-form-agree label .txt::before {
    top: 9px;
    left: 10px;
    width: 14px;
    height: 14px;
    -webkit-transform: none;
    transform: none;
  }
}
.c-form-agree .error {
  color: #ff0000;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .c-form-agree .error {
    font-size: 13px;
    margin: 8px 0 0;
  }
}
.c-form-university {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.c-form-university_txt {
  width: 3em;
  margin: 0;
}

.p-contact .c-form__btns .c-form__btn {
  margin: 0;
}
.p-contact .c-form__btn {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .p-contact .c-form__btn {
    width: 100%;
    margin: 24px auto 0;
  }
}

.p-register {
  background: rgba(21, 159, 241, 0.08);
}
.p-register.-u {
  background: rgba(255, 210, 0, 0.08);
}

.p-forget__mv {
  height: 153px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-forget__mv {
    height: 130px;
  }
}
.p-forget__mv img {
  width: auto;
  height: 100%;
}
.p-forget__inner {
  min-height: 430px;
  background: #cae9fb;
  padding: 28px 0;
  margin: 0 0 45px;
}
.-user .p-forget__inner {
  background: #fff7c7;
}
@media screen and (max-width: 768px) {
  .p-forget__inner {
    min-height: inherit;
    padding: 36px 16px 40px;
    margin: 0 0 32px;
  }
}
.p-forget__ttl {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-forget__ttl {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
}
.p-forget-block {
  max-width: 782px;
  margin: 0 auto;
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block {
    padding: 28px 0 0;
  }
}
.p-forget-block__txt {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block__txt {
    font-size: 12px;
  }
}
.p-forget-block:has(.p-forget-block__action) {
  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: 320px;
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block:has(.p-forget-block__action) {
    display: block;
    height: auto;
    padding: 40px 0 0;
  }
  .p-forget-block:has(.p-forget-block__action).-end {
    height: 320px;
    padding: 140px 0 0;
  }
}
.p-forget-block__action {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block__action {
    font-size: 12px;
  }
}
.p-forget-block:has(.p-forget-block__address) {
  padding: 20px 0 0;
}
.p-forget-block__address {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block__address {
    font-size: 15px;
    margin: 20px 0 0;
  }
}
.p-forget-block-define {
  margin: 20px 0 0;
}
.p-forget-block-define__ttl {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .p-forget-block-define__ttl {
    font-size: 13px;
    margin: 0;
  }
}
.p-forget-block-define input.error {
  color: #595757;
}
.p-forget-block-define .error {
  color: #ff0000;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  margin: 5px 0 0;
}
@media screen and (max-width: 768px) {
  .p-forget-block-define .error {
    font-size: 13px;
    margin: 3px 0 0;
  }
}
.p-forget-block-define .error + .error {
  margin-top: 0;
}

.js-password-block {
  position: relative;
}
.js-password-block input[type=password],
.js-password-block input[type=text] {
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .js-password-block input[type=password],
  .js-password-block input[type=text] {
    padding-right: 60px;
  }
}
.js-password-block__btn {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 46px;
  height: 30px;
  background: url(../img/common/icon_password_off.svg) 0 0/100% auto no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .js-password-block__btn {
    right: 9px;
    width: 40px;
    height: 26px;
  }
}
.is-visible .js-password-block__btn {
  background: url(../img/common/icon_password_mask.svg) 0 0/100% auto no-repeat;
}

.p-notfound {
  padding: 200px 0 0;
}
@media screen and (max-width: 768px) {
  .p-notfound {
    padding: 24px 0 0;
  }
}
.p-notfound__ttl {
  font-size: 200px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .p-notfound__ttl {
    font-size: 100px;
  }
}
.p-notfound__txt {
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  margin: 0 0 160px;
}
@media screen and (max-width: 768px) {
  .p-notfound__txt {
    font-size: 12px;
    margin: 10px -1em 50px;
  }
}

.p-detail {
  padding: 80px 0 200px;
}
@media screen and (max-width: 768px) {
  .p-detail {
    padding: 15px 0 84px;
  }
}
.p-detail .c-breadcrumb {
  display: block;
}
.p-detail .c-breadcrumb__item {
  display: inline;
}
.p-detail__ttl {
  font-size: 200px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .p-detail__ttl {
    font-size: 100px;
  }
}
.p-detail__txt {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-detail__txt {
    margin: 20px 0 30px;
  }
}
.p-detail__txt h1 {
  font-size: 30px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-detail__txt h1 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 0 0 10px;
  }
}
.p-detail__txt p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-detail__txt p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.p-detail__txt p + .p-detail__txt p {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-detail__txt p + .p-detail__txt p {
    margin-top: 16px;
  }
}
.p-detail__txt a {
  color: #159FF1;
}

.p-link__inner {
  max-width: 924px;
  padding: 170px 0 230px;
  margin: 0 auto;
}
.p-link__inner a {
  height: 100%;
  padding: 10px 40px 10px 10px;
}
@media screen and (max-width: 768px) {
  .p-link__inner {
    padding: 32px 0 0;
  }
}

.p-tos__inner {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .p-tos__inner {
    padding: 24px 0 0;
  }
}
.p-tos__inner h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-tos__inner h2 {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-tos__inner p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-tos__inner p {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-tos__inner h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin: 28px 0 0;
}
@media screen and (max-width: 768px) {
  .p-tos__inner h3 {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.p-privacy .c-heading {
  margin-left: -1em;
  margin-right: -1em;
}
@media screen and (max-width: 768px) {
  .p-privacy .c-heading {
    letter-spacing: 0;
  }
}
.p-privacy .c-breadcrumb {
  display: block;
  margin-top: 16px;
}
.p-privacy .c-breadcrumb__item {
  display: inline;
}
.p-privacy__inner {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner {
    padding: 24px 0 0;
  }
}
.p-privacy__inner h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  background: #e6e6e6;
  margin: 0 0 28px;
  padding: 14px 20px;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner h2 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    margin: 0 0 10px;
  }
}
.p-privacy__inner p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner p {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-privacy__inner p:nth-child(n+2) {
  margin: 1em 0 0;
}
.p-privacy__inner ul {
  list-style: none;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner ul {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
.p-privacy__inner ul li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1em;
  list-style: none;
}
.p-privacy__inner ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy__inner h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin: 28px 0 0;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner h3 {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}