:root {
  --color-black: #282828;
  --color-white: #FFFFFF;
  --color-orange: #FF7500;
  --color-yellow: #F9AA00;
  --color-green: #00BE1E;
  --color-purple: #9600D2;
  --color-blue: #0019EB;
  --color-emerald: #008200;
  --color-s9: #3F4042;
  --color-s8: #57595C;
  --color-s7: #6F7175;
  --color-s6: #888A8F;
  --color-s5: #A0A3A8;
  --color-s4: #B8BBC2;
  --color-s3: #D0D4DB;
  --color-s2: #E9EDF5;
  --color-s1: #F2F7FF;
  --color-s0: #F7FAFC;
  --color-attention: #FF0046;
  --color-system: #245EF2;
  --color-bluegray: #56698F;
}

.ServiceHeader {
  padding-right: 20px;
  padding-left: 20px;
  border-bottom: 1px solid var(--color-s2);
}
@media screen and (max-width: 768px) {
  .ServiceHeader {
    display: none;
  }
}
.ServiceHeader_inner {
  width: 100%;
  max-width: 1360px;
  margin: auto;
  display: flex;
  align-items: center;
}
.ServiceHeader_imgs {
  display: flex;
  gap: 8px;
}
.ServiceHeader_imgs img {
  max-width: 40px;
}
.ServiceHeader_list {
  width: auto;
  margin: auto;
  display: flex;
  transform: translateX(-44px);
}
.ServiceHeader_list li {
  height: 56px;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.ServiceHeader_list li span {
  font-size: 14px;
  font-weight: 700;
  transition: all 0.28s ease;
}
.ServiceHeader_list li span.texts {
  position: relative;
}
.ServiceHeader_list li span.text-1 {
  position: relative;
  top: 0;
  transition-delay: 0.1s;
}
.ServiceHeader_list li span.text-2 {
  opacity: 0;
  position: absolute;
  top: 15px;
  left: 0;
}
.ServiceHeader_list li:hover span.text-1 {
  opacity: 0;
  top: -14px;
  transition-delay: 0s;
}
.ServiceHeader_list li:hover span.text-2 {
  opacity: 1;
  top: 0;
  transition-delay: 0.1s;
}

.ServiceHero {
  width: 100%;
  min-height: 520px;
  padding: 160px 20px 40px 40px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ServiceHero {
    padding-top: 94px;
    padding-bottom: 80px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero {
    padding: 24px 20px 40px;
  }
}
.ServiceHero_buttons {
  display: flex;
  gap: 16px;
}
.ServiceHero_inner {
  width: inherit;
  max-width: 1360px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 36px;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_inner {
    display: block;
    max-width: 720px;
  }
}
.ServiceHero_l {
  width: 55%;
  max-width: 710px;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_l {
    width: 100%;
  }
}
.ServiceHero_lt {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_lt {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_lt {
    display: block;
  }
}
.ServiceHero_name {
  flex: 1;
  max-width: 164px;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_name {
    flex: none;
    max-width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_name {
    max-width: 64px;
    margin: auto;
  }
}
.ServiceHero_texts {
  flex: 3;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_texts {
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_texts {
    text-align: center;
  }
}
.ServiceHero_explain, .ServiceHero_head {
  font-size: 38px;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_explain, .ServiceHero_head {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_explain, .ServiceHero_head {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_explain {
    margin-top: 16px;
  }
}
.ServiceHero_button {
  width: 100%;
  max-width: 176px;
  margin-top: 56px;
  padding: 16px 8px;
  border: 2px solid var(--color-black);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--page-theme-color, currentColor);
  border-color: var(--page-theme-color, currentColor);
}
@media screen and (max-width: 1024px) {
  .ServiceHero_button.-is-not-tab {
    display: none;
  }
}
.ServiceHero_button.-is-tab {
  display: none;
  margin: 32px auto 0;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_button.-is-tab {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_button.-is-tab {
    margin-top: 16px;
  }
}
.ServiceHero_button span {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  transition: all 0.28s ease;
}
.ServiceHero_button span.texts {
  position: relative;
}
.ServiceHero_button span.text-1 {
  position: relative;
  top: 0;
  transition-delay: 0.1s;
}
.ServiceHero_button span.text-2 {
  opacity: 0;
  position: absolute;
  top: 15px;
  left: 0;
}
.ServiceHero_button path {
  transition: stroke 0.28s ease;
}
.ServiceHero_button:hover {
  background-color: var(--color-white);
}
.ServiceHero_button:hover span {
  color: var(--page-theme-color, var(--color-black));
}
.ServiceHero_button:hover span.text-1 {
  opacity: 0;
  top: -14px;
  transition-delay: 0s;
}
.ServiceHero_button:hover span.text-2 {
  opacity: 1;
  top: 0;
  transition-delay: 0.1s;
}
.ServiceHero_button:hover path {
  stroke: var(--color-black);
}
.ServiceHero_thumbnail {
  width: 1440px;
  height: 100%;
  min-width: 1440px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_thumbnail {
    width: 100%;
    min-width: initial;
    height: auto;
    max-height: 440px;
    margin: 72px auto 0;
    justify-content: center;
    position: relative;
    bottom: initial;
    left: initial;
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .ServiceHero_thumbnail {
    max-width: 340px;
    max-height: none;
    margin: 16px auto 0;
  }
}
.ServiceHero_thumbnail picture {
  justify-content: flex-end;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .ServiceHero_thumbnail picture {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .ServiceHero_thumbnail picture img {
    width: auto;
    max-height: 440px;
  }
}

.DownloadDocumentBottomBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: color-mix(in srgb, var(--color-black) 75%, transparent);
  display: flex;
  justify-content: center;
  align-items: center;
}
.DownloadDocumentBottomBar_button {
  display: flex;
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 46px;
  border-radius: 2px;
  background-color: var(--page-theme-color, currentColor);
  cursor: pointer;
  transition: 0.24s ease;
  width: 100%;
  max-width: 240px;
  border: 2px solid var(--page-theme-color, currentColor);
}
.DownloadDocumentBottomBar_button span {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
  transition: all 0.28s ease;
}
.DownloadDocumentBottomBar_button span.texts {
  position: relative;
}
.DownloadDocumentBottomBar_button span.text-1 {
  position: relative;
  top: 0;
  transition-delay: 0.1s;
}
.DownloadDocumentBottomBar_button span.text-2 {
  opacity: 0;
  position: absolute;
  top: 15px;
  left: 0;
}
.DownloadDocumentBottomBar_button path {
  transition: stroke 0.28s ease;
}
.DownloadDocumentBottomBar_button:hover {
  background-color: var(--color-white);
}
.DownloadDocumentBottomBar_button:hover span {
  color: var(--page-theme-color, var(--color-black));
}
.DownloadDocumentBottomBar_button:hover span.text-1 {
  opacity: 0;
  top: -14px;
  transition-delay: 0s;
}
.DownloadDocumentBottomBar_button:hover span.text-2 {
  opacity: 1;
  top: 0;
  transition-delay: 0.1s;
}
.DownloadDocumentBottomBar_button:hover path {
  stroke: var(--color-black);
}

.-mo-new-custom {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  overflow: hidden;
}

.MoHero_inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.MoHero_inner img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.MoHero_content {
  width: 58%;
  min-width: 600px;
  padding-bottom: 0;
  z-index: 2;
  position: relative;
  margin-bottom: 3px;
}

.MoHero_header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.MoHero_logo_img img {
  width: 164px;
  height: auto;
}

.MoHero_texts {
  font-weight: 700;
  line-height: 1.4;
  color: #ff7500;
}

.MoHero_catch {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
}

.MoHero_title {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
}

.MoHero_btns {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.MoHero_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-sizing: border-box;
}

.MoHero_btn.-black,
.MoHero_btn.-black span {
  background-color: #333;
  color: #fff;
}

.MoHero_btn.-orange {
  background-color: #fff;
  border: 2px solid #ff7500;
  color: #ff7500;
}

.MoHero_btn.-orange span {
  color: #ff7500;
  font-size: 14px;
}

.MoHero_btn svg {
  margin-left: 8px;
}

.MoHero_banner_wrapper {
  position: relative;
  width: 100%;
}

.MoHero_banner_pc {
  display: block;
}

.MoHero_banner_sp {
  display: none;
}

.MoHero_arrow {
  text-align: center;
  color: #ff7500;
  font-size: 24px;
  margin-bottom: -5px;
  margin-left: 40px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin-left: 0;
}

.MoHero_banner {
  background-color: #fff9f3;
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.MoHero_banner_bg {
  flex: 1;
}

.MoHero_banner_items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
  width: 180px;
  flex-shrink: 0;
}

.MoHero_banner_subimg img {
  max-width: 100%;
  margin-bottom: 8px;
}

.MoHero_mini_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: linear-gradient(180deg, #fba75c 0, #ff7500 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #ff7500;
}

.MoHero_mini_btn span {
  color: #fff;
}

.MoHero_mini_btn svg {
  margin-left: 5px;
}

.MoHero_note_link {
  font-size: 10px;
  text-decoration: underline;
  color: #666;
}

.MoHero_visual {
  width: 60%;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  margin-bottom: 0;
}

.MoHero_visual img,
.MoHero_visual video {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .MoHero_inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
  }
  .MoHero_content {
    display: contents;
  }
  .MoHero_header {
    order: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .MoHero_texts {
    text-align: left;
  }
  .MoHero_visual {
    justify-content: center;
    align-items: center;
    order: 2;
    flex-shrink: 1;
    width: 50%;
    max-width: 500px;
    margin-bottom: 40px;
  }
  .MoHero_btns {
    order: 3;
    justify-content: center;
    width: 100%;
  }
  .MoHero_banner_wrapper {
    order: 4;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .MoHero_btn.-black,
  .MoHero_btn.-black span {
    background-color: #333;
    color: #fff;
    font-size: 14px;
  }
  .MoHero_btn.-orange {
    background-color: #fff;
    border: 2px solid #ff7500;
    color: #ff7500;
    font-size: 14px;
  }
  .-mo-new-custom {
    padding-top: 30px;
  }
  .MoHero_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }
  .MoHero_header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
  }
  .MoHero_logo_img img {
    width: 100px;
  }
  .MoHero_texts {
    text-align: center;
  }
  .MoHero_catch {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .MoHero_title {
    font-size: 24px;
  }
  .MoHero_visual {
    width: 70% !important;
    max-width: 320px !important;
    flex-shrink: 1;
    margin: 0 auto 30px;
    justify-content: center;
    align-items: center;
  }
  .MoHero_btns {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 0 5px;
    margin-bottom: 30px;
  }
  .MoHero_btn {
    width: 50%;
    height: 54px;
    font-size: 13px;
    padding: 0 5px;
  }
  .MoHero_banner_wrapper {
    width: 100%;
  }
  .MoHero_banner_pc {
    display: none;
  }
  .MoHero_banner_sp {
    display: block;
  }
  .MoHero_banner_sp {
    text-align: center;
    background-color: #fff9f3;
    padding: 25px 15px;
  }
  .MoHero_banner_sp_img {
    margin: 0;
  }
  .MoHero_banner_sp_img img {
    width: 100%;
    max-width: 550px;
    height: auto;
  }
  .MoHero_mini_btn.-sp {
    width: 100%;
    max-width: 180px;
    height: 54px;
    font-size: 16px;
    margin: -35px auto 15px;
  }
  .MoHero_note_link_sp {
    display: block;
    font-size: 12px;
    color: #666;
    text-decoration: underline;
    margin-bottom: 25px;
  }
  .MoHero_note_text_sp {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    text-align: left;
    display: inline-block;
    max-width: 400px;
  }
}
/* --- FAQ Anchor Scroll Fix --- */
#faq {
  scroll-margin-top: 180px;
}

/* --- POS Page Custom Styles --- */
/* resetFv - Full-width centering adjustment */
.resetFv {
  background-color: #FFF;
  margin-top: -100px;
  padding: 40px 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.resetFv_inner {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.resetFv_bottom_main {
  margin-top: 30px;
  display: flex;
}

.resetFv_bottom_item {
  display: block;
  opacity: 1;
  transition: opacity 0.2s;
}

.resetFv_bottom_item2 {
  display: absolute;
  position: relative;
  margin-top: -60px;
  left: 60px;
}

.resetFv_ttl img {
  width: 592px;
}

.resetFv_pc {
  display: block;
}

.resetFv_sp {
  display: none;
}

.resetFv_sp_txt {
  font-size: 10px;
  color: #666666;
  text-align: center;
  margin: 6px 12px;
}

.resetFv_sp_txt a {
  color: #666666;
  text-decoration: underline;
}

.resetFv_item {
  position: relative;
}

.resetFv_sp_finish {
  display: flex;
  justify-content: center;
}

.resetFv_btnOther {
  margin-right: 16px;
}

.resetFv_btnOther img {
  width: 100px;
}

.resetFv_btn {
  background: #FBA75C;
  background: linear-gradient(181deg, rgb(251, 167, 92) 0%, rgb(255, 132, 27) 37%, rgb(255, 117, 0) 68%, rgb(233, 115, 15) 100%);
  width: 195px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: 2px solid #FF7500;
  border-radius: 3.25px;
}

.ServiceHero_btns > a:hover {
  opacity: 0.8;
}

.resetFv_bottom_item .resetFv_btn > a:hover {
  opacity: 0.8;
}

.resetFv_btn:first-child {
  margin-right: 20px;
}

.ServiceHero_btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
}

.ServiceHero_btns .ServiceHero_contact {
  width: 214px;
  height: 58px;
  border-radius: 4px;
  background-color: #282828;
  border: 2px solid #282828;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-right: 16px;
}

.ServiceHero_btns .ServiceHero_contact span {
  color: white;
}

.ServiceHero_btns .ServiceHero_contact span:first-child {
  margin-right: 5px;
}

.ServiceHero_btns .ServiceHero_download {
  width: 214px;
  height: 58px;
  border-radius: 4px;
  background-color: #FFF;
  border: 2px solid #FF7500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.ServiceHero_btns .ServiceHero_download span {
  color: #FF7500;
}

.ServiceHero_btns .ServiceHero_download span:first-child {
  margin-right: 5px;
}

.resetFv_btn.btn1 {
  margin-right: 16px;
  background-color: #282828;
}

.resetFv_btn.btn1 span:first-child {
  color: white;
  margin-right: 18px;
  background-color: #282828;
}

.resetFv_btn.btn2 {
  color: #FF7500;
  background: white;
}

.resetFv_btn.btn2 span:first-child {
  margin-right: 18px;
  color: #FF7500;
}

.resetFv_btn.btn3 {
  width: 196px;
  height: 62px;
  margin-bottom: 10px;
}

.resetFv_btn.btn3 span:first-child {
  color: white;
  margin-right: 18px;
}

.resetFv_btn_other {
  font-size: 9px;
  font-weight: 500;
  color: #656565;
  text-decoration: underline;
  margin-top: 0px;
  padding-bottom: 10px;
}

.resetFv_btn_other a {
  font-size: 9px;
  font-weight: 500;
  color: #656565;
  text-decoration: underline;
  margin-top: 10px;
}

.resetFv_left {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.resetFv_right {
  position: absolute;
  right: 31px;
  top: auto;
  bottom: 0;
  z-index: 3;
}

.fvr {
  margin-left: 110px;
  margin-top: -30px;
}

.resetFv_right_txt {
  font-size: 9px;
  color: #666666;
}

.resetFv_right_txt a {
  text-decoration: underline;
  color: #666666;
  font-size: 9px;
}

.resetFv_abs {
  position: absolute;
  right: -110px;
  bottom: -20px;
}

.resetFv_finish {
  margin: 40px 0 20px;
}

.resetFv_mainImg img {
  width: 400px;
}

.resetFv_bottom {
  background-color: #FFF9F3;
  padding: 0px 40px 0px 10px;
  border: 5px solid white;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.resetFv_bottom2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resetFv_bottom_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 5px;
}

.resetFv_under_txt {
  margin-top: 9px;
  line-height: 1.25;
  color: #666666;
  font-size: 9px;
}

.resetFv_finish_img {
  margin-bottom: 15px;
}

/* Tablet breakpoint */
@media (max-width: 1020px) {
  .resetFv {
    margin-top: 0px;
  }
  .resetFv_inner {
    margin-left: 30px;
    margin-right: 30px;
  }
  .resetFv_left {
    align-items: center;
  }
  .resetFv_right {
    position: relative;
    top: unset;
    right: unset;
    margin-top: 30px;
  }
}
/* Mobile breakpoint */
@media (max-width: 768px) {
  .resetFv {
    margin-top: 0px;
  }
  .ServiceHero_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .ServiceHero_btns .ServiceHero_contact,
  .ServiceHero_btns .ServiceHero_download {
    width: 50% !important;
    max-width: none !important;
    height: 54px !important;
    font-size: 12px !important;
    padding: 0 0px !important;
    margin-right: 0 !important;
  }
  .resetFv_inner {
    margin-left: 0px;
    margin-right: 0px;
  }
  .resetFv_pc {
    display: none;
  }
  .resetFv_under_txt {
    display: none;
  }
  .resetFv_sp {
    background-color: #FFF;
    display: block;
  }
  .resetFv_sp .resetFv_btns {
    flex-direction: row;
    margin-top: 10px;
    justify-content: center;
    margin-bottom: unset;
  }
  .resetFv_sp .resetFv_btn:first-child {
    margin-right: 10px;
  }
  .resetFv_sp .resetFv_btn.btn1 {
    width: 50%;
    font-size: 12px;
    height: 46px;
  }
  .resetFv_sp .resetFv_btn.btn2 {
    width: 50%;
    margin-top: unset;
    font-size: 12px;
    height: 46px;
  }
  .resetFv_sp .resetFv_btn.btn2 span:first-child {
    margin-right: 10px;
  }
  .resetFv_sp_bottom {
    margin-top: 25px;
    background-color: #FFF9F3;
    border: 4px solid white;
    padding: 0 10px 10px 10px;
  }
  .resetFv_btn_other_sp {
    color: #666666;
    font-size: 10px;
    text-decoration: underline;
    margin-left: 30px;
  }
  .resetFv_btn_other_sp a {
    font-size: 10px;
    color: #666666;
    text-decoration: underline;
    margin-left: 30px;
  }
  .resetFv_sp_bottom_btn {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }
  .resetFv_sp_bottom_txt {
    color: #666666;
    font-size: 14px;
    margin-top: 15px;
  }
  .resetFv_sp_txt a {
    font-size: 10px;
  }
  .resetFv_sp_bottom_img {
    margin-top: 0px;
  }
  .resetFv_sp_bottom_other {
    margin-right: 10px;
  }
  .resetFv_sp_bottom_other img {
    width: 157px;
  }
  .resetFv_sp_bottom .resetFv_btn.btn3 {
    margin-top: -40px;
    font-size: 13px;
    height: 46px;
    max-width: 160px;
  }
  .resetFv_sp_other {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 14px;
    text-decoration: underline;
  }
  .resetFv_sp_other_link {
    color: #656565;
    font-weight: 500;
  }
}
/* --- PosHero New Custom Styles (Logo + Text) --- */
.PosHero_header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0px;
}

.PosHero_logo_img img {
  width: 164px;
  height: auto;
}

.PosHero_texts {
  font-weight: 700;
  line-height: 1.4;
  color: #ff7500;
  /* Dinii Orange */
  text-align: left;
}

.PosHero_catch {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
  color: #ff7500;
}

.PosHero_title {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
  color: #ff7500;
}

/* SP Styles for PosHero */
@media screen and (max-width: 768px) {
  .PosHero_header.-sp {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
  }
  .PosHero_logo_img img {
    width: 100px;
  }
  .PosHero_texts {
    text-align: center;
  }
  .PosHero_catch {
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .PosHero_title {
    font-size: 24px;
    line-height: 1.1;
  }
  .PosHero_visual_sp {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .PosHero_visual_sp_crop {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    overflow: hidden;
    /* Create a frame */
  }
  .PosHero_visual_sp_crop img {
    width: 100%;
    height: auto;
    /* Crop removed as image is updated */
    margin-top: 0;
    display: block;
  }
}
/* --- FAQ Anchor Scroll Fix --- */
#faq {
  scroll-margin-top: 180px;
}