.guide {
  box-sizing: border-box;
  color: #333333;
}
.guide > *:not(:last-child) {
  margin-bottom: 80px;
}
.guide * {
  box-sizing: border-box;
}
.guide header {
  position: static;
  z-index: 0;
}
.guide .guide-section-header {
  background-color: #F9F8F6;
}

.guide-section {
  border-radius: 8px;
}
.guide-section__title {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 40px;
  margin-top: 76px;
}
.guide-section__title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.guide-section__title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #DC3022;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.guide-section__sub-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  margin-bottom: 37px;
}
.guide-section__sub-title-text {
  display: inline-block;
  padding: 0 24px 0 0;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.guide-section__sub-title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.guide-section__body {
  background-color: #fff;
  border-radius: 8px;
}
.guide-section--guide .guide-section-header {
  background-color: #F9F8F6;
}

.guide-section-header {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide-section-header__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.guide-section-header__title:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../guide/img/guide-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
}
.guide-section-header__description {
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}
.guide-section-header__pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}
.guide-section-header__pill {
  background-color: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 20px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #ccc;
}

.guid-section-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px 0;
}
.guid-section-title__text {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.guid-section-title__text:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: #ccc;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  z-index: 1;
}
.guid-section-title__text:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: #ccc;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 1;
}

.guide-howto {
  margin-bottom: 75px;
}
.guide-howto__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px 0;
}
.guide-howto__title-text {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.guide-howto__title-text:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: #ccc;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  z-index: 1;
}
.guide-howto__title-text:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  background-color: #ccc;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 1;
}

.guide-howto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.guide-howto-list > .guide-howto-list__item {
  flex: 1 1 calc((100% - 60px) / 3);
}

.guide-howto-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  border-radius: 4px;
  background-color: #F9F8F6;
}
.guide-howto-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.guide-howto-card__image {
  height: 61px;
  width: auto;
  object-fit: contain;
}
.guide-howto-card__descriptions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}
.guide-howto-card__description {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  flex-grow: 1;
}
.guide-howto-card__sub-description {
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 0;
}
.guide-howto-card__text-red {
  color: #E60313;
}
.guide-howto-card__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
  border: 1px solid #333333;
  position: relative;
  padding: 10px 0;
  color: #333333;
  transition: all 0.15s ease-out;
}
.guide-howto-card__link:after {
  content: url(../guide/img/icon-arrow.svg);
  position: absolute;
  right: 1rem;
  top: 53%;
  transform: translateY(-50%);
}
.guide-howto-card__link:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #333333;
  text-decoration: none;
}

.guide-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1.5rem;
}
.guide-flow-list__item {
  display: flex;
  width: 100%;
}
.guide-flow-list__item--vinypro .guide-flow-list__step {
  background-color: #e60012;
}
.guide-flow-list__item--both .guide-flow-list__step {
  background: linear-gradient(90deg, #ff8a02 50%, #e60012 50%);
}
.guide-flow-list__link {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 6px 8px 4px;
  position: relative;
  color: #333;
}
.guide-flow-list__link:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../guide/img/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: rotate(90deg) translateY(-50%);
}
.guide-flow-list__step {
  display: inline-flex;
  background-color: #ff8a02;
  line-height: 1;
  font-size: 0.875rem;
  padding: 6px 8px;
  font-weight: bold;
  border-radius: 24px;
  color: #fff;
}
.guide-flow-list__text {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  padding-left: 0.25rem;
  padding-bottom: 0.25rem;
}

.guide-flow-legend {
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
}
.guide-flow-legend__item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.guide-flow-legend__item::before {
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #ff8a02;
  width: 20px;
  height: 20px;
  content: "";
}
.guide-flow-legend__item--vinypro::before {
  background-color: #e60012;
}
.guide-flow-legend__label {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.guide-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 34px;
  counter-reset: flow-step;
}
.guide-flow-steps__item {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.guide-flow-steps__item:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 13px solid #e50012;
  content: "";
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.guide-flow-steps__item:last-child:after {
  content: none;
}
.guide-flow-steps__item--vinypro .guide-flow-steps-header__step {
  background-color: #e60012;
}
.guide-flow-steps__item--both .guide-flow-steps-header__step {
  background: linear-gradient(90deg, #ff8a02 50%, #e60012 50%);
}
.guide-flow-steps__item--both .guide-flow-steps-gray-box__description {
  letter-spacing: -0.05rem;
}
.guide-flow-steps__col {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
  align-items: flex-start;
}
.guide-flow-steps__col:not(:has(.guide-flow-steps__left > figure, .guide-flow-steps__right > figure)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-flow-steps__col figure {
  margin: 0;
}
.guide-flow-steps__description {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0;
}
.guide-flow-steps__description + .guide-flow-steps__description {
  margin-top: 1.5rem;
}
.guide-flow-steps__highlight {
  font-weight: bold;
  color: #e50012;
}
.guide-flow-steps__highlight--orange {
  color: #ff8a02;
}
.guide-flow-steps .guide-flow-link {
  margin-top: 20px;
}

.guide-flow-steps-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.guide-flow-steps-header__step {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background-color: #ff8a02;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  counter-increment: flow-step;
  padding-top: 4px;
}
.guide-flow-steps-header__step-num {
  font-size: 1.5em;
  line-height: 1;
}
.guide-flow-steps-header__step-num::before {
  content: counter(flow-step);
}
.guide-flow-steps-header__title {
  font-size: 21px;
  font-weight: bold;
}

.guide-flow-link {
  display: flex;
  justify-content: center;
}
.guide-flow-link__pill {
  display: flex;
  width: 240px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
  border: 1px solid #333333;
  position: relative;
  padding: 10px 0;
  color: #333333;
  transition: all 0.15s ease-out;
  line-height: 1;
  cursor: pointer;
}
.guide-flow-link__pill:after {
  content: url(../guide/img/icon-arrow.svg);
  position: absolute;
  right: 1rem;
  top: 53%;
  transform: translateY(-50%);
  transition: 0.15s;
  transform-origin: center;
}
.guide-flow-link__pill:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #333333;
  text-decoration: none;
  opacity: 0.6;
}
.guide-flow-link__pill.is-open:after {
  transform: rotate(90deg);
  top: 31%;
}

[data-accordion-target] {
  display: none;
}

.guide-flow-accordion-content {
  margin-top: 40px;
}

.guide-flow-search-step {
  display: flex;
  flex-direction: column;
  counter-reset: flow-search-step;
}
.guide-flow-search-step__item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.guide-flow-search-step__item .step_txt_h{
  font-size: 16px;
  font-weight: bold;
  color: #666;
  padding-bottom: 1rem;
  display: block;
}

.guide-flow-search-step > .guide-flow-search-step__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.guide-flow-search-step__label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  counter-increment: flow-search-step;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.guide-flow-search-step__label:before {
  background-color: #e60012;
  width: 25px;
  height: 25px;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  content: counter(flow-search-step);
}

.guide-section--flow .sp_on{
display: none;
}

.guide-flow-steps-gray-box {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
  background-color: #f9f8f6;
}
.guide-flow-steps-gray-box__icon {
  height: 71px;
  width: auto;
  display: inline-flex;
  align-items: flex-end;
}
.guide-flow-steps-gray-box figure.guide-flow-steps-gray-box__icon {
  margin-bottom: 1.125rem;
}
.guide-flow-steps-gray-box__title {
  font-size: 19px;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}
.guide-flow-steps-gray-box__description {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0.5rem;
  text-align: left;
}
.guide-flow-steps-gray-box__description + .guide-flow-link {
  margin-top: 0.75rem;
}
.guide-flow-steps-gray-box .guide-flow-steps-gray-box__cta {
  display: flex;
  gap: 20px;
}
.guide-flow-steps-gray-box__button {
  background-color: #e50012;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  color: #fff;
  font-weight: bold;
  text-align: left;
  min-width: 175px;
  max-width: 320px;
  width: 100%;
  position: relative;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}
.guide-flow-steps-gray-box__button::after {
  font-family: "Font Awesome 5 Free";
  right: 0.5rem;
  top: 46%;
  transform: translateY(-50%);
  font-weight: 900;
  content: "\f054";
  position: absolute;
}
.guide-flow-steps-gray-box__button:hover {
  color: #fff;
}

.guide-flow-steps-icons {
  display: flex;
  gap: 180px;
  align-items: flex-end;
  margin-bottom: 22px;
  justify-content: center;
}
.guide-flow-steps-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.guide-flow-steps-icons__item:nth-child(1) .guide-flow-steps-icons__label {
  transform: translateX(-4px);
}
.guide-flow-steps-icons__icon {
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 71px;
}
.guide-flow-steps-icons__label {
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}

.guide-choose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
  margin-bottom: 38px;
  margin-top: 20px;
}
.guide-choose-list__item {
  display: flex;
  width: 100%;
}
.guide-choose-list__link {
  width: 100%;
  border: 1px solid #ccc;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-radius: 5px;
}
.guide-choose-list__link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../guide/img/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 53%;
  right: 0.5rem;
  transform: translateY(-50%);
  transition: 0.15s;
}
.guide-choose-list__link.active {
  border-color: #e50012;
  cursor: default;
  pointer-events: none;
}
.guide-choose-list__link.active .guide-choose-list__title {
  color: #e50012;
}
.guide-choose-list__link.active:after {
  top: 45%;
  right: 1.5rem;
  transform: rotate(90deg) translateY(-50%);
}
.guide-choose-list__link:hover {
  border-color: #e50012;
}
.guide-choose-list__icon {
  margin: 0;
  width: 54px;
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: flex-end;
}
.guide-choose-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  flex-grow: 1;
}
.guide-choose-list__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.guide-choose-list__subtitle {
  font-size: 1rem;
  line-height: 1;
}

.guide-choose__inner {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px 20px 30px;
}
.guide-choose__inner > *:last-child {
  margin-bottom: 0;
}
.guide-choose__title {
  font-weight: bold;
  font-size: 21px;
  color: #e50012;
  line-height: 1.2;
  margin-bottom: 1rem;
  display: block;
}
.guide-choose__subtitle {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: block;
}
.guide-choose__description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.guide-choose__image {
  margin: 0;
}
.guide-choose__image-img {
  max-width: 100%;
}

.guide-choose-detail {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 25px;
  margin-bottom: 20px;
}
.guide-choose-detail__left .guide-choose__description:last-child {
  margin-bottom: 0;
}

.guide-choose-link {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.guide-choose-link__pill {
  display: flex;
  width: 240px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
  border: 1px solid #333333;
  position: relative;
  padding: 10px 0;
  color: #333333;
  transition: all 0.15s ease-out;
  line-height: 1;
  cursor: pointer;
}
.guide-choose-link__pill:after {
  content: url(../guide/img/icon-arrow.svg);
  position: absolute;
  right: 1rem;
  top: 53%;
  transform: translateY(-50%);
}
.guide-choose-link__pill:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #333333;
  text-decoration: none;
  opacity: 0.6;
}

.guide-choose-contact {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

.guide-choose-contact_box{
  display: flex;
  justify-content: center;
}


.guide-choose-contact .tel_txt{
  text-align: center;
  display: block;
  margin: auto;
  margin-top: 1rem;
}

.guide-choose-contact .footer-section-contact-card {
  
  border-radius: 0;
  width: 100%;
}
.guide-choose-contact + .footer-section-contact-card {
  margin-top: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.guide-section-qa-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.guide-section-qa-link__pill {
  display: flex;
  width: 272px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
  border: 1px solid #333333;
  position: relative;
  padding: 10px 0;
  color: #333333;
  transition: all 0.15s ease-out;
  line-height: 1;
  cursor: pointer;
}
.guide-section-qa-link__pill:after {
  content: url(../guide/img/icon-arrow.svg);
  position: absolute;
  right: 1rem;
  top: 53%;
  transform: translateY(-50%);
}
.guide-section-qa-link__pill:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #333333;
  text-decoration: none;
  opacity: 0.6;
}

.guide-choose__inner .footer-section-contact-tel{
  padding: 0;

}

.guide-simulator__body {
  display: flex;
  gap: 13px;
  margin-bottom: 34px;
}

.guide-simulator-info {
  flex: 1 1;
}
.guide-simulator-info__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}
.guide-simulator-info__description {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 26px;
}
.guide-simulator-info__points {
  padding: 0 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.guide-simulator-info__point {
  font-size: 15px;
  position: relative;
  display: block;
}
.guide-simulator-info__point:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #EDC442;
}

.guide-simulator-image {
  flex-shrink: 0;
  width: 487px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.guide-simulator-image__image {
  width: 487px;
  height: auto;
  max-width: 100%;
}
.guide-simulator-image__caption {
  display: block;
  text-align: right;
  font-size: 13px;
}

.guide-simulator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.guide-simulator-list > .guide-simulator-list__item {
  flex-basis: calc((100% - 60px) / 4);
}

.guide-simulator-card__link {
  display: block;
  transition: 0.15s;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: relative;
}
.guide-simulator-card__link:hover {
  opacity: 0.9;
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  text-decoration: none;
}
.guide-simulator-card__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #000;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.guide-simulator-card__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 26px 26px;
  border-color: transparent transparent #1F74E1 transparent;
}
.guide-simulator-card__arrow-icon {
  transform: translate(-13px, 11px);
}

.guide-simulator-card-image {
  margin: 0;
  width: 100%;
  height: 140px;
}
.guide-simulator-card-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-help {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.search-result-help-cta {
  background-color: #FFF8AA;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.search-result-help-cta__image-container {
  width: 240px;
  height: 240px;
  flex: 0 0 240px;
  margin: 0;
}
.search-result-help-cta__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.search-result-help-cta__body {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
}
.search-result-help-cta__title {
  font-size: 26px;
  line-height: 39px;
  font-weight: 600;
  margin-bottom: 14px;
}
.search-result-help-cta__description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 18px;
}
.search-result-help-cta__cta {
  padding-top: 20px;
  border-top: 1px solid #C1C1C1;
  display: flex;
  gap: 20px;
}
.search-result-help-cta__freedial {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-result-help-cta__freedial-header {
  display: flex;
  align-items: center;
  gap: 5px;
}
.search-result-help-cta__freedial-header-free {
  font-size: 13px;
  font-weight: 600;
  line-height: 28px;
  padding: 0 7px;
  color: #fff;
  background-color: #E50211;
  border-radius: 3px;
}
.search-result-help-cta__freedial-header-area {
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
}
.search-result-help-cta__freedial-footer-time {
  font-size: 11px;
  line-height: 1;
  font-weight: 300;
}
.search-result-help-cta__tel {
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-result-help-cta__tel-number {
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
}
.search-result-help-cta__form {
  border-radius: 43px;
  background-image: linear-gradient(#E50211 50%, #ce010f 50%);
  padding: 10px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 0 #6C0007;
  transition: opacity 0.15s ease-in-out;
}
.search-result-help-cta__form-line {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #fff;
  border-radius: 43px;
}
.search-result-help-cta__form-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-result-help-cta__form-main-text {
  color: #FFF8AA;
  font-size: 1rem;
  line-height: 28px;
  font-weight: bold;
}
.search-result-help-cta__form-subtext {
  font-size: 11px;
  line-height: 28px;
  font-weight: bold;
  background-color: #fff;
  padding: 0 6px;
  color: #E50211;
  border-radius: 30px;
}
.search-result-help-cta__form:hover {
  opacity: 0.8;
}

.guide-company-info {
  background-color: #f9f8f6;
  padding: 30px 16px 25px;
}
.guide-company-info__description {
  text-align: center;
  margin-bottom: 21px;
  font-size: 1rem;
}
.guide-company-info__bold {
  font-weight: bold;
}
.guide-company-info__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
  margin-bottom: 21px;
}
.guide-company-info__item {
  display: flex;
  width: 100%;
}
.guide-company-info__detail {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 12px 12px;
  margin: 0;
  width: 100%;
}
.guide-company-info__label {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.7;
}
.guide-company-info__text {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
}

.guide-company-link {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.guide-company-link__pill {
  display: flex;
  width: 240px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 15px;
  background-color: #fff;
  font-weight: 600;
  border: 1px solid #333333;
  position: relative;
  padding: 10px 0;
  color: #333333;
  transition: all 0.15s ease-out;
  line-height: 1;
  cursor: pointer;
}
.guide-company-link__pill:after {
  content: url(../guide/img/icon-arrow.svg);
  position: absolute;
  right: 1rem;
  top: 53%;
  transform: translateY(-50%);
}
.guide-company-link__pill:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #333333;
  text-decoration: none;
  opacity: 0.6;
}