.form-field {
  border-top: solid 1px #cccccc;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #cccccc;
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.5rem;
}

.form-required {
  background: #b01616;
}

.form-optional {
  background: #226bbd;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #f9f9f9;
  font-size: 1.7rem;
  font-family: YakuHanJP, "Shippori Mincho", sans-serif;
  line-height: 56px;
  color: #222222;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #222222;
}

select {
  background: url("/congress/2026_tokyo/wp-content/themes/itreat_base/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #f9f9f9;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f9f9f9;
  border: solid 2px #f9f9f9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #222222;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #ffa500;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f9f9f9;
  border: solid 2px #f9f9f9;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #999999;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}

@media screen and (max-width: 959px) {
  .form-send {
    height: 64px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #ffa500;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #008000;
  color: #008000;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(176, 22, 22, 0.08);
  color: #b01616;
  border: solid 1px #b01616;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(176, 22, 22, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 165, 0, 0.08);
  color: #b01616;
  border: solid 1px #ffa500;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 165, 0, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #b01616;
  font-size: 1.5rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #b01616;
  font-size: 1.5rem;
  background-color: rgba(176, 22, 22, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.poster-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 1279px) {
  .poster-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 959px) {
  .poster-unit {
    gap: 32px;
  }
}

.poster-unit__dtl {
  width: calc(100% - 338px);
}

@media screen and (max-width: 1279px) {
  .poster-unit__dtl {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 959px) {
  .poster-unit__dtl {
    width: calc(100% - 272px);
  }
}

@media screen and (max-width: 767px) {
  .poster-unit__dtl {
    width: 100%;
  }
}

.poster-unit__vsl {
  width: 280px;
}

@media screen and (max-width: 1279px) {
  .poster-unit__vsl {
    width: 260px;
  }
}

@media screen and (max-width: 959px) {
  .poster-unit__vsl {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .poster-unit__vsl {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    padding-bottom: 16px;
  }
}

.poster-schedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.poster-schedule__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.poster-schedule__item dt {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  min-height: 30px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #907e6c), color-stop(50%, #807162));
  background: linear-gradient(to bottom right, #907e6c 50%, #807162 50%);
  border-radius: 3px;
  color: #ffffff;
  font-size: 1.5rem;
}

@media screen and (max-width: 959px) {
  .poster-schedule__item dt {
    width: 104px;
    font-size: 1.3rem;
  }
}

.poster-schedule__item dd {
  color: #807162;
  font-size: 1.9rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .poster-schedule__item dd {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .poster-schedule__item dd {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 519px) {
  .poster-schedule__item dd {
    width: 100%;
  }
}

.other-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 12px;
}

.other-file dt {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 160px;
  min-height: 30px;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #907e6c), color-stop(50%, #807162));
  background: linear-gradient(to bottom right, #907e6c 50%, #807162 50%);
  border-radius: 3px;
  color: #ffffff;
  font-size: 1.5rem;
}

@media screen and (max-width: 959px) {
  .other-file dt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .other-file dt {
    width: 100%;
  }
}

.other-file dd {
  width: calc(100% - 172px);
}

@media screen and (max-width: 767px) {
  .other-file dd {
    width: 100%;
  }
}

.file-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.file-list__item em {
  font-weight: bold;
}

.file-list__item a.file-btn {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 24px;
  border: solid 1px #222222;
  font-size: 1.3rem;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (max-width: 1023px) {
  .file-list__item a.file-btn {
    padding: 6px 20px;
  }
}

@media screen and (max-width: 959px) {
  .file-list__item a.file-btn {
    padding: 3px 16px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .file-list__item a.file-btn {
    display: block;
    margin-top: 8px;
    padding: 3px 12px;
  }
}

.file-list__item a.file-btn::before, .file-list__item a.file-btn::after {
  content: '';
  width: 8px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.file-list__item a.file-btn::before {
  position: absolute;
  top: -1px;
  right: 12px;
}

.file-list__item a.file-btn::after {
  position: absolute;
  bottom: -1px;
  left: 12px;
}

.file-list__item a.file-btn:hover {
  opacity: 0.6;
}

.file-list__item a.file-btn:hover .ico-arrow {
  translate: 6px 0;
}

.file-list__item a.file-btn.bc-red {
  background: #b01616;
}

.file-list__item a.file-btn.bc-red:hover {
  background: #ffffff;
  color: #b01616;
}

.file-list__item a.file-btn.bc-blu {
  background: #226bbd;
}

.file-list__item a.file-btn.bc-blu:hover {
  background: #ffffff;
  color: #226bbd;
}

.file-list__item a.file-btn.bc-d-blu {
  background: #2a62a2;
}

.file-list__item a.file-btn.bc-d-blu:hover {
  background: #ffffff;
  color: #2a62a2;
}

.file-list__item a.file-btn.bc-grn {
  background: #008000;
}

.file-list__item a.file-btn.bc-grn:hover {
  background: #ffffff;
  color: #008000;
}

.file-list__item a.file-btn.bc-yel {
  background: #ffff00;
}

.file-list__item a.file-btn.bc-yel:hover {
  background: #ffffff;
  color: #ffff00;
}

.file-list__item a.file-btn.bc-orn {
  background: #ffa500;
}

.file-list__item a.file-btn.bc-orn:hover {
  background: #ffffff;
  color: #ffa500;
}

.file-list__item a.file-btn.bc-beg {
  background: #f5f5dc;
}

.file-list__item a.file-btn.bc-beg:hover {
  background: #ffffff;
  color: #f5f5dc;
}

.file-list__item a.file-btn.bc-brn {
  background: #907e6c;
}

.file-list__item a.file-btn.bc-brn:hover {
  background: #ffffff;
  color: #907e6c;
}

.file-list__item a.file-btn.bc-blk {
  background: #222222;
}

.file-list__item a.file-btn.bc-blk:hover {
  background: #ffffff;
  color: #222222;
}

.file-list__item a.file-btn.bc-wht {
  background: #ffffff;
}

.file-list__item a.file-btn.bc-wht:hover {
  background: #ffffff;
  color: #ffffff;
}

.file-list__item a.file-btn.bc-l-gry {
  background: #f9f9f9;
}

.file-list__item a.file-btn.bc-l-gry:hover {
  background: #ffffff;
  color: #f9f9f9;
}

.file-list__item a.file-btn.bc-gry {
  background: #cccccc;
}

.file-list__item a.file-btn.bc-gry:hover {
  background: #ffffff;
  color: #cccccc;
}

.file-list__item a.file-btn.bc-d-gry {
  background: #999999;
}

.file-list__item a.file-btn.bc-d-gry:hover {
  background: #ffffff;
  color: #999999;
}

/*# sourceMappingURL=../../maps/pages/abstracts.css.map */
