.logo_article {
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
}

.logo_text {
  font-size: 18px;
  margin-bottom: 85px;
}

.logo_rinen_title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.logo_rinen_title::before, .logo_rinen_title::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #DF5E21;
  top: calc(50% - 8px);
}
.logo_rinen_title::before {
  left: -24px;
}
.logo_rinen_title::after {
  right: -24px;
}

.logo_main {
  width: 100%;
  padding: 130px 50px;
  background-color: #fff;
  border-radius: 32px;
  margin-bottom: 165px;
  position: relative;
}

.logo_img {
  display: block;
  width: 335px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 105px;
}

.logo_item1, .logo_item2, .logo_item3 {
  display: block;
  position: absolute;
}

.logo_item1 {
  width: 200px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
}

.logo_item2 {
  width: 120px;
  bottom: 0;
  left: 60px;
  transform: translateY(46%);
}

.logo_item3 {
  width: 150px;
  bottom: 0;
  right: 60px;
  transform: translateY(50%);
}

.logo_rule {
  width: fit-content;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  position: relative;
}
.logo_rule::before, .logo_rule::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #DF5E21;
  top: 50%;
  transform: translateY(-50%);
}
.logo_rule::before {
  left: -27px;
}
.logo_rule::after {
  right: -27px;
}
.logo_rule.left {
  margin-left: 27px;
  margin-right: 0;
  margin-bottom: 6px;
}
.logo_rule.left::after {
  content: none;
}

.logo_data_list {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 75px;
}

.logo_data_block {
  display: block;
  width: calc((100% - 80px) / 3);
  aspect-ratio: 209/175.41;
  padding: 35px 23px 10px;
  position: relative;
}
.logo_data_block::before, .logo_data_block::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.logo_data_block::before {
  background-image: url(../images/logo_data_bg.svg);
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s;
}
.logo_data_block::after {
  background-image: url(../images/logo_data_bg_hover.svg);
  z-index: 1;
}
.logo_data_block:hover::before {
  opacity: 0;
}

.logo_data_pdf {
  display: block;
  width: 26px;
  aspect-ratio: 27.45/32.18;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  position: relative;
  z-index: 3;
}

.logo_data_word {
  display: block;
  width: 28px;
  aspect-ratio: 29.24/28.7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 3;
}

.logo_data_text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 3;
}

.logo_send {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  word-break: break-all;
  overflow-wrap: break-word;
  background-color: hsla(30, 100%, 98%, 0.75);
  border-radius: 28px;
}

.logo_item4 {
  display: block;
  width: 90px;
}

.logo_link {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.banner_img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.banner_img .logo_link_img {
  display: block;
  width: 70%;
}
.banner_img .dancing {
  display: block;
  width: 13%;
}

.dl_btn {
  display: block;
  width: 227px;
  height: 60px;
  border-radius: 30px;
  color: #495476;
  border: solid 3px #495476;
  background-color: #fff;
  line-height: 54px;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
}
.dl_btn:hover {
  background-color: #ccd3e9;
}

.link_orange {
  color: #DF5E21;
  border-bottom: solid 1px #DF5E21;
  word-break: break-all;
  overflow-wrap: break-word;
}
.link_orange:hover {
  border-bottom: none;
}
@media (max-width: 960px) {
  .logo_data_list {
    gap: 20px;
  }
  .logo_data_block {
    width: calc((100% - 40px) / 3);
  }
  .logo_data_text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .logo_text {
    font-size: 15px;
    margin-bottom: 60px;
  }
  .logo_rinen_title {
    font-size: 18px;
  }
  .logo_main {
    padding: 110px 30px 80px;
    margin-bottom: 80px;
  }
  .logo_img {
    margin-bottom: 60px;
  }
  .logo_item1 {
    width: 160px;
  }
  .logo_item2 {
    width: 90px;
    left: 30px;
  }
  .logo_item3 {
    width: 110px;
    right: 30px;
  }
  .logo_rule {
    font-size: 17px;
    margin-bottom: 25px;
  }
  .logo_data_list {
    margin-bottom: 40px;
  }
  .logo_data_block {
    padding: 35px 16px 10px;
    width: calc(50% - 10px);
    max-width: 194px;
  }
  .logo_data_pdf {
    width: 20px;
  }
  .logo_data_word {
    width: 22px;
  }
  .logo_send {
    flex-direction: column;
    border-radius: 18px;
    padding: 40px 25px 20px;
  }
  .logo_item4 {
    width: 60px;
  }
}
@media (max-width: 425px) {
  .logo_data_text {
    font-size: 10px;
  }
}