/*******************************
Coming Soon Style
*******************************/
.resources_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 30px;
  -webkit-margin-before: 64px;
          margin-block-start: 64px;
  -webkit-margin-after: 80px;
          margin-block-end: 80px;
}
@media screen and (max-width: 765px) {
  .resources_list {
    gap: 20px 30px;
  }
}
@media screen and (max-width: 640px) {
  .resources_list {
    gap: 30px 15px;
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
    -webkit-margin-after: 65px;
            margin-block-end: 65px;
  }
}
.resources_list_item {
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 765px) {
  .resources_list_item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .resources_list_item {
    width: calc((100% - 15px) / 2);
  }
}
.resources_list_item .resources_list_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.resources_list_item .resources_list_item_link:hover {
  opacity: 0.8;
}
.resources_list_item .resources_list_item_link:hover .resources_list_item_image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.resources_list_item .resources_list_item_link:hover .resources_materials_list_item_link {
  background-color: #c2d3f4;
}
.resources_list_item_image {
  position: relative;
  width: 100%;
  padding-top: 52.5%;
  background: #f4f5f7;
  overflow: hidden;
}
.resources_list_item_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.resources_list_item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
@media screen and (max-width: 640px) {
  .resources_list_item_content {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}
.resources_list_item_content_title {
  color: #1B1B1B;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 765px) {
  .resources_list_item_content_title {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
}
.resources_list_item_content_text {
  color: #464646;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 17px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 765px) {
  .resources_list_item_content_text {
    font-size: 12px;
    font-size: 0.75rem;
    margin-bottom: 13px;
  }
}
.resources_list .resources_materials_list_item_link {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid #293B69;
  color: #293B69;
  background-color: transparent;
  text-decoration: none;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
}
@media screen and (max-width: 765px) {
  .resources_list .resources_materials_list_item_link {
    font-size: 11px;
    font-size: 0.6875rem;
    padding: 8px 20px;
  }
}

.resources .title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 100px 40px 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #EDEFF7;
}
@media screen and (max-width: 765px) {
  .resources .title_block {
    padding: 45px;
  }
}
@media screen and (max-width: 640px) {
  .resources .title_block {
    padding: 25px;
  }
}
@media screen and (max-width: 765px) {
  .resources .title_block .m-wrapper {
    max-width: 100%;
  }
}
.resources .title_block .resources_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1240px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 765px) {
  .resources .title_block .resources_title {
    gap: 0px;
  }
}
.resources .title_block .resources_title__ja {
  color: #293B69;
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 765px) {
  .resources .title_block .resources_title__ja {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.resources .title_block .resources_title__en {
  color: #293B69;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 765px) {
  .resources .title_block .resources_title__en {
    font-size: 16px;
    font-size: 1rem;
  }
}
.resources .resources_contents {
  max-width: 1200px;
  margin-inline: auto;
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media screen and (max-width: 1530px) {
  .resources .resources_contents {
    max-width: 89.3%;
  }
}
@media screen and (max-width: 640px) {
  .resources .resources_contents {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
  }
}
.resources .resources_contents .resources_materials {
  border-radius: 8px;
  border: 1px solid #DFE1EB;
  background: #FFF;
  margin-inline: auto;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1530px) {
  .resources .resources_contents .resources_materials {
    max-width: 89.3%;
  }
}
.resources .resources_contents .resources_materials_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 765px) {
  .resources .resources_contents .resources_materials_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.resources .resources_contents .resources_materials_link:hover {
  opacity: 0.8;
}
.resources .resources_contents .resources_materials_link:hover .resources_materials_content_button {
  opacity: 0.7;
}
.resources .resources_contents .resources_materials_link:hover .resources_materials_image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.resources .resources_contents .resources_materials .resources_materials_content {
  padding: 42px 50px;
  width: 58%;
}
@media screen and (max-width: 1530px) {
  .resources .resources_contents .resources_materials .resources_materials_content {
    padding: 30px;
  }
}
@media screen and (max-width: 765px) {
  .resources .resources_contents .resources_materials .resources_materials_content {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .resources .resources_contents .resources_materials .resources_materials_content {
    padding: 20px;
  }
}
.resources .resources_contents .resources_materials .resources_materials_content_title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1B1B1B;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 640px) {
  .resources .resources_contents .resources_materials .resources_materials_content_title {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
}
.resources .resources_contents .resources_materials .resources_materials_content_text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #464646;
  margin-bottom: 20px;
  line-height: 150%;
}
@media screen and (max-width: 640px) {
  .resources .resources_contents .resources_materials .resources_materials_content_text {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-bottom: 15px;
  }
}
.resources .resources_contents .resources_materials .resources_materials_content_button {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 9px 24px;
  background-color: #293B69;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: Roboto;
}
@media screen and (max-width: 640px) {
  .resources .resources_contents .resources_materials .resources_materials_content_button {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 24px;
  }
}
.resources .resources_contents .resources_materials_image {
  max-width: 100%;
  height: auto;
  width: 42%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #EDEFF7;
  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;
}
@media screen and (max-width: 765px) {
  .resources .resources_contents .resources_materials_image {
    width: 100%;
  }
}
.resources .resources_contents .resources_materials_image img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.resources_single {
  background-color: #F4F5F7;
  padding-inline: 20px;
  padding-block: 64px;
}
@media screen and (max-width: 765px) {
  .resources_single {
    padding-inline: 0;
    padding-block: 40px;
  }
}
@media screen and (max-width: 640px) {
  .resources_single {
    padding-block: 32px 50px;
  }
}
.resources_single .m-wrapper.resources_single_wrapper {
  max-width: 1140px;
  margin-inline: auto;
}
@media screen and (max-width: 765px) {
  .resources_single .m-wrapper.resources_single_wrapper {
    max-width: 89.3%;
  }
}
.resources_single_title {
  color: #293B69;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1.08px;
  line-height: 1.4;
}
@media screen and (max-width: 765px) {
  .resources_single_title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 640px) {
  .resources_single_title {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.resources_single_subtitle {
  color: #293B69;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.48px;
  line-height: 1.5;
  margin-top: -15px;
}
@media screen and (max-width: 765px) {
  .resources_single_subtitle {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 640px) {
  .resources_single_subtitle {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.resources_single_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1530px) {
  .resources_single_content {
    gap: 20px;
  }
}
@media screen and (max-width: 765px) {
  .resources_single_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.resources_single_content_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 52%;
}
@media screen and (max-width: 765px) {
  .resources_single_content_flex {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  .resources_single_content_flex {
    gap: 24px;
  }
}
.resources_single_content_image {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .resources_single_content_image {
    width: 100%;
  }
}
.resources_single_content_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.resources_single_content_box {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
}
@media screen and (max-width: 640px) {
  .resources_single_content_box {
    padding: 20px;
  }
}
.resources_single_content_box_item {
  margin-bottom: 25px;
}
.resources_single_content_box_item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #1B1B1B;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  position: relative;
  padding-left: 18px;
}
@media screen and (max-width: 640px) {
  .resources_single_content_box_item_title {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 12px;
    gap: 8px;
  }
}
.resources_single_content_box_item_title::before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #5B5B5C;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 7px;
}
.resources_single_content_box_item_text {
  color: #464646;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 10px;
  letter-spacing: 0.42px;
}
@media screen and (max-width: 640px) {
  .resources_single_content_box_item_text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.resources_single_content_box_item_list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.resources_single_content_box_item_list_item {
  color: #464646;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 5px;
  padding-left: 0;
  letter-spacing: 0.42px;
}
@media screen and (max-width: 640px) {
  .resources_single_content_box_item_list_item {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}
.resources_single_content_box_item_list_item:last-child {
  margin-bottom: 0;
}
.resources_single_content_form {
  border-radius: 8px;
  position: relative;
  width: 48%;
}
@media screen and (max-width: 765px) {
  .resources_single_content_form {
    width: 100%;
  }
}

.resources-success {
  background-color: #F4F5F7;
}
.resources-success .m-wrapper {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 1530px) {
  .resources-success .m-wrapper {
    max-width: 89.3%;
  }
}
.resources-success-contents {
  padding-block: 80px;
}
@media screen and (max-width: 765px) {
  .resources-success-contents {
    padding-block: 55px;
  }
}
.resources-success-contents_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.resources-success-contents_icon {
  margin-bottom: 32px;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_icon {
    margin-bottom: 20px;
  }
  .resources-success-contents_icon svg {
    width: 60px;
    height: 60px;
  }
}
.resources-success-contents_title {
  color: #293B69;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 765px) {
  .resources-success-contents_title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .resources-success-contents_title {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 3px;
  }
}
.resources-success-contents_subtitle {
  color: #293B69;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_subtitle {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
}
.resources-success-contents_text {
  color: #464646;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 37px;
  letter-spacing: 0.42px;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_text {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 12px;
    line-height: 1.7;
  }
}
.resources-success-contents_button {
  margin-top: 8px;
  text-decoration: none;
}
.resources-success-contents_button_link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #293B69;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.48px;
}
.resources-success-contents_button_link:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_button_link {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 24px;
  }
}
.resources-success-contents_movie {
  margin-bottom: 40px;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_movie {
    margin-bottom: 10px;
  }
}
.resources-success-contents_movie .title-03 {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-top: 45px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .resources-success-contents_movie .title-03 {
    font-size: 17px;
    font-size: 1.0625rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.resources-success-contents_movie .video-container2 {
  max-width: 900px;
  margin-inline: auto;
}
.resources-success-contents_movie .video-container2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.resources-success-recommend {
  background-color: #EEEFF3;
  padding-block: 80px;
}
@media screen and (max-width: 765px) {
  .resources-success-recommend {
    padding-block: 55px;
  }
}
.resources-success-recommend .m-wrapper {
  max-width: 970px;
  margin-inline: auto;
}
@media screen and (max-width: 1530px) {
  .resources-success-recommend .m-wrapper {
    max-width: 89.3%;
  }
}
.resources-success-recommend .resources_list {
  -webkit-margin-after: 48px;
          margin-block-end: 48px;
}
@media screen and (max-width: 640px) {
  .resources-success-recommend .resources_list {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-margin-after: 38px;
            margin-block-end: 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .resources-success-recommend .resources_list_item {
    width: 100%;
  }
}
.resources-success-recommend_button {
  margin-top: 8px;
  text-decoration: none;
  text-align: center;
}
.resources-success-recommend_button_link {
  display: inline-block;
  padding: 10px 24px;
  background-color: #293B69;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.48px;
}
.resources-success-recommend_button_link:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .resources-success-recommend_button_link {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 24px;
  }
}

.resources-success-platiocanvas {
  padding-block: 80px;
}
@media screen and (max-width: 765px) {
  .resources-success-platiocanvas {
    padding-block: 55px;
  }
}
.resources-success-platiocanvas .m-wrapper {
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 1530px) {
  .resources-success-platiocanvas .m-wrapper {
    max-width: 89.3%;
  }
}
.resources-success-platiocanvas_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
@media screen and (max-width: 1530px) {
  .resources-success-platiocanvas_content {
    gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .resources-success-platiocanvas_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 470px;
    margin-inline: auto;
  }
}
.resources-success-platiocanvas_content_left {
  width: 62%;
}
@media screen and (max-width: 1000px) {
  .resources-success-platiocanvas_content_left {
    width: 100%;
  }
}
.resources-success-platiocanvas_content_left_image {
  width: 100%;
}
.resources-success-platiocanvas_content_right {
  width: 38%;
}
@media screen and (max-width: 1000px) {
  .resources-success-platiocanvas_content_right {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right {
    text-align: center;
  }
}
.resources-success-platiocanvas_content_right_logo {
  margin-bottom: 32px;
  max-width: 150px;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_logo {
    max-width: 127px;
    margin-inline: auto;
    margin-bottom: 25px;
  }
}
.resources-success-platiocanvas_content_right_subtitle {
  color: #1B1B1B;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_subtitle {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
.resources-success-platiocanvas_content_right_title {
  color: #293B69;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_title {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}
.resources-success-platiocanvas_content_right_text {
  margin-bottom: 32px;
  color: #464646;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.45px;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_text {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}
.resources-success-platiocanvas_content_right_button {
  margin-top: 8px;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_button {
    text-align: center;
  }
}
.resources-success-platiocanvas_content_right_button_link {
  display: inline-block;
  padding: 10px 24px;
  background-color: #293B69;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.48px;
}
.resources-success-platiocanvas_content_right_button_link:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .resources-success-platiocanvas_content_right_button_link {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 24px;
  }
}

body #ZHform_all_reset_style div.crmWebToEntityForm div.zcwf_col_lab label {
  font-size: 16px;
}

#ZHform_all_reset_style .phone-note {
  display: block !important;
  color: #000 !important;
  font-size: 85% !important;
  margin-top: 40px !important;
}

body #ZHform_all_reset_style div.crmWebToEntityForm div.zcwf_col_lab label {
  font-size: 15px;
}

body #ZHform_all_reset_style div.crmWebToEntityForm div.zcwf_row.ZHsubmitBtn {
  padding-top: 0px;
}

body #ZHform_all_reset_style div.crmWebToEntityForm span.hissu {
  font-size: 11px;
  vertical-align: 6px;
  padding-left: 5px;
}

#ZHform_all_reset_style .required-note {
  margin-bottom: 30px;
  padding-top: 5px;
  font-size: 14px;
  color: #ba0909;
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #ZHform_all_reset_style .required-note {
    font-size: 13px;
    margin-bottom: 25px;
  }
}/*# sourceMappingURL=resources.css.map */