@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%;
  }
}
#aurora_home {
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home {
    padding-top: 40px;
  }
}
#aurora_home .anchor_link {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #aurora_home .anchor_link {
    scroll-margin-top: 110px;
  }
}
#aurora_home {
  /*====================
    SP Header Nav
  ====================*/
}
#aurora_home .home_header_nav_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #aurora_home .home_header_nav_sp {
    display: block;
    background: #231815;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  #aurora_home .home_header_nav_sp .nav_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 40px;
  }
  #aurora_home .home_header_nav_sp .nav_list .nav_item {
    text-align: center;
  }
  #aurora_home .home_header_nav_sp .nav_list .nav_item a {
    display: block;
    padding: 12px 6px;
    font-size: 3.2vw;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  #aurora_home .home_header_nav_sp .nav_list .nav_item a:hover, #aurora_home .home_header_nav_sp .nav_list .nav_item a:active {
    color: #aaa;
  }
}
#aurora_home {
  /*====================
    FV Section
  ====================*/
}
#aurora_home .fv_section {
  position: relative;
  width: 100vw;
  height: calc(100vh - 80px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #aurora_home .fv_section {
    height: calc(50vh - 60px);
  }
}
#aurora_home .fv_section .background_video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
#aurora_home .fv_section .logo_container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
#aurora_home .fv_section .logo_container .logo {
  max-width: 870px;
  width: 80vw;
  height: auto;
  -webkit-filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
          filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#aurora_home {
  /*====================
    greeting Section
  ====================*/
}
#aurora_home .greeting_section {
  padding: 120px 0;
  background: #FFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section {
    padding: 80px 0;
  }
}
#aurora_home .greeting_section .greeting_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;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_content {
    max-width: 100%;
    padding: 0 20px;
  }
}
#aurora_home .greeting_section .greeting_text {
  margin-bottom: 60px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_text {
    margin-bottom: 40px;
  }
}
#aurora_home .greeting_section .greeting_text .greeting_title {
  font-size: 4.2rem;
  font-style: italic;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_text .greeting_title {
    font-size: 7.4666666667vw;
  }
}
#aurora_home .greeting_section .greeting_text .greeting_description p {
  font-size: 2.8rem;
  font-style: italic;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_text .greeting_description p {
    font-size: 4.2666666667vw;
    line-height: 1.7;
  }
}
#aurora_home .greeting_section .greeting_text .greeting_description p:last-child {
  margin-bottom: 0;
}
#aurora_home .greeting_section .greeting_image {
  position: relative;
  max-width: 960px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_image {
    max-width: 100%;
  }
}
#aurora_home .greeting_section .greeting_image .greeting_img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#aurora_home .greeting_section .greeting_image .video_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
#aurora_home .greeting_section .greeting_image .video_wrapper .greeting_video {
  width: 100%;
  height: auto;
  display: block;
}
#aurora_home .greeting_section .greeting_image .video_wrapper video {
  border-radius: 25px;
  border: solid 1px #ccc;
}
#aurora_home .greeting_section .greeting_image .video_wrapper .video_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
#aurora_home .greeting_section .greeting_image .video_wrapper .video_play_btn:hover {
  opacity: 0.85;
  -webkit-transform: translate(-50%, -50%) scale(1.08);
          transform: translate(-50%, -50%) scale(1.08);
}
#aurora_home .greeting_section .greeting_image .video_wrapper .video_play_btn.is_playing {
  display: none;
}
#aurora_home .greeting_section .greeting_image .video_wrapper .video_play_btn .video_play_icon {
  width: 80px;
  height: 80px;
  display: block;
}
@media screen and (max-width: 768px) {
  #aurora_home .greeting_section .greeting_image .video_wrapper .video_play_btn .video_play_icon {
    width: 60px;
    height: 60px;
  }
}
#aurora_home {
  /*====================
    Vision Section
  ====================*/
}
#aurora_home .vision_section {
  padding: 120px 0 0;
  background: #F5FAFA;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section {
    padding: 80px 0 0;
  }
}
#aurora_home .vision_section .vision_content {
  position: relative;
  z-index: 1;
}
#aurora_home .vision_section .vision_header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_header {
    margin-bottom: 20px;
  }
}
#aurora_home .vision_section .vision_header .vision_title {
  font-size: 7.2rem;
  font-weight: 700;
  color: #1e293b;
  font-style: italic;
  letter-spacing: 0.07em;
  margin-bottom: 0.2em;
  text-indent: -0.25em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_header .vision_title {
    font-size: 9.6vw;
  }
}
#aurora_home .vision_section .vision_header .vision_subtitle {
  font-size: 3.6rem;
  font-weight: 700;
  font-style: italic;
  color: #475569;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_header .vision_subtitle {
    font-size: 5.3333333333vw;
  }
}
#aurora_home .vision_section .vision_header .vision_description {
  font-size: 2.4rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_header .vision_description {
    font-size: 3.7333333333vw;
  }
}
#aurora_home .vision_section .vision_product {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_product {
    padding: 0 15px;
  }
}
#aurora_home .vision_section .vision_product .product_image {
  width: 100%;
  height: auto;
}
#aurora_home .vision_section .vision_product .data_point {
  position: absolute;
  top: 7%;
  left: 37.5%;
  width: 25%;
  background-color: #ff5722;
  background: url("../img/top/bg_data.png") no-repeat center center;
  background-size: cover;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #aurora_home .vision_section .vision_product .data_point {
    position: static;
    width: 40%;
    margin: 20px auto 20px;
  }
}
#aurora_home .vision_section .vision_product .data_point img {
  width: 100%;
  height: auto;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0;
  -webkit-transform: rotate(180deg) scale(0.5);
          transform: rotate(180deg) scale(0.5);
}
#aurora_home .vision_section .vision_product .data_point img.fadeinCircle.is-animated {
  -webkit-animation: fadeinCircle 1s ease-out forwards;
          animation: fadeinCircle 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
#aurora_home {
  /*====================
    Strong Section
  ====================*/
}
#aurora_home .strong_section {
  padding: 120px 0 120px;
  background: #F5FAFA;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section {
    padding: 80px 5px 80px;
  }
}
#aurora_home .strong_section .strong_content {
  margin: 0 auto;
}
#aurora_home .strong_section .strong_header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_header {
    margin-bottom: 20px;
  }
}
#aurora_home .strong_section .strong_title {
  font-size: 3.6rem;
  font-weight: 700;
  font-style: italic;
  color: #475569;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_title {
    font-size: 5.3333333333vw;
  }
}
#aurora_home .strong_section .strong_grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_grid {
    gap: 15px;
    padding: 0 5px;
  }
}
#aurora_home .strong_section .strong_grid .strong_item {
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_grid .strong_item {
    width: calc(50% - 15px);
  }
}
#aurora_home .strong_section .strong_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_card {
    border-radius: 12px;
  }
}
#aurora_home .strong_section .strong_image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_image {
    aspect-ratio: 16/9;
  }
}
#aurora_home .strong_section .strong_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#aurora_home .strong_section .strong_card_title {
  padding: 18px 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #FFF;
  margin: 0;
  background: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_card_title {
    padding: 10px 10px;
    font-size: 3.7333333333vw;
  }
}
#aurora_home .strong_section .strong_card_title .merit_icon {
  display: inline-block;
  width: 100px;
  max-width: 35%;
  height: auto;
  margin-right: 8px;
  line-height: 0;
  padding-top: 0.2em;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_card_title .merit_icon {
    display: block;
    max-width: 50%;
    padding-left: 5px;
    margin-bottom: 5px;
  }
}
#aurora_home .strong_section .strong_card_title .merit_icon img {
  width: 100%;
  height: auto;
}
#aurora_home .strong_section .strong_description {
  padding: 12px;
  font-size: 1.6rem;
  color: #475569;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #aurora_home .strong_section .strong_description {
    padding: 10px 0;
    font-size: 3.2vw;
  }
}
#aurora_home {
  /*====================
    Solution Section
  ====================*/
}
#aurora_home .solution_section {
  padding: 120px 0 0px;
  background: #FFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section {
    padding: 80px 15px 0px;
  }
}
#aurora_home .solution_section .solution_content {
  margin: 0 auto;
}
#aurora_home .solution_section .solution_header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_header {
    margin-bottom: 20px;
  }
}
#aurora_home .solution_section .solution_header .solution_title {
  font-size: 7.2rem;
  font-weight: 700;
  color: #1e293b;
  font-style: italic;
  letter-spacing: 0.07em;
  margin-bottom: 0.2em;
  text-indent: -0.25em;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_header .solution_title {
    font-size: 9.6vw;
  }
}
#aurora_home .solution_section .solution_header .solution_subtitle {
  font-size: 3.6rem;
  font-weight: 700;
  font-style: italic;
  color: #475569;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_header .solution_subtitle {
    font-size: 5.3333333333vw;
  }
}
#aurora_home .solution_section .solution_description {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_description {
    margin-bottom: 20px;
  }
}
#aurora_home .solution_section .solution_description .solution_tagline {
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_description .solution_tagline {
    font-size: 3.7333333333vw;
    gap: 4px;
  }
}
#aurora_home .solution_section .solution_description .solution_tagline .tag {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_description .solution_tagline .tag {
    width: 40px;
  }
}
#aurora_home .solution_section .solution_description .solution_tagline .tag_text {
  color: #333;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_description .solution_tagline .tag_text {
    text-align: left;
    font-size: 3.2vw;
  }
}
#aurora_home .solution_section .solution_box {
  background: #F2F2F2;
  padding: 40px 30px 40px;
  border-radius: 30px;
  position: relative;
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_box {
    padding: 30px 15px 15px;
    margin: 0 auto;
    border-radius: 20px;
  }
}
#aurora_home .solution_section .solution_box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #F2F2F2;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_box::after {
    bottom: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #F2F2F2;
  }
}
#aurora_home .solution_section .solution_products .products_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_products .products_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0px;
  }
}
#aurora_home .solution_section .solution_products .product_card {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
#aurora_home .solution_section .solution_consulting {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting {
    border-radius: 16px;
    padding: 40px 0px;
  }
}
#aurora_home .solution_section .solution_consulting .consulting_header {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting .consulting_header {
    margin-bottom: 20px;
  }
}
#aurora_home .solution_section .solution_consulting .consulting_header .consulting_title {
  font-size: 3.2rem;
  padding: 16px 20px;
  color: #fff;
  background: -webkit-linear-gradient(315deg, #6AE0FF 0%, #FF97FD 50%, #84EDB5 100%);
  background: linear-gradient(135deg, #6AE0FF 0%, #FF97FD 50%, #84EDB5 100%);
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting .consulting_header .consulting_title {
    font-size: 4.8vw;
  }
}
#aurora_home .solution_section .solution_consulting .consulting_content .consulting_item {
  position: relative;
}
#aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_icon {
  position: absolute;
  left: 0;
  top: -10px;
  width: 200px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_icon {
    width: 30%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_description {
  font-size: 1.6rem;
  line-height: 1.8;
  background: #F2F2F2;
  padding: 18px 30px 18px 180px;
  border-radius: 50px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_description {
    font-size: 3.2vw;
    line-height: 1.4;
    padding: 10px 20px 10px 33%;
    border-radius: 30px;
  }
}
#aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_description .tech_tag {
  display: inline-block;
  background: #231815;
  color: #FFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1rem;
  margin: 4px 4px 4px 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #aurora_home .solution_section .solution_consulting .consulting_content .consulting_item .consulting_description .tech_tag {
    font-size: 2.1333333333vw;
    padding: 4px 8px;
    margin: 2px 4px 2px 0;
  }
}
#aurora_home {
  /*====================
    Products Section
  ====================*/
}
#aurora_home .products_section {
  padding: 120px 0 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section {
    padding: 80px 0 80px;
  }
}
#aurora_home .products_section .products_content {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .products_content {
    padding: 0 20px;
  }
}
#aurora_home .products_section .products_header {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .products_header {
    margin-bottom: 40px;
  }
}
#aurora_home .products_section .products_header .products_title {
  font-size: 4.8rem;
  font-style: italic;
  font-weight: 700;
  color: #1e293b;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .products_header .products_title {
    font-size: 6.4vw;
  }
}
#aurora_home .products_section .products_header .products_title span {
  position: relative;
  display: inline-block;
  background: #FFF;
  z-index: 2;
  padding-right: 20px;
}
#aurora_home .products_section .products_header .products_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #000;
}
#aurora_home .products_section .products_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .products_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#aurora_home .products_section .product_card_item {
  background: #F2F2F2;
  border-radius: 20px;
  overflow: hidden;
}
#aurora_home .products_section .product_card_item .product_card_wrapper {
  padding: 0;
  height: 100%;
  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;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_card_wrapper {
    padding: 0;
  }
}
#aurora_home .products_section .product_card_item .product_card_content {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_card_content {
    padding: 20px;
  }
}
#aurora_home .products_section .product_card_item .product_header {
  background: #000;
  padding: 20px 20px 15px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_header {
    padding: 15px 20px 10px;
  }
}
#aurora_home .products_section .product_card_item .product_header .product_logo {
  width: auto;
  max-height: 34px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_header .product_logo {
    width: auto;
    max-height: 24px;
  }
}
#aurora_home .products_section .product_card_item .product_name {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_name {
    font-size: 4.8vw;
    margin-bottom: 0.5em;
  }
}
#aurora_home .products_section .product_card_item .product_description {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#aurora_home .products_section .product_card_item .product_description p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_description p {
    font-size: 3.7333333333vw;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
#aurora_home .products_section .product_card_item .product_image {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_image {
    margin-bottom: 20px;
  }
}
#aurora_home .products_section .product_card_item .product_image img {
  width: 100%;
  height: auto;
}
#aurora_home .products_section .product_card_item .product_cta {
  margin-top: auto;
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn {
  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;
  width: 100%;
  padding: 25px 30px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("../img/top/bg_btn01.png") no-repeat center center;
  background-size: 100% auto;
  color: #FFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  #aurora_home .products_section .product_card_item .product_cta .view_detail_btn {
    padding: 12px 20px;
    font-size: 3.7333333333vw;
  }
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn::after {
  position: absolute;
  right: 7%;
  content: "→";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  background-image: url("../img/top/bg_btn01_on.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn:hover {
  background-image: url("../img/top/bg_btn01_on.png");
  color: #000;
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn.disabled {
  background: -webkit-linear-gradient(315deg, #E7E7E7 0%, #B6B6B6 100%);
  background: linear-gradient(135deg, #E7E7E7 0%, #B6B6B6 100%);
  color: #FFFFFF;
}
#aurora_home .products_section .product_card_item .product_cta .view_detail_btn.disabled::after {
  display: none;
}
#aurora_home {
  /*====================
    News Section
  ====================*/
}
#aurora_home .news_section {
  padding: 120px 0;
  background: #F5FAFA;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section {
    padding: 80px 0px;
  }
}
#aurora_home .news_section .news_content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#aurora_home .news_section .news_header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_header {
    margin-bottom: 30px;
  }
}
#aurora_home .news_section .news_header .news_title {
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_header .news_title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
#aurora_home .news_section .news_header .news_subtitle {
  font-size: 1.8rem;
  color: #666;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_header .news_subtitle {
    font-size: 3.7333333333vw;
  }
}
#aurora_home .news_section .news_swiper {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper {
    margin-bottom: 30px;
  }
}
#aurora_home .news_section .news_swiper .swiper-slide {
  height: auto;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .swiper-slide {
    width: 280px;
  }
}
@media (max-width: 480px) {
  #aurora_home .news_section .news_swiper .swiper-slide {
    width: calc(100vw - 80px);
  }
}
#aurora_home .news_section .news_swiper .news_card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  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;
}
#aurora_home .news_section .news_swiper .news_card .news_image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
#aurora_home .news_section .news_swiper .news_card .news_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#aurora_home .news_section .news_swiper .news_card .news_image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#aurora_home .news_section .news_swiper .news_card .news_image .news_category {
  position: absolute;
  bottom: 15px;
  left: 0px;
  background: -webkit-gradient(linear, left top, right top, from(#F293FE), color-stop(70%, #F293FE), to(#72DAFF));
  background: -webkit-linear-gradient(left, #F293FE 0%, #F293FE 70%, #72DAFF 100%);
  background: linear-gradient(90deg, #F293FE 0%, #F293FE 70%, #72DAFF 100%);
  color: white;
  padding: 6px 30px 6px 20px;
  border-radius: 0px 20px 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .news_card .news_image .news_category {
    font-size: 3.2vw;
  }
}
#aurora_home .news_section .news_swiper .news_card .news_image .news_category.category_media {
  background: -webkit-gradient(linear, left top, right top, from(#F0DE6F), color-stop(50%, #23C9D8), to(#78EAB7));
  background: -webkit-linear-gradient(left, #F0DE6F 0%, #23C9D8 50%, #78EAB7 100%);
  background: linear-gradient(90deg, #F0DE6F 0%, #23C9D8 50%, #78EAB7 100%);
}
#aurora_home .news_section .news_swiper .news_card .news_content_text {
  padding: 25px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .news_card .news_content_text {
    padding: 20px;
  }
}
#aurora_home .news_section .news_swiper .news_card .news_content_text .news_card_title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .news_card .news_content_text .news_card_title {
    font-size: 3.7333333333vw;
    margin-bottom: 10px;
  }
}
#aurora_home .news_section .news_swiper .news_card .news_content_text .news_description {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .news_card .news_content_text .news_description {
    font-size: 3.7333333333vw;
    margin-bottom: 10px;
  }
}
#aurora_home .news_section .news_swiper .news_card .news_content_text .news_date {
  font-size: 1.4rem;
  color: #333;
  font-weight: 400;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .news_card .news_content_text .news_date {
    font-size: 3.2vw;
  }
}
#aurora_home .news_section .news_swiper .swiper-button-prev,
#aurora_home .news_section .news_swiper .swiper-button-next {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  margin-top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  outline: none;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_swiper .swiper-button-prev,
  #aurora_home .news_section .news_swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
#aurora_home .news_section .news_swiper .swiper-button-prev::after,
#aurora_home .news_section .news_swiper .swiper-button-next::after {
  display: none;
}
#aurora_home .news_section .news_swiper .swiper-button-prev:hover,
#aurora_home .news_section .news_swiper .swiper-button-next:hover {
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
#aurora_home .news_section .news_swiper .swiper-button-prev {
  left: 10px;
}
#aurora_home .news_section .news_swiper .swiper-button-next {
  right: 10px;
}
#aurora_home .news_section .news_cta {
  text-align: center;
}
#aurora_home .news_section .news_cta .view_more_btn {
  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;
  width: 500px;
  max-width: 90%;
  padding: 25px 30px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("../img/top/bg_btn01.png") no-repeat center center;
  background-size: 100% auto;
  color: #FFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  #aurora_home .news_section .news_cta .view_more_btn {
    padding: 12px 20px;
    font-size: 3.7333333333vw;
  }
}
#aurora_home .news_section .news_cta .view_more_btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  background-image: url("../img/top/bg_btn01_on.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#aurora_home .news_section .news_cta .view_more_btn::after {
  position: absolute;
  right: 7%;
  content: "→";
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#aurora_home .news_section .news_cta .view_more_btn:hover {
  background-image: url("../img/top/bg_btn01_on.png");
  color: #000;
}
#aurora_home .news_section .news_cta .view_more_btn:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
#aurora_home {
  /*====================
    CTA Section
  ====================*/
}
#aurora_home .cta_section {
  padding: 120px 0;
  background: #FFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aurora_home .cta_section {
    padding: 80px 15px;
  }
}
#aurora_home .cta_section .cta_content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
#aurora_home .cta_section .cta_header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #aurora_home .cta_section .cta_header {
    margin-bottom: 30px;
  }
}
#aurora_home .cta_section .cta_header .cta_title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #aurora_home .cta_section .cta_header .cta_title {
    font-size: 5.8666666667vw;
    line-height: 1.4;
  }
}
#aurora_home .cta_section .cta_description {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #aurora_home .cta_section .cta_description {
    margin-bottom: 40px;
  }
}
#aurora_home .cta_section .cta_description .cta_text {
  font-size: 2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #aurora_home .cta_section .cta_description .cta_text {
    font-size: 3.7333333333vw;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
#aurora_home .cta_section .cta_description .cta_text:last-child {
  margin-bottom: 0;
}
#aurora_home .cta_section .cta_button_wrapper .cta_button {
  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 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) {
  #aurora_home .cta_section .cta_button_wrapper .cta_button {
    width: 80%;
    padding: 15px 20px;
    font-size: 4.8vw;
  }
}
#aurora_home .cta_section .cta_button_wrapper .cta_button::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;
}
#aurora_home .cta_section .cta_button_wrapper .cta_button::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #2B0A49;
  border-radius: 47px;
  z-index: -1;
}
#aurora_home .cta_section .cta_button_wrapper .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);
}

@-webkit-keyframes fadeinCircle {
  0% {
    opacity: 0;
    -webkit-transform: rotate(180deg) scale(0.5);
            transform: rotate(180deg) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes fadeinCircle {
  0% {
    opacity: 0;
    -webkit-transform: rotate(180deg) scale(0.5);
            transform: rotate(180deg) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}/*# sourceMappingURL=lp_home.css.map */