@charset "UTF-8";
/* ====================================================
Font
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&display=swap");

/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
Media Quary
==================================================== */
@media screen and (min-width: 835px) {
  .mbpc-24 {
    margin-bottom: 24px !important;
  }
}
.hide {
  display: none;
}

.header-contact {
  padding-bottom: 14px;
  border-bottom: 3px solid #2DBD4A;
}

.header-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1200px;
}

.header-contact .box-left {
  width: 365px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header-contact .box-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 4px;
}

.header-contact .box-left .item .slogan {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #707070;
  margin-bottom: 10px;
  display: block;
}

.header-contact .box-left .item .logo {
  width: 280px !important;
  padding: 0 !important;
}

.header-contact .box-left .item:last-of-type {
  width: 58px;
  margin-right: 0;
}

.sec-contact {
  background: #E0F7E5;
  padding-top: 40px;
  padding-bottom: 50px;
  min-height: 100vh;
  min-width: 1280px;
}

.sec-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1160px;
}

.contact-main {
  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;
}

.contact-main .col-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto;
  padding: 0 138px;
  margin-bottom: 24px;
  gap: 16px;
}

.contact-main .col-header-left {
  max-width: 144px;
}

.contact-main .col-header-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
}

.contact-main .col-header-right .message-box {
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  color: #149931;
  width: fit-content;
  position: relative;
}

.contact-main .col-header-right .message-box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #fff;
}

.contact-main .col-header-right .title-box {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #149931;
}

.contact-main .col-right {
  width: 800px;
  position: relative;
  margin: 0 auto;
}

.box-notifycation {
  width: 149px;
  height: 83px;
  padding-bottom: 20px;
  position: absolute;
  right: -46px;
  top: 59px;
  -webkit-animation: slideanim 2s ease 1s;
  animation: slideanim 2s ease 1s;
  opacity: 0;
  background: url("../img/contact/bg-notification.png") no-repeat center/cover;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2CBC4B;
  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;
  z-index: 2;
}

.box-notifycation.show {
  opacity: 1;
  right: 0;
}

@-webkit-keyframes slideanim {
  0% {
    opacity: 0;
    right: -46px;
  }
  to {
    opacity: 1;
    right: 0;
  }
}
@keyframes slideanim {
  0% {
    opacity: 0;
    right: -46px;
  }
  to {
    opacity: 1;
    right: 0;
  }
}
.copy-right-contact {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
  color: #666666;
  background: rgba(224, 247, 229, 0.5);
  min-width: 1280px;
}

.server-error-message {
  color: #FB2C36;
  font-size: 12px;
  font-weight: 700;
}

.contact-form {
  background: #fff;
  -webkit-box-shadow: 0 3px 1px rgba(102, 102, 102, 0.25);
  box-shadow: 0 3px 1px rgba(102, 102, 102, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.contact-form-wrapper {
  padding: 24px;
}

/* ステップ切り替え時の高さ変化をスムーズに */
.bx-viewport {
  transition: height 0.4s ease;
}

.contact-form .box-privacy {
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  background: #F0F0F0;
  width: 100%;
  margin: 25px -24px 0;
  display: none;
}

.contact-form .box-privacy strong {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.contact-form .form-intro {
  color: #707070;
  position: relative;
}

.contact-form .note-area {
  background-color: #F5F2EA;
  border-radius: 10px;
  padding: 24px;
}

.contact-form .note-area .hashtag-area {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.contact-form .note-area .hashtag-area img {
  width: 24px;
  height: 24px;
}

.contact-form .note-area .hashtag-area .hashtag-title {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  color: #149931;
  gap: 8px;
}

.contact-form .note-area .hashtag-area .hashtag-note {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.contact-form .note-area .hashtag-area .hashtag-group-list {
  display: flex;
  flex-direction: column;
}

.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-bottom: 1px solid #2DBD4A;
  position: relative;
  cursor: pointer;
}

.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area::before,
.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #2DBD4A;
  transform-origin: right center;
  transform: translateY(-50%) rotate(90deg);
}
.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area::before {
  transform: translateY(-50%) rotate(90deg) rotate(-45deg);
  right: 15px;
}
.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area::after {
  transform: translateY(-50%) rotate(90deg) rotate(45deg);
  right: 16px;
}

.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area.active::before {
  transform: translateY(-50%) rotate(-90deg) rotate(-45deg);
  right: 16px;
}
.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area.active::after {
  transform: translateY(-50%) rotate(-90deg) rotate(45deg);
  right: 15px;
}

.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area img {
  width: 20px;
  height: 20px;
}

.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area .hashtag-group-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul {
  padding-top: 12px;
  padding-bottom: 8px;
  display: none;
  flex-direction: row;
  gap: 8px;
}
.contact-form .note-area .hashtag-area .hashtag-group-list .hashtag-group-area.active ~ ul {
  display: flex;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li {
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 500;
  background: #fff;
  color: #333333;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li p {
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  color: #333333;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li span.hashtag-item-text {
  font-size: 16px;
  font-weight: 700;
  color: #2DBD4A;
  margin-right: 4px;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li.active {
  background-color: #F6FFF8;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li.active p {
  color: #149931;
}

.contact-form .note-area .hashtag-area .hashtag-group-list ul li.active p span.hashtag-item-text {
  color: #2DBD4A;
}

.contact-form .form-intro dt {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.contact-form .form-intro dt .gray {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  text-align: center;
  width: 40px;
  line-height: 20px;
  color: #fff;
  padding: 6px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  background: #FB2C36;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-form .form-intro dt .gray {
    padding-top: 2px;
    position: relative;
    top: -2px;
  }
}
.contact-form .form-intro dt .outline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  text-align: center;
  width: 40px;
  line-height: 20px;
  color: #99A1AF;
  font-size: 14px;
  padding: 6px 0;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid #99A1AF;
}

.contact-form .form-intro dd input::-webkit-input-placeholder {
  color: #999999;
}

.contact-form .form-intro dd input:-moz-placeholder {
  color: #999999;
}

.contact-form .form-intro dd input::-moz-placeholder {
  color: #999999;
}

.contact-form .form-intro dd input:-ms-input-placeholder {
  color: #999999;
}

.contact-form .checkbox-wrap .checkbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 54px;
  border-radius: 6px;
  background-color: #F3F4F6;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.1875;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-form .checkbox-wrap .checkbox {
    padding-top: 4px;
    line-height: 41px;
  }
}
@media (hover: hover) {
  .contact-form .checkbox-wrap .checkbox:hover {
    background-color: #2DBD4A;
    font-weight: bold;
    color: #fff;
  }
}
.contact-form .checkbox-wrap.is-register {
  display: block !important;
}

.contact-form .checkbox-wrap input[type=radio], .contact-form .checkbox-wrap input[type=checkbox] {
  display: none;
}

.contact-form .checkbox-wrap input[type=checkbox]:checked + label {
  background: #2DBD4A;
  font-weight: 700;
  color: #fff;
}

.contact-form .checkbox-wrap input[type=radio]:checked + label {
  background: #2DBD4A;
  font-weight: 700;
  color: #fff;
}

.contact-form .tefa-main_textarea {
  border: 2px solid #2CBC4B;
  height: 54px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.contact-form .sort-input {
  max-width: 400px;
}

.contact-form .tefa-main_textarea:focus {
  border-width: 3.5px;
  padding: 0 18.5px;
}

.contact-form .tefa-main_textarea input ::-webkit-input-placeholder {
  color: #99A1AF;
  opacity: 1;
}

.contact-form .tefa-main_textarea input :-ms-input-placeholder {
  color: #99A1AF;
  opacity: 1;
}

.contact-form .tefa-main_textarea input ::-ms-input-placeholder {
  color: #99A1AF;
  opacity: 1;
}

.contact-form .tefa-main_textarea input ::placeholder {
  color: #99A1AF;
  opacity: 1;
}

.contact-form .tefa-main_note {
  color: #333;
  width: 100%;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  resize: none;
  height: 120px;
  border: 2px solid #2CBC4B;
  outline: 0;
}

.contact-form .tefa-main_note:focus-visible {
  border-width: 3px;
}

.contact-form .error-bgcolor {
  background: #FFF2F3;
  border-color: #FB2C36;
}

.contact-form .select-wrap {
  width: 228px;
  position: relative;
}

.contact-form .select-wrap:after {
  content: "";
  display: block;
  width: 9px;
  height: 13px;
  background: url("../img/contact/arrow.png") no-repeat center/cover;
  border: none;
}

.contact-form .select-wrap select {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  height: 54px;
  font-size: 15px;
  color: #333;
}

.contact-form .add1 {
  margin-bottom: 15px;
  width: 228px;
}

.contact-form .check-list {
  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;
}
.contact-form .check-list.list-way_working,
.contact-form .check-list.list-qualification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  -ms-flex-wrap: unset;
  flex-wrap: unset;
}
.contact-form .check-list.list-way_working li,
.contact-form .check-list.list-qualification li {
  width: 100%;
  margin-bottom: 0;
}

.contact-form .check-list.list-hope-season {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  -ms-flex-wrap: unset;
  flex-wrap: unset;
}
.contact-form .check-list.list-hope-season li {
  width: 100%;
  margin-bottom: 0;
}

.contact-form .check-list li {
  width: 48.22%;
  /* display: inline-block; */
  margin-bottom: 13px;
}



.contact-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-form .tefa_btn_next {
  margin: 0 auto;
  width: 100%;
  height: 64px;
  color: #666666;
  border-radius: 6px;
  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;
  border: 1px solid #CCCCCC;
  font-size: 18px;
  box-shadow: 0px 4px 2px 0px #00000026 !important;
  font-size: 1.8rem;
  font-weight: bold;
  background: #F5F5F5 url("../img/contact/arrow-right.png") no-repeat center right 14px/7px 12px;
}

.contact-form .tefa_btn_next:after {
  display: none;
}

.contact-form .tefa_btn_next.first {
  background: #F5F5F5;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-form .tefa_btn_next {
    padding-top: 6px;
  }
}
.contact-form .tefa_btn_next.short {
  width: 77%;
  color: #666 !important;
  border: 1px solid #CCCCCC !important;
  background: #F5F5F5 !important;
}

.contact-form .tefa_btn_next.enable {
  color: #FFF !important;
  -webkit-box-shadow: 0px 4px 2px 0px #00000026 !important;
  box-shadow: 0px 4px 2px 0px #00000026 !important;
  background-color: #E7711B !important;
  background-image: none !important;
}

.contact-form .complete-btn .btn {
  background: #FB2C36;
  margin: 0 auto;
  width: 366px;
  height: 72px;
  color: #fff;
  border-radius: 6px;
  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;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.25);
}

.contact-form .tefa_btn_back {
  width: 120px;
  min-width: 70px;
  height: 72px;
  min-height: 64px;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 8px 15px;
  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;
  background: #F5F5F5;
  -webkit-box-shadow: none;
  box-shadow: none;
  flex-shrink: 0;
}

.contact-form .tefa_btn_back:after {
  display: none;
}

.contact-form .tefa_btn_entry.enable {
  background-color: #E7711B !important;
  pointer-events: auto;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0px 4px 2px 0px #00000026;
}

.contact-form .contact-form-control {
  width: 100%;
  margin: 16px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}

.contact-form .contact-form-control.flex {
  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: 16px;
}

.contact-form .contact-form-control .tefa_btn_next {
  width: 82%;
  height: 72px;
  min-height: 64px;
  margin-right: 0;
  margin-left: 0;
  padding: 8px 16px;
  border-radius: 999px;
}

/* STEP1 only: pc_next_btn1 should use full width */
.contact-form .contact-form-control #pc_next_btn1.tefa_btn_next {
  width: 100%;
}

.contact-form .contact-form-control.flex .tefa_btn_next {
  width: 82%;
  margin-right: 0;
  margin-left: 0;
}

.contact-form .contact-form-control .tefa_btn_next.enable {
  background-color: #E7711B !important;
  background-image: none !important;
  box-shadow: 0px 4px 2px 0px #00000026 !important;
}

.contact-form .contact-form-control .complete-btn {
  width: 100%;
  height: 72px;
  display: flex;
  border: 1px solid #CCCCCC;
  background-color: #F5F5F5;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #666;
  font-weight: 700;
  min-height: 64px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0px 4px 2px 0px #00000026;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.contact-form .contact-form-control .complete-btn .enable {
  background: #E7711B !important;
}

/* オファーメッセージ受信 checkbox (index_b 同様) */
.contact-form .offer-message-request {
  margin-bottom: 30px;
}

.contact-form .offer-message-request .offer-message-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0;
  font-size: 14px;
}

.contact-form .offer-message-request .offer-message-dd input[type="checkbox"] {
  height: 15px;
  width: 15px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-form .offer-message-request .offer-message-dd label {
  margin-left: 7px;
  line-height: 20px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}

.tefa-step dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tefa-step dd {
  width: 33.33%;
  height: 56px;
  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;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #CCCCCC;
  position: relative;
  border: 1px solid #DDDDDD;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.tefa-step dd:first-child {
  width: 33.34%;
}

.tefa-step dd span {
  width: 20px;
  height: 20px;
  background: #fff;
  color: #AAAAAA;
  font-family: "Helvetica-B", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  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;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 5px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .tefa-step dd {
    padding-top: 6px;
  }
}
.tefa-step dd:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 28px 0 28px 12px;
  border-color: transparent transparent transparent #CCCCCC;
  border-style: solid;
  position: absolute;
  top: 0;
  right: -12px;
  background: none;
  z-index: 3;
}

.tefa-step dd:before {
  content: "";
  display: block;
  width: 14px;
  height: 56px;
  background: #E0F7E5;
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 14.3% 0, 100% 50%, 14.3% 100%, 0 100%);
  clip-path: polygon(0 0, 14.3% 0, 100% 50%, 14.3% 100%, 0 100%);
}

.tefa-step dd.activeStep {
  color: #fff;
  background: #2DBD4A;
  font-weight: bold;
  border: none;
}

.tefa-step dd.activeStep span {
  color: #fff;
}

/* Check icon: hidden by default, shown on completed steps (oldSteps), positioned before text */
.tefa-step .tefa-step-check {
  display: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.tefa-step dd.oldSteps {
  background: #2DBD4A;
  border: none;
}

.tefa-step dd.oldSteps .tefa-step-check {
  display: block;
}

/* Reset dd span styles for tefa-step-text (index_request uses text, not number circle) */
.tefa-step dd .tefa-step-text {
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
  margin: 0;
}

.tefa-step dd.oldSteps:after {
  border-color: transparent transparent transparent #2DBD4A;
}

.tefa-step dd.oldSteps:before {
  background: #E0F7E5;
}

.tefa-step dd.activeStep:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 28px 0 28px 12px;
  border-color: transparent transparent transparent #2DBD4A;
  border-style: solid;
  position: absolute;
  top: 0;
  right: -12px;
  background: none;
  z-index: 3;
}

.tefa-step dd.activeStep:before {
  content: "";
  display: block;
  width: 14px;
  height: 56px;
  background: #E0F7E5;
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 14.3% 0, 100% 50%, 14.3% 100%, 0 100%);
  clip-path: polygon(0 0, 14.3% 0, 100% 50%, 14.3% 100%, 0 100%);
}

.tefa-step dd:last-of-type {
  border-radius: 0 8px 0 0;
}

.tefa-step dd:last-of-type:after {
  display: none;
}

.box-link-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  
  display: flex;
  flex-direction: row;
  padding-left: 18px;
  gap: 24px;
}

.box-link-contact li {
  padding-left: 16px;
}

.box-link-contact a {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  position: relative;
}

.box-link-contact a:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7.49px;
  height: 10px;
  top: 3px;
  left: -13.5px;
  background: #2DBD4A;
  opacity: 1;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.box-link-contact a:last-of-type {
  margin-right: 0;
}

#graduation_year_phc_contents .check-list li {
  width: 31.3%;
}

#company_experience_checkbox .check-list li {
  width: 23%;
}

#company_experience_checkbox .check-list li label {
  text-align: center;
}

#graduation_year_phc_div, #work_experience_div, #company_experience_div {
  padding-bottom: 30px;
}

#entry_screen_cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
}

#entry_screen_cover .cover_text {
  position: absolute;
  top: 56%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px;
  color: #FFF;
}

#entry_screen_cover .cover_text p {
  text-align: center;
  line-height: 20px;
}

#entry_screen_cover .cover_text p:first-of-type {
  font-size: 18px;
  margin-bottom: 10px;
}

#entry_screen_cover .loader {
  position: absolute;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  text-indent: -9999em;
  -webkit-animation: a 1.1s infinite ease;
  animation: a 1.1s infinite ease;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

@-webkit-keyframes a {
  0% {
    -webkit-box-shadow: 0 -2.6em 0 0 #fff, 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7);
    box-shadow: 0 -2.6em 0 0 #fff, 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0 #fff, 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0 #fff, 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5);
  }
  25% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7), 2.5em 0 0 0 #fff, 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7), 2.5em 0 0 0 #fff, 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5), 2.5em 0 0 0 rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0 #fff, 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5), 2.5em 0 0 0 rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0 #fff, 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.7), 0 2.5em 0 0 #fff, -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.7), 0 2.5em 0 0 #fff, -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.5), 0 2.5em 0 0 rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0 #fff, -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.5), 0 2.5em 0 0 rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0 #fff, -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  75% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.7), -2.6em 0 0 0 #fff, -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.7), -2.6em 0 0 0 #fff, -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.5), -2.6em 0 0 0 rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0 #fff;
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.5), -2.6em 0 0 0 rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0 #fff;
  }
}
@keyframes a {
  0% {
    -webkit-box-shadow: 0 -2.6em 0 0 #fff, 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7);
    box-shadow: 0 -2.6em 0 0 #fff, 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0 #fff, 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0 #fff, 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5);
  }
  25% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7), 2.5em 0 0 0 #fff, 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7), 2.5em 0 0 0 #fff, 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5), 2.5em 0 0 0 rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0 #fff, 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5), 2.5em 0 0 0 rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0 #fff, 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.7), 0 2.5em 0 0 #fff, -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.7), 0 2.5em 0 0 #fff, -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.5), 0 2.5em 0 0 rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0 #fff, -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.5), 0 2.5em 0 0 rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0 #fff, -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  75% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.7), -2.6em 0 0 0 #fff, -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.7), -2.6em 0 0 0 #fff, -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.5), -2.6em 0 0 0 rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0 #fff;
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.5), -2.6em 0 0 0 rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0 #fff;
  }
}
#err1 div, #err2 div, #err3 div, #err4 div, #err5 div, #err6 div, #err7 div, #err8 div, #err9 div, #err10 div, #err11 div, #err12 div, #err13 div, #err14 div {
  background-color: #FB2C36;
  width: 100%;
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  line-height: 1.4;
  font-size: 14px;
  padding: 8px 0;
  color: #fff;
  position: relative;
  margin-top: 12px;
  color: #fff !important;
}

#err1 div:before, #err2 div:before, #err3 div:before, #err4 div:before, #err5 div:before, #err6 div:before, #err7 div:before, #err8 div:before, #err9 div:before, #err10 div:before, #err11 div:before, #err12 div:before, #err13 div:before, #err14 div:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-width: 0 7px 8px;
  border-style: solid;
  border-color: transparent transparent #FB2C36;
  top: -8px;
  left: calc(50% - 3px);
}

.zipcd {
  position: relative;
}

.zipcd::before {
  content: "〒";
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 44px;
  left: 15px;
}

.add-info {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* advisor
================================================ */
.advisor-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
}

.advisor-wrapper img {
  width: 160px;
  height: auto;
}

.advisor-wrapper .advisor-comment {
  color: #333;
}

.advisor-wrapper .advisor-comment p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #333333;
}

.advisor-wrapper .advisor-comment .strong {
  color: #149931;
  font-weight: 700;
}

.advisor-wrapper .comment-ballon {
  position: relative;
  padding: 16px 32px;
  background-color: #E0F7E5;
  border-radius: 16px;
  text-align: center;
}

.advisor-wrapper .comment-ballon::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: 14px solid #E0F7E5;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* 郵便番号の予測表示 */
.suggestions {
  border: 2px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  background-color: white;
  width: 320px;
  z-index: 1000;
  display: none;
  border-radius: 5px;
}

.suggestion-item {
  color: #333;
  font-size: 13px;
  font-weight: bold;
  padding: 2px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.rulu-link-margin li {
  margin-right: 30px;
}

#entry2_index .advisor-comment .strong {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  background: linear-gradient(transparent 45%, #DFF6E4 75%);
  padding-right: 2px;
}
#entry2_index .checkbox-wrap .checkbox {
  border: 3px solid #F5F5F5;
  text-align: center;
}
#entry2_index .checkbox-wrap .checkbox:hover {
  border: 3px solid #2DBC4A;
  background-color: #fff;
  color: #2DBC4A;
}
#entry2_index .checkbox-wrap input[type=checkbox]:checked + label:hover,
#entry2_index .checkbox-wrap input[type=radio]:checked + label:hover {
  background-color: #2DBD4A;
  color: #fff;
}
#entry2_index .checkbox-wrap input[type=checkbox]:checked + label {
  border: 3px solid #2DBC4A;
}
#entry2_index .zipcd::before {
  top: 17px;
}
#entry2_index .complete-btn .btn:not(.enable) {
  box-shadow: none !important;
  background: #EFEFEF url(../img/contact/arrow-right.png) no-repeat center right 14px/7px 12px !important;
  border: 1px solid #DDDDDD !important;
  color: #AAA !important;
}
#entry2_index .box-link-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#entry2_index .privacy-policy-area {
  border-top: 1px solid #CCCCCC;
  padding-top: 24px;
  padding-bottom: 8px;
}
