.un_cta {
  position: relative;
  border: 4px solid #f17436;
  border-top-width: 0;
  margin-top: 75px;
}

.un_cta_header {
  position: relative;
  display: flex;
  padding: 30px 15px 75px;
  background-color: #f17436;
}

@media screen and (min-width: 1024px) {
  .un_cta_header {
    justify-content: center;
    padding: 40px 20px 10px;
  }
}

.un_cta_header .un_cta_header_balloon {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 50%;
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 1px solid #0f1439;
  border-radius: 35px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_balloon {
    width: 30%;
  }
}

.un_cta_header .un_cta_header_balloon::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid #0f1439;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  transform: translate(-50%, 100%);
}

.un_cta_header .un_cta_header_balloon::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  content: "";
  filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.25));
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translate(-50%, 97%);
}

.un_cta_header .un_cta_header_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_cont {
    align-items: center;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_ttl {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
}

.un_cta_header .un_cta_header_ttlMain {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #f17436;
  text-align: center;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_ttlMain {
    position: relative;
    z-index: 1;
    font-size: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_ttlMain::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 40%;
    content: "";
    background-color: #ffe609;
  }
}

.un_cta_header .un_cta_header_ttlSub {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.un_cta_header .un_cta_header_ttlSub>span {
  color: #ffe609;
}

.un_cta_header .un_cta_header_list {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 95%;
  padding: 10px;
  list-style: none;
  background-color: #ffebce;
  transform: translate(-50%, 30%);
}

.un_cta_header .un_cta_header_list::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  content: "";
  /* TODO: 環境に合わせてパスを修正してください */
  background: url('./images/icon-hand_up.png') no-repeat center center/contain;
  transform: translate(-25%, -50%);
}

@media screen and (min-width: 1024px) {
  .un_cta_header .un_cta_header_list {
    position: static;
    width: calc((100% - 15px) / 2);
    transform: translate(0, 0);
  }
}

.un_cta_header .un_cta_header_list>li {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  font-size: 12px;
}

.un_cta_header .un_cta_header_list>li>span {
  font-weight: bold;
}

.un_cta_header .un_cta_header_list>li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}

.un_cta_header .un_cta_header_list>li::after {
  position: absolute;
  bottom: 0;
  left: 10px;
  display: block;
  width: 100%;
  content: "";
  border-bottom: 1px dotted #0f1439;
}

.un_cta_body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 30px 20px;
}

@media screen and (min-width: 1024px) {
  .un_cta_body {
    padding: 20px 35px;
  }
}

.un_cta_body::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  content: "";
  background-color: #ffe609;
}

@media screen and (min-width: 1024px) {
  .un_cta_body::after {
    height: 20%;
  }
}

.un_cta_body .un_cta_body_imgWrapper {
  width: 100%;
  margin: 0 0 20px;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_imgWrapper {
    width: calc(60% - 25px);
    margin: 0 25px 20px 0;
  }
}

.un_cta_body .un_cta_body_imgWrapper>img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.un_cta_body .un_cta_body_list {
  width: 70%;
  margin: 0 0 15px;
  list-style: none;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_list {
    width: 40%;
    margin: 15px 0 0;
  }
}

.un_cta_body .un_cta_body_list>li {
  padding: 5px 18px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border-left: 3px solid #f17436;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_list>li {
    font-size: 14px;
  }
}

.un_cta_body .un_cta_body_list>*:last-child {
  margin-bottom: 0;
}

.un_cta_body .un_cta_body_btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_btns {
    width: 80%;
  }
}

.un_cta_body .un_cta_body_btns>*:last-child {
  margin-bottom: 0;
}

.un_cta_body .un_cta_body_btn {
  position: relative;
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 0 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.25s;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_btn {
    width: calc((100% - 10px) / 2);
    margin: 0 10px 0 0;
  }

  .un_cta_body .un_cta_body_btn:last-child {
    margin: 0;
  }
}

.un_cta_body .un_cta_body_btn:hover {
  transform: translateY(2px);
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_btn:hover {
    transform: translateY(4px);
  }
}

.un_cta_body .un_cta_body_btn::before {
  position: absolute;
  top: 50%;
  content: "";
  transform: translate(0, -50%);
}

.un_cta_body .un_cta_body_btn::after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 0.6em;
  height: 0.6em;
  margin: auto;
  vertical-align: middle;
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__line {
  padding: 5px 20px 5px 50px;
  background-color: #06c755;
  box-shadow: 0 2px 0 0 #00a343;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_btn.un_cta_body_btn__line {
    box-shadow: 0 4px 0 0 #00a343;
  }
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__line:hover {
  box-shadow: 0 0 0 0 #00a343;
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__line::before {
  left: 15px;
  width: 36px;
  height: 36px;
  /* TODO: 環境に合わせてパスを修正してください */
  background: url('./images/line_88.png') no-repeat center center/contain;
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__official {
  padding: 15px 20px 15px 50px;
  background-color: #f17436;
  box-shadow: 0 2px 0 0 #d34600;
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_btn.un_cta_body_btn__official {
    box-shadow: 0 4px 0 0 #d34600;
  }
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__official:hover {
  box-shadow: 0 0 0 0 #d34600;
}

.un_cta_body .un_cta_body_btn.un_cta_body_btn__official::before {
  left: 20px;
  width: 30px;
  height: 30px;
  /* TODO: 環境に合わせてパスを修正してください */
  background: url('./images/icon-earth.png') no-repeat center center/contain;
}

.un_cta_body .un_cta_body_btnTxtMain {
  display: block;
  width: 100%;
  font-size: 14px;
}

.un_cta_body .un_cta_body_btnTxtSub {
  display: block;
  width: 100%;
  font-size: 11px;
}

.un_cta_body .un_cta_body_balloon {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: #0f1439;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transform: translate(-20%, -65%);
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_balloon {
    transform: translate(-20%, 10%);
  }
}

.un_cta_body .un_cta_body_balloon::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.25));
  border-top: 10px solid #0f1439;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translate(100%, 20%) rotate(35deg);
}

@media screen and (min-width: 1024px) {
  .un_cta_body .un_cta_body_balloon::after {
    content: none;
  }
}

.un_cta_body .un_cta_body_balloon>span {
  display: block;
  width: 100%;
  font-size: 12px;
  color: #fff;
}

.un_cta_body .un_cta_body_balloon>span:last-child {
  font-size: 32px;
  line-height: 1;
  color: #f17436;
}