/*!
global > color
------------------------------
*/
/*!
global > mixin
------------------------------
*/
.p_entry .entry {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p_entry .entry {
    padding: 89px 0 108px;
  }
}
.p_entry .entry__head {
  margin-bottom: 20px;
}

.c_form .form_item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .c_form .form_item {
    padding: 30px 0;
    gap: 0;
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .c_form .form_item.flex_start {
    align-items: flex-start;
  }
}
.c_form .form_item__name {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 270px;
}
.c_form .form_item__name .tag {
  color: #fff;
  background: #d41818;
  width: 40px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c_form .form_item__name .tag.not {
  background-color: #222222;
}
.c_form .form_item__name .ttl {
  color: #434c57;
}
.c_form .form_item__desc {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 590px;
  flex-wrap: wrap;
  color: #333;
}
.c_form .form_item__desc input,
.c_form .form_item__desc textarea,
.c_form .form_item__desc select {
  width: 100%;
  background: #efefef;
  outline: 0;
  padding: 4px 10px;
}
@media screen and (min-width: 768px) {
  .c_form .form_item__desc input,
  .c_form .form_item__desc textarea,
  .c_form .form_item__desc select {
    padding: 4px 20px;
  }
}
.c_form .form_item__desc input,
.c_form .form_item__desc select {
  height: 40px;
}
.c_form .form_item__desc select {
  -webkit-appearance: auto;
  appearance: auto;
}
.c_form .form_item__desc textarea {
  width: 100%;
  height: 200px;
  resize: unset;
}
.c_form .form_item__desc .wpcf7-form-control-wrap {
  width: 100%;
}
.c_form .form_item .c_select {
  width: 100%;
  position: relative;
  z-index: 1;
}
.c_form .form_item .c_select::before {
  content: "";
  width: 35px;
  height: 40px;
  background-color: #efefef;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.c_form .form_item .c_select::after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  right: 15px;
  top: 14px;
  transform: rotate(45deg);
  z-index: 2;
}
.c_form .form_item .c_select select {
  padding-right: 35px;
  cursor: pointer;
}
.c_form .form_item .radio_item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 9px;
  margin-right: 30px;
  padding-bottom: 3px;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.c_form .form_item .radio_item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .c_form .form_item .radio_item label {
    margin-top: 2px;
  }
}
.c_form .form_item .radio_item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.c_form .form_item .radio_item input:checked ~ .checkmark {
  background: #2196f3;
}
.c_form .form_item .radio_item input:checked ~ .checkmark:after {
  display: block;
}
.c_form .form_item .radio_item:hover .checkmark {
  background: #ccc;
}
.c_form .form_item .radio_item .checkmark {
  position: relative;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #eee;
  border-radius: 50%;
}
.c_form .form_item .radio_item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px white;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item {
  margin: 0 30px 0 0;
  padding-bottom: 3px;
}
.c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item:last-child {
  margin-right: 0;
}
.c_form .form_item .radio .wpcf7-form-control label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.c_form .form_item .radio .wpcf7-form-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.c_form .form_item .radio .wpcf7-form-control input:checked ~ .wpcf7-list-item-label:before {
  background: #2196f3;
}
.c_form .form_item .radio .wpcf7-form-control input:checked ~ .wpcf7-list-item-label:after {
  display: block;
}
.c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 29px;
}
.c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 21px;
  height: 21px;
  background: #eee;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item-label::before {
    top: 6px;
  }
}
.c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
  top: 7px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px white;
}
@media screen and (min-width: 768px) {
  .c_form .form_item .radio .wpcf7-form-control .wpcf7-list-item-label:after {
    top: 9px;
  }
}
.c_form .form_item .upload {
  position: relative;
  display: inline-block;
  transition: 0.5s;
}
.c_form .form_item .upload label {
  width: 160px;
  height: 40px;
  display: block;
  cursor: pointer;
  background: #222222;
}
@media screen and (min-width: 768px) {
  .c_form .form_item .upload label {
    transition: all 0.5s;
  }
  .c_form .form_item .upload label:hover {
    opacity: 0.7;
  }
}
.c_form .form_item .upload label span {
  pointer-events: none;
}
.c_form .form_item .upload label .wpcf7-not-valid-tip {
  display: none;
}
.c_form .form_item .upload input {
  opacity: 0;
}
.c_form .form_item .upload .txt {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  padding: 3px 10px 0 10px;
  color: #fff;
  pointer-events: none;
  width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.c_form .form_item .w_200 {
  max-width: 200px;
}
.c_form .form_item .w_300 {
  max-width: 300px;
}
.c_form .form_item .w_400 {
  max-width: 400px;
}
.c_form .form_desc {
  margin-top: 40px;
  width: 100%;
  padding: 20px;
  height: 282px;
  background: #efefef;
}
@media screen and (min-width: 768px) {
  .c_form .form_desc {
    padding: 32px 43px 34px 40px;
  }
}
.c_form .form_desc__txt {
  height: 235px;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .c_form .form_desc__txt {
    height: 200px;
  }
}
.c_form .form_desc__txt > * + * {
  margin-top: 20px;
}
.c_form .form_desc__txt .ttl {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c_form .form_desc__txt .ttl {
    font-size: 1.25rem;
  }
}
.c_form .form_desc__txt .list {
  counter-reset: list-num;
}
.c_form .form_desc__txt .list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
}
.c_form .form_desc__txt .list li:last-child {
  margin-bottom: 0;
}
.c_form .form_desc__txt .list li::before {
  counter-increment: list-num;
  content: counter(list-num) ".";
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c_form .form_desc__txt .list li::before {
    font-size: 1rem;
  }
}
.c_form .form_desc__content .txt {
  color: #333;
  line-height: 2.25;
}
.c_form .form_desc__content .txt.right {
  text-align: right;
}
.c_form .form_accept {
  margin-top: 30px;
}
.c_form .form_accept__desc {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c_form .form_accept__desc {
    padding-right: 15px;
  }
}
.c_form .form_accept__desc label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .c_form .form_accept__desc label {
    transition: all 0.5s;
  }
  .c_form .form_accept__desc label:hover {
    opacity: 0.7;
  }
}
.c_form .form_accept__desc label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.c_form .form_accept__desc label input:checked ~ .wpcf7-list-item-label:before {
  background-color: #2196f3;
  border: 0;
}
.c_form .form_accept__desc label input:checked ~ .wpcf7-list-item-label:after {
  display: block;
}
.c_form .form_accept__desc label .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
}
.c_form .form_accept__desc label .wpcf7-list-item-label::before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  background-color: #e8eaea;
}
.c_form .form_accept__desc label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: none;
  left: 11px;
  top: 8px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c_form .form_confirm {
  text-align: center;
}
.c_form .form_confirm input {
  width: 100%;
  max-width: 260px;
  height: 54px;
  margin: 51px auto 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #003366;
}
@media screen and (min-width: 768px) {
  .c_form .form_confirm input {
    transition: all 0.5s;
  }
  .c_form .form_confirm input:hover {
    opacity: 0.7;
  }
}
.c_form .datepicker {
  cursor: pointer;
}
.c_form [data-name=your_date_of_birth] {
  position: relative;
  width: auto !important;
}
.c_form [data-name=your_date_of_birth]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #005bac url(../images/entry/icon_calendar.svg) no-repeat center/contain;
  background-size: 15px auto;
  pointer-events: none;
}
.c_form .wpcf7-spinner {
  margin-top: 20px;
}

.p_entry_thanks .thanks {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p_entry_thanks .thanks {
    max-width: 740px;
    margin: 0 auto;
    padding: 89px 0 108px;
  }
}
.p_entry_thanks .thanks__ttl {
  margin-bottom: 30px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p_entry_thanks .thanks__ttl {
    margin-bottom: 50px;
    font-size: 1.375rem;
    text-align: center;
  }
}
.p_entry_thanks .thanks__txt {
  margin-bottom: 30px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p_entry_thanks .thanks__txt {
    margin-bottom: 50px;
  }
}
.p_entry_thanks .thanks__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-datepicker .ui-datepicker-title {
  width: calc(100% - 160px);
}

.datepicker-year-layout {
  position: absolute;
  right: 2px;
  top: 1px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  width: 80px;
}
.datepicker-year-layout::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #a5a3a3;
  position: absolute;
  top: 6px;
  right: 5px;
  pointer-events: none;
}
.datepicker-year-layout::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #a5a3a3;
  position: absolute;
  bottom: 6px;
  right: 5px;
  pointer-events: none;
  z-index: 1;
}

.ui-datepicker select.ui-datepicker-year {
  width: 100%;
  padding-left: 15px;
  padding-right: 25px;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 90px;
}

.ui-widget-header .ui-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #3b4043;
  border-left: 2px solid #3b4043;
  position: absolute;
  left: 4px;
  top: 4px;
}

.ui-datepicker-prev .ui-icon::after {
  transform: rotate(-45deg);
}

.ui-datepicker-next .ui-icon::after {
  transform: rotate(135deg);
}

/*# sourceMappingURL=entry.css.map */
