@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  background: #fff;
  color: #333;
  overflow-y: auto;
}

body {
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

main {
  display: block;
  position: relative;
}

section {
  display: block;
  position: relative;
}

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

video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

b, strong, h1, h2, h3, h4, h5 {
  font-weight: 700;
}

sup {
  top: -1em;
}

/*wrap------------*/
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrap {
    max-width: 100%;
  }
}

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

main {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}

/*====================
  Header
====================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .header {
    border: none;
    height: 60px;
  }
}
.header.scrolled {
  background: #FFF;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header .header_container {
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .header .header_container {
    height: 60px;
    padding: 0 10px;
  }
}
.header .header_logo img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header .header_logo img {
    height: 22px;
  }
}
.header .header_nav {
  margin-left: auto;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .header_nav {
    display: none;
  }
}
.header .header_nav .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0px 20px;
  margin: 0;
  padding: 0;
}
.header .header_nav .nav_list .nav_item a {
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .header_nav .nav_list .nav_item a:hover {
  color: #333;
}
.header .header_nav .nav_list .nav_item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#6AE0FF), to(#FF97FD));
  background: -webkit-linear-gradient(left, #6AE0FF, #FF97FD);
  background: linear-gradient(90deg, #6AE0FF, #FF97FD);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header .header_nav .nav_list .nav_item a:hover::after {
  width: 100%;
}
.header .header_cta .cta_button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 48px;
  background: #2B0A49;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  border-radius: 50px;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .header_cta .cta_button {
    padding: 8px 0px;
    font-size: 3.2vw;
    min-width: 110px;
  }
}
.header .header_cta .cta_button::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: -webkit-linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -1;
  -webkit-animation: rainbow-smooth 10s ease-in-out infinite;
          animation: rainbow-smooth 10s ease-in-out infinite;
}
.header .header_cta .cta_button:hover {
  -webkit-box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
          box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
}

/*====================
  SMS Sub Header
====================*/
.sub_header {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #231815;
  z-index: 99998;
}
@media screen and (max-width: 768px) {
  .sub_header {
    top: 60px;
    height: auto;
  }
}
.sub_header .sub_header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_container {
    padding: 5px 10px 5px 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    height: auto;
    min-height: 40px;
  }
}
.sub_header .sub_header_logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.sub_header .sub_header_logo .sub_header_logo_img {
  width: auto;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_logo .sub_header_logo_img {
    height: auto;
    max-width: 196px;
    max-height: 18px;
  }
}
.sub_header .sub_header_nav .sub_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0 24px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav .sub_nav_list {
    display: none;
  }
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
    font-size: 3.7333333333vw;
  }
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a:hover {
  color: #ffffff;
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a:hover::after {
    width: 100%;
  }
}
.sub_header .sub_nav_toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_nav_toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-left: auto;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon {
    display: block;
    width: 14px;
    height: 10px;
    position: relative;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::before, .sub_header .sub_nav_toggle .sub_nav_toggle_icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    left: 0;
    -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::before {
    top: 0;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::after {
    bottom: 0;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .sub_header .sub_nav_toggle[aria-expanded=true] .sub_nav_toggle_icon::before {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .sub_header .sub_nav_toggle[aria-expanded=true] .sub_nav_toggle_icon::after {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-45deg);
            transform: translateY(50%) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .sub_header .sub_header_nav.is-open {
    grid-template-rows: 1fr;
  }
  .sub_header .sub_header_nav .sub_nav_list {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
    display: block;
    padding: 10px 15px;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-child(1) a, .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-child(2) a {
    padding-top: 18px;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-last-child(1) a, .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-last-child(2) a {
    padding-bottom: 18px;
  }
}

/*====================
  Footer
====================*/
.footer {
  background: #231815;
  padding: 60px 0 30px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
}
.footer .footer_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer_content {
    gap: 30px;
  }
}
.footer .footer_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.footer .footer_logo .footer_logo_img {
  max-width: 540px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo .footer_logo_img {
    max-width: 200px;
  }
}
.footer .footer_logo .footer_tagline {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo .footer_tagline {
    font-size: 3.7333333333vw;
  }
}
.footer .footer_nav .footer_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list {
    gap: 20px;
  }
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link {
  color: #FFF;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link {
    font-size: 3.4666666667vw;
  }
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#f093fb), to(#f5576c));
  background: -webkit-linear-gradient(left, #f093fb 0%, #f5576c 100%);
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link:hover {
  color: #ffffff;
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link:hover::after {
  width: 100%;
}
.footer .footer_nav .footer_nav_list .footer_nav_item:not(:last-child)::after {
  content: "|";
  color: #FFF;
  margin-left: 20px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list .footer_nav_item:not(:last-child)::after {
    font-size: 3.4666666667vw;
  }
}
.footer .footer_copyright {
  width: 100%;
}
.footer .footer_copyright .copyright_text {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #FFF;
  margin: 0;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer .footer_copyright .copyright_text {
    font-size: 2.9333333333vw;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*====================
    Animations
  ====================*/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.fadein.is-animated {
  opacity: 1;
}

.fadeinUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.fadeinUp.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeinBound {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.fadeinBound.is-animated {
  opacity: 1;
  -webkit-animation: bounce-loop 1.5s ease-out infinite;
          animation: bounce-loop 1.5s ease-out infinite;
}

.delay-01s {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-02s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-03s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-04s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-05s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.delay-06s {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.delay-07s {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.delay-08s {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.delay-09s {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.delay-10s {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/*====================
   etc
  ====================*/
/* アンカーリンク用スクロール余白調整 */
.anchor_link {
  scroll-margin-top: 80px;
  /* ヘッダー高さ + 余白 */
}
@media screen and (max-width: 768px) {
  .anchor_link {
    scroll-margin-top: 60px;
    /* スマホ用ヘッダー高さ + 余白 */
  }
}

/*====================
  Animations
====================*/
@-webkit-keyframes bounce-loop {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounce-loop {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes rainbow-smooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes rainbow-smooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#ivrpage {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #ivrpage {
    padding-top: 40px;
  }
}
#ivrpage .anchor_link {
  scroll-margin-top: 160px;
}
@media screen and (max-width: 768px) {
  #ivrpage .anchor_link {
    scroll-margin-top: 120px;
  }
}
#ivrpage .fv_section {
  position: relative;
  background: url("../img/ivr/bg_fv.png") #231815 center center/cover no-repeat;
  min-height: calc(100vh - 140px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section {
    min-height: calc(100vh - 100px);
  }
}
#ivrpage .fv_section .fv_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_inner {
    padding: 40px 15px;
    gap: 20px;
  }
}
#ivrpage .fv_section .fv_logo img {
  max-width: 760px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_logo img {
    max-width: 90%;
  }
}
#ivrpage .fv_section .fv_catch_text {
  font-size: 3.8rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_catch_text {
    font-size: 5.8666666667vw;
  }
}
#ivrpage .fv_section .fv_catch_text sup {
  font-size: 50%;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_catch_text strong {
    display: block;
  }
}
#ivrpage .fv_section .fv_catch_note {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#ivrpage .fv_section .fv_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#ivrpage .fv_section .fv_img img {
  width: 100%;
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  #ivrpage .fv_section .fv_img img {
    max-width: 90%;
  }
}
#ivrpage .intro_section {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section {
    padding: 60px 0;
  }
}
#ivrpage .intro_section .intro_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_inner {
    gap: 24px;
  }
}
#ivrpage .intro_section .intro_heading {
  text-align: center;
}
#ivrpage .intro_section .intro_title {
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_title {
    font-size: 8.5333333333vw;
  }
}
#ivrpage .intro_section .intro_subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_subtitle {
    font-size: 4.8vw;
  }
}
#ivrpage .intro_section .intro_subtitle em {
  font-size: 120%;
  color: #2B0A49;
  font-style: italic;
}
#ivrpage .intro_section .intro_desc {
  text-align: center;
}
#ivrpage .intro_section .intro_desc_text {
  font-size: 1.8rem;
  color: #444;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_desc_text {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}
#ivrpage .intro_section .intro_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#ivrpage .intro_section .intro_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  height: 100%;
}
#ivrpage .intro_section .intro_item_label {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #2B0A49;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 999px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_item_label {
    font-size: 3.7333333333vw;
    padding: 8px 24px;
  }
}
#ivrpage .intro_section .intro_item_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #2B0A49;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_item_body {
    padding: 16px;
    gap: 14px;
  }
}
#ivrpage .intro_section .intro_item_catch {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B0A49;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ivrpage .intro_section .intro_item_catch {
    padding-top: 15px;
    font-size: 4.2666666667vw;
  }
}
#ivrpage .intro_section .intro_item_catch em {
  font-size: 120%;
  color: #049DD6;
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF45C));
  background: -webkit-linear-gradient(transparent 60%, #FFF45C 60%);
  background: linear-gradient(transparent 60%, #FFF45C 60%);
}
#ivrpage .intro_section .intro_item_img img {
  width: 100%;
  height: auto;
  display: block;
}
#ivrpage .feature_section {
  padding: 120px 0;
  background: #F5FAFA;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section {
    padding: 60px 0;
  }
}
#ivrpage .feature_section .feature_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_inner {
    gap: 40px;
  }
}
#ivrpage .feature_section .feature_heading {
  text-align: center;
}
#ivrpage .feature_section .feature_label {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_label {
    font-size: 3.2vw;
  }
}
#ivrpage .feature_section .feature_title {
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_title {
    font-size: 6.9333333333vw;
  }
}
#ivrpage .feature_section .feature_issues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
#ivrpage .feature_section .feature_issues::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 40px;
  height: 40px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.12);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.12);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_issues {
    width: 90%;
    grid-template-columns: 1fr;
  }
}
#ivrpage .feature_section .feature_issue_item {
  padding: 36px 30px;
  text-align: center;
  position: relative;
}
#ivrpage .feature_section .feature_issue_item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: #231815;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_issue_item {
    padding: 24px 20px;
  }
  #ivrpage .feature_section .feature_issue_item::after {
    width: 80%;
    height: 1px;
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#ivrpage .feature_section .feature_issue_item:last-child::after {
  display: none;
}
#ivrpage .feature_section .feature_issue_title {
  font-size: 2rem;
  font-weight: 700;
  color: #2B0A49;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_issue_title {
    font-size: 4.8vw;
    margin-bottom: 6px;
  }
}
#ivrpage .feature_section .feature_issue_desc {
  font-size: 1.6rem;
  color: #444;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_issue_desc {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .feature_section .feature_lead {
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_lead {
    font-size: 5.3333333333vw;
  }
}
#ivrpage .feature_section .feature_lead em {
  font-style: italic;
}
#ivrpage .feature_section .feature_merits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_merits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#ivrpage .feature_section .feature_merit_item {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: #2B0A49 1px solid;
}
#ivrpage .feature_section .feature_merit_heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  padding: 20px 24px;
  background: #231815;
}
#ivrpage .feature_section .feature_merit_icon {
  width: auto;
  max-height: 18px;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_merit_icon {
    max-height: 15px;
  }
}
#ivrpage .feature_section .feature_merit_label {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_merit_label {
    font-size: 4.2666666667vw;
  }
}
#ivrpage .feature_section .feature_merit_desc {
  font-size: 1.6rem;
  color: #444;
  line-height: 1.9;
  padding: 24px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  #ivrpage .feature_section .feature_merit_desc {
    font-size: 3.7333333333vw;
    padding: 16px;
  }
}
#ivrpage .ivr_intro_section {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section {
    padding: 60px 0;
  }
}
#ivrpage .ivr_intro_section .ivr_intro_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section .ivr_intro_inner {
    gap: 32px;
  }
}
#ivrpage .ivr_intro_section .ivr_intro_heading {
  text-align: center;
}
#ivrpage .ivr_intro_section .ivr_intro_title {
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section .ivr_intro_title {
    font-size: 6.9333333333vw;
  }
}
#ivrpage .ivr_intro_section .ivr_intro_title sup {
  font-size: 50%;
}
#ivrpage .ivr_intro_section .ivr_intro_note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 6px;
  text-align: right;
}
#ivrpage .ivr_intro_section .ivr_intro_logos {
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
#ivrpage .ivr_intro_section .marquee_track {
  width: 100%;
  overflow: hidden;
}
#ivrpage .ivr_intro_section .marquee_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#ivrpage .ivr_intro_section .marquee_inner--ltr {
  -webkit-animation: marquee-ltr 30s linear infinite;
          animation: marquee-ltr 30s linear infinite;
}
#ivrpage .ivr_intro_section .marquee_inner--rtl {
  -webkit-animation: marquee-rtl 30s linear infinite;
          animation: marquee-rtl 30s linear infinite;
}
#ivrpage .ivr_intro_section .marquee_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#ivrpage .ivr_intro_section .ivr_intro_logo_img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section .ivr_intro_logo_img {
    height: 50px;
  }
}
@-webkit-keyframes marquee-ltr {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee-ltr {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes marquee-rtl {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee-rtl {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#ivrpage .ivr_intro_section .ivr_intro_desc {
  text-align: center;
}
#ivrpage .ivr_intro_section .ivr_intro_desc_text {
  font-size: 1.8rem;
  color: #444;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section .ivr_intro_desc_text {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}
#ivrpage .ivr_intro_section .ivr_intro_cta {
  width: 100%;
  text-align: center;
}
#ivrpage .ivr_intro_section .ivr_intro_cta_btn {
  width: 500px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  isolation: isolate;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_intro_section .ivr_intro_cta_btn {
    width: 80%;
    padding: 15px 20px;
    font-size: 4.8vw;
  }
}
#ivrpage .ivr_intro_section .ivr_intro_cta_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -2;
  -webkit-animation: rainbow-smooth 10s ease-in-out infinite;
          animation: rainbow-smooth 10s ease-in-out infinite;
}
#ivrpage .ivr_intro_section .ivr_intro_cta_btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #2B0A49;
  border-radius: 47px;
  z-index: -1;
}
#ivrpage .ivr_intro_section .ivr_intro_cta_btn:hover {
  -webkit-box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
          box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
}
#ivrpage .service_section {
  padding: 100px 0;
  background: #F5FAFA;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section {
    padding: 60px 0;
  }
}
#ivrpage .service_section .service_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
#ivrpage .service_section .service_heading {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_heading {
    margin-bottom: 40px;
  }
}
#ivrpage .service_section .service_label {
  display: inline-block;
  background: #231815;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
#ivrpage .service_section .service_title {
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_title {
    font-size: 6.4vw;
  }
}
#ivrpage .service_section .service_new_features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_new_features {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }
}
#ivrpage .service_section .service_new_feature_item {
  position: relative;
  border-radius: 12px;
  padding: 20px 32px 32px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_new_feature_item {
    padding: 36px 20px 24px;
  }
}
#ivrpage .service_section .service_new_badge {
  display: inline-block;
  background: #2B0A49;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
#ivrpage .service_section .service_new_feature_img {
  margin-bottom: 20px;
}
#ivrpage .service_section .service_new_feature_img img {
  max-height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#ivrpage .service_section .service_new_feature_title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_new_feature_title {
    font-size: 4.8vw;
  }
}
#ivrpage .service_section .service_new_feature_desc {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_new_feature_desc {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .service_section .service_functions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_functions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#ivrpage .service_section .service_function_item {
  padding: 24px;
  border-radius: 8px;
  background: #FFF;
}
#ivrpage .service_section .service_function_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
#ivrpage .service_section .service_function_icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_function_icon {
    width: 50px;
    height: 50px;
  }
}
#ivrpage .service_section .service_function_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_function_title {
    font-size: 4vw;
  }
}
#ivrpage .service_section .service_function_desc {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #ivrpage .service_section .service_function_desc {
    font-size: 3.4666666667vw;
  }
}
#ivrpage .casestudy_section {
  padding: 100px 0;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section {
    padding: 60px 0;
  }
}
#ivrpage .casestudy_section .casestudy_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
#ivrpage .casestudy_section .casestudy_heading {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_heading {
    margin-bottom: 40px;
  }
}
#ivrpage .casestudy_section .casestudy_label {
  display: inline-block;
  background: #231815;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
#ivrpage .casestudy_section .casestudy_title {
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_title {
    font-size: 8.5333333333vw;
  }
}
#ivrpage .casestudy_section .casestudy_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
#ivrpage .casestudy_section .casestudy_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #F2F2F2;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_item {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
#ivrpage .casestudy_section .casestudy_img {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  padding: 40px 12px;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_img {
    padding: 30px 8px;
  }
}
#ivrpage .casestudy_section .casestudy_img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: -webkit-linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  z-index: -2;
}
#ivrpage .casestudy_section .casestudy_img::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: #fff;
  z-index: -1;
}
#ivrpage .casestudy_section .casestudy_img img {
  width: 100%;
  max-height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
#ivrpage .casestudy_section .casestudy_body {
  padding: 0px 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_body {
    padding: 24px 0px 0;
    gap: 12px;
  }
}
#ivrpage .casestudy_section .casestudy_company {
  display: inline-block;
  background: #2B0A49;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 6px 30px;
  border-radius: 999px;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_company {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .casestudy_section .casestudy_lead {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_lead {
    font-size: 4.8vw;
  }
}
#ivrpage .casestudy_section .casestudy_desc {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  #ivrpage .casestudy_section .casestudy_desc {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .casestudy_section .casestudy_desc em {
  font-style: normal;
  font-weight: 700;
  color: #111;
}
#ivrpage .qa_section {
  padding: 120px 0;
  background: #F5FAFA;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section {
    padding: 70px 0;
  }
}
#ivrpage .qa_section .qa_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_inner {
    gap: 40px;
  }
}
#ivrpage .qa_section .qa_heading {
  text-align: center;
}
#ivrpage .qa_section .qa_label {
  display: inline-block;
  background: #231815;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
#ivrpage .qa_section .qa_title {
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_title {
    font-size: 7.4666666667vw;
  }
}
#ivrpage .qa_section .qa_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#ivrpage .qa_section .qa_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_item {
    margin-bottom: 15px;
  }
}
#ivrpage .qa_section .qa_question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: #DDF1FF;
  border-radius: 50px;
  padding: 16px 30px 16px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_question {
    gap: 12px;
    padding: 10px 30px 10px 50px;
    border-radius: 30px;
  }
}
#ivrpage .qa_section .qa_icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
#ivrpage .qa_section .qa_icon_q {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  color: #2B0A49;
  font-size: 4.4rem;
  font-weight: 700;
  border: #DDF1FF 4px solid;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_icon_q {
    width: 50px;
    height: 50px;
    font-size: 6.4vw;
    left: 0;
    -webkit-transform: translate(-10%, -80%);
            transform: translate(-10%, -80%);
  }
}
#ivrpage .qa_section .qa_question_text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_question_text {
    font-size: 4vw;
  }
}
#ivrpage .qa_section .qa_answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 20px 16px 0 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_answer {
    padding: 16px 8px 0 12px;
  }
}
#ivrpage .qa_section .qa_icon_a {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #2B0A49;
  line-height: 1.6;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_icon_a {
    font-size: 4.2666666667vw;
  }
}
#ivrpage .qa_section .qa_answer_text {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #ivrpage .qa_section .qa_answer_text {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .ivr_bottom_cta_section {
  padding: 160px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_bottom_cta_section {
    padding: 80px 0;
  }
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_title {
    font-size: 6.9333333333vw;
  }
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_desc {
  font-size: 2rem;
  color: #333;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_desc {
    font-size: 3.7333333333vw;
  }
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn_wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn_wrapper {
    margin-top: 8px;
    width: 100%;
  }
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn {
  width: 500px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 28px 24px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  isolation: isolate;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn {
    width: 80%;
    padding: 18px 20px;
    font-size: 4.8vw;
  }
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -2;
  -webkit-animation: rainbow-smooth 10s ease-in-out infinite;
          animation: rainbow-smooth 10s ease-in-out infinite;
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #2B0A49;
  border-radius: 47px;
  z-index: -1;
}
#ivrpage .ivr_bottom_cta_section .ivr_bottom_cta_btn:hover {
  -webkit-box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
          box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
}

@keyframes rainbow-smooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=lp_ivr.css.map */