@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("font/NotoSansJP-Regular.woff2") format("woff2"), url("font/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("font/NotoSansJP-Medium.woff2") format("woff2"), url("font/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("font/NotoSansJP-Bold.woff2") format("woff2"), url("font/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("font/Outfit-Regular.woff2") format("woff2"), url("font/Outfit-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("font/Outfit-Medium.woff2") format("woff2"), url("font/Outfit-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("font/Outfit-Bold.woff2") format("woff2"), url("font/Outfit-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  /* カラーパターン変数 */
  --lsg-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --lsg-font-family-secondary: "Montserrat", sans-serif;
  --lsg-body-bg: #fff;
  --lsg-sidebar-bg: #fff;
  --lsg-sidebar-text: #363636;
  --lsg-sidebar-border: #666;
  --lsg-button-bg: #555;
  --lsg-button-hover: #666;
  --lsg-content-bg: #F2F8FF;
  --lsg-section-bg: #fff;
  --lsg-section-border: #ddd;
  --lsg-title-color: #192740;
  --lsg-text-color: #363636;
  --lsg-highlight: #007bff;
  --lsg-primary-color: #1AA4FE;
  --lsg-secondary-color: #192740;
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
  margin-top: 1rem;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  font-family: sans-serif;
  overflow: hidden;
  height: 100vh;
  background-color: var(--lsg-body-bg);
  color: var(--lsg-text-color);
  line-height: 1.65;
  font-family: var(--lsg-font-family);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.lagwan-disabled {
  pointer-events: none;
  opacity: 0.6;
  text-decoration: none;
}

.tooltip-image {
  display: block;
  margin-top: 0.8rem;
}
.tooltip-image-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.2rem 1.2rem 0.3rem;
  border-radius: 4px;
  line-height: 1.5;
  font-size: 1.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #efefef;
}
.tooltip-image-button::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--lsg-secondary-color);
  border-right: 1px solid var(--lsg-secondary-color);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  margin-top: -2px;
}
.tooltip-image-content {
  display: block;
  width: 100%;
  height: auto;
  display: none;
}
.tooltip-image-content img {
  width: 100%;
  height: auto;
}
.tooltip-image.is-open .tooltip-image-button {
  background-color: #ddd;
}
.tooltip-image.is-open .tooltip-image-button::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 1px;
}
.tooltip-image.is-open .tooltip-image-content {
  display: block;
  margin-top: 10px;
}

.button {
  border: none;
  background-color: var(--lsg-primary-color);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.button:hover {
  background-color: var(--lsg-secondary-color);
}

h2, h3, h4, h5, h6 {
  color: var(--lsg-title-color);
  font-weight: bold;
  letter-spacing: 0.05em;
}
h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  margin-top: 3.2rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  margin-top: 2.4rem;
}

h5 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

small {
  font-size: 1.2rem;
}

ol,
ul {
  margin: 1.2rem 0;
  padding-left: 0;
}
ol:last-child,
ul:last-child {
  margin-bottom: 0;
}
ol:first-child,
ul:first-child {
  margin-top: 0;
}
ol > li,
ul > li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.8rem;
}
ol > li:last-child,
ul > li:last-child {
  margin-bottom: 0;
}
ol > li .box,
ul > li .box {
  margin-top: 1.6rem;
}
ol > li .box:last-child,
ul > li .box:last-child {
  margin-bottom: 2.4rem;
}
ol > li .card,
ul > li .card {
  margin-top: 0;
}
ol > li:last-child .card,
ul > li:last-child .card {
  margin-bottom: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  counter-reset: circle-counter;
}

ol {
  counter-reset: circle-counter;
  list-style: none;
  padding-left: 0;
}
ol > li {
  counter-increment: circle-counter;
}
ol > li::before {
  content: counter(circle-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--lsg-secondary-color);
  font-family: var(--lsg-font-family-secondary);
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}

ul {
  list-style: none;
}
ul > li::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.8em;
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--lsg-secondary-color);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

hr {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227%22%20height%3D%221%22%20viewBox%3D%220%200%207%201%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_4%22%20data-name%3D%22%E7%B7%9A%204%22%20x2%3D%227%22%20transform%3D%22translate(0%200.5)%22%20fill%3D%22none%22%20stroke%3D%22%23bcbcbc%22%20stroke-width%3D%221%22%20stroke-dasharray%3D%223%204%22%2F%3E%3C%2Fsvg%3E");
  height: 1px;
  border: none;
  margin: 2.4rem 0;
  background-repeat: repeat-x;
}

a {
  text-decoration: underline;
  color: var(--lsg-text-color);
}

p {
  margin-bottom: 1.2rem;
}
p:last-child {
  margin-bottom: 0 !important;
}

strong {
  font-weight: 700;
  color: var(--lsg-secondary-color);
}

table {
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  margin: 2.4rem 0;
  -webkit-box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}
table:first-child {
  margin-top: 0;
}
table:last-child {
  margin-bottom: 0;
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-size: 1.2rem;
}
table th {
  background-color: #F8F9FA;
  font-weight: 500;
  text-align: left;
  width: 150px;
}

.text-xsmall {
  font-size: 1rem;
}

.text-small {
  font-size: 1.2rem;
}

.text-large {
  font-size: 1.6rem;
}

.text-asterisk {
  position: relative;
  margin: 0;
  padding-left: 1.4em;
}
.text-asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
}
.text-asterisk + .text-asterisk {
  margin-top: 0;
}

.color-accent {
  color: #cc2200;
}
.color-accent a {
  color: inherit;
  font-weight: 600;
}

.color-primary {
  color: var(--lsg-primary-color);
}

.color-secondary {
  color: var(--lsg-secondary-color);
}

.color-success {
  color: #28A745;
}

.color-error {
  color: #DC3545;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: bold;
}

.icon {
  height: auto;
  background-size: contain;
  background-position: center 0.1em;
  background-repeat: no-repeat;
  margin: 0 0.15rem;
  width: 1.8rem;
  vertical-align: middle;
}
.icon::before {
  content: "　";
}
.icon-recognition-success {
  background-image: url(/wp-content/themes/voxtone/img/lsg/icon_recognition_success.png);
}
.icon-recognition-load {
  background-image: url(/wp-content/themes/voxtone/img/lsg/icon_recognition_load.png);
}
.icon-recognition-process {
  background-image: url(/wp-content/themes/voxtone/img/lsg/icon_recognition_process.png);
}
.icon-device-update {
  background-image: url(/wp-content/themes/voxtone/img/lsg/icon_device_update.png);
}
.icon-sound-output {
  background-image: url(/wp-content/themes/voxtone/img/lsg/icon_sound_output.png);
}

.link {
  color: var(--lsg-primary-color);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.link-underline {
  text-decoration: underline;
}
.link-underline:hover {
  text-decoration: none;
}
.link-download::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.4rem;
  margin-left: 0.4rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M32.0067%2048C31.2834%2048%2030.6313%2047.6889%2030.1729%2047.1911L14.7362%2031.4942C13.755%2030.4965%2013.7545%2028.8783%2014.7351%2027.8799C15.7156%2026.8819%2017.3059%2026.8812%2018.2871%2027.8789L29.4951%2039.2757V4.55556C29.4951%203.14417%2030.6193%202%2032.0067%202C33.3938%202%2034.5183%203.14417%2034.5183%204.55556V39.2614L45.7132%2027.8789C46.6944%2026.8812%2048.2844%2026.8819%2049.265%2027.8803C50.2455%2028.8786%2050.2448%2030.4965%2049.264%2031.4942L33.943%2047.0718C33.4825%2047.6388%2032.786%2048%2032.0067%2048Z%22%20fill%3D%22%23192740%22%2F%3E%3Cpath%20d%3D%22M7.14262%2045.5909C7.14262%2044.16%205.99139%2043%204.57131%2043C3.15119%2043%202%2044.16%202%2045.5909V54.2273C2%2058.5199%205.45361%2062%209.71392%2062H54.2861C58.5466%2062%2062%2058.5199%2062%2054.2273V45.5909C62%2044.16%2060.8491%2043%2059.4287%2043C58.0086%2043%2056.8574%2044.16%2056.8574%2045.5909V54.2273C56.8574%2055.6581%2055.7065%2056.8182%2054.2861%2056.8182H9.71392C8.29381%2056.8182%207.14262%2055.6581%207.14262%2054.2273V45.5909Z%22%20fill%3D%22%23192740%22%2F%3E%3C%2Fsvg%3E");
}

.box {
  padding: 0.8rem 0.8rem;
  border-radius: 4px;
  background-color: #fff;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.box:first-child {
  margin-top: 0 !important;
}
.box:last-child {
  margin-bottom: 0 !important;
}
.box p {
  margin: 0.4rem 0;
}
.box p:first-child {
  margin-top: 0;
}
.box p:last-child {
  margin-bottom: 0;
}
.box-note {
  background-color: #D2E0F1;
  font-size: 1.1rem;
}
.box-point {
  border: 1px dotted #F2D036;
  padding-left: 2.8rem !important;
  font-size: 1.1rem;
}
.box-point::before {
  content: "";
  display: block;
  background-image: url(img/lsg/icon-point.svg);
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0.8rem;
  left: 0.5rem;
}
.box-warning {
  background-color: #FFE9B7;
  border: 1px solid #E59233;
  color: #A76400;
  font-size: 1.1rem;
  padding: 0.4rem 1.2rem;
  font-weight: 500;
}
.box-warning strong {
  color: inherit;
  text-align: center;
}
.box-recommend {
  background-color: #D2F1D2;
  border: 1px solid #28A745;
  color: #155724;
  font-weight: 500;
}
.card {
  border: 1px solid #77838B;
  border-radius: 6px;
  padding: 1rem;
  position: relative;
  overflow: visible !important;
}
.card-recommend {
  position: absolute;
  right: 1rem;
  top: -1.4rem;
  background-color: var(--lsg-primary-color);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.1rem 1rem;
  border-radius: 5px;
}
.card-header {
  border-bottom: 1px solid #77838B;
  padding-top: 0.4rem;
  padding-bottom: 1rem;
}
.card-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--lsg-secondary-color);
  line-height: 1.2;
  margin: 0;
}
.card-text {
  margin-top: 0.4rem;
  font-size: 1.2rem;
}
.card-content {
  margin-top: 1rem;
}
.card-action {
  margin-top: 1rem;
}

.note {
  color: #DC4679;
  font-size: 1.2rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.button-copy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--lsg-secondary-color);
  color: var(--lsg-secondary-color);
  border-radius: 4px;
  font-size: 1.2rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button-copy::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2024%2010.5%22%3E%20%3Cg%20id%3D%22urlcopy%22%20transform%3D%22translate(-3.75%20-10.75)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_289%22%20data-name%3D%22%E3%83%91%E3%82%B9%20289%22%20d%3D%22M11%2C16h9%22%20fill%3D%22none%22%20stroke%3D%22%23343434%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_290%22%20data-name%3D%22%E3%83%91%E3%82%B9%20290%22%20d%3D%22M13.5%2C11.5h-4c-2%2C0-5%2C1.3-5%2C4.5%2C0%2C4%2C3.5%2C4.5%2C5%2C4.5h4%22%20fill%3D%22none%22%20stroke%3D%22%23343434%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_291%22%20data-name%3D%22%E3%83%91%E3%82%B9%20291%22%20d%3D%22M18%2C20.5h4c2%2C0%2C5-1.3%2C5-4.5%2C0-4-3.5-4.5-5-4.5H18%22%20fill%3D%22none%22%20stroke%3D%22%23343434%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  display: block;
}
.button-copy:hover {
  background-color: #EFF2F3;
}
.button-copy.is-copy {
  border-color: var(--lsg-primary-color);
  color: var(--lsg-primary-color);
  background-color: #CCEFFF;
}
.button-copy.is-copy::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2024%2010.5%22%3E%20%3Cg%20id%3D%22urlcopy%22%20transform%3D%22translate(-3.75%20-10.75)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_289%22%20data-name%3D%22%E3%83%91%E3%82%B9%20289%22%20d%3D%22M11%2C16h9%22%20fill%3D%22none%22%20stroke%3D%22%231aa4fe%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_290%22%20data-name%3D%22%E3%83%91%E3%82%B9%20290%22%20d%3D%22M13.5%2C11.5h-4c-2%2C0-5%2C1.3-5%2C4.5%2C0%2C4%2C3.5%2C4.5%2C5%2C4.5h4%22%20fill%3D%22none%22%20stroke%3D%22%231aa4fe%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_291%22%20data-name%3D%22%E3%83%91%E3%82%B9%20291%22%20d%3D%22M18%2C20.5h4c2%2C0%2C5-1.3%2C5-4.5%2C0-4-3.5-4.5-5-4.5H18%22%20fill%3D%22none%22%20stroke%3D%22%231aa4fe%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}

.lsg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: var(--lsg-content-bg);
  overflow: hidden;
  padding: 2rem;
}
.lsg-sidebar {
  background-color: var(--lsg-sidebar-bg);
  color: var(--lsg-sidebar-text);
  padding: 2rem;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: 300px;
  -webkit-transition: 0.6s opacity;
  transition: 0.6s opacity;
  z-index: 1001;
  visibility: hidden;
  -webkit-box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.sidebar-open .lsg-sidebar {
  visibility: visible;
  opacity: 1;
}
.lsg-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.lsg-content.has-started {
  display: block;
}

.lsg-menu {
  list-style: none;
  width: 100%;
}
.lsg-menu li {
  padding: 0;
  margin: 0;
}
.lsg-menu li::before {
  content: none;
}

.lsg-sidebar.has-started .lsg-menu {
  display: block;
}

.lsg-menu-item {
  margin-bottom: 0.4rem;
}
.lsg-menu-item.is-active .lsg-submenu {
  display: block;
}

.lsg-button {
  width: 100%;
  border: none;
  color: var(--lsg-sidebar-text);
  text-align: left;
  cursor: pointer;
  font-size: 1.3rem;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.lsg-button:hover, .lsg-button.is-active {
  color: var(--lsg-primary-color);
}
.lsg-button.not-target {
  cursor: default;
  color: var(--lsg-sidebar-text);
  opacity: 0.6;
}
.lsg-button.not-target:hover {
  color: var(--lsg-sidebar-text);
}

.lsg-submenu {
  list-style: none;
  padding-left: 1.6rem;
  padding-bottom: 0.8rem;
  margin: 0;
}
.lsg-submenu-button {
  width: 100%;
  position: relative;
  background-color: transparent;
  border: none;
  color: var(--lsg-sidebar-text);
  text-align: left;
  cursor: pointer;
  font-size: 1.3rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 0.8rem;
}
.lsg-submenu-button:hover, .lsg-submenu-button.is-active {
  color: var(--lsg-secondary-color);
}

/* ネストされたサブメニュー */
.lsg-submenu-nested {
  list-style: none;
  padding-left: 2.4rem;
  display: none;
  margin-top: 0;
  padding-bottom: 1.6rem;
}
.lsg-submenu-nested li {
  margin-bottom: 0.2rem;
}
.lsg-submenu-nested li:last-child {
  margin-bottom: 0;
}

.lsg-drawer-button {
  z-index: 1002;
  border-radius: 4px;
  border: 1px solid var(--lsg-secondary-color);
  padding: 0 30px 0 10px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.lsg-drawer-button::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--lsg-secondary-color);
  border-right: 1px solid var(--lsg-secondary-color);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  margin-top: -2px;
}

.sidebar-open .lsg-breadcrumb {
  position: relative;
}
.sidebar-open .lsg-drawer-button {
  position: relative;
}
.sidebar-open .lsg-drawer-button::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  margin-top: 2px;
}
.sidebar-open .lsg-sidebar {
  opacity: 1;
}

.lsg-welcome {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.lsg-welcome-text {
  text-align: left;
}
.lsg-welcome-subtitle {
  color: var(--lsg-secondary-color);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.lsg-welcome-title {
  color: var(--lsg-primary-color);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 2.4rem;
  border-bottom: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.lsg-welcome-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5.6rem;
  border-radius: 99rem;
  background-color: var(--lsg-secondary-color);
  border: none;
  color: #F4F4F4;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 3.2rem;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.lsg-welcome-button:hover {
  opacity: 0.8;
}
.lsg-welcome-note {
  width: 100%;
  padding: 1.2rem;
  border-radius: 10px;
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
.lsg-welcome-note span {
  font-weight: bold;
  color: var(--lsg-secondary-color);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F9E24C));
  background: linear-gradient(transparent 50%, #F9E24C 50%);
  padding-bottom: 0.2rem;
}

.lsg-panel-wrapper {
  padding: 2rem 1rem;
  height: calc(100vh - 4rem);
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  display: none;
}
.lsg-panel-wrapper.is-active {
  display: block;
}

.lsg-panel {
  display: none;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  height: calc(100vh - 8rem - 30px);
  scrollbar-gutter: stable;
  opacity: 0;
}
.lsg-panel.is-active {
  display: block;
  opacity: 0;
  -webkit-animation: fadeIn 0.4s ease-in forwards;
          animation: fadeIn 0.4s ease-in forwards;
}
.lsg-panel-inner {
  max-width: 800px;
  margin: 0 auto;
}
.lsg-panel-title {
  font-size: 1.8rem;
  color: var(--lsg-secondary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.lsg-breadcrumb {
  height: 26px;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 4px;
}
.lsg-breadcrumb #breadcrumb-current {
  font-weight: 600;
  color: var(--lsg-secondary-color);
}

.lsg-breadcrumb-progress-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--lsg-secondary-color);
}

.lsg-breadcrumb-progress {
  width: 100px;
  height: 8px;
  background-color: #e5ebf3;
  border-radius: 999px;
  overflow: hidden;
}

.lsg-breadcrumb-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background-color: var(--lsg-primary-color);
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

.lsg-breadcrumb-step {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #888;
}
.lsg-breadcrumb-step::first-letter {
  color: var(--lsg-text-color);
  font-weight: 500;
}

.lsg-section {
  margin-bottom: 4rem;
  margin-top: 2rem;
  scroll-margin-top: 4rem;
  position: relative;
}
.lsg-section-title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.lsg-section-title.is-attention {
  padding: 8px 12px;
  color: #fff;
  background-color: var(--lsg-secondary-color);
  border-radius: 10px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.lsg-versionup-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lsg-versionup-step .card {
  width: 100%;
}
.lsg-versionup-step-arrow {
  height: calc(tan(60deg) * 30px / 2);
  width: 100px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--lsg-primary-color);
  margin: 0 auto;
}
.lsg-versionup-checklist-item {
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.lsg-versionup-checklist-item:last-child {
  margin-bottom: 0;
}
.lsg-versionup-checklist-item-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.8rem;
}
.lsg-versionup-checklist-item-number span {
  background-color: var(--lsg-primary-color);
  color: #fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lsg-versionup-checklist-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.3rem;
}
.lsg-versionup-checklist-item-content h4 {
  margin: 0 !important;
}
.lsg-versionup-checklist-item-content p {
  margin: 0.4rem 0 1.6rem;
  font-size: 1.3rem;
}
.lsg-versionup-checklist-item-content p:last-child {
  margin-bottom: 0;
}
.lsg-versionup-checklist-item-image {
  width: 100%;
  padding-left: 3.2rem;
}
.lsg-versionup-checklist-item-image img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.lsg-complete {
  text-align: center;
  margin: 2rem 0;
  padding: 1.2rem 1rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.lsg-complete-message {
  font-size: 1.8rem;
  font-weight: bold;
}
.lsg-complete-button {
  margin-top: 1.6rem;
}

/* セクションナビゲーション */
.lsg-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  margin-top: 4.8rem;
  background-color: #F8F9FA;
  padding: 1.2rem;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lsg-pager-button {
  height: 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--lsg-secondary-color);
  color: var(--lsg-secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  padding: 0.2rem 1.2rem 0.4rem;
  position: relative;
}
.lsg-pager-button::before {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--lsg-secondary-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lsg-pager-button.prev {
  padding-left: 3.2rem;
}
.lsg-pager-button.prev::before {
  content: "◀";
  left: 1rem;
}
.lsg-pager-button.next {
  padding-right: 3.2rem;
  margin-right: 0;
}
.lsg-pager-button.next::before {
  content: "▶";
  right: 1.2rem;
}
.lsg-pager-button-text {
  margin-top: 4px;
  font-size: 1.2rem;
}

/* 非活性サブメニューのスタイル */
.lsg-submenu-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #999;
}

.lsg-submenu-button:disabled:hover {
  color: #999;
}

.print-group,
.print-group-item {
  display: contents;
}

.print-visible {
  display: none;
}

.lgwan-visible {
  display: none;
}

.lsg-introduction {
  position: relative;
}
.lsg-introduction-header {
  padding: 1rem;
  border-radius: 4px;
  background-color: var(--lsg-primary-color);
  text-align: center;
  margin-bottom: 2rem;
}
.lsg-introduction-header-title {
  color: #fff;
  font-size: 1.8rem;
}
.lsg-introduction-content {
  display: grid;
  gap: 6rem;
}
.lsg-introduction-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 2rem;
}
.lsg-introduction-content-item:first-child .lsg-introduction-content-text:last-child {
  opacity: 0;
}
.lsg-introduction-content-item:first-child.is-animated .lsg-introduction-content-subject img:last-child {
  -webkit-animation: fadeIn 0.4s 0.8s ease-out forwards;
          animation: fadeIn 0.4s 0.8s ease-out forwards;
}
.lsg-introduction-content-item:first-child.is-animated .lsg-introduction-content-text:last-child {
  -webkit-animation: fadeInUp 0.6s 1.2s ease-out forwards;
          animation: fadeInUp 0.6s 1.2s ease-out forwards;
}
.lsg-introduction-content-text {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
.lsg-introduction-content-text strong {
  color: var(--lsg-secondary-color);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F2E697));
  background: linear-gradient(transparent 50%, #F2E697 50%);
}
.lsg-introduction-content-subject {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.lsg-introduction-content-subject img {
  width: 100%;
}
.lsg-introduction-content-subject img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.lsg-introduction-change-text {
  margin-bottom: 2.4rem;
}
.lsg-introduction-change-text > span {
  position: relative;
  display: inline-block;
  border-bottom: var(--lsg-primary-color) 4px solid;
}
.lsg-introduction-change-text > span::before {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 12px;
  height: 18px;
  border-left: 4px solid var(--lsg-primary-color);
  border-right: 4px solid var(--lsg-primary-color);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.lsg-introduction-change-text > span span {
  position: absolute;
  top: calc(100% + 24px);
  white-space: nowrap;
  color: var(--lsg-primary-color);
  font-weight: 900;
  font-size: 1.6rem;
  left: 0;
}
.lsg-introduction-change-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 2rem;
  gap: 2rem;
}

.lsg-step-select-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
  margin-top: 63rem;
}
.lsg-step-select-title span {
  font-size: 2.4rem;
  color: var(--lsg-primary-color);
}
.lsg-step-select-text {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.lsg-step-select-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.lsg-step-select-buttons button {
  border: 5px solid #EFF2F3;
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 320px;
  padding: 2rem 0 2rem;
  cursor: pointer;
  -webkit-transition: 0.3s border-color, 0.3s background-color;
  transition: 0.3s border-color, 0.3s background-color;
}
.lsg-step-select-buttons button span:nth-child(1) {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #77838B;
  padding: 0 1.5rem;
  height: 24px;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
.lsg-step-select-buttons button span svg path {
  -webkit-transition: 0.3s fill;
  transition: 0.3s fill;
}
.lsg-step-select-buttons button span:last-child {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  color: #77838B;
  margin-top: 1rem;
  font-weight: bold;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}
.lsg-step-select-buttons button:hover {
  border-color: var(--lsg-primary-color);
  background-color: #F2F8FF;
}
.lsg-step-select-buttons button:hover span:nth-child(1) {
  background-color: var(--lsg-primary-color);
}
.lsg-step-select-buttons button:hover span svg g path {
  fill: var(--lsg-secondary-color);
}
.lsg-step-select-buttons button:hover span svg .primary path {
  fill: var(--lsg-primary-color);
}
.lsg-step-select-buttons button:hover span:last-child {
  color: var(--lsg-primary-color);
  text-decoration: none;
}

.lsg-select-account {
  margin-top: 1.6rem;
}
.lsg-select-account-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lsg-select-account-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
  line-height: 1;
  gap: 1.2rem;
}
.lsg-select-account-text::before, .lsg-select-account-text::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--lsg-secondary-color);
}
.lsg-select-account-text p {
  color: var(--lsg-secondary-color);
  font-size: 1.8rem;
  font-weight: 500;
}
.lsg-select-account-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lsg-select-account .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lsg-select-account .card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lsg-select-account .card-action .button {
  width: 100%;
  background-color: #77838B;
  color: #fff;
  border: none;
  padding: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
}
.lsg-select-account .card-action .button:hover {
  background-color: var(--lsg-primary-color);
}
.lsg-select-account .merit-list {
  list-style: none;
}
.lsg-select-account .merit-list-item {
  padding-left: 1.25em;
  list-style: none;
  color: #278B2E;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.lsg-select-account .merit-list-item::before {
  content: "〇";
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  border-radius: 0;
  display: inline-block;
  background-color: transparent;
  -webkit-transform: none;
          transform: none;
}
.lsg-select-account .merit-list-item.demerit {
  color: #D23C3C;
}
.lsg-select-account .merit-list-item.demerit::before {
  content: "△";
  background-color: transparent;
}

.lsg-flow {
  padding: 0 1.6rem;
}
.lsg-flow-group {
  margin-bottom: 6rem;
}
.lsg-flow-group:last-child {
  margin-bottom: 0;
}
.lsg-flow-group.is-branch-selected .lsg-flow-branch {
  border-color: var(--lsg-primary-color);
  background-color: #E8F1FF;
}
.lsg-flow-group.is-branch-selected + .lsg-flow-group {
  display: block !important;
}
.lsg-flow-group-message {
  color: #fff;
  background-color: var(--lsg-secondary-color);
  text-align: center;
  padding: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3.2rem;
  border-radius: 8px;
}
.lsg-flow-group-header {
  margin-bottom: 3rem;
}
.lsg-flow-group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lsg-flow-group-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: var(--lsg-secondary-color);
}
.lsg-flow-group-column {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.lsg-flow-item {
  margin-bottom: 4rem;
}
.lsg-flow-item:last-child {
  margin-bottom: 0;
}
.lsg-flow-header {
  margin-bottom: 1.6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lsg-flow-number {
  background-color: var(--lsg-primary-color);
  color: #fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.lsg-flow-content {
  padding-left: 3.2rem;
  line-height: 1.6;
}
.lsg-flow-title {
  margin: 0;
}
.lsg-flow-title span {
  font-size: 1.4rem;
  display: block;
  font-weight: 400;
  margin-top: 0.2rem;
}
.lsg-flow-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  margin: 3rem 0;
}
.lsg-flow-column-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.lsg-flow-column-text .button-copy {
  position: absolute;
  right: 0;
  top: 0;
}
.lsg-flow-column-image img {
  width: 100%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.lsg-flow-image {
  margin: 2rem 0;
}
.lsg-flow-image img {
  width: 100%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lsg-flow-branch {
  gap: 4rem;
  border: 1px solid #9BABBB;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  background-color: #F1F1F2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem 0 4rem;
}
.lsg-flow-branch-header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lsg-flow-branch-title {
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}
.lsg-flow-branch-text {
  color: #84868A;
  font-size: 1.2rem;
  margin: 0.2rem 0 0;
  line-height: 1.3;
}
.lsg-flow-branch-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.2rem 0;
}
.lsg-flow-branch-buttons:last-child {
  margin-bottom: 0;
}
.lsg-flow-branch-button {
  border: 1px solid #9BABBB;
  background-color: #fff;
  border-radius: 5px;
  padding: 0.8rem 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}
.lsg-flow-branch-button:hover {
  border-color: var(--lsg-primary-color);
  background-color: #F2F8FF;
}
.lsg-flow-branch-button[data-selected=true] {
  border-color: var(--lsg-primary-color);
  background-color: var(--lsg-primary-color);
  color: #fff;
}

.lsg-licensegroup-attention {
  margin-bottom: 6rem;
}
.lsg-licensegroup-attention-header {
  background-color: #E59233;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 16px 0;
}
.lsg-licensegroup-attention-header-title {
  line-height: 1.2;
  font-size: 2rem;
  margin: 0;
  color: #fff;
}
.lsg-licensegroup-attention-header-text {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  color: #fff;
}
.lsg-licensegroup-attention-body {
  background-color: #F8F8F8;
  border-radius: 0 0 10px 10px;
  padding: 3rem 2rem;
}
.lsg-licensegroup-attention-rule {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  text-align: center;
}
.lsg-licensegroup-attention-rule p {
  margin: 0;
}
.lsg-licensegroup-attention-rule p:first-child {
  font-weight: bold;
  font-size: 1.8rem;
}
.lsg-licensegroup-attention-rule p:last-child {
  margin-top: 0.4rem;
}
.lsg-licensegroup-attention-subtitle span {
  display: inline-block;
  padding: 0.4rem 2rem;
  color: #fff;
  background-color: var(--lsg-secondary-color);
  font-size: 1.6rem;
  border-radius: 4px;
}
.lsg-licensegroup-attention ul li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.lsg-licensegroup-attention-arrow {
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lsg-licensegroup-attention-note {
  font-size: 1.1rem;
}

.inview {
  opacity: 0;
}
.inview.is-animated {
  -webkit-animation: fadeIn 0.4s ease-in forwards;
          animation: fadeIn 0.4s ease-in forwards;
}

#section2-2-1 .lsg-image-wrapper {
  background-color: #F2F8FF;
  padding: 2rem 4rem;
}
#section2-2-1 .lsg-image {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}
#section2-2-1 .lsg-image img {
  opacity: 0;
  width: 100%;
}
#section2-2-1 .lsg-image img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section2-2-1.is-animated {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
#section2-2-1.is-animated .lsg-image img:nth-child(1) {
  -webkit-animation: fadeIn 0.6s 0.4s ease forwards;
          animation: fadeIn 0.6s 0.4s ease forwards;
}
#section2-2-1.is-animated .lsg-image img:nth-child(2) {
  -webkit-animation: fadeInLeft 0.6s 0.9s ease-in forwards;
          animation: fadeInLeft 0.6s 0.9s ease-in forwards;
}
#section2-2-1.is-animated .lsg-image img:nth-child(3) {
  -webkit-animation: fadeInLeft 0.6s 1.1s ease-in forwards;
          animation: fadeInLeft 0.6s 1.1s ease-in forwards;
}

#section2-2-2 .lsg-image {
  position: relative;
}
#section2-2-2 .lsg-image img {
  opacity: 0;
}
#section2-2-2 .lsg-image img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section2-2-2 p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  opacity: 0;
  margin-top: 3rem;
}
#section2-2-2 p strong {
  color: var(--lsg-primary-color);
}
#section2-2-2.is-animated {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
#section2-2-2.is-animated .lsg-image img:nth-child(1) {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
#section2-2-2.is-animated .lsg-image img:nth-child(2) {
  -webkit-animation: fadeInRight 0.6s 0.4s ease-in forwards;
          animation: fadeInRight 0.6s 0.4s ease-in forwards;
}
#section2-2-2.is-animated .lsg-image img:nth-child(3) {
  -webkit-animation: fadeInRight 0.6s 0.6s ease-in forwards;
          animation: fadeInRight 0.6s 0.6s ease-in forwards;
}
#section2-2-2.is-animated .lsg-image img:nth-child(4) {
  -webkit-animation: fadeInRight 0.6s 0.8s ease-in forwards;
          animation: fadeInRight 0.6s 0.8s ease-in forwards;
}
#section2-2-2.is-animated .lsg-image img:nth-child(5) {
  -webkit-animation: fadeInRight 0.6s 1.6s ease-in forwards;
          animation: fadeInRight 0.6s 1.6s ease-in forwards;
}
#section2-2-2.is-animated p {
  -webkit-animation: fadeInUp 0.4s 1.6s ease-in forwards;
          animation: fadeInUp 0.4s 1.6s ease-in forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.lsg-merit-table th, .lsg-merit-table td {
  padding: 0.8rem 1.2rem;
}
.lsg-merit-table th {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--lsg-primary-color);
  color: #fff;
  width: 280px;
  vertical-align: middle;
}
.lsg-merit-table td {
  font-size: 1.4rem;
  line-height: 1.6;
}
.lsg-merit-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  line-height: 1.5;
}
.lsg-merit-table-title span:first-child {
  font-size: 1.8rem;
}
.lsg-merit-table-title span:last-child {
  font-size: 1.6rem;
}

.lsg-message {
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  padding-top: 3rem;
}
.lsg-message-image {
  text-align: center;
  margin: 1.5rem 0;
}

[data-popup-src] {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  position: relative;
}
[data-popup-src]:focus-visible {
  outline: 2px solid var(--lsg-primary-color);
  outline-offset: 2px;
}
[data-popup-src]::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_249_977)%22%3E%3Cpath%20d%3D%22M23.5941%2033.2792C22.4213%2033.5916%2021.213%2033.7501%2019.9993%2033.7506C16.8181%2033.7504%2013.7354%2032.6471%2011.2765%2030.6288C8.81753%2028.6105%207.13446%2025.8021%206.51405%2022.682C5.89364%2019.5618%206.37427%2016.3231%207.87406%2013.5177C9.37384%2010.7122%2011.8%208.51357%2014.7391%207.29636C17.6782%206.07915%2020.9484%205.91869%2023.9926%206.84232C27.0368%207.76595%2029.6665%209.71653%2031.4337%2012.3617C33.2009%2015.0069%2033.9963%2018.1829%2033.6843%2021.3488C33.3724%2024.5147%2031.9723%2027.4744%2029.7228%2029.7237%22%20stroke%3D%22white%22%20stroke-width%3D%221.77273%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M15.0898%2020H24.9115%22%20stroke%3D%22white%22%20stroke-width%3D%221.77273%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M20%2015.0898V24.9115%22%20stroke%3D%22white%22%20stroke-width%3D%221.77273%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_249_977%22%3E%3Crect%20width%3D%2240%22%20height%3D%2240%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  opacity: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.8rem;
  height: 2.8rem;
  -webkit-transition: 0.4s opacity, 0.4s -webkit-transform;
  transition: 0.4s opacity, 0.4s -webkit-transform;
  transition: 0.4s transform, 0.4s opacity;
  transition: 0.4s transform, 0.4s opacity, 0.4s -webkit-transform;
  bottom: 1rem;
  right: 1rem;
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}
[data-popup-src]:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

.lsg-image-zoom-overlay {
  position: fixed;
  inset: 0;
  padding: 2.4rem;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.28s ease, visibility 0.28s ease;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lsg-image-zoom-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lsg-image-zoom-overlay.is-open .lsg-image-zoom-content {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.lsg-image-zoom-overlay.is-open .lsg-image-zoom-close {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.lsg-image-zoom-content {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  opacity: 0;
  -webkit-transform: translateY(12px) scale(0.96);
          transform: translateY(12px) scale(0.96);
  -webkit-transition: opacity 0.32s ease, -webkit-transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.32s ease, -webkit-transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.lsg-image-zoom-view {
  display: block;
  max-width: min(100vw - 4rem, 1000px);
  max-height: 88vh;
  width: auto;
  height: auto;
}
.lsg-image-zoom-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  opacity: 0;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
.lsg-image-zoom-close:hover {
  background: rgba(0, 0, 0, 0.82);
}
.lsg-image-zoom-open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .table--sp-responsive {
    display: block;
  }
  .table--sp-responsive tbody, .table--sp-responsive th, .table--sp-responsive td {
    display: block;
    width: 100%;
  }
  .display-pc {
    display: none;
  }
  .lsg-breadcrumb-progress {
    display: none;
  }
  .lsg-versionup-checklist-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
  .lsg-step-select-buttons button span:nth-child(2) {
    width: 80px;
  }
  .lsg-flow-branch-button {
    width: calc(50% - 0.6rem);
  }
}
@media screen and (min-width: 768px) {
  .display-sp {
    display: none;
  }
  .box {
    padding: 0.4rem 1.2rem;
  }
  .box-note {
    font-size: 1.2rem;
  }
  .box-point {
    font-size: 1.2rem;
  }
  .box-warning {
    font-size: 1.2rem;
  }
  .card {
    padding: 2rem;
    border-radius: 10px;
  }
  .card-recommend {
    border-radius: 0 0 5px 5px;
    top: 0;
    font-size: 1.6rem;
    padding: 0.2rem 1.6rem;
    right: 2rem;
  }
  .card-header {
    padding-top: 0.2rem;
    padding-bottom: 1.2rem;
  }
  .card-title {
    font-size: 1.8rem;
  }
  .card-text {
    font-size: 1.4rem;
  }
  .card-content {
    margin-top: 1.6rem;
  }
  .card-action {
    margin-top: 1.6rem;
  }
  .lsg {
    padding: 4rem;
  }
  .lsg-content {
    max-width: 108rem;
    width: 100%;
  }
  .lsg-welcome-subtitle {
    font-size: 2.4rem;
  }
  .lsg-welcome-title {
    font-size: 4rem;
  }
  .lsg-welcome-button {
    font-size: 3.2rem;
    padding: 0 8rem;
    height: 6.6rem;
  }
  .lsg-panel-wrapper {
    padding: 4rem 4rem;
    height: calc(100vh - 8rem);
  }
  .lsg-panel {
    height: calc(100vh - 16rem - 30px);
  }
  .lsg-panel-title {
    font-size: 2.8rem;
  }
  .lsg-section {
    padding-left: 2.4rem;
    padding-bottom: 2.4rem;
    margin-bottom: 8rem;
    margin-top: 4rem;
  }
  .lsg-section-title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .lsg-section-title.is-attention {
    padding: 12px 16px;
  }
  .lsg-versionup-checklist-item-image {
    width: 40%;
    margin-left: 2rem;
    padding-left: 0;
  }
  .lsg-complete {
    margin: 4rem 0;
    padding: 2.4rem 2rem;
  }
  .lsg-pager-button:hover {
    background-color: var(--lsg-secondary-color);
    color: #fff;
  }
  .lsg-pager-button:hover::before {
    color: #fff;
  }
  .lsg-pager-button-text {
    font-size: 1.4rem;
  }
  .lsg-introduction-header {
    padding: 1.2rem;
    margin-bottom: 4rem;
  }
  .lsg-introduction-header-title {
    font-size: 2.4rem;
  }
  .lsg-introduction-content {
    gap: 12rem;
  }
  .lsg-introduction-content-item {
    gap: 4rem;
  }
  .lsg-introduction-content-text {
    font-size: 2rem;
  }
  .lsg-introduction-change-text {
    margin-bottom: 4.8rem;
  }
  .lsg-introduction-change-text > span span {
    font-size: 2.2rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .lsg-introduction-change-images {
    margin-top: 0;
    gap: 4rem;
  }
  .lsg-step-select-title {
    margin-top: 6rem;
    font-size: 2rem;
  }
  .lsg-step-select-title span {
    font-size: 3.2rem;
  }
  .lsg-step-select-text {
    font-size: 2rem;
  }
  .lsg-step-select-buttons {
    gap: 4rem;
  }
  .lsg-step-select-buttons button {
    border-width: 10px;
    padding: 3rem 0 3rem;
  }
  .lsg-step-select-buttons button span:nth-child(1) {
    top: -24px;
    font-size: 2rem;
    height: 36px;
    padding: 0 2rem;
  }
  .lsg-step-select-buttons button span:last-child {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .lsg-select-account {
    margin-top: 3.2rem;
  }
  .lsg-select-account-images {
    gap: 4rem;
  }
  .lsg-select-account-text {
    margin: 4rem 0;
  }
  .lsg-select-account-text p {
    font-size: 2.4rem;
  }
  .lsg-select-account-cards {
    gap: 4rem;
  }
  .lsg-select-account .card-action .button {
    font-size: 1.6rem;
    padding: 12px;
  }
  .lsg-flow-group-column {
    grid-template-columns: 1fr 33%;
    gap: 4rem;
  }
  .lsg-flow-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.4rem;
  }
  .lsg-flow-column-image {
    width: 40.3225806452%;
  }
  .lsg-flow-branch {
    padding: 2.4rem 3.2rem;
  }
  .lsg-flow-branch-title {
    margin: 0;
    font-size: 2rem;
  }
  .lsg-flow-branch-text {
    font-size: 1.4rem;
  }
  .lsg-flow-branch-buttons {
    margin: 1.6rem 0;
  }
  .lsg-flow-branch-button {
    width: calc(50% - 0.6rem);
    max-width: 260px;
    padding: 0.8rem 1.2rem;
  }
  .lsg-message {
    margin-top: 4rem;
    padding-top: 4rem;
  }
  .lsg-message-image {
    margin: 2rem 0;
  }
  .lsg-image-zoom-overlay {
    padding: 4rem;
  }
}
@media print {
  .inview {
    opacity: 1 !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  body {
    font-size: 11px;
    line-height: 1.5;
    overflow: visible !important;
  }
  .display-sp {
    display: none !important;
  }
  h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 13px;
    margin-bottom: 6px;
    margin-top: 12px;
  }
  p {
    margin-bottom: 8px;
  }
  * + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
    margin-top: 8px;
  }
  ol > li::before {
    width: 14px;
    height: 14px;
    font-size: 11px;
  }
  hr {
    margin: 12px 0;
  }
  .image {
    margin: 10px 0;
  }
  .image img {
    max-width: 60%;
  }
  .box {
    font-size: 10px !important;
    margin: 10px 0 !important;
    padding: 4px !important;
  }
  .box p {
    font-size: inherit !important;
  }
  .box p + p {
    margin-top: 8px;
  }
  .card {
    margin: 16px 0;
    padding: 12px;
  }
  .card-title {
    font-size: 15px;
  }
  .card-text {
    font-size: 12px;
  }
  table {
    margin: 12px 0;
  }
  table th,
table td {
    padding: 6px 10px;
    font-size: 12px;
  }
  .text-xsmall {
    font-size: 9px;
  }
  .text-small {
    font-size: 10px;
  }
  .text-large {
    font-size: 13px;
  }
  .print-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .print-group-item {
    display: block;
  }
  .link-download,
.button-copy {
    display: none;
  }
  .lsg {
    display: block;
    overflow: visible !important;
    height: auto !important;
    padding: 0 !important;
  }
  .lsg-panel-wrapper {
    display: block !important;
    padding: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }
  .lsg-breadcrumb {
    display: none !important;
  }
  .lsg-sidebar {
    display: none !important;
  }
  .lsg-panel-title {
    font-size: 18px;
    padding: 20px 0 10px;
    margin: 0;
  }
  .lsg-welcome {
    display: none;
  }
  .lsg-content {
    width: 100%;
    max-width: 100%;
    display: block !important;
    padding: 0 !important;
  }
  .lsg-section {
    margin: 20px 0;
    padding-bottom: 10px;
    opacity: 1 !important;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
  }
  .lsg-section#section1-2, .lsg-section#section2-2-4 {
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
  }
  .lsg-panel {
    page-break-before: always;
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
    width: 100%;
    max-width: 100%;
    display: block !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .lsg-panel-inner {
    height: auto !important;
    overflow: visible !important;
    max-width: 100% !important;
  }
  /* 先頭だけは改ページしない */
  .lsg-panel:first-of-type {
    page-break-before: auto;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
  }
  .lsg-pager {
    display: none;
  }
  .lsg-introduction-header {
    padding: 4px;
    margin-bottom: 20px;
  }
  .lsg-introduction-header-title {
    font-size: 18px;
  }
  .lsg-introduction-content {
    gap: 25px;
  }
  .lsg-introduction-content-subject {
    max-width: 50%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .lsg-introduction-content-subject img {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
  }
  .lsg-introduction-content-item {
    gap: 15px;
  }
  .lsg-introduction-content-item:nth-child(2) img {
    max-width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .lsg-introduction-content-item:nth-child(3) {
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
  }
  .lsg-introduction-content-text {
    font-size: 15px;
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
  }
  .lsg-introduction-change-text {
    margin-bottom: 40px;
  }
  .lsg-introduction-change-text > span::before {
    width: 12px;
    height: 16px;
    border-left-width: 3px;
    border-right-width: 3px;
  }
  .lsg-introduction-change-text > span span {
    font-size: 18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .lsg-introduction-change-images {
    gap: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .lsg-introduction-change-image:first-child {
    width: calc(39.4366197183% - 10px);
  }
  .lsg-introduction-change-image:last-child {
    width: calc(57.7464788732% - 10px);
  }
  [data-popup-src]::after {
    display: none;
  }
  .lsg-image-zoom-overlay {
    display: none !important;
  }
  .lsg-step-select-buttons {
    display: none !important;
  }
  .lsg-step-select-title {
    font-size: 18px;
    line-height: 1.4;
  }
  .lsg-step-select-title span {
    font-size: 22px;
  }
  .lsg-versionup {
    page-break-before: auto;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
  }
  .lsg-versionup .card {
    margin: 0 !important;
  }
  .lsg-versionup-step {
    gap: 10px;
  }
  .lsg-versionup-checklist-item-image {
    width: 40%;
  }
  .lsg-select-account-images {
    gap: 20px;
  }
  .lsg-select-account-images img {
    width: 100%;
  }
  .lsg-select-account-text {
    display: none;
  }
  .lsg-select-account-cards {
    gap: 20px;
  }
  .lsg-select-account .card-action {
    display: none;
  }
  .lsg-flow-header {
    margin-bottom: 10px;
  }
  .lsg-flow-image {
    margin: 10px 0 !important;
  }
  .lsg-flow-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    margin: 10px 0 !important;
  }
  .lsg-flow-column:first-child {
    margin-top: 0 !important;
  }
  .lsg-flow-column-image {
    width: 33%;
    max-width: 250px;
  }
  .lsg-flow-group {
    display: block !important;
    margin: 20px 0 !important;
  }
  .lsg-flow-group-column {
    grid-template-columns: 1fr 40%;
  }
  .lsg-flow-item {
    page-break-before: auto;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  .lsg-flow-branch {
    display: none !important;
  }
  .lsg-flow-branch-panel {
    display: block !important;
    page-break-before: auto;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
  .lsg-flow-branch-print {
    margin-bottom: 20px;
  }
  .lsg-flow-branch-print-title {
    font-size: 18px;
    background-color: var(--lsg-secondary-color);
    color: #fff;
    padding: 4px 8px;
    margin-bottom: 10px;
  }
  .lsg-complete {
    display: none !important;
  }
  .lsg-licensegroup-attention {
    margin-bottom: 30px;
  }
  .lsg-licensegroup-attention-header {
    padding: 8px 0;
  }
  .lsg-licensegroup-attention-header-title {
    font-size: 18px;
  }
  .lsg-licensegroup-attention-header-text {
    font-size: 14px;
  }
  .lsg-licensegroup-attention-body {
    padding: 20px;
  }
  .lsg-licensegroup-attention-body ul {
    margin-bottom: 0 !important;
  }
  .lsg-licensegroup-attention-body ul li {
    margin-bottom: 4px !important;
    line-height: 1.3;
  }
  .lsg-licensegroup-attention-rule {
    padding: 10px;
  }
  .lsg-licensegroup-attention-rule p:first-child {
    font-size: 16px;
  }
  .lsg-licensegroup-attention-rule p:last-child {
    margin-top: 2px;
    font-size: 12px;
  }
  .lsg-licensegroup-attention-subtitle {
    margin-top: 20px;
  }
  .lsg-licensegroup-attention-subtitle span {
    font-size: 14px;
    padding: 4px 16px;
  }
  .lsg-licensegroup-attention-arrow {
    margin: 15px 0;
  }
  #section2-2 .lsg-image {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  #section2-2 img {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
  }
  #section2-2-3 {
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
  }
  #flow3-1 {
    page-break-before: auto;
    -webkit-column-break-before: auto;
       -moz-column-break-before: auto;
            break-before: auto;
  }
  .print-hidden {
    display: none !important;
  }
  .print-visible {
    display: block !important;
  }
  .print-page-break {
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
  }
  .lsg-drawer-button {
    display: none;
  }
  .lgwan-hidden {
    display: none !important;
  }
  .lgwan-visible {
    display: block !important;
  }
  .print-page-break {
    -webkit-column-break-before: page;
       -moz-column-break-before: page;
            break-before: page;
  }
}