@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-size: 1rem;
  color: #0D111A;
}
body:has(.lp-siteHeader.is-open) {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sp-inlineblock {
    display: inline-block;
  }
}

.lp-siteHeader {
  position: fixed !important;
  background-color: #fff;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  z-index: 1000;
  padding: 15px 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lp-siteHeader {
    height: 60px;
  }
}
.lp-siteHeader_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
}
.lp-siteHeader_logo {
  width: 25%;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .lp-siteHeader_logo {
    width: 200px;
  }
}
.lp-siteHeader_logo a {
  display: block;
  height: 100%;
}
.lp-siteHeader_logo a:hover {
  opacity: 0.7;
}
.lp-siteHeader_navbtn {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  margin-right: 20px;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader_navbtn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .lp-siteHeader_navbtn {
    margin-right: 0;
  }
}
.lp-siteHeader_navbtn span {
  position: absolute;
  left: 25%;
  display: block;
  width: 50%;
  height: 2px;
  background: #333;
  transition: 0.2s;
}
.lp-siteHeader_navbtn span:first-child {
  top: 30%;
}
.lp-siteHeader_navbtn span:nth-child(2) {
  top: 48%;
  opacity: 1;
}
.lp-siteHeader_navbtn span:last-child {
  top: 67%;
}
.lp-siteHeader_nav {
  width: 55%;
  max-width: 800px;
  min-width: 650px;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader_nav {
    position: fixed;
    top: 75px;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: none;
    min-width: auto;
    background-color: #00337A;
    z-index: -1;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.16);
    padding: 60px 10px 20px;
    box-sizing: border-box;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .lp-siteHeader_nav {
    top: 60px;
    padding-top: 50px;
  }
}
.lp-siteHeader_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader_nav ul {
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  .lp-siteHeader_nav ul a {
    color: #fff;
  }
}
.lp-siteHeader_nav_item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(14px, 0.9rem + 0.1vw, 18px);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader_nav_item {
    width: 90%;
    font-weight: 500;
    font-size: clamp(18px, 1.034rem + 0.39vw, 24px);
    letter-spacing: 0.1rem;
  }
}
.lp-siteHeader_nav_item-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  background-color: #00337A;
  border: 3px solid #00337A;
  color: #fff !important;
  line-height: 1.5;
  text-align: center;
  transition: all 0.2s;
  box-sizing: border-box;
  padding: 8px 20px;
  position: relative;
  margin-left: 10px;
}
.lp-siteHeader_nav_item-contact a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader_nav_item-contact a {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    background-color: #fff;
    color: #00337A !important;
  }
}
.lp-siteHeader_nav_item a {
  font-weight: 600;
}
.lp-siteHeader_nav_item a:hover {
  color: #004FA8;
}
@media screen and (max-width: 1100px) {
  .lp-siteHeader.is-open .lp-siteHeader_navbtn span:first-child {
    top: 48%;
    transform: rotate(45deg);
  }
  .lp-siteHeader.is-open .lp-siteHeader_navbtn span:nth-child(2) {
    display: none;
    opacity: 0;
  }
  .lp-siteHeader.is-open .lp-siteHeader_navbtn span:last-child {
    top: 48%;
    transform: rotate(-45deg);
  }
}
.lp-siteFooter {
  background-color: #0D111A;
  padding: 35px 10px;
}
@media screen and (max-width: 768px) {
  .lp-siteFooter {
    padding: 20px 0 70px;
  }
}
.lp-siteFooter p {
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lp-siteFooter p {
    font-size: 10px;
  }
}

.marker-yellow {
  background: linear-gradient(transparent 70%, #FAF619 70%);
}

.lpsection_title {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .lpsection_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .lpsection_title {
    font-size: 1.6rem;
  }
}
.lpsection_title span {
  font-size: 1.25rem;
  display: block;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .lpsection_title span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .lpsection_title span {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
}
.lpsection_title_info {
  text-align: center;
  position: relative;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lpsection_title_info {
    text-align: left;
  }
}
.lpsection_title_info::before {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background-color: #fff;
  margin: 30px auto 20px;
}
@media screen and (max-width: 768px) {
  .lpsection_title_info::before {
    margin: 18px auto 12px;
    height: 2px;
  }
}

.LPtaxaccountant .lpfv {
  background-color: #F0F4FA;
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv {
    padding-top: 60px;
  }
}
.LPtaxaccountant .lpfv_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  height: calc(100vh - 70px);
  min-height: 750px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpfv_inner {
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_inner {
    display: block;
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
.LPtaxaccountant .lpfv_inner .lpfv_slide:first-child {
  top: -80px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_inner .lpfv_slide:first-child {
    display: none;
  }
}
.LPtaxaccountant .lpfv_inner .lpfv_slide:first-child .lpfv_slide_inner {
  animation: scroll-left 70s linear infinite;
}
.LPtaxaccountant .lpfv_inner .lpfv_slide:last-child {
  bottom: 0;
  left: 0;
}
.LPtaxaccountant .lpfv_inner .lpfv_slide:last-child .lpfv_slide_inner {
  animation: scroll-right 70s linear infinite;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_inner .lpfv_slide:last-child .lpfv_slide_inner {
    animation: scroll-right 30s linear infinite;
  }
}
.LPtaxaccountant .lpfv_slide {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
}
.LPtaxaccountant .lpfv_slide_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.LPtaxaccountant .lpfv_slide_item {
  white-space: nowrap;
  padding-right: 30px;
  font-size: 14vw;
  font-weight: 600;
  color: #C5D7F0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_slide_item {
    padding-right: 20px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.LPtaxaccountant .lpfv_contents {
  width: 90%;
  height: calc(100% - 120px);
  background-image: url(../../images/lp/taxaccountant/fv_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_contents {
    width: 100%;
    background-image: none;
    height: auto;
  }
}
.LPtaxaccountant .lpfv_title {
  font-weight: 800;
}
.LPtaxaccountant .lpfv_title_block {
  position: absolute;
  top: 5%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_title_block {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    background-image: url(../../images/lp/taxaccountant/fv_img-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right 45%;
    padding: 30px 0;
  }
}
.LPtaxaccountant .lpfv_title-blue {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: calc(1.2rem + 0.4vw + 0.4vh);
  background-color: #00337A;
  color: #fff;
  padding: 0.4em 1.5rem;
  line-height: 1.2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_title-blue {
    font-size: 16px;
    padding: 0.4em 1rem;
    margin-bottom: 10px;
  }
}
.LPtaxaccountant .lpfv_title-white {
  font-size: calc(1.87rem + 0.5vw + 0.5vh);
  line-height: 1.6;
  display: inline;
  background-color: #fff;
  color: #00337A;
  padding: 0.4rem 1.5rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_title-white {
    font-size: 22px;
    padding: 0.4rem 1rem;
    line-height: 2;
  }
}
.LPtaxaccountant .lpfv_title-white strong {
  font-size: calc(2rem + 1vw + 1vh);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_title-white strong {
    font-size: 30px;
  }
}
.LPtaxaccountant .lpfv_title_info {
  padding-left: 1.5rem;
  margin-top: 20px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: calc(0.5rem + 0.4vw + 0.4vh);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_title_info {
    padding: 0 1rem;
    font-size: 12px;
    margin-top: 15px;
  }
}
.LPtaxaccountant .lpfv_point {
  width: calc(100% - 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin: 30px auto;
    max-width: 600px;
  }
}
.LPtaxaccountant .lpfv_point_item {
  position: relative;
  padding: 25px 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item {
    padding: 20px 0 15px;
  }
}
.LPtaxaccountant .lpfv_point_item + .lpfv_point_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background-color: #00337A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item + .lpfv_point_item::before {
    width: 90%;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.LPtaxaccountant .lpfv_point_item_num {
  text-align: center;
  display: inline-block;
  background-color: #00337A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 6px 12px;
  border-radius: 0 0 25px 25px;
  line-height: 1.1;
  position: absolute;
  top: 0;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item_num {
    font-size: 9px;
    padding: 8px 4px 10px;
    left: 5%;
  }
}
.LPtaxaccountant .lpfv_point_item_num span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item_num span {
    font-size: 14px;
  }
}
.LPtaxaccountant .lpfv_point_item_img {
  width: 36%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item_img {
    max-width: 150px;
  }
}
.LPtaxaccountant .lpfv_point_item_text {
  margin-top: 5px;
  font-weight: 600;
  color: #00337A;
  font-size: calc(0.5rem + 0.4vw + 0.4vh);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_point_item_text {
    font-size: 14px;
  }
}
.LPtaxaccountant .lpfv_badge {
  position: absolute;
  max-width: 255px;
  min-width: 100px;
  width: 13%;
  top: -50%;
  right: -2%;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpfv_badge {
    width: 30%;
    max-width: 120px;
    min-width: auto;
    top: -9%;
    right: -4%;
  }
}
.LPtaxaccountant .lpcta {
  background-color: #001A49;
  color: #fff;
  padding: 55px 0 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpcta::before, .LPtaxaccountant .lpcta::after {
  content: "";
  display: block;
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 0;
}
.LPtaxaccountant .lpcta::before {
  width: 25%;
  max-width: 421px;
  aspect-ratio: 1/1.204;
  background-image: url(../../images/lp/taxaccountant/cta_bg1.webp);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta::before {
    width: 55%;
    max-width: 240px;
  }
}
.LPtaxaccountant .lpcta::after {
  width: 30%;
  max-width: 490px;
  aspect-ratio: 1/1.035;
  background-image: url(../../images/lp/taxaccountant/cta_bg2.webp);
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta::after {
    width: 50%;
    max-width: 300px;
  }
}
.LPtaxaccountant .lpcta .container {
  position: relative;
  z-index: 1;
}
.LPtaxaccountant .lpcta_btns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  width: 90%;
  gap: 25px;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcta_btns {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns {
    max-width: 600px;
    flex-direction: column;
    gap: 40px;
  }
}
.LPtaxaccountant .lpcta_btns_block {
  width: 100%;
  text-align: center;
}
.LPtaxaccountant .lpcta_btns_block > p {
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns_block > p {
    font-size: 12px;
  }
}
.LPtaxaccountant .lpcta_btns_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns_btn {
    height: 60px;
    font-size: 16px;
    border-radius: 5px;
  }
}
.LPtaxaccountant .lpcta_btns_btn:hover {
  opacity: 0.7;
}
.LPtaxaccountant .lpcta_btns_btn-sub {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FAF619;
  color: #001A49;
  line-height: 1.1;
  padding: 5px 10px;
  width: 60%;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.22);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns_btn-sub {
    font-size: 12px;
  }
}
.LPtaxaccountant .lpcta_btns_btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  color: #001A49;
  margin-top: 12px;
}
.LPtaxaccountant .lpcta_btns_btn-main::before {
  padding-top: 3px;
}
.LPtaxaccountant .lpcta_btns_btn-tel .lpcta_btns_btn-main {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns_btn-tel .lpcta_btns_btn-main {
    font-size: 18px;
  }
}
.LPtaxaccountant .lpcta_btns_btn-tel .lpcta_btns_btn-main::before {
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f095";
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcta_btns_btn-tel .lpcta_btns_btn-main::before {
    font-size: 16px;
  }
}
.LPtaxaccountant .lpworries {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpworries {
  background-image: linear-gradient(0deg, #b1bbcc, #e3ebfa);
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries {
    padding-top: 50px;
  }
}
.LPtaxaccountant .lpworries .container {
  width: 85%;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries .container {
    width: 90%;
  }
}
.LPtaxaccountant .lpworries_title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  padding: 0 20px 20px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #001A49;
  border-bottom: 3px solid #001A49;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_title {
    font-size: clamp(1.25rem, 0.773rem + 2.04vw, 1.75rem);
    padding: 0 5px 15px;
    border-width: 2px;
    margin-bottom: 30px;
  }
}
.LPtaxaccountant .lpworries_title strong {
  font-weight: 800;
  font-size: 3.8rem;
  background-image: radial-gradient(circle at center, #001A49 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.05em 0.2em;
  padding-top: 0.1em;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_title strong {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_title strong {
    font-size: clamp(1.563rem, 0.787rem + 3.31vw, 2.375rem);
  }
}
.LPtaxaccountant .lpworries_contents {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_contents {
    margin-bottom: 40px;
  }
}
.LPtaxaccountant .lpworries_contents .lpworries_item:nth-child(even) {
  flex-direction: row-reverse;
}
.LPtaxaccountant .lpworries_contents .lpworries_item:nth-child(even) .lpworries_item_text::before {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  right: -38px;
  left: auto !important;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_contents .lpworries_item:nth-child(even) .lpworries_item_text::before {
    right: -19px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_contents .lpworries_item:nth-child(even) .lpworries_item_text::before {
    left: 50% !important;
  }
}
.LPtaxaccountant .lpworries_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_item {
    gap: 35px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_item {
    flex-direction: column-reverse !important;
  }
}
.LPtaxaccountant .lpworries_item + .lpworries_item {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_item + .lpworries_item {
    margin-top: 50px;
  }
}
.LPtaxaccountant .lpworries_item_img {
  max-width: 227px;
  width: 18%;
  min-width: 190px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_item_img {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_item_img {
    width: 50%;
  }
}
.LPtaxaccountant .lpworries_item_text {
  width: 65%;
  background-color: #fff;
  padding: 1.9em 2em;
  font-size: clamp(1rem, 0.757rem + 1.04vw, 1.8rem);
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.15));
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_item_text {
    width: 80%;
    padding: 1.7em 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_item_text {
    width: 90%;
    padding: 1.2em 1em;
  }
}
.LPtaxaccountant .lpworries_item_text::before {
  content: "";
  display: inline-block;
  width: 39px;
  height: 53px;
  background: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  position: absolute;
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpworries_item_text::before {
    width: 20px;
    height: 40px;
    left: -19px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpworries_item_text::before {
    clip-path: polygon(0 0, 100% 0%, 50% 100%) !important;
    width: 24px;
    height: 18px;
    top: auto;
    bottom: -17px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}
.LPtaxaccountant .lpworries_item_text span {
  color: #004FA8;
}
.LPtaxaccountant .lpsupport {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpsupport {
  background-color: #00337A;
  color: #fff;
  position: relative;
}
.LPtaxaccountant .lpsupport::before, .LPtaxaccountant .lpsupport::after {
  content: "";
  width: 100%;
  height: 55px;
  top: -54px;
  left: 0;
  background-color: #00337A;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport::before, .LPtaxaccountant .lpsupport::after {
    height: 40px;
    top: -39px;
  }
}
.LPtaxaccountant .lpsupport::before {
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
}
.LPtaxaccountant .lpsupport::after {
  clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
}
.LPtaxaccountant .lpsupport_title {
  max-width: 815px;
  width: 80%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport_title {
    width: 100%;
    max-width: 650px;
    margin-top: 10px;
  }
}
.LPtaxaccountant .lpsupport .lpsection_title_info {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport .lpsection_title_info {
    margin-top: 25px;
  }
}
.LPtaxaccountant .lpsupport .lpsection_title_info::before {
  display: none;
}
.LPtaxaccountant .lpsupport_contents {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport_contents {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport_contents {
    margin-top: 40px;
    max-width: 600px;
  }
}
.LPtaxaccountant .lpsupport_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 80px) / 3);
  background-color: #fff;
  color: #00337A;
  text-align: center;
  border-radius: 10px;
  padding: 15px 10px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport_item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport_item {
    width: 100%;
  }
}
.LPtaxaccountant .lpsupport_item_img {
  max-width: 175px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport_item_img {
    width: 45%;
  }
}
.LPtaxaccountant .lpsupport_item_text {
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpsupport_item_text {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpsupport_item_text {
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.LPtaxaccountant .lpstrength {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpstrength_contents {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_contents {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.LPtaxaccountant .lpstrength_contents .lpstrength_item:not(.lpstrength_item-1column):nth-child(even) {
  flex-direction: row-reverse;
}
.LPtaxaccountant .lpstrength_item:not(.lpstrength_item-1column) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item:not(.lpstrength_item-1column) {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item:not(.lpstrength_item-1column) {
    flex-direction: column-reverse !important;
    gap: 20px;
  }
}
.LPtaxaccountant .lpstrength_item + .lpstrength_item {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item + .lpstrength_item {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item + .lpstrength_item {
    margin-top: 60px;
  }
}
.LPtaxaccountant .lpstrength_item_img {
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_img {
    width: 100%;
    border-radius: 5px;
  }
}
.LPtaxaccountant .lpstrength_item_text {
  flex: 1;
}
.LPtaxaccountant .lpstrength_item_text-num {
  display: inline-block;
  background-color: #00337A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding: 2px 20px;
  padding-right: 30px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_text-num {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_text-num {
    padding: 2px 15px;
    padding-right: 20px;
  }
}
.LPtaxaccountant .lpstrength_item_text-num::after {
  content: "";
  display: block;
  width: 30px;
  height: 200%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(25deg);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_text-num::after {
    width: 25px;
  }
}
.LPtaxaccountant .lpstrength_item_text-name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_text-name {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_text-name {
    margin-top: 10px;
  }
}
.LPtaxaccountant .lpstrength_item_text-info {
  border-top: 2px solid #001A49;
  padding-top: 20px;
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_text-info {
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_text-info {
    margin-top: 10px;
    padding-top: 10px;
  }
}
.LPtaxaccountant .lpstrength_item_text-info span {
  font-weight: 600;
  color: #004FA8;
}
.LPtaxaccountant .lpstrength_item_block {
  background-color: #F0F4FA;
  padding: 35px 30px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_block {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_block {
    padding: 20px 20px 25px;
    border-radius: 5px;
  }
}
.LPtaxaccountant .lpstrength_item_block-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_block-wrapper {
    gap: 20px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_block-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.LPtaxaccountant .lpstrength_item_block_name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00337A;
  position: relative;
  line-height: 1.5;
  padding-left: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_block_name {
    font-size: 1.1rem;
    padding-left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_block_name {
    font-size: 1.05rem;
  }
}
.LPtaxaccountant .lpstrength_item_block_name::before {
  content: "";
  display: flex;
  width: 5px;
  height: 90%;
  background-color: #00337A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_block_name::before {
    width: 4px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_block_name::before {
    height: 80%;
  }
}
.LPtaxaccountant .lpstrength_item_block_info {
  border-top: 2px solid #00337A;
  margin-top: 8px;
  padding-top: 8px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpstrength_item_block_info {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpstrength_item_block_info {
    margin-top: 6px;
    padding-top: 10px;
  }
}
.LPtaxaccountant .lpstrength_item_block_info span {
  font-weight: 600;
}
.LPtaxaccountant .lpservice {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpservice {
  background-color: #F0F4FA;
}
.LPtaxaccountant .lpservice .lpsection_title_info::before {
  background-color: #0D111A;
}
.LPtaxaccountant .lpservice_contents {
  margin-top: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_contents {
    margin-top: 30px;
    max-width: 600px;
  }
}
.LPtaxaccountant .lpservice_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
  padding: 50px;
  padding-left: 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item {
    flex-direction: column;
    gap: 5px;
    border-radius: 5px;
    padding: 20px 10px;
  }
}
.LPtaxaccountant .lpservice_item::before {
  content: "";
  display: block;
  width: 5%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../../images/lp/taxaccountant/service_checkicon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item::before {
    min-width: 30px;
  }
}
.LPtaxaccountant .lpservice_item + .lpservice_item {
  margin-top: 30px;
}
.LPtaxaccountant .lpservice_item_name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #00337A;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item_name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_name {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
  }
}
.LPtaxaccountant .lpservice_item_price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item_price {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_price {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_price > p {
    width: 90%;
  }
}
.LPtaxaccountant .lpservice_item_price strong {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.08rem;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item_price strong {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_price strong {
    font-size: 2.2rem;
    line-height: 1.1;
  }
}
.LPtaxaccountant .lpservice_item_price span {
  display: block;
  font-size: 0.85rem;
  border: 1px solid #0D111A;
  line-height: 1.2;
  padding: 2px 10px;
  position: absolute;
  top: -0.7rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item_price span {
    font-size: 0.8rem;
    padding: 1px 5px;
    top: -0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_price span {
    width: 100%;
    max-width: 400px;
    position: relative;
    top: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 2px 5px;
    letter-spacing: 0.05rem;
  }
}
.LPtaxaccountant .lpservice_item_price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  position: absolute;
  bottom: -1rem;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpservice_item_price small {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpservice_item_price small {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.LPtaxaccountant .lpplan {
  background: linear-gradient(to bottom, #00337A 50%, #fff 50%);
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan {
    background: #00337A;
  }
}
.LPtaxaccountant .lpplan .lpsection_title,
.LPtaxaccountant .lpplan .lpsection_title_info {
  color: #fff;
}
.LPtaxaccountant .lpplan_contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 1099px) {
  .LPtaxaccountant .lpplan_contents {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_contents {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_contents {
    max-width: 500px;
    margin-top: 30px;
    gap: 30px;
  }
}
.LPtaxaccountant .lpplan_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 20px 25px;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
  border: 2px solid #004FA8;
  box-sizing: border-box;
}
@media screen and (max-width: 1099px) {
  .LPtaxaccountant .lpplan_item {
    padding: 35px 10px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item {
    padding: 35px 50px 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item {
    padding: 25px 15px 30px;
  }
}
.LPtaxaccountant .lpplan_item_title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #004FA8;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_title {
    font-size: 1.4rem;
  }
}
.LPtaxaccountant .lpplan_item_title span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_title span {
    font-size: 0.9rem;
  }
}
.LPtaxaccountant .lpplan_item_title_info {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_title_info {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}
.LPtaxaccountant .lpplan_item_block {
  text-align: center;
  background-color: #004FA8;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  padding: 2px 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_block {
    font-size: 0.8rem;
  }
}
.LPtaxaccountant .lpplan_item_check {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-bottom: 30px;
  min-height: 80px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item_check {
    min-height: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_check {
    gap: 10px 20px;
    margin-bottom: 30px;
  }
}
.LPtaxaccountant .lpplan_item_check_item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_check_item {
    font-size: 0.9rem;
  }
}
.LPtaxaccountant .lpplan_item_check_item::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: auto;
  aspect-ratio: 1/0.881;
  background-image: url(../../images/lp/taxaccountant/check_icon-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_check_item::before {
    width: 1.1rem;
  }
}
.LPtaxaccountant .lpplan_item_price_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.LPtaxaccountant .lpplan_item_price_item + .lpplan_item_price_item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #CAD2E0;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_price_item + .lpplan_item_price_item {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.LPtaxaccountant .lpplan_item_price_item-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_price_item-name {
    font-size: 0.9rem;
  }
}
.LPtaxaccountant .lpplan_item_price_item-name span {
  display: block;
  font-size: 10px;
  font-weight: 400;
}
.LPtaxaccountant .lpplan_item_price_item-price {
  font-weight: 700;
  text-align: right;
  line-height: 1;
  letter-spacing: -0.05rem;
}
.LPtaxaccountant .lpplan_item_price_item-price-badge {
  max-width: 60px;
  width: 20%;
  position: absolute;
  bottom: 40%;
  right: -10%;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item_price_item-price-badge {
    right: -5%;
  }
}
.LPtaxaccountant .lpplan_item_price_item-price span {
  font-size: 0.8em;
}
.LPtaxaccountant .lpplan_item_price_item-price-s {
  display: inline-block;
  font-size: 1.1rem;
  background-image: linear-gradient(to bottom, transparent 45%, #D91616 45%, #D91616 53%, transparent 53%, transparent 57%, #D91616 57%, #D91616 65%, transparent 65%);
  background-size: 100% 100%;
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: -20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_price_item-price-s {
    font-size: 1rem;
  }
}
.LPtaxaccountant .lpplan_item_price_item-price-discount, .LPtaxaccountant .lpplan_item_price_item-price-l {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpplan_item_price_item-price-discount, .LPtaxaccountant .lpplan_item_price_item-price-l {
    font-size: 1.5rem;
  }
}
.LPtaxaccountant .lpplan_item_price_item-price-discount span, .LPtaxaccountant .lpplan_item_price_item-price-l span {
  font-size: 0.6em;
}
.LPtaxaccountant .lpplan_item_price_item-price-discount {
  color: #D91616;
}
.LPtaxaccountant .lpplan_item_badge {
  position: absolute;
  top: -2px;
  right: 10px;
  text-align: center;
  font-weight: 700;
  color: #004FA8;
  background-color: #FAF619;
  letter-spacing: -0.05rem;
  padding: 10px 5px 15px;
  border-radius: 0 0 30px 30px;
  border: 2px solid #004FA8;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item_badge {
    right: 20px;
  }
}
.LPtaxaccountant .lpplan_item_badge p {
  line-height: 1.3;
  font-size: 14px;
}
.LPtaxaccountant .lpplan_item_badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}
.LPtaxaccountant .lpplan_item-start {
  border-color: #007866;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item-start {
    order: 2;
  }
}
.LPtaxaccountant .lpplan_item-start .lpplan_item_title {
  color: #007866;
}
.LPtaxaccountant .lpplan_item-start .lpplan_item_block {
  background-color: #007866;
}
.LPtaxaccountant .lpplan_item-start .lpplan_item_check_item::before {
  background-image: url(../../images/lp/taxaccountant/check_icon-green.svg);
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item-standard {
    order: 1;
  }
}
.LPtaxaccountant .lpplan_item-premium {
  border-color: #806906;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpplan_item-premium {
    order: 3;
  }
}
.LPtaxaccountant .lpplan_item-premium .lpplan_item_title {
  color: #806906;
}
.LPtaxaccountant .lpplan_item-premium .lpplan_item_block {
  background-color: #806906;
}
.LPtaxaccountant .lpplan_item-premium .lpplan_item_check_item::before {
  background-image: url(../../images/lp/taxaccountant/check_icon-gold.svg);
}
.LPtaxaccountant .lpcase {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpcase_contents {
  margin-top: 70px;
}
.LPtaxaccountant .lpcase_item + .lpcase_item {
  margin-top: 125px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item + .lpcase_item {
    margin-top: 100px;
  }
}
.LPtaxaccountant .lpcase_item + .lpcase_item .lpcase_item_top-text-title p strong {
  letter-spacing: -0.2rem;
  padding-right: 5px;
  padding-left: 7px;
}
.LPtaxaccountant .lpcase_item_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top {
    flex-direction: column;
  }
}
.LPtaxaccountant .lpcase_item_top-img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-img {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
.LPtaxaccountant .lpcase_item_top-text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text {
    flex: auto;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.LPtaxaccountant .lpcase_item_top-text-num {
  display: inline-block;
  background: #00337A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding: 2px 20px;
  padding-right: 30px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top-text-num {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-num {
    padding: 2px 15px;
    padding-right: 20px;
  }
}
.LPtaxaccountant .lpcase_item_top-text-num::after {
  content: "";
  display: block;
  width: 30px;
  height: 200%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(25deg);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-num::after {
    width: 25px;
  }
}
.LPtaxaccountant .lpcase_item_top-text-title {
  font-weight: 700;
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 4px solid #00337A;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top-text-title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-title {
    font-size: 1.1rem;
    border-width: 2px;
  }
}
.LPtaxaccountant .lpcase_item_top-text-title p {
  line-height: 1.2;
}
.LPtaxaccountant .lpcase_item_top-text-title p:last-child {
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top-text-title p:last-child {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-title p:last-child {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}
.LPtaxaccountant .lpcase_item_top-text-title p span:not(.lpcase_item_top-text-title-color) {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top-text-title p span:not(.lpcase_item_top-text-title-color) {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-title p span:not(.lpcase_item_top-text-title-color) {
    font-size: 2.4rem;
  }
}
.LPtaxaccountant .lpcase_item_top-text-title p strong {
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: -0.5rem;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_top-text-title p strong {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_top-text-title p strong {
    font-size: 3rem;
    letter-spacing: -0.3rem;
    padding-right: 5px;
  }
}
.LPtaxaccountant .lpcase_item_top-text-title-color {
  color: #00337A;
}
.LPtaxaccountant .lpcase_item_top-text-title::before {
  content: "";
  display: block;
  width: 30%;
  height: auto;
  aspect-ratio: 1/1.179;
  background-image: url(../../images/lp/taxaccountant/case_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
.LPtaxaccountant .lpcase_item_info {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_info {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info {
    margin-top: 40px;
    gap: 25px;
  }
}
.LPtaxaccountant .lpcase_item_info-text {
  width: 36%;
  background-color: #F0F4FA;
  border-radius: 10px;
  padding: 15px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_info-text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text {
    padding: 15px 15px 20px;
  }
}
.LPtaxaccountant .lpcase_item_info-text-title {
  color: #00337A;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-left: 10px;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text-title {
    font-size: 1rem;
  }
}
.LPtaxaccountant .lpcase_item_info-text-title::after {
  content: "";
  display: block;
  width: 4px;
  height: 80%;
  background-color: #00337A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text-title::after {
    width: 3px;
  }
}
.LPtaxaccountant .lpcase_item_info-text p + .lpcase_item_info-text-title {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text p + .lpcase_item_info-text-title {
    margin-top: 30px;
  }
}
.LPtaxaccountant .lpcase_item_info-text-list {
  margin-top: 20px;
}
.LPtaxaccountant .lpcase_item_info-text-list li {
  display: flex;
  align-items: center;
  gap: 1px;
  font-weight: 600;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text-list li {
    font-size: 1rem;
  }
}
.LPtaxaccountant .lpcase_item_info-text-list li + li {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-text-list li + li {
    margin-top: 15px;
  }
}
.LPtaxaccountant .lpcase_item_info-text-list li::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: auto;
  aspect-ratio: 1/0.857;
  background-image: url(../../images/lp/taxaccountant/check_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.LPtaxaccountant .lpcase_item_info-graph {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #CAD2E0;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_info-graph {
    flex: auto;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_info-graph {
    border-radius: 5px;
  }
}
.LPtaxaccountant .lpcase_item_voice {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 70px;
  background-color: #00337A;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_voice {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_voice {
    margin-top: 40px;
    padding: 20px 15px;
    flex-direction: column;
    gap: 20px;
  }
}
.LPtaxaccountant .lpcase_item_voice-img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_voice-img {
    width: 40%;
    max-width: 200px;
  }
}
.LPtaxaccountant .lpcase_item_voice-text {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_voice-text {
    padding: 10px 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_voice-text {
    padding: 10px 10px 20px;
  }
}
.LPtaxaccountant .lpcase_item_voice-text-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00337A;
  padding-left: 10px;
  position: relative;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpcase_item_voice-text-title {
    margin-bottom: 5px;
  }
}
.LPtaxaccountant .lpcase_item_voice-text-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 90%;
  background-color: #00337A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.LPtaxaccountant .lpcase_item_voice-text-title + p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpcase_item_voice-text-title + p {
    font-size: 0.9rem;
  }
}
.LPtaxaccountant .lpflow {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpflow {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpflow {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpflow_contents {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpflow_contents {
    gap: 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpflow_contents {
    flex-direction: column;
    gap: 50px;
  }
}
.LPtaxaccountant .lpflow_item {
  width: calc((100% - 160px) / 5);
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpflow_item {
    min-width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpflow_item {
    width: 100%;
    min-width: auto;
  }
}
.LPtaxaccountant .lpflow_item_img {
  display: block;
  max-width: 203px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpflow_item_img {
    width: 50%;
  }
}
.LPtaxaccountant .lpflow_item_name {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 15px 0 10px;
}
.LPtaxaccountant .lpflow_item_info {
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpflow_item_info {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
}
.LPtaxaccountant .lpqa {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpqa {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpqa {
    padding: 40px 0;
  }
}
.LPtaxaccountant .lpqa_list {
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list {
    margin-top: 40px;
  }
}
.LPtaxaccountant .lpqa_list_item {
  padding: 40px 35px;
  border-bottom: 1px solid #CAD2E0;
}
@media screen and (max-width: 1024px) {
  .LPtaxaccountant .lpqa_list_item {
    padding: 35px 20px;
  }
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list_item {
    padding: 28px 5px;
  }
}
.LPtaxaccountant .lpqa_list_item:first-child {
  padding-top: 0;
}
.LPtaxaccountant .lpqa_list_item > * + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list_item > * + * {
    margin-top: 15px;
  }
}
.LPtaxaccountant .lpqa_list_item-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.LPtaxaccountant .lpqa_list_item_q {
  color: #00337A;
}
.LPtaxaccountant .lpqa_list_item_q .lpqa_list_item_text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list_item_q .lpqa_list_item_text {
    font-size: 1rem;
  }
}
.LPtaxaccountant .lpqa_list_item_a {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list_item_a {
    font-size: 0.95rem;
  }
}
.LPtaxaccountant .lpqa_list_item_a .lpqa_list_item_text-block {
  background-color: #D91616;
}
.LPtaxaccountant .lpqa_list_item_text {
  flex: 1;
}
.LPtaxaccountant .lpqa_list_item_text-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #00337A;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .LPtaxaccountant .lpqa_list_item_text-block {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    margin-top: 2px;
  }
}
.LPtaxaccountant .lpqa_list_item_text-block span {
  margin-top: -2px;
}