@charset "UTF-8";
.header_inner {
  width: min(1000px, 100%);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header_inner {
    width: 250px;
    text-align: center;
  }
}
.header_inner_pan {
  width: min(1000px, 100%);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header_inner_pan {
  }
}
img, picture {
  max-width: 100%;
  display: block;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  }

#pch-footer {
    margin-top: 0px;
    padding: 20px;
    text-align: center;
    color: #aaa;
    background-color: #eee;
    border-top: 1px solid #c3c3c3;
    height: 65px;
    font-size: 15.7px;
    line-height: 1.6;
  }

.u-sp {
    display: none;
  }
@media screen and (max-width: 768px) {
    .u-sp {
      display: block;
    }
  }

.p-container {
    background-color: #E6F3FD;
    padding-top: 85px;
    padding-bottom: 100px;
    color: #222;
  }
  @media screen and (max-width: 768px) {
    .p-container {
      padding-top: 32px;
      padding-bottom: 80px;
    }
  }
  
  .p-heading01 {
    font-size: 26px;
    line-height: 1.6923076923;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  @media screen and (max-width: 768px) {
    .p-heading01 {
      font-size: 20px;
      line-height: 1.7;
    }
  }
  
  .p-text01 {
    font-size: 16px;
    line-height: 2;
    margin-top: 8px;
    text-align: center;
    font-weight: bold;
  }
  @media screen and (max-width: 768px) {
    .p-text01 {
      font-size: 14px;
      line-height: 1.5714285714;
      padding: 0 16px;
      font-weight: normal;
    }
  }
  .p-text01 .c-marker {
    background: linear-gradient(to bottom, transparent 0 70%, #FFF100 70% 90%);
  }
  
  .p-status {
    margin: 40px auto;
    width: min(376px, 100%);
    display: grid;
    column-gap: 32px;
    grid-template-columns: repeat(3, 104px);
    list-style: none;
    padding-left: 0;
  }
  @media screen and (max-width: 768px) {
    .p-status {
      grid-template-columns: repeat(3, 90px);
      max-width: 311px;
      margin: 32px auto;
      column-gap: 20px;
    }
  }
  .p-status-item {
    color: #fff;
    background-color: #CECECE;
    border-radius: 50vh;
    font-size: 16px;
    line-height: 1.6875;
    text-align: center;
    font-weight: bold;
    padding: 8px 12px;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .p-status-item {
      font-size: 15px;
      line-height: 1.7333333333;
    }
  }
  .p-status-item:not(:first-child):before {
    content: "";
    position: absolute;
    background-color: #CECECE;
    width: 32px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    .p-status-item:not(:first-child):before {
      width: 20px;
    }
  }
  .p-status-item.active {
    background-color: #007FC3;
  }
  
  .p-form-container {
    width: min(542px, 100%);
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  @media screen and (max-width: 768px) {
    .p-form-container {
      margin: 0 16px;
      width: calc(100% - 32px);
    }
  }
  
  .p-error {
    background-color: #FDE8E6;
    color: #FF0000;
    font-size: 14px;
    line-height: 1.7142857143;
    font-weight: bold;
    padding: 29px 24px;
  }
  @media screen and (max-width: 768px) {
    .p-error {
      padding: 16px;
    }
  }
  .p-error p {
    padding-left: 18px;
    position: relative;
    margin-bottom: 0px;
  }
  .p-error p::before {
    content: "";
    position: absolute;
    background-image: url("../../pchForm/pchForm/img/icon_error.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    top: 6px;
    left: 0;
  }
  
  .p-form {
    padding: 0.1px 48px 40px;
    background-color: #fff;
  }
  .p-form ::placeholder {
    color: rgba(34, 34, 34, 0.5);
  }
  @media screen and (max-width: 768px) {
    .p-form {
      padding: 0.1px 16px 40px;
    }
  }
  .p-form-item {
    margin-top: 40px;
  }
  @media screen and (max-width: 768px) {
    .p-form-item {
      margin-top: 32px;
    }
  }
  .p-form-item_head {
    display: flex;
    align-items: center;
  }
  .p-form-item_body {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  .p-form-item_body input[type=text],
  .p-form-item_body input[type=number],
  .p-form-item_body input[type=tel],
  .p-form-item_body input[type=email],
  .p-form-item_body textarea {
    font-size: 16px;
    line-height: 1.5;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    cursor: pointer;
    height: 54px;
  }
  .p-form-item_body input[type=text]:focus,
  .p-form-item_body input[type=number]:focus,
  .p-form-item_body input[type=tel]:focus,
  .p-form-item_body input[type=email]:focus,
  .p-form-item_body textarea:focus {
    box-shadow: 0 0 5px #295FC5;
    outline: 1px solid #295FC5;
  }
  
  .p-required {
    color: #fff;
    background-color: #FF0000;
    text-align: center;
    display: inline-block;
    padding: 1px 8px;
    border-radius: 2px;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: normal;
    line-height: 1.5;
  }
  
  .p-optional {
    color: #fff;
    background-color: #898989;
    text-align: center;
    display: inline-block;
    padding: 1px 8px;
    border-radius: 2px;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: normal;
    line-height: 1.5;
  }
  
  .p-form-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.7142857143;
    padding-left: 8px;
    margin-bottom: 0px;
  }
  
  .p-form-item--name .p-form-item_body,
  .p-form-item--kana .p-form-item_body {
    display: grid;
    column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .p-form-item--name .p-form-input_detail,
  .p-form-item--kana .p-form-input_detail {
    font-size: 12px;
    padding-left: 0.25em;
    line-height: 1.5;
  }
  .p-form-item--name .p-form-input input,
  .p-form-item--kana .p-form-input input {
    width: 100%;
  }
  
  .p-form-item--birthday .p-form-item_body {
    display: grid;
    column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-form-item--birthday .p-form-input {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .p-form-item--birthday .p-form-input select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    padding: 14px;
    width: 100%;
    color: rgba(34, 34, 34, 0.5);
    background-image: url("../../pchForm/pchForm/img/triangle.svg");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px 6px;
    cursor: pointer;
    margin-bottom: 0px;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--birthday .p-form-input select {
      background-position: right 4px center;
    }
  }
  .p-form-item--birthday .p-form-input > div {
    padding-left: 5px;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--birthday .p-form-input > div {
      font-size: 14px;
    }
  }
  
  .p-form-item--sex .p-form-item_body {
    display: grid;
    font-size: 14px;
    column-gap: 14px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--sex .p-form-item_body {
      column-gap: 8px;
    }
  }
  .p-form-item--sex .p-form-input {
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    font-size: 14px;
  }
  .p-form-item--sex .p-form-input label {
    position: relative;
    margin-left: 1em;
    padding: 14px 0px 14px 1.5em;
    display: block;
    height: 100%;
    cursor: pointer;
  }
  .p-form-item--sex .p-form-input input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  
  .p-form-item--post .p-form-item_body,
  .p-form-item--address .p-form-item_body,
  .p-form-item--phone .p-form-item_body,
  .p-form-item--email .p-form-item_body {
    display: block;
  }
  .p-form-item--post .p-form-item_body input,
  .p-form-item--address .p-form-item_body input,
  .p-form-item--phone .p-form-item_body input,
  .p-form-item--email .p-form-item_body input {
    width: 100%;
  }
  .p-form-item--post .p-form-item_body > p,
  .p-form-item--address .p-form-item_body > p,
  .p-form-item--phone .p-form-item_body > p,
  .p-form-item--email .p-form-item_body > p {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 8px;
  }
  
  .p-form-item--post .p-form-item_body {
    display: flex;
    align-items: center;
  }
  .p-form-item--post .p-form-item_body .p-form-input {
    width: 211px;
  }
  .p-form-item--post .p-form-item_body p {
    margin-left: 8px;
  }
  
  .p-form-item--address .p-form-item_body:not(:first-of-type) {
    margin-top: 16px;
  }
  .p-form-item--address .p-form-item_body select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    width: 211px;
    padding: 14px;
    font-size: 14px;
    line-height: 1.3571428571;
    color: rgba(34, 34, 34, 0.5);
    background-image: url("../../pchForm/pchForm/img/triangle.svg");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px 6px;
    cursor: pointer;
    margin-bottom: 0px;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--address .p-form-item_body select {
      width: 150px;
    }
  }
  
  .p-form-item--status .p-form-item_body {
    display: grid;
    font-size: 14px;
    column-gap: 14px;
    row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-form-item--status .p-form-input {
    border-radius: 4px;
    border: 1px solid #D1D1D1;
  }
  .p-form-item--status .p-form-input label {
    position: relative;
    margin-left: 1em;
    padding: 14px 0px 14px 1.5em;
    display: block;
    height: 100%;
    cursor: pointer;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--status .p-form-input label {
      margin-left: 0.5em;
    }
  }
  .p-form-item--status .p-form-input input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  @media screen and (max-width: 433px) {
    .p-form-item--status .p-form-input:last-of-type label {
      padding: 4px 0px 4px 1.5em;
    }
  }
  
  .p-form-item--graduate {
    transition: 0.3s;
  }
  .p-form-item--graduate.hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    opacity: 0;
    margin-top: 0;
  }
  .p-form-item--graduate .p-form-item_head {
    align-items: flex-start;
  }
  .p-form-item--graduate .p-form-item_body {
    display: inline-block;
  }
  .p-form-item--graduate .p-form-item_body select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    width: 220px;
    padding: 14px;
    font-size: 14px;
    line-height: 1.3571428571;
    color: rgba(34, 34, 34, 0.5);
    background-image: url("../../pchForm/pchForm/img/triangle.svg");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px 6px;
    cursor: pointer;
    margin-bottom: 0px;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--graduate .p-form-item_body select {
      width: 150px;
    }
  }
  
  .p-form-item--type .p-form-item_body {
    display: block;
    width: 100%;
  }
  .p-form-item--type .p-form-item_body .p-form-input .p-showModal {
    cursor: pointer;
    display: block;
    background-color: #fff;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    padding: 14px 32px 14px 14px;
    position: relative;
    text-align: left;
    font-size: 14px;
    line-height: 1.7142857143;
    color: rgba(34, 34, 34, 0.5);
  }
  .p-form-item--type .p-form-item_body .p-form-input .p-showModal:hover {
    background-color: #95C2F8;
  }
  .p-form-item--type .p-form-item_body .p-form-input .p-showModal::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: 2px solid #007FC3;
    border-right: 2px solid #007FC3;
  }
  .p-form-item--type .p-form-item_body > p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .p-form-item--type .textareaBlock {
    position: relative;
    z-index: 1;
  }
  .p-form-item--type .placeholderText {
    position: absolute;
    width: calc(100% - 28px);
    top: 20px;
    left: 14px;
    font-size: 14px;
    line-height: 1.7142857143;
    color: rgba(34, 34, 34, 0.5);
    z-index: -1;
  }
  .p-form-item--type .placeholderText.js-hidden {
    display: none;
  }
  .p-form-item--type textarea {
    background: transparent;
    width: 100%;
    min-height: 160px;
    box-sizing: border-box;
    background-color: initial !important;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--type textarea {
      min-height: 192px;
    }
  }
  
  .p-form-item--service .p-form-item_body {
    display: grid;
    font-size: 14px;
    column-gap: 20px;
    row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .p-form-item--service .p-form-input {
    border-radius: 4px;
    border: 1px solid #D1D1D1;
  }
  .p-form-item--service .p-form-input label {
    position: relative;
    margin-left: 1em;
    padding: 16px 0px 16px 1.5em;
    display: block;
    height: 100%;
    cursor: pointer;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--service .p-form-input label {
      margin-left: 0.5em;
      padding: 8px 20px 8px 1.5em;
    }
  }
  .p-form-item--service .p-form-input input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  
  .p-text02 {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 24px;
    text-align: center;
  }
  .p-text02 a {
    color: #007FC3;
    text-decoration: underline;
  }
  
  .submit-block {
    text-align: center;
    margin-top: 40px;
    line-height: 2.5;
  }
  @media screen and (max-width: 768px) {
    .submit-block {
      margin-top: 16px;
    }
  }
  
  .c-btn {
    min-width: 275px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    /*display: inline-block !important;*/
  }
  @media screen and (max-width: 768px) {
    .c-btn {
      font-size: 16px;
      width: 100%;
    }
  }
  .c-btn:link {
    color: #fff;
  }
  .c-btn:hover {
    opacity: 0.7;
    border: none;
    color: #fff;
  }
  .c-btn--primary {
    border: none;
    color: #fff;
    background: radial-gradient(ellipse at top center, #FD8331 0, #FF6600 100%);
    padding: 12px 17.5px;
  }
  .c-btn--secondary {
    color: #007FC3 !important;
    background: #fff;
    border: 1px solid #007FC3 !important;
  }
  .c-btn--secondary:hover {
    opacity: 0.7;
    border: none;
  }

  .c-btn--support:hover {
    opacity: 0.7;
    border: none;
  }  
  
  @media screen and (max-width: 370px) {
    .p-form-item--birthday .p-form-item_body,
  .p-form-item--sex .p-form-item_body,
  .p-form-item--service .p-form-item_body {
      grid-template-columns: 1fr;
      row-gap: 8px;
    }
  
    .p-form-item--status .p-form-item_body {
      grid-template-columns: 1fr 1fr;
      row-gap: 8px;
    }
  
    .p-form-item--service .p-form-item_head {
      flex-direction: column;
      align-items: flex-start;
    }
    .p-form-item--service .p-form-item_head p {
      padding-left: 0;
    }
  
    .c-btn {
      min-width: 240px;
    }
  }
  .p-modal {
    display: none;
    max-height: 90vh;
    overflow-y: hidden;
    position: fixed;
    width: min(542px, 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  @media screen and (max-width: 768px) {
    .p-modal {
      margin-left: 16px;
      margin-right: 16px;
      width: calc(100% - 32px);
    }
  }
  .p-modal-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    width: 100%;
    height: 100%;
  }
  .p-modal-bg.js_open {
    display: block;
  }
  .p-modal-inner {
    padding: 30px 60px;
    position: relative;    /* 追記：ボタンの「絶対配置」の基準にする */
    max-height: 90vh;      /* 追記：高さを制限 */
    overflow-y: auto;      /* 追記：中身が長い時だけスクロールバーを出す */
    box-sizing: border-box;/* 追記：paddingを含めて高さを計算させる */
  }
  @media screen and (max-width: 768px) {
    .p-modal-inner {
      padding: 45px 16px 40px;
    }
  }
  .p-modal.js_open {
    display: block;
  }
  .p-modal-back {
    cursor: pointer;
    color: #007FC3;
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 16px;
    line-height: 1.6875;
    font-weight: bold;
  }
  .p-modal-back.js-hidden {
    display: none;
  }
  .p-modal-close {
    display: flex;
    cursor: pointer;
    color: #007FC3;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 16px;
    line-height: 1.6875;
    font-weight: bold;
  }
  .p-modal-close img {
    padding-right: 4px;
  }
  .p-modal-list {
    padding-left: 0;
    margin-top: 0;
  }
  .p-modal-item {
    list-style: none;
  }
  .p-modal-item.js-hidden {
    display: none;
  }
  .p-modal-title {
    font-size: 18px;
    line-height: 1.7222222222;
    font-weight: bold;
  }
  @media screen and (max-width: 768px) {
    .p-modal-title {
      text-align: center;
    }
  }
  .p-modal-caution {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .p-modal .p-input-area {
    margin-top: 10px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #D1D1D1;
    overflow: hidden;
  }
  .p-modal .p-input-area.js-hidden {
    display: none;
  }
  .p-modal .p-input-area label {
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 1.6875;
    padding: 18px 20px;
    font-weight: bold;
    color: #222;
    background-color: #fff;
    margin-bottom: 0px;
  }
  .p-modal .p-input-area label:not(:first-child) {
    border-top: 1px solid #D1D1D1;
  }
  .p-modal .p-input-area label:hover {
    background-color: #95C2F8;
  }
  .p-modal .p-modal-item--type .p-input-area label,
  .p-modal .p-modal-item--grade .p-input-area label {
    cursor: pointer;
    position: relative;
  }
  .p-modal .p-modal-item--type .p-input-area label::before,
  .p-modal .p-modal-item--grade .p-input-area label::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: 2px solid #007FC3;
    border-right: 2px solid #007FC3;
  }
  .p-modal .p-modal-item--type .p-input-area label input,
  .p-modal .p-modal-item--grade .p-input-area label input {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-130%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 4px;
    height: 4px;
  }
  .p-modal .p-modal-item--grade .p-input-area,
  .p-modal .p-modal-item--disability .p-input-area {
    max-height: 300px;
    overflow-y: scroll;
  }
  @media screen and (max-width: 768px) {
    .p-modal .p-modal-item--disability .p-input-area {
      max-height: 280px;
    }
  }
  .p-modal .p-modal-item--disability .p-input-area label input{
    margin: 3px 3px 3px 4px;
  }
  .p-modal .p-btn-wrap {
    text-align: center;
    margin-top: 32px;
  }
  .p-modal .c-btn--modal {
    border: none;
    color: #fff;
    background: radial-gradient(ellipse at top center, #7DBA3C 0, #60AB0F 100%);
  }
  .p-modal .c-btn--modal:disabled {
    background: #CECECE;
  }
  .p-modal .c-btn--modal:disabled:hover {
    opacity: 1;
    cursor: default;
  }
  
  .p-confirm-block {
    padding: 31px 50px 40px;
    background-color: #fff;
    border-radius: 6px;
  }
  @media screen and (max-width: 768px) {
    .p-confirm-block {
      padding: 9px 16px 40px;
    }
  }
  .p-confirm-block dl .p-confirm-item {
    padding: 24px 0;
    border-bottom: 1px solid #DEDEDE;
    font-size: 14px;
    line-height: 1.7142857143;
    display: flex;
  }
  @media screen and (max-width: 768px) {
    .p-confirm-block dl .p-confirm-item {
      flex-direction: column;
      padding: 16px 0;
    }
  }
  .p-confirm-block dt {
    font-weight: bold;
    min-width: 170px;
    flex-shrink: 0;
  }
  .p-confirm-block dd {
    font-weight: 500;
  }
  @media screen and (max-width: 768px) {
    .p-confirm-block dd {
      margin-top: 8px;
    }
  }
  .p-confirm-block dd ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
  }
  .p-confirm-block .submit-block {
    margin-top: 24px;
  }
  @media screen and (max-width: 768px) {
    .p-confirm-block .submit-block {
      margin-top: 40px;
    }
  }
  .p-confirm-block .c-btn--secondary {
    margin-top: 16px;
  }
  @media screen and (max-width: 768px) {
    .p-confirm-block .c-btn--secondary {
      margin-top: 10px;
    }
  }
  
  .p-thanks-block {
    padding: 56px 50px 40px;
    background-color: #fff;
    border-radius: 6px;
  }
  @media screen and (max-width: 768px) {
    .p-thanks-block {
      padding: 24px 16px 40px;
    }
  }
  .p-thanks-block h2 {
    font-size: 14px;
    line-height: 1.7142857143;
    font-weight: bold;
  }
  .p-thanks-block p {
    font-size: 14px;
    line-height: 1.7142857143;
    font-weight: 500;
    margin-top: 24px;
  }
  @media screen and (max-width: 768px) {
    .p-thanks-block p {
      margin-top: 16px;
    }
  }
  .p-thanks-block p a {
    color: #007FC3;
  }
  .p-thanks-block .p-txt-red {
    color: #FB0000;
    display: block;
  }
  .p-thanks-block .c-btn--secondary a {
    color: #007FC3;
    text-decoration: none;
  }
  .p-thanks-block .c-btn--support a {
    color: #FD8331 !important;
    text-decoration: none;   
  }
  .p-form-item--entry .p-form-input {
    border-radius: 4px;
    border: 1px solid #D1D1D1;
    margin-top: 15px;
  }
  .p-form-item--entry .p-form-item_body {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .p-form-item--entry .p-form-input label {
    position: relative;
    margin-left: 1em;
    padding: 16px 0px 16px 1.5em;
    height: 100%;
    cursor: pointer;
  }
  @media screen and (max-width: 768px) {
    .p-form-item--entry .p-form-input label {
      margin-left: 0.5em;
      padding: 8px 20px 8px 1.5em;
    }
  }
  .p-form-item--entry .p-form-input input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .p-form-item--entry.hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    opacity: 0;
    margin-top: 0;
  }