* {
  box-sizing: border-box;
}

:root {
  --brandRed: #DC002F;
  --brandGray: #2E3133;
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  :root {
    font-size: calc(10 / 375 * 100vw);
  }
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: helvetica, arial, meiryo, sans-serif;
  color: var(--brandGray);
  background: #FFF;
  overflow-x: clip;
}

body:not(.readied) > *:not(noscript) {
  display: none;
}

a {
  color: #2196F3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 6.4rem;
  padding: 1.8rem 2rem;
  background: #FFF;
  z-index: 999999;
}

@media screen and (max-width: 767px) {
  header {
    max-width: 100vw;
    padding: 1.6rem 2rem;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 120rem;
  margin: 0 auto;
}

.header__logo {
  height: 2.8rem;
}

.clear-button--disabled,
.float-button__series-filter-button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

#clear-button {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
  margin-left: auto;
  padding: 0 0 0 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  transition: opacity .3s;
}

#clear-button svg,
#series-filter-button svg {
  width: 3.2rem;
  height: 3.2rem;
  margin-block: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #clear-button svg,
  #series-filter-button svg {
    width: 3.2rem;
    height: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  #clear-button span {
    display: none;
  }
}

.float-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  margin-block: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  opacity: 0;
  translate: 100%;
  transition: opacity .3s;
}

@media screen and (max-width: 767px) {
  .float-button {
    bottom: 10rem;
  }
}

.float-button--show {
  opacity: 1;
  translate: 0;
}

.float-button-tooltip {
  flex-direction: column;
}

.float-button .float-button__clear-button-tooltip #clear-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.6rem 0.8rem;
  border-radius: 0.6rem 0px 0px 0.6rem;
  border-top: 0.1rem solid #E1E1E1;
  border-bottom: 0.1rem solid #E1E1E1;
  border-left: 0.1rem solid #E1E1E1;
  background: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0px 0.8rem 1.5rem 0px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.float-button .float-button__clear-button-tooltip #clear-button svg,
.float-button .float-button__series-filter-button #series-filter-button svg {
  position: relative;
}

.float-button .common-tooltip__tooltip--right {
  right: 1.6rem;
}

.float-button__series-filter-button {
  width: 100%;
  z-index: 1;
}

.float-button .float-button__series-filter-button #series-filter-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.6rem 0.8rem;
  border-radius: 0.6rem 0px 0px 0.6rem;
  border-top: 0.1rem solid #E1E1E1;
  border-bottom: 0.1rem solid #E1E1E1;
  border-left: 0.1rem solid #E1E1E1;
  background: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0px 0.8rem 1.5rem 0px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .float-button__series-filter-button #series-filter-button span {
      display: none;
  }
}

.main {
  display: none;
}

#chat-container {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  #chat-container {
    margin: 1.4rem 0 0;
  }
}

#chat-container:has(.message) {
  min-height: calc(100vh - 31.4rem);
  margin: 4rem 0 0;
}

@media screen and (max-width: 767px) {
  #chat-container:has(.message) {
    margin: 9.6rem 0 0;
  }
}

#chat-container:has(.bot-message:first-child) {
  margin: 5.6rem 0 0;
}

@media screen and (max-width: 767px) {
  #chat-container:has(.bot-message:first-child) {
    margin: 4.8rem 0 0;
  }
}

.message {
  width: fit-content;
}

.message:not(:first-of-type) {
  margin-top: 3.2rem;
}

.user-message {
  max-width: 100rem;
  margin-left: auto;
  margin-right: 0;
  padding: 1.6rem 2.4rem;
  background-color: #F0F0F0;
  border-radius: 2.4rem 2.4rem 0px 2.4rem;
  font-weight: bold;
  scroll-margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .user-message {
    max-width: 29.5rem;
  }
}

.user-message .message-body {
  white-space: pre-wrap;
}

.bot-message {
  max-width: min(calc(100% - 8rem), 100rem);
  padding: 2.4rem;
  border-radius: 0px 2.4rem 2.4rem 2.4rem;
  margin-left: 8rem;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bot-message {
    max-width: 100%;
    margin-left: 0;
    padding: 2.4rem 0;
  }
}

@media screen and (max-width: 767px) {
  .message + .bot-message:not(:first-child) {
    margin-top: 8.5rem;
  }
}

@media screen and (max-width: 767px) {
  .bot-message:has(.loading) {
    margin-top: 3.2rem !important;
    margin-left: 6.4rem;
  }
}

.bot-message .bot-icon-wrap {
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: 0;
  left: -8rem;
  mask-image: radial-gradient(rgb(255, 255, 255) 64%, rgba(255, 255, 255, 0) 66%);
}

@media screen and (max-width: 767px) {
  .bot-message .bot-icon-wrap {
    width: 5rem;
    height: 5rem;
    clip-path: circle(2rem);
    top: -5.3rem;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .bot-message:has(.loading) .bot-icon-wrap {
    width: 6.5rem;
    height: 6.5rem;
    clip-path: circle(3.2rem);
    top: 0;
    left: -6.5rem;
  }
}

.bot-message .bot-icon {
  width: 7rem;
  height: 7rem;
}

@media screen and (max-width: 767px) {
  .bot-message .bot-icon {
    width: 5rem;
    height: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .bot-message:has(.loading) .bot-icon {
    width: 6.5rem;
    height: 6.5rem;
  }
}

.message-body p/*,
.bot-message ol,
.bot-message ul*/ {
  margin: 0;
}

.message-body h1:not(:first-child),
.message-body h2:not(:first-child),
.message-body h3:not(:first-child),
.message-body h4:not(:first-child),
.message-body h5:not(:first-child) {
  margin: 2.4rem 0 0;
}
.message-body p:not(:first-child),
.message-body ol,
.message-body ul {
  margin: 1.6rem 0 0;
}

.message-body ol ol,
.message-body ul ol,
.message-body ol ul,
.message-body ul ul {
  margin-top: 0.6rem;
}

.message-body ol,
.message-body ul{
  padding-left: 2rem;
}

.message-body ol {
  list-style: decimal;
}

.message-body ul {
  list-style: disc;
}

.message-body ol li,
.message-body ul li {
  margin-top: 0;
}

.message-body ol li:not(:first-of-type),
.message-body ul li:not(:first-of-type) {
  margin-top: 0.6rem;
}

.bot-message__table {
  margin-top: 1.6rem;
  overflow-x: auto;
}

.bot-message__table table {
  white-space: inherit;
  table-layout: fixed;
}

.bot-message__table th,
.bot-message__table td {
  padding: 0.8rem 1.6rem;
  border: 1px solid #ddd;
  vertical-align: top;
}

.bot-message__table th {
  background-color: #f0f0f0;
}

.bot-message__code-block {
  margin-top: 0.8rem;
}

.bot-message__code-block-header {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem 0.8rem 0px 0px;
  border: 1px solid #B9BDBE;
}

.bot-message__code-block-header-copy {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.bot-message--finished .bot-message__code-block-header-copy {
  opacity: 1;
  pointer-events: auto;
}

.bot-message__code-block pre {
  padding: 0.8rem 1.6rem;
  border-radius: 0px 0px 0.8rem 0.8rem;
  border: 1px solid #B9BDBE;
  border-top: none;
  overflow-x: auto;
}

.bot-message .references {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #6F6F6F;
}

@media screen and (max-width: 767px) {
  .bot-message .references {
    padding-top: 2.4rem;
  }
}

.bot-message .references strong {
  display: block;
}

.bot-message .references strong + p {
  font-size: 1.2rem;
  margin-bottom: 1.6rem;
}

.bot-message .cards {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  padding-left: 0;
  list-style: none;
}

.bot-message div a.card {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-shadow: 0.4rem 0.4rem 0.8rem 0px rgba(166, 171, 189, 0.25);
}

.bot-message div a.card:hover {
  text-decoration: none;
}

.bot-message div a.card > span:has(img) {
  flex: 0 0 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  padding: 0;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #F0F0F0 100%);
}

@media screen and (max-width: 767px) {
  .bot-message div a.card > span:has(img) {
    flex: 0 0 6.4rem;
    width: 6.4rem;
  }
}

.bot-message div a.card img {
  width: auto;
  max-width: 75%;
  height: auto;
  max-height: 75%;
}

.bot-message div a.card > span {
  display: flex;
  align-items: center;
  padding: 1.6rem 0.8rem;
  color: var(--brandRed);
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .bot-message div a.card > span {
    font-size: 1.4rem;
  }
}

.bot-message div a.card > span:not(:has(img)) {
  background-color: #fff;
}

/* splide override */
.splide {
  padding-inline: 1.6rem;
}

@media screen and (max-width: 767px) {
  .splide {
    padding-inline: 0;
  }
}

.bot-message {
  position: relative;
}

.bot-message .splide:not(.is-initialized) {
  visibility: visible;
}

.splide:not(.is-initialized) .splide__track {
  overflow: visible;
}

.bot-message .splide__track {
  padding: 0 0 1.2rem;
}

@media screen and (max-width: 767px) {
  .splide:not(.is-initialized) .bot-message .splide__track {
    padding-inline: 0;
  }
}

.bot-message .splide:not(.is-active) .splide__arrows {
  display: none;
}

.bot-message .splide__arrow {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  margin-block: auto;
  border-radius: 2.4rem;
  border: none;
  background: #FFF;
  box-shadow: 0.4rem 0.4rem 0.8rem 0px rgba(166, 171, 189, 0.25);
  cursor: pointer;
  outline: none;
  appearance: none;
  opacity: 1;
  transform: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s
}

.bot-message .splide__arrow:disabled {
  opacity: 0;
}

.bot-message .splide__arrow--prev {
  left: 0;
}

.bot-message .splide__arrow--next {
  right: 0;
}

.bot-message .splide__arrow svg {
  transform: none;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
}

.bot-message .splide__slide {
  width: 30rem;
  min-height: 8rem;
  margin: 0!important;
}

@media screen and (max-width: 767px) {
  .bot-message .splide__slide {
    width: 18.3rem;
    min-height: 6.4rem;
  }
}

[data-script-enabled=true] [aria-hidden=true] {
    display: inherit;
}

.bot-message .btn {
  display: block;
  width: fit-content;
  min-width: 28rem;
  padding: 1.6rem 4.8rem 1.6rem 2.4rem;
  border-radius: 8rem;
  border: 1px solid #277A80;
  color: #277A80;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.bot-message .btn + .btn {
  margin-top: 0.8rem;
}

.bot-message .btn:hover {
  background: #277A80;
  color: #FFF;
}

.bot-message .btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin-block: auto;
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
}

.bot-message .btn.btn-tel::after {
  background: url(/img/landing_page/ai-assistant/ai-assistant-tel_icon_green.svg) no-repeat center / contain;
}

.bot-message .btn.btn-tel:hover::after {
  background: url(/img/landing_page/ai-assistant/ai-assistant-tel_icon_white.svg) no-repeat center / contain;
}

.bot-message .btn.btn-chat::after {
  background: url(/img/landing_page/ai-assistant/ai-assistant-chat_icon_green.svg) no-repeat center / contain;
}

.bot-message .btn.btn-chat:hover::after {
  background: url(/img/landing_page/ai-assistant/ai-assistant-chat_icon_white.svg) no-repeat center / contain;
}

.loading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 25rem;
  height: 1em;
  padding: 0 !important;
  border: none !important;
  font-size: 1.6rem;
  position: relative;
}

.loading > div {
  border: none;
  background: linear-gradient(90deg, #6F6F6F 20%, #B9BDBE 35%, #E0E0E0 50%, #B9BDBE 65%, #6F6F6F 80%), #6F6F6F;
  background-position: 0% 0%;
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s linear;
}

.loading > div.loading-animation-text {
  opacity: 1;
  animation: slideGradient 3s linear running both infinite;
}

@keyframes slideGradient {
  0%   { background-position: 150% 0%; }
  100% { background-position: -0% 0%; }
}

.feedback {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  margin-top: 1.6rem;
  padding-top: 0;
  border-top: none;
}

.feedback-note {
  font-size: 1.2rem;
}

.feedback-btns {
  display: flex;
  column-gap: 1.6rem;
  height: 2.4rem;
}

.feedback-btns__item,
[data-btn-type="copy"] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.feedback-btns__item[data-selected="true"] {
  pointer-events: none;
}

@media (hover: hover) {
  .feedback-btns__item:hover path,
  [data-btn-type="copy"]:hover path {
    stroke: var(--brandRed);
  }
}

.feedback-btns__item[data-selected="true"] path {
  fill: var(--brandGray);
  stroke: var(--brandGray);
}

[data-btn-type="copy"] .icon-copy,
[data-btn-type="copy"] .icon-after-copy {
  line-height: 1;
}

[data-btn-type="copy"] .icon-after-copy {
  display: none;
}

[data-btn-type="copy"].copied .icon-before-copy {
  display: none;
}

[data-btn-type="copy"].copied .icon-after-copy {
  display: block;
}

.feedback-link {
  display: none;
}

.feedback-btns:has([data-selected="true"]) + .feedback-link {
  display: block;
}

.feedback-link__link,
.feedback-link__attention {
  margin-block: 0;
  font-size: 1.4rem;
}

.feedback-link__link a {
  color: var(--brandRed);
  font-size: 1.4rem;
  font-weight: normal;
  text-decoration: underline;
}

.clear-message {
  display: none;
  margin-top: 4rem;
  color: #6F6F6F;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.clear-message--show {
  display: block;
}

.limit-message {
  display: none;
  margin-top: 3.2rem;
  color: #6F6F6F;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.limit-message--show {
  display: block;
}

.limit-message__link {
  color: var(--brandRed);
  text-decoration: underline;
  cursor: pointer;
}

#input-container {
  width: 100%;
  height: 0;
  margin-inline: auto;
  padding: 0 2rem;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 99999;
  position: relative;
  right: 0;
  bottom: 0;
  transition-property: opacity, visibility;
  transition-duration: .3s, 0s;
  transition-delay: 0s, .3s;
}
  
@media screen and (max-width: 767px) {
  #input-container {
    max-width: 100vw;
    margin-top: 0;
    padding: 1.6rem 0;
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.app > .inner:has(:checked) + #input-container {
  height: auto;
  margin-top: 5.6rem;
  padding-block: 0.8rem;
  visibility: visible;
  overflow: visible;
  opacity: 1;
  transition-delay: 0s, 0s;
}

#input-container.sticky {
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
}

.input-container__head {
  display: none;
  position: relative;
}

@media not screen and (min-width: 910px) {
  .input-container__head {
    flex-direction: column;
  }
}

.inner:has(.message) + #input-container .input-container__head,
#input-container.sticky .input-container__head,
.input-container__head:has(.series-input-head-group--show) {
  display: flex;
}

.input-container__head:has(.series-input-head-group) {
  margin-bottom: 0.8rem;
}

.series-input-head-group {
  display: none;
  align-items: center;
  column-gap: 1.4rem;
}

.series-input-head-group--show {
  display: flex;
}

@media screen and (max-width: 767px) {
  .series-input-head-group {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}

.series-input-head-group__group {
  color: #2E3133;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
}

.series-input-head-group__series {
  margin-bottom: 0;
  color: #6F6F6F;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
}

.series-input-head-group--show + .no-series-input-head-group {
  display: none;
}

#input-container .group-filter {
  align-items: center;
  margin: 0 0 0.8rem;
}

@media screen and (max-width: 767px) {
  #input-container .group-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.8rem;
  }
}

.talk-id {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-left: auto;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: right;
}

.talk-id__text {
  margin: 0;
}

.talk-id svg {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .talk-id svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.textarea-container {
  border-radius: 1rem;
  border: 0.1rem solid #6F6F6F;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .textarea-container {
    margin-top: 0.6rem;
  }
}

.input-container--disabled .textarea-container {
  background: #F0F0F0;
  border-color: #F0F0F0;
}

.textarea-sub-contents {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 1.6rem 0.8rem;
  position: absolute;
  bottom: 0;
}

.textarea-counter {
  color: #6F6F6F;
  font-size: 1.2rem;
  line-height: calc(18 / 12);
}

.textarea-limit-counter {
  margin-left: 1.6rem;
  color: #6F6F6F;
  font-size: 1.2rem;
  line-height: calc(18 / 12);
}

#send-button {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: relative;
  z-index: 0;
}

#send-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(/img/landing_page/ai-assistant/ai-assistant-request_icon.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.input-container--disabled #send-button::after {
  background-image: url(/img/landing_page/ai-assistant/ai-assistant-request_icon_disabled.svg);
  cursor: default;
}

.textarea-wrapper {
  padding: 0.8rem 1.6rem 3.4rem;
  border-radius: 1rem;
}

#user-input {
  width: 100%;
  height: 2.4rem;
  padding: 0;
  font-family: helvetica, arial, meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  border: none;
  background: transparent;
  resize: none;
  position: relative;
}

#user-input:focus-visible {
  outline: none;
}

.textarea-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .textarea-footer {
    flex-direction: column;
  }
}

.textarea-attention,
.group-filter__heading-text-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  padding-left: 1.8rem;
  font-size: 1.2rem;
  line-height: calc(16 / 12);
  position: relative;
}

.textarea-attention::before,
.group-filter__heading-text-note::before {
  content: "";
  width: 1.4rem;
  height: 1.6rem;
  margin-block: auto;
  background: url(/img/landing_page/ai-assistant/ai-assistant-attention_icon.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}

.failure-message a,
.textarea-attention a {
  color: #277A80;
  font-weight: bold;
  text-decoration: underline;
}

.copyright {
  margin: 0.8rem 0 0 auto;
  text-align: left;
  font-family: Inter;
  font-size: 1rem;
  line-height: calc(16 / 13);
}

@media screen and (max-width: 767px) {
  .copyright {
    margin-left: 0;
  }
}

.inner {
  max-width: 120rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: 100vw;
    padding-inline: 2rem;
  }
}

.app {
  padding-top: 12rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .app {
    padding: 11.2rem 0 0;
  }
}

.app__icon-container {
  display: inline-block;
  width: 12rem;
  height: 12rem;
  margin-bottom: 3.2rem;
  clip-path: circle(6rem);
}

@media screen and (max-width: 767px) {
  .app__icon-container {
    width: 13rem;
    height: 13rem;
  }
}

.app__icon-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.app__icon {
  --gradient-color-1: #4fd0ff;
  --gradient-color-2: #764df1;
  --gradient-color-3: #fc4f6e;
}

.app__title {
  margin: 0 0 3.2rem;
  font-size: 3.6rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .app__title {
    font-size: 2.8rem;
  }
}

.app__annotation {
  margin: 3.2rem 0 0;
  padding: 1.6rem;
  background: #FAFAFA;
  border: 0.1rem solid #F0F0F0;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .app__annotation {
    font-size: 1.4rem;
  }
}

.app__annotation-link {
  color: currentColor;
  text-decoration: underline;
}

@media (hover: hover) {
  .app__annotation-link:hover {
    text-decoration: none;
  }
}

.series-head-group {
  display: none;
}

.series-head-group--show {
  display: block;
}

.series-head-group__text {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}

.series-head-group__link {
  color: var(--brandRed);
  font-weight: bold;
  text-decoration: underline;
}

.series-head-group--show + .no-series-head-group {
  display: none;
}

.app__title-h2 {
  margin-top: 4.8rem;
  font-size: 2.8rem;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .app__title-h2 {
    font-size: 2.2rem;
  }
}

.group-filter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

@media screen and (max-width: 767px) {
  .group-filter {
    flex-direction: column;
  }
}

.group-filter--has-select {
  flex-direction: row;
}

.group-filter__heading,
.series-filter__heading {
  display: flex;
  align-items: center;
  margin: 0;
}

.group-filter__heading-label,
.series-filter__heading-label {
  display: flex;
  align-items: center;
  margin-right: 0.6rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--brandRed);
  color: var(--brandRed);
  font-size: 1.2rem;
  font-weight: normal;
  white-space: nowrap;
  line-height: 1;
}

.series-filter__heading-label {
  border-color: #B9BDBE;
  color: var(--brandGray);
}

@media screen and (max-width: 767px) {
  .group-filter__heading-label,
  .series-filter__heading-label {
    margin-right: 0.8rem;
  }
}

.group-filter__label {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .group-filter__label {
    column-gap: 0.4rem;
  }
}

.group-filter__heading-text,
.series-filter__heading-text {
  margin: 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .group-filter__heading-text,
  .series-filter__heading-text {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.group-filter__label-text,
.series-filter__label-text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}

.group-filter__heading-tooltip,
.series-filter__heading-tooltip,
.group-filter__tooltip,
.common-tooltip {
  display: flex;
  align-items: center;
  position: relative;
}

.group-filter__heading-tooltip,
.series-filter__heading-tooltip {
  margin-left: 0.8rem;
  top: 0.2rem;
}

.group-filter__heading-tooltip {
  font-weight: normal;
}

.group-filter__tooltip,
.series-filter__tooltip {
  top: 0.1rem;
}

.group-filter .common-tooltip__anchor,
.series-filter .common-tooltip__anchor {
  pointer-events: auto;
}

.common-tooltip__anchor:hover circle[fill="#2E3133"],
.common-tooltip__anchor:hover path[fill="#2E3133"],
.series-filter__heading-tooltip:hover circle[fill="#2E3133"],
.series-filter__heading-tooltip:hover path[fill="#2E3133"] {
  fill: var(--brandRed);
  transition: fill .3s;
}

.common-tooltip__tooltip {
  padding: 0.8rem;
  background: #FFF;
  border-radius: 1rem;
  box-shadow: 0.4rem 0.4rem 0.8rem 0px rgba(166, 171, 189, 0.25);
  font-size: 1.2rem;
  font-weight: normal;
  white-space: nowrap;
  position: absolute;
  bottom: calc(100% + 1.1rem);
  left: -1.4rem;
  translate: 0 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.common-tooltip__tooltip--gray {
  background: var(--brandGray);
  color: #FFF;
}

.common-tooltip__tooltip--bottom {
  top: calc(100% + 1.1rem);
  bottom: auto;
  translate: 0 -0.5rem;
}

.common-tooltip__tooltip--right {
  right: -1.4rem;
  left: auto;
}

@media screen and (max-width: 767px) {
  .common-tooltip__tooltip--right-sp {
    right: -1.4rem;
    left: auto;
  }
}

.common-tooltip__tooltip::after {
  content: "";
  display: block;
  width: 1.2rem;
  aspect-ratio: 2 / 1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #FFF;
  position: absolute;
  bottom: calc(-1.2rem / 2);
  left: 1.6rem;
}

.common-tooltip__tooltip--gray::after {
  background: var(--brandGray);
}

.common-tooltip__tooltip--bottom::after {
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  top: calc(-1.2rem / 2);
  bottom: auto;
}

.common-tooltip__tooltip--right::after {
  right: 1.6rem;
  left: auto;
}

@media screen and (max-width: 767px) {
  .common-tooltip__tooltip--right-sp::after {
    right: 1.6rem;
    left: auto;
  }
}

@media screen and not (max-width: 767px) {
  :hover + .common-tooltip__tooltip,
  .common-tooltip__tooltip:hover {
    translate: 0 0;
    opacity: 1;
    visibility: visible;
  }
}

.group-filter .common-tooltip__anchor:hover + .common-tooltip__tooltip,
.group-filter .common-tooltip__tooltip:hover,
.series-filter__heading .common-tooltip__anchor:hover + .common-tooltip__tooltip,
.series-filter__heading .common-tooltip__tooltip:hover {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}

.group-filter__heading-text-note {
  margin-top: 0;
}

.group-filter__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media screen and (max-width: 767px) {
  .group-filter__btns {
    gap: 0.4rem;
  }
}

.group-filter__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.group-filter__btn input[type="radio"] {
  display: none;
}

.group-filter__btn label {
  min-height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: #FFF;
  border-radius: 1.6rem;
  border: 0.1rem solid #B9BDBE;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s;
}

@media screen and (max-width: 767px) {
  .group-filter__btn label {
    padding-block: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.group-filter__btn:has([disabled]) label {
  color: #2E3133!important;
  background: #F0F0F0!important;
  border-color: #B9BDBE!important;
}

.group-filter__btn label:hover,
.group-filter__btn input[type="radio"]:checked + label {
  color: #FFF;
  border-color: var(--brandRed);
  background: var(--brandRed);
}

.group-filter__btn input[type="radio"][disabled]:checked + label {
  color: #FFF!important;
  background: #6F6F6F!important;
  border-color: #6F6F6F!important;
}

.group-filter__select-wrap {
  position: relative;
}

.group-filter__select-wrap::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-block: auto;
  border-right: 0.1rem solid var(--brandRed);
  border-bottom: 0.1rem solid var(--brandRed);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.6rem;
  translate: 0 -0.25rem;
  rotate: 45deg;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .group-filter__select-wrap::before {
    left: 1rem;
  }
}

.group-filter__select {
  padding: 0.4rem 1.6rem 0.4rem 3.4rem;
  border: none;
  background: #FAFAFA;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.5;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .group-filter__select {
    width: 100%;
    padding: 0.4rem 0.8rem 0.4rem 2.6rem;
  }
}

.series-filter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  margin-top: 2.4rem;
  visibility: hidden;
  opacity: 0;
  transition-property: opacity, visibility;
  transition-duration: .3s, 0s;
  transition-delay: 0s, 0s;
  pointer-events: none;
}

.group-filter:has(input[type="radio"]:checked) + .series-filter {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.series-filter__text {
  margin-bottom: 0;
  position: relative;
}

.series-filter__button {
  color: var(--brandRed);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
}

.series-filter__button:focus-visible {
  outline: none;
}

/* Series Filter Modal */
html:has(.float-select-series-modal--open),
body:has(.float-select-series-modal--open) {
  overflow: hidden;
}

.float-select-series-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
}

.float-select-series-modal--open {
  display: block;
}

.float-select-series-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: min(120rem, calc(100dvw - 10rem));
  height: min(82rem, calc(100dvh - 10rem));
  padding: 4rem;
  border-radius: 0.4rem;
  background: #FFF;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content {
    width: min(72.8rem, calc(100dvw - 2rem));
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content {
    gap: 2.4rem;
    width: 34.5rem;
    height: calc(100vh - 4.8rem);
    padding: 3.6rem 2rem 2.8rem;
  }
}

.float-select-series-modal__content-head {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-head {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.float-select-series-modal__content-body {
  flex: 1 1 0;
  overflow: hidden;
  border-bottom: 1px solid #DDD;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-body {
    width: 100%;
  }
}

.float-select-series-modal__content-body-container {
  display: flex;
  gap: 0.8rem;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-body-container {
    width: calc(30.5rem * 2 + 0.8rem);
    transition: translate .3s;
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-body-container--show-series {
    width: calc(30.5rem * 2 + 0.8rem);
    translate: calc(-30.5rem + -0.8rem) 0;
  }
}

.float-select-series-modal__content-filter__btns {
  flex: 0 0 28rem;
  width: 28rem;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-filter__btns {
    width: 24rem;
    flex-basis: 24rem;
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-filter__btns {
    width: 30.5rem;
    flex-basis: 30.5rem;
  }
}

.float-select-series-modal__content-group-filter__btn input[type="radio"] {
  display: none;
}

.float-select-series-modal__content-group-filter__btn label {
  display: block;
  padding: 0.8rem 4.2rem 0.8rem 1.6rem;
  border-left: 0.2rem solid transparent;
  color: #222;
  font-size: 1.4rem;
  line-height: calc(16 / 14);
  cursor: pointer;
  position: relative;
}

.float-select-series-modal__content-group-filter__btn label::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #EA0437;
  border-right: 1px solid #EA0437;
  rotate: 45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin-block: auto;
}

.float-select-series-modal__content-group-filter__btn input[type="radio"]:checked + label {
  background: #FAFAFA;
  border-left-color: #EA0437;
  color: #EA0437;
}

.float-select-series-modal__content-series-wrapper {
  flex: 1 1 80.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 80.4rem;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-series-wrapper {
    width: 30.5rem;
    flex-basis: 30.5rem;
  }
}

.float-select-series-modal__content-back-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-back-btn {
    display: block;
    padding-left: 1.8rem;
    color: #222;
    font-size: 1.2rem;
    line-height: 1;
    text-align: left;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-back-btn::after {
    content: "";
    width: 1rem;
    height: 1rem;
    background: url(/img/landing_page/ai-assistant/ai-assistant-arrow_red.svg) no-repeat center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-block: auto;
    rotate: 180deg;
  }
}

.float-select-series-modal__content-series-search {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1.3rem;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-series-search {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: -1.6rem;
  }
}

.float-select-series-modal__content-series-search-switch-end-product {
  flex: 1 0;
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-series-search-switch-end-product {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-series-search-switch-end-product {
    gap: 1rem;
  }
}

.float-select-series-modal__content-series-search-switch-end-product-text {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #6F6F6F;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-series-search-switch-end-product-text {
    font-size: 1.2rem;
  }
}

.float-select-series-modal__content-series-search-switch-end-product-btns {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.4rem;
  border: 1px solid #DDD;
  background: #FFF;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-series-search-switch-end-product-btns {
    padding: 0.4rem;
  }
}

.float-select-series-modal__content-series-search-switch-end-product-btn {
  flex: 0 0 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  padding: 1rem;
  background: transparent;
  border-radius: 0.2rem;
  border: 1px solid transparent;
  color: #6F6F6F;
  font-size: 1.2rem;
  line-height: 1.4;
  appearance: none;
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-series-search-switch-end-product-btn {
    flex-basis: auto;
    width: auto;
    padding: 0.2rem 0.8rem;
  }
}

.float-select-series-modal__content-series-search-switch-end-product-btn--active {
  border-color: #EA0437;
  color: #EA0437;
  font-weight: bold;
}

.series-search-input-wrapper {
  flex: 1 1;
  display: flex;
  align-items: center;
  padding: 1rem 4rem 1rem 1.6rem;
  background: #FFF;
  border-radius: 0.4rem;
  border: 1px solid #DDD;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .series-search-input-wrapper {
    flex: 0 1 20.8rem;
    width: 20.8rem;
  }
}

@media screen and (max-width: 767px) {
  .series-search-input-wrapper {
    flex: auto;
    width: auto;
  }
}

.series-search-input-wrapper::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(/img/landing_page/ai-assistant/ai-assistant-search_red.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.6rem;
  margin-block: auto;
}

.series-search-input-wrapper:has(input:focus-visible) {
  border-color: #EA0437;
}

.series-search-input-wrapper input {
  width: 100%;
  appearance: none;
  border: none;
  background: transparent;
  color: #6F6F6F;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .series-search-input-wrapper input {
    font-size: 1.4rem;
  }
}

.series-search-input-wrapper input::placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.series-search-input-wrapper input:focus-visible {
  outline: none;
}

.float-select-series-modal__content-series-container {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.float-select-series-modal__content-series-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 1.6rem;
}

.float-select-series-modal__content-series-list-item {
  display: none;
}

.float-select-series-modal__content-series-list-item:has(.float-select-series-modal__content-series-list-item-body-item:not(.end-product, .no-match)) {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.float-select-series-modal__content-series-list-item--hide {
  display: none;
}

.float-select-series-modal__content-series-list-item-head,
.float-select-series-modal__content-series-wrapper:has(#series-search:not(:placeholder-shown)) .float-select-series-modal__content-series-list-item-head {
  display: none;
}

.float-select-series-modal__content-series-list-item:has(.float-select-series-modal__content-series-list-item-body-item:not(.end-product, .no-match)) .float-select-series-modal__content-series-list-item-head {
  display: block;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #DDD;
  color: #222;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.float-select-series-modal__content-series-list-item-body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.float-select-series-modal__content-series-list-item-body-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  width: calc((100% - (0.8rem * 3)) / 4);
}

@media screen and (max-width: 1024px) {
  .float-select-series-modal__content-series-list-item-body-item {
    width: calc((100% - (0.8rem * 1)) / 2);
  }
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-series-list-item-body-item {
    flex-basis: calc(100% / 2 - 0.8rem);
  }
}

.float-select-series-modal__content-series-list-item-body-item.end-product,
.float-select-series-modal__content-series-list-item-body-item.no-match {
  display: none;
}

.float-select-series-modal__content-series-list-item-body-item input[type="radio"] {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 0.2rem solid #6F6F6F;
  background: #FFF;
  appearance: none;
  position: relative;
  cursor: pointer;
}

.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:hover,
.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:checked {
  border-color: #DE0435;
}

.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:hover::after,
.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:checked::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #DE0435;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.float-select-series-modal__content-series-list-item-body-item label {
  color: #222;
  font-size: 1.4rem;
  line-height: calc(16 / 14);
  cursor: pointer;
}

.float-select-series-modal__content-series-list-item-body-item label:hover,
.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:hover + label {
  color: #EA0437;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 0.1rem;
  text-underline-position: from-font;
}

.float-select-series-modal__content-series-list-item-body-item input[type="radio"]:checked + label {
  color: #EA0437;
}

.float-select-series-modal__content-series-list-no-result {
  display: none;
  margin: 0;
  color: #6F6F6F;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.float-select-series-modal__content-series-wrapper:has(#series-search:not(:placeholder-shown)) .float-select-series-modal__content-series-list:not(:has(.float-select-series-modal__content-series-list-item:not(.float-select-series-modal__content-series-list-item--hide))) + .float-select-series-modal__content-series-list-no-result {
  display: block;
}

.float-select-series-modal__content-footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
}

.float-select-series-modal__content-footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  min-width: 18rem;
  padding: 1.3rem 1.6rem 1.3rem 3.4rem;
  border: 1px solid #DDD;
  border-radius: 0.4rem;
  background: #DDD;
  color: #6F6F6F;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  appearance: none;
  position: relative;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-footer-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 1.3rem 0.8rem 1.3rem 2.2rem;
    font-size: 1.1rem;
  }
}

.float-select-series-modal__content-footer-btn-no-filter {
  background: #FFF;
  color: #222;
}

.float-select-series-modal__content:not(:has(.float-select-series-modal__content-filter__btns input[type="radio"]:checked)) .float-select-series-modal__content-footer-btn-no-filter,
.float-select-series-modal__content:has(.float-select-series-modal__content-group-filter__btn--selected input[type="radio"]:checked) .float-select-series-modal__content-footer-btn-no-filter {
  border-color: #DDD;
  background: #DDD;
  color: #6F6F6F;
  pointer-events: none;
}

.float-select-series-modal__content-footer-btn-no-filter::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(/img/landing_page/ai-assistant/ai-assistant-cross_gray.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.6rem;
  margin-block: auto;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-footer-btn-no-filter::before {
    left: 0.8rem;
  }
}

.float-select-series-modal__content-footer-btn-apply {
  padding: 1.3rem 3.4rem 1.3rem 1.6rem;
  border-color: #EA0437;
  background: #EA0437;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-footer-btn-apply {
    padding: 1.3rem 2.2rem 1.3rem 0.8rem;
  }
}

.float-select-series-modal__content-footer-btn-apply::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(/img/landing_page/ai-assistant/ai-assistant-arrow_white.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  right: 1.6rem;
  bottom: 0;
  margin-block: auto;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-footer-btn-apply::after {
    right: 0.8rem;
  }
}

.float-select-series-modal__content:not(:has(.float-select-series-modal__content-series-list-item input[type="radio"]:checked)) .float-select-series-modal__content-footer-btn-apply,
.float-select-series-modal__content:has(.float-select-series-modal__content-series-list-item-body-item--applied input[type="radio"]:checked) .float-select-series-modal__content-footer-btn-apply,
.float-select-series-modal__content:has(.float-select-series-modal__content-series-search-switch-end-product-btn--hide.float-select-series-modal__content-series-search-switch-end-product-btn--active):has([data-discontinued-flag="true"] input[type="radio"]:checked) .float-select-series-modal__content-footer-btn-apply {
  border-color: #DDD;
  background: #DDD;
  color: #6F6F6F;
  pointer-events: none;
}

.float-select-series-modal__content:not(:has(.float-select-series-modal__content-series-list-item input[type="radio"]:checked)) .float-select-series-modal__content-footer-btn-apply::after,
.float-select-series-modal__content:has(.float-select-series-modal__content-series-list-item-body-item--applied input[type="radio"]:checked) .float-select-series-modal__content-footer-btn-apply::after,
.float-select-series-modal__content:has(.float-select-series-modal__content-series-search-switch-end-product-btn--hide.float-select-series-modal__content-series-search-switch-end-product-btn--active):has([data-discontinued-flag="true"] input[type="radio"]:checked) .float-select-series-modal__content-footer-btn-apply::after{
  background-image: url(/img/landing_page/ai-assistant/ai-assistant-arrow_gray.svg)
}

.float-select-series-modal__content-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -3.2rem;
}

@media screen and (max-width: 767px) {
  .float-select-series-modal__content-notes {
    margin-top: -2.4rem;
  }
}

.float-select-series-modal__content-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  padding-left: 1.8rem;
  font-size: 1.2rem;
  line-height: calc(16 / 12);
  position: relative;
}

.float-select-series-modal__content-note::before {
  content: "";
  width: 1.4rem;
  height: 1.6rem;
  margin-block: auto;
  background: url(/img/landing_page/ai-assistant/ai-assistant-attention_icon.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
}

.float-select-series-modal__content-btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/img/landing_page/ai-assistant/ai-assistant-cross_gray.svg) no-repeat center / contain;
  cursor: pointer;
}

@media not screen and (max-width: 767px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}