.p-content p.btn-box > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto 5rem;
  padding: 1.5rem 5rem 1.5rem 3rem;
  background-color: #fb0020;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-content p.btn-box > a {
    width: fit-content;
    min-width: 26rem;
    margin: 3rem auto;
    font-size: 2rem;
  }
}


.p-content p.btn-box > a::before {
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg class='arrow-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ffffff' d='M15.79,17H0V1.21h7.07v1H1v13.79h13.79v-6.07h1v7.07ZM17,0h-7.07v1h6.07v6.07h1V0ZM16.35,1.35l-.71-.71L4.56,11.74l.71.71L16.35,1.35Z' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  margin: 0 0.5rem;
  position: absolute;
  /* right: 7.4rem; */
  right: 13%;
  /* bottom: 2rem; */
  bottom: 50%;
  transform: translateY(50%);
}
.p-content p.btn-box > a:hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.p-content p.btn-box > a.arr::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
.p-content p.btn-box > a:hover::after {
  transform: rotate(-45deg) translateY(8px) translateX(8px);
}

.p-content_item {
  margin: 7rem auto;
}
@media screen and (max-width: 767px) {
  .p-content_item {
    margin: 4rem auto;
  }
}
.p-content_item h3 {
  display: block;
  width: 100%;
  border-left: solid 5px #fb0020;
  margin-bottom: 3rem;
  padding-left: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #070707;
}
@media screen and (max-width: 767px) {
  .p-content_item h3 {
    margin-bottom: 2rem;
  }
}
.p-content_item > h4 {
  margin: 4rem 1.4rem 0.5rem;
  font-size: 112%;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-content_item > h4 {
    margin-top: 2rem;
  }
}
.p-content_item > dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-content_item > dl {
    display: block;
  }
}
.p-content_item > dl > dt {
  width: 18rem;
  padding: 1.5rem 0.5rem;
  line-height: 1.6;
  border-bottom: solid 2px #fb0020;
}
@media screen and (max-width: 767px) {
  .p-content_item > dl > dt {
    width: 100%;
    padding: 0.8rem 0.4rem;
  }
}
.p-content_item > dl > dd {
  width: calc(100% - 18rem);
  padding: 1.5rem 0.5rem 1.5rem 2rem;
  line-height: 1.6;
  border-bottom: solid 2px #B4B4B4;
}
@media screen and (max-width: 767px) {
  .p-content_item > dl > dd {
    width: 100%;
    padding: 0.8rem 0.4rem;
    border-bottom: none;
  }
}
.p-content_item > dl > dd > span {
  display: block;
  padding-left: 7.5rem;
  text-indent: -7.5rem;
}
.p-content_item.flex {
  display: flex;
  flex-wrap: wrap;
}
.p-content_item.flex > figure {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .p-content_item.flex > figure {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;
    order: 1;
  }
}
.p-content_item.flex .flex-inner {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-content_item.flex .flex-inner {
    order: 2;
    width: 100%;
  }
}
.p-content_item.flex .flex-inner > p {
  margin-bottom: 3rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-content_item.flex .flex-inner > p {
    margin-bottom: 0rem;
  }
}
.p-content_item.flex .flex-inner > ul {
  margin: 3rem 0;
}
.p-content_item.flex .flex-inner > ul > li {
  list-style: disc;
  margin-left: 3rem;
  line-height: 1.8;
  width: auto;
  max-width: 80%;
}
@media screen and (max-width: 767px) {
  .p-content_item.flex .flex-inner > ul > li {
    font-size: 1.5rem;
  }
}
.p-content_item.flex .flex-inner > ul > li > span {
  display: block;
  text-align: right;
  margin-right: 2rem;
  font-size: 90%;
  line-height: 1;
}


.p-content a {
  text-decoration: underline;
  color: #fb0020;
}
.p-content a:hover {
  color: #fff;
  background-color: #fb0020;
}
.p-content a.icon_ex {
  transition: all ease-in 0.3s;
}
.p-content a.icon_ex::after {
  display: inline-block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg class='arrow-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23fb0020' d='M15.79,17H0V1.21h7.07v1H1v13.79h13.79v-6.07h1v7.07ZM17,0h-7.07v1h6.07v6.07h1V0ZM16.35,1.35l-.71-.71L4.56,11.74l.71.71L16.35,1.35Z' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  margin: 0 0.5rem;
}
.p-content a.icon_ex:hover::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg class='arrow-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ffffff' d='M15.79,17H0V1.21h7.07v1H1v13.79h13.79v-6.07h1v7.07ZM17,0h-7.07v1h6.07v6.07h1V0ZM16.35,1.35l-.71-.71L4.56,11.74l.71.71L16.35,1.35Z' /%3E%3C/g%3E%3C/svg%3E");
}/*# sourceMappingURL=news_2024june26.css.map */
