@charset "UTF-8";
/*把變數帶入mixin中，此mixin只就單純把media queries寫到我的mixin中，
並且使用我上面設立的變數來調動media queries的width*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

*,
:after,
:before {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:visited,
a:active,
a:focus,
a:checked {
  color: #000;
  text-decoration: none;
  outline: none;
  border: none;
  transition: 0.5s;
}

body,
html {
  width: 100vw;
  height: 100%;
}

img {
  width: 100%;
  border: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* input:focus {
  outline: none;
}

.roboto {
  font-family: "roboto", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

section {
  overflow: hidden;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: 0.5s;
}
header .container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  padding: 50px 170px 50px 170px;
  transition: 0.5s;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  header .container {
    padding: 30px 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  header .container {
    padding: 15px 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container {
    padding: 15px 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container {
    padding: 15px 40px;
  }
}
@media all and (max-width: 479px) {
  header .container {
    padding: 15px 40px;
  }
}
header .container .logo {
  font-size: 1.7rem;
  width: 120px;
  display: flex;
  align-items: center;
  animation: flipInX 1s ease-out;
  animation-fill-mode: both;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  header .container .logo {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  header .container .logo {
    font-size: 1.3rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container .logo {
    font-size: 1.3rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container .logo {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 479px) {
  header .container .logo {
    font-size: 1.1rem;
  }
}
header .container .logo a {
  transition: 0.5s;
}
header .container .logo:hover a {
  transform: scale(1.2);
}
header .container .navigation {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-out 0.3s;
  animation-fill-mode: both;
}
header .container .navigation .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 35px;
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container .navigation .menu {
    grid-column-gap: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container .navigation .menu {
    grid-column-gap: 30px;
  }
}
@media all and (max-width: 479px) {
  header .container .navigation .menu {
    display: none;
  }
}
header .container .navigation .menu a {
  font-size: 1.125rem;
  position: relative;
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  header .container .navigation .menu a {
    font-size: 1rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container .navigation .menu a {
    font-size: 1rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container .navigation .menu a {
    font-size: 1rem;
  }
}
header .container .lang {
  width: 120px;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeIn 0.5s ease-out 0.5s;
  animation-fill-mode: both;
  display: none;
}
header .container .lang a {
  font-size: 1rem;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  header .container .lang a {
    font-size: 1rem;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  header .container .lang a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container .lang a {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container .lang a {
    font-size: 0.875rem;
  }
}
header .container .lang a:last-child {
  margin-left: 30px;
  padding-top: 2px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  header .container .lang a:last-child {
    margin-left: 15px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header .container .lang a:last-child {
    margin-left: 15px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header .container .lang a:last-child {
    margin-left: 15px;
  }
}
@media all and (max-width: 479px) {
  header .container .lang a:last-child {
    margin-left: 20px;
  }
}
header .container a:link,
header .container a:visited,
header .container a:active,
header .container a:hover {
  color: #fff;
}
header.scroll {
  background-color: white;
}
header.scroll .container {
  padding: 15px 170px 15px 170px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  header.scroll .container {
    padding: 10px 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  header.scroll .container {
    padding: 10px 25px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  header.scroll .container {
    padding: 10px 25px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  header.scroll .container {
    padding: 10px 25px;
  }
}
@media all and (max-width: 479px) {
  header.scroll .container {
    padding: 10px 25px;
  }
}
header.scroll .container .logo {
  font-size: 1.1rem;
  width: 120px;
}
header.scroll .container .logo a:before {
  color: #DF2D32;
}
header.scroll .container .navigation {
  height: 30px;
}
header.scroll .container .navigation .menu {
  grid-column-gap: 30px;
}
@media all and (max-width: 479px) {
  header.scroll .container .navigation .menu {
    display: block;
  }
  header.scroll .container .navigation .menu .event,
header.scroll .container .navigation .menu .open {
    display: none;
  }
}
@media all and (max-width: 375px) {
  header.scroll .container .navigation .menu {
    display: block;
  }
  header.scroll .container .navigation .menu .event,
header.scroll .container .navigation .menu .open {
    display: none;
  }
}
header.scroll .container .navigation a:link,
header.scroll .container .navigation a:visited,
header.scroll .container .navigation a:active {
  color: #000;
}
header.scroll .container .navigation a:hover {
  color: #5859f4;
}
header.scroll .container .lang {
  height: 30px;
}
header.scroll .container .lang a {
  font-size: 0.875rem;
  color: #000;
}

main .banner {
  background-image: url("../img/banner_bg.png");
  background-size: cover;
  background-color: #ccc;
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner {
    background-image: url("../img/banner_pad_bg.png");
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner {
    background-image: url("../img/banner_pad_bg.png");
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner {
    background-image: url("../img/banner_bg_rwd.png");
  }
}
@media all and (max-width: 479px) {
  main .banner {
    background-image: url("../img/banner_bg_rwd.png");
  }
}
main .banner .container {
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  max-height: 850px;
  padding: 0 170px 0 170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container {
    padding: 50px 0;
    max-height: 690px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container {
    padding: 50px 0;
    max-height: 660px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container {
    padding: 50px 0;
    max-height: 600px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container {
    padding: 50px 0;
    max-height: none;
    height: 100%;
    flex-direction: column;
  }
}
@media all and (max-width: 479px) {
  main .banner .container {
    padding: 50px 0;
    max-height: none;
    height: 100%;
    flex-direction: column;
  }
}
main .banner .container .content {
  color: #fff;
  width: 100%;
  max-width: 675px;
  line-height: 1;
  position: absolute;
  top: calc(50% + 50px);
  left: auto;
  transform: translate(0, -50%);
  z-index: 1;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content {
    width: 60%;
    max-width: none;
    top: calc(50% + 30px);
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content {
    width: 60%;
    max-width: none;
    top: calc(50% + 30px);
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content {
    width: 57%;
    max-width: none;
    top: calc(50% + 20px);
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content {
    position: static;
    top: auto;
    margin-top: 45px;
    transform: none;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content {
    position: static;
    top: auto;
    margin-top: 45px;
    transform: none;
  }
}
main .banner .container .content .title {
  font-size: 5rem;
  font-weight: 100;
  position: relative;
  display: inline-block;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .title {
    font-size: 4rem;
    padding: 0 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .title {
    font-size: 3.1rem;
    padding: 0 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .title {
    font-size: 3.1rem;
    padding: 0 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .title {
    font-size: 2.6rem;
    padding: 0 40px;
    margin-bottom: 5px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .title {
    font-size: 2.6rem;
    padding: 0 40px;
    margin-bottom: 5px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content .title {
    font-size: 2.4rem;
  }
}
main .banner .container .content .title .teams {
  position: absolute;
  right: -180px;
  top: -12px;
  z-index: 1;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .title .teams {
    right: -80px;
    top: -16px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .title .teams {
    right: -88px;
    top: -13px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .title .teams {
    right: -84px;
    top: -13px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .title .teams {
    right: -80px;
    top: -12px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .title .teams {
    right: -48px;
    top: -2px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content .title .teams {
    right: -50px;
    top: -8px;
  }
}
main .banner .container .content .title .teams img {
  width: 190px;
  height: auto;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .title .teams img {
    width: 170px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .title .teams img {
    width: 135px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .title .teams img {
    width: 135px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .title .teams img {
    width: 125px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .title .teams img {
    width: 100px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content .title .teams img {
    width: 100px;
  }
}
main .banner .container .content .subtitle {
  font-size: 4rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .subtitle {
    font-size: 2.7rem;
    padding: 0 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .subtitle {
    font-size: 2.375rem;
    padding: 0 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .subtitle {
    font-size: 2rem;
    padding: 0 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .subtitle {
    font-size: 1.745rem;
    padding: 0 40px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .subtitle {
    font-size: 1.745rem;
    padding: 0 40px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content .subtitle {
    font-size: 1.65rem;
  }
}
main .banner .container .content .subtitle .mini_people_right {
  width: 105px;
  position: absolute;
  top: -52px;
  right: -26px;
  display: none;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .subtitle .mini_people_right {
    width: 80px;
    position: absolute;
    top: -40px;
    right: 60px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .subtitle .mini_people_right {
    width: 50px;
    top: -25px;
    right: 30px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .subtitle .mini_people_right {
    width: 50px;
    top: -25px;
    right: 30px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .subtitle .mini_people_right {
    width: 55px;
    top: -29px;
    right: 24px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .subtitle .mini_people_right {
    width: 55px;
    top: -29px;
    right: 24px;
  }
}
main .banner .container .content h1 {
  font-size: 4.8rem;
  letter-spacing: 1.21px;
  margin: 10px 0 40px -9px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content h1 {
    font-size: 3.35rem;
    padding: 0 80px;
    margin: 10px 0 20px -6px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content h1 {
    font-size: 3rem;
    padding: 0 40px;
    margin: 10px 0 20px -5px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content h1 {
    font-size: 2.5rem;
    padding: 0 40px;
    margin: 10px 0 20px -5px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content h1 {
    font-size: 3.8rem;
    padding: 0 55px;
    margin: 20px 0 30px -9px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content h1 {
    font-size: 3.8rem;
    padding: 0 55px;
    margin: 20px 0 30px -9px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content h1 {
    font-size: 3.4rem;
  }
}
main .banner .container .content .description {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .description {
    font-size: 1rem;
    padding: 0 80px;
    line-height: 1.5;
    max-width: 690px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 50px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 50px;
  }
}
main .banner .container .content .box {
  font-size: 1.4rem;
  color: #FFF;
  letter-spacing: 1.21px;
  background: linear-gradient(89.57deg, #00949D 0.28%, #009A75 99.41%);
  border: 1.44882px solid #00FF4F;
  border-radius: 50px;
  padding: 13px 30px;
  margin: 30px 0 40px 0;
  display: inline-flex;
  line-height: 1.3;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .box {
    font-size: 1rem;
    line-height: 1.5;
    padding: 7px 30px;
    margin: 30px 80px 40px 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .box {
    font-size: 1rem;
    line-height: 1.5;
    width: calc(100% - 120px);
    padding: 7px 28px;
    margin: 30px 40px 40px 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .box {
    font-size: 1rem;
    line-height: 1.5;
    width: calc(100% - 130px);
    padding: 7px 28px;
    margin: 30px 40px 40px 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .box {
    font-size: 1rem;
    line-height: 1.5;
    width: calc(100% - 80px);
    padding: 7px 30px;
    margin: 0 40px 40px 40px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .box {
    font-size: 1rem;
    line-height: 1.5;
    width: calc(100% - 80px);
    padding: 7px 30px;
    margin: 0 40px 40px 40px;
  }
}
@media all and (max-width: 375px) {
  main .banner .container .content .box {
    padding: 7px 35px;
  }
}
main .banner .container .content .datatime {
  width: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime {
    padding: 0 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime {
    padding: 0 40px;
    align-items: flex-start;
    display: flex;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime {
    padding: 0 40px;
    align-items: flex-start;
    display: flex;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime {
    padding: 0 40px;
    align-items: flex-start;
    display: flex;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime {
    padding: 0 40px;
    align-items: flex-start;
    display: flex;
  }
}
main .banner .container .content .datatime .mini_people_left {
  width: 65px;
  margin-right: 5px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .mini_people_left {
    width: 50px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .mini_people_left {
    width: 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .mini_people_left {
    width: 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .mini_people_left {
    width: 40px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .mini_people_left {
    width: 48px;
  }
}
main .banner .container .content .datatime .dataContainer {
  display: flex;
  position: absolute;
  top: 0;
  left: 75px;
  z-index: 1;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .dataContainer {
    left: 135px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .dataContainer {
    left: 85px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .dataContainer {
    left: 85px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .dataContainer {
    width: 100%;
    position: static;
    flex-direction: column;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .dataContainer {
    width: 100%;
    position: static;
    flex-direction: column;
  }
}
main .banner .container .content .datatime .endDate {
  margin-right: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .endDate {
    margin-right: 60px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .endDate {
    margin-right: 60px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .endDate {
    margin-bottom: 60px;
    margin-right: 0;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .endDate {
    margin-bottom: 60px;
    margin-right: 0;
  }
}
main .banner .container .content .datatime .endDate .dateContent {
  display: flex;
  flex-direction: row;
  align-items: center;
}
main .banner .container .content .datatime .endDate::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: -40px;
  opacity: 0.3;
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .endDate::before {
    right: -30px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .endDate::before {
    right: -30px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .endDate::before {
    width: 100%;
    height: 1px;
    left: 0;
    right: auto;
    bottom: -30px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .endDate::before {
    width: 100%;
    height: 1px;
    left: 0;
    right: auto;
    bottom: -30px;
  }
}
main .banner .container .content .datatime .eventDate {
  margin-right: 80px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .eventDate {
    margin-right: 0;
  }
}
main .banner .container .content .datatime .eventDate .dateContent {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .eventDate .dateContent {
    flex-direction: column;
    align-items: flex-start;
  }
}
main .banner .container .content .datatime .date {
  font-size: 3.75rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .date {
    font-size: 2.5rem;
    font-weight: 200;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .date {
    font-size: 2rem;
    font-weight: 200;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .date {
    font-size: 2rem;
    font-weight: 200;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .date {
    font-size: 2.7rem;
    font-weight: 200;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .date {
    font-size: 2.7rem;
    font-weight: 200;
  }
}
main .banner .container .content .datatime .date .slash {
  font-size: 1.875rem;
  padding: 0 10px;
  display: inline-block;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .date .slash {
    font-size: 1.3rem;
    font-weight: 200;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .date .slash {
    font-size: 1rem;
    font-weight: 200;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .date .slash {
    font-size: 1rem;
    font-weight: 200;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .date .slash {
    font-size: 1.2rem;
    font-weight: 200;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .date .slash {
    font-size: 1.2rem;
    font-weight: 200;
  }
}
main .banner .container .content .datatime .week {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .week {
    font-size: 1.3rem;
    font-weight: 200;
    margin-left: 5px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .week {
    font-size: 1rem;
    margin-left: 5px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .week {
    font-size: 1rem;
    margin-left: 5px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .week {
    font-size: 1.2rem;
    margin-left: 5px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .week {
    font-size: 1.2rem;
    margin-left: 5px;
  }
}
main .banner .container .content .datatime .time {
  font-size: 3.125rem;
  font-weight: 100;
  width: 300px;
  margin-left: 10px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .time {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .time {
    font-size: 2rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .time {
    font-size: 2rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .time {
    font-size: 2.6rem;
    margin-left: 0;
    width: 100%;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .time {
    font-size: 2.6rem;
    margin-left: 0;
    width: 100%;
  }
}
main .banner .container .content .datatime .downText {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.5;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .content .datatime .downText {
    font-size: 1.375rem;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .content .datatime .downText {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .content .datatime .downText {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .content .datatime .downText {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .content .datatime .downText {
    font-size: 1.2rem;
  }
}
main .banner .container .object {
  width: 60%;
  margin: 0 -40px 0 auto;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .object {
    width: 52%;
    margin: -50px -20px 0 auto;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .object {
    width: 54%;
    margin: 0 0 0 auto;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .object {
    width: 51%;
    margin: 0 0 0 auto;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .object {
    display: none;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .object {
    display: none;
  }
}
main .banner .container .object.rwd {
  display: none;
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .object.rwd {
    width: 100%;
    margin: 30px 0;
    display: block;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .object.rwd {
    width: 100%;
    margin: 30px 0;
    display: block;
  }
}
main .banner .container .button {
  padding: 12px 40px;
  background: linear-gradient(269.73deg, #D75CBC 1.45%, #E75E99 49.5%, #F34598 95.2%);
  border-radius: 45px;
  box-shadow: 0px 20px 45px rgba(0, 7, 171, 0.5);
  position: absolute;
  bottom: 52px;
  right: 170px;
  z-index: 10;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .banner .container .button {
    bottom: 50px;
    right: 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .button {
    bottom: 40px;
    right: 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .button {
    bottom: 40px;
    right: 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .button {
    position: static;
    margin-top: 30px;
    margin-bottom: 10px;
    align-self: flex-start;
    margin-left: 85px;
  }
}
@media all and (max-width: 479px) {
  main .banner .container .button {
    position: static;
    margin-top: 30px;
    margin-bottom: 10px;
    align-self: flex-start;
    margin-left: 85px;
  }
}
main .banner .container .button a {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 10px;
  text-align: center;
  padding-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .banner .container .button a {
    font-size: 1rem;
    letter-spacing: 5px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .banner .container .button a {
    font-size: 1rem;
    letter-spacing: 5px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .banner .container .button a {
    font-size: 1rem;
    letter-spacing: 5px;
  }
}
main .banner .container .button a div {
  margin-top: 5px;
  letter-spacing: normal;
}
main .agenda {
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url("../img/agenda_bg.png");
  background-size: cover;
}
main .agenda .container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  padding: 80px 170px 50px 170px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .agenda .container {
    padding: 50px 80px 50px 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .agenda .container {
    padding: 50px 40px 30px 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .agenda .container {
    padding: 30px 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .agenda .container {
    padding: 30px 40px;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container {
    padding: 50px 40px;
  }
}
main .agenda .container h4 {
  font-size: 6.4rem;
  font-weight: 100;
  color: #271FFF;
  line-height: 1;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .agenda .container h4 {
    font-size: 4rem;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .agenda .container h4 {
    font-size: 4rem;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .agenda .container h4 {
    font-size: 4rem;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .agenda .container h4 {
    font-size: 4rem;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container h4 {
    font-size: 4.5rem;
  }
}
main .agenda .container .itemContent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .agenda .container .itemContent {
    margin: 30px 0 0 0;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .agenda .container .itemContent {
    margin: 30px 0 0 0;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .agenda .container .itemContent {
    margin: 30px 0 0 0;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .agenda .container .itemContent {
    margin: 30px 0 0 0;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent {
    margin: 30px 0 0 0;
  }
}
main .agenda .container .itemContent .people {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-right: 25px;
  margin-bottom: 80px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .agenda .container .itemContent .people {
    margin-right: 27px;
    margin-bottom: 40px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .agenda .container .itemContent .people {
    margin-right: 20px;
    margin-bottom: 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .agenda .container .itemContent .people {
    margin-right: 20px;
    margin-bottom: 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .agenda .container .itemContent .people {
    margin-right: 20px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people {
    margin-bottom: 20px;
    margin-right: 0px;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people.mutiple {
    flex-direction: column;
  }
  main .agenda .container .itemContent .people.mutiple .content {
    margin-top: 15px;
    margin-left: 82px;
  }
}
main .agenda .container .itemContent .people .imgCover {
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
}
main .agenda .container .itemContent .people .imgCover img {
  width: 85px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .agenda .container .itemContent .people .imgCover img {
    width: 60px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .agenda .container .itemContent .people .imgCover img {
    width: 60px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .agenda .container .itemContent .people .imgCover img {
    width: 60px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .agenda .container .itemContent .people .imgCover img {
    width: 60px;
  }
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people .imgCover img {
    width: 72px;
  }
}
main .agenda .container .itemContent .people .content {
  display: flex;
  flex-direction: column;
}
main .agenda .container .itemContent .people .content .time {
  font-size: 2rem;
  font-weight: 300;
  color: #4E558E;
  line-height: 1.2;
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people .content .time {
    font-size: 1.8rem;
    font-weight: 200;
  }
}
main .agenda .container .itemContent .people .content .title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4E558E;
  line-height: 1.3;
  margin-bottom: 3px;
  display: inline-block;
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people .content .title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2px;
  }
}
main .agenda .container .itemContent .people .content .name {
  font-size: 1.125rem;
  color: #5151F8;
  font-weight: 500;
}
@media all and (max-width: 479px) {
  main .agenda .container .itemContent .people .content .name {
    font-size: 0.9rem;
  }
}
main .opening {
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url("../img/opening_bg.png");
  background-size: cover;
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening {
    background-image: url("../img/opening_pad_bg.png");
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening {
    background-image: url("../img/opening_pad_bg.png");
  }
}
@media all and (max-width: 779px) {
  main .opening {
    background-image: url("../img/opening_phone_bg.png");
  }
}
main .opening .container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: flex-end;
  padding: 80px 170px 0px 170px;
  position: relative;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container {
    padding: 50px 80px 0 80px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container {
    padding: 50px 20px 0 20px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container {
    padding: 30px 40px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container {
    padding: 50px 0;
    justify-content: center;
  }
}
main .opening .container h4 {
  font-size: 6.4rem;
  font-weight: 100;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 80;
  left: 170px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  main .opening .container h4 {
    font-size: 4rem;
    top: 50;
    left: 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  main .opening .container h4 {
    font-size: 4rem;
    top: 30;
    left: 40px;
  }
}
@media all and (min-width: 779px) and (max-width: 912px) {
  main .opening .container h4 {
    font-size: 4rem;
    top: 30;
    left: 40px;
  }
}
@media all and (min-width: 480px) and (max-width: 778px) {
  main .opening .container h4 {
    font-size: 4rem;
    top: 30;
    left: 40px;
  }
}
@media all and (max-width: 479px) {
  main .opening .container h4 {
    font-size: 4.5rem;
    top: 50;
    left: 40px;
  }
}
main .opening .container .content {
  width: 100%;
  min-height: 550px;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media all and (min-width: 1601px) and (max-width: 11720px) {
  main .opening .container .content {
    min-height: 420px;
    margin-top: 120px;
  }
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content {
    min-height: 420px;
    margin-top: 80px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content {
    min-height: 420px;
    margin-top: 80px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content {
    height: 590px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 230px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content {
    height: auto;
    width: 375px;
    margin-top: 140px;
    flex-direction: column;
  }
}
main .opening .container .content .block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
main .opening .container .content .block.A {
  width: 215px;
  padding-top: 55px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.A {
    width: 170px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.A {
    width: 156px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.A {
    width: 160px;
    margin-right: 450px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.A {
    width: 100;
    margin-bottom: -20px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.A .a {
    margin-right: -80px;
  }
}
main .opening .container .content .block.A .title {
  font-size: 2.5rem !important;
  text-align: left;
  padding: 10px 20px 20px 47px !important;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.A .title {
    font-size: 1.675rem !important;
    text-align: left;
    padding: 9px 20px 20px 28px !important;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.A .title {
    font-size: 1.675rem !important;
    text-align: left;
    padding: 9px 20px 20px 28px !important;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.A .title {
    font-size: 1.675rem !important;
    text-align: left;
    padding: 9px 20px 20px 35px !important;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.A .title {
    font-size: 1.675rem !important;
    text-align: left;
    padding: 9px 20px 20px 35px !important;
  }
}
main .opening .container .content .block.A .title div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-self: center;
  align-items: center;
}
main .opening .container .content .block.A .title div span {
  font-size: 1.425rem !important;
  font-weight: 300;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.A .title div span {
    font-size: 1.115rem !important;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.A .title div span {
    font-size: 1.115rem !important;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.A .title div span {
    font-size: 1.115rem !important;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.A .title div span {
    font-size: 1.115rem !important;
  }
}
main .opening .container .content .block.A .title div .icon-arrow {
  font-size: 1.615rem !important;
  margin-top: 14px;
  margin-left: 5px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.A .title div .icon-arrow {
    font-size: 1.215rem !important;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.A .title div .icon-arrow {
    font-size: 1.215rem !important;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.A .title div .icon-arrow {
    font-size: 1.215rem !important;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.A .title div .icon-arrow {
    font-size: 1.215rem !important;
  }
}
main .opening .container .content .block.B {
  width: 430px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.B {
    width: 340px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.B {
    width: 385px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.B {
    width: 320px;
    margin-top: -287px;
    margin-right: 45px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.B {
    width: 100%;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.B .b {
    margin-top: 85px;
    margin-right: -26px;
  }
}
main .opening .container .content .block.B .d {
  margin: -48px auto 0 auto;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.B .d {
    margin: -38px auto 0 auto;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.B .d {
    margin: -35px auto 0 auto;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.B .d {
    margin: -36px auto 0 auto;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.B .d {
    margin-top: -96px;
    margin-right: 36px;
  }
}
main .opening .container .content .block.C {
  width: 430px;
  padding-bottom: 130px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.C {
    width: 340px;
    padding-bottom: 85px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.C {
    width: 312px;
    padding-bottom: 85px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.C {
    width: 320px;
    margin-top: -89px;
    margin-left: 258px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.C {
    width: 100%;
    padding-bottom: 0px;
    margin-top: -28px;
  }
}
main .opening .container .content .block.C .e {
  margin: 0 107.5px -48px 107.5px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.C .e {
    margin: 0 78px -37px 78px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.C .e {
    margin: 0 78px -35px 78px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.C .e {
    margin: 0 78px -35px 78px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.C .e {
    margin: 0 -34px 0 0;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.C .f {
    margin-top: 82px;
    margin-left: 10px;
  }
}
@media all and (max-width: 375px) {
  main .opening .container .content .block.C .f {
    margin-top: 82px;
    margin-left: 10px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.C .g {
    margin-top: -95px;
    margin-right: 143px;
  }
}
main .opening .container .content .block.D {
  width: 250px;
  padding-bottom: 65px;
  flex-direction: column;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.D {
    width: 190px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.D {
    width: 250px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block.D {
    width: 250px;
    margin-top: -305px;
    margin-right: 207px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.D {
    width: 250px;
    padding-bottom: 0px;
  }
}
main .opening .container .content .block.D .h {
  margin-left: -115px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.D .h {
    margin-left: -115px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.D .h {
    margin-left: -115px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.D .h {
    margin: 0 0 0 150px;
  }
}
main .opening .container .content .block.D .i {
  margin-right: -90px;
  margin-top: -53px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block.D .i {
    margin-right: -90px;
    margin-top: -53px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block.D .i {
    margin-right: -90px;
    margin-top: -53px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block.D .i {
    margin-left: 75px;
    margin-top: -10px;
  }
}
main .opening .container .content .block .star {
  color: #fff;
  text-align: center;
  width: 215px;
  height: 234px;
  padding-top: 11px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  position: relative;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star {
    width: 170px;
    height: 184px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star {
    width: 156px;
    height: 169px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star {
    width: 160px;
    height: 174px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star {
    width: 174px;
    height: 185px;
    padding-top: 16px;
  }
}
main .opening .container .content .block .star .icon {
  font-size: 2.4rem;
  z-index: 3;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star .icon {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .icon {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .icon {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .icon {
    font-size: 1.8rem;
  }
}
main .opening .container .content .block .star .icon::before {
  filter: drop-shadow(0 0px 13.5908px rgba(255, 255, 255, 0.8));
}
main .opening .container .content .block .star .title {
  font-size: 1.6rem;
  line-height: 1;
  padding: 20px 20px;
  z-index: 2;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star .title {
    font-size: 1.1rem;
    padding: 10px 20px 20px 20px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .title {
    font-size: 1.1rem;
    padding: 10px 20px 20px 20px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .title {
    font-size: 1.1rem;
    padding: 10px 20px 20px 20px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .title {
    font-size: 1.215rem;
    padding: 10px 20px 20px 20px;
  }
}
main .opening .container .content .block .star .title.roboto {
  font-size: 1.6rem;
  font-weight: 400;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star .title.roboto {
    font-size: 1.1rem;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .title.roboto {
    font-size: 1.1rem;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .title.roboto {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .title.roboto {
    font-size: 1.215rem;
  }
}
main .opening .container .content .block .star .title span {
  font-size: 1rem;
  font-weight: 200;
  display: block;
  margin-top: 10px;
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .title span {
    font-size: 0.875rem;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .title span {
    font-size: 0.875rem;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .title span {
    font-size: 0.875rem;
  }
}
main .opening .container .content .block .star img {
  width: 215px;
  height: 234px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: drop-shadow(0 0px 13.5908px rgba(2, 208, 255, 0.8));
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star img {
    width: 170px;
    height: 184px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star img {
    width: 156px;
    height: 169px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star img {
    width: 160px;
    height: 174px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star img {
    width: 174px;
    height: 185px;
    transform: rotate(90deg);
  }
}
main .opening .container .content .block .star .people_left {
  width: 80px;
  position: absolute;
  top: 45px;
  left: -70px;
  z-index: 1;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star .people_left {
    width: 50px;
    top: 45px;
    left: -42px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .people_left {
    width: 50px;
    top: 45px;
    left: -42px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .people_left {
    width: 50px;
    top: 45px;
    left: -42px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .people_left {
    width: 50px;
    top: 45px;
    left: -42px;
    transform: rotate(0deg) !important;
  }
}
main .opening .container .content .block .star .people_right {
  width: 73px;
  position: absolute;
  top: -130px;
  left: 36px;
}
@media all and (min-width: 1187px) and (max-width: 1600px) {
  main .opening .container .content .block .star .people_right {
    width: 50px;
    top: -104px;
    left: 36px;
  }
}
@media all and (min-width: 1024px) and (max-width: 1186px) {
  main .opening .container .content .block .star .people_right {
    width: 50px;
    top: -97px;
    left: 32px;
  }
}
@media all and (min-width: 780px) and (max-width: 1023px) {
  main .opening .container .content .block .star .people_right {
    width: 50px;
    top: -97px;
    left: 32px;
  }
}
@media all and (max-width: 779px) {
  main .opening .container .content .block .star .people_right {
    width: 50px;
    left: 23px;
    top: -96px;
    transform: rotate(0deg) scaleX(-1) !important;
  }
}

footer {
  background-color: #535353;
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .container {
  color: #fff;
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 170px 10px 170px;
}
@media all and (min-width: 1025px) and (max-width: 1600px) {
  footer .container {
    padding: 10px 80px 10px 80px;
  }
}
@media all and (min-width: 913px) and (max-width: 1024px) {
  footer .container {
    padding: 10px 40px 10px 40px;
  }
}
@media all and (max-width: 779px) {
  footer .container {
    padding: 20px 25px 30px 25px;
    justify-content: center;
    flex-direction: column;
  }
}
footer .container .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 779px) {
  footer .container .left {
    margin-bottom: 10px;
  }
}
footer .container .left .logo {
  width: 95px;
  margin-left: -20px;
  margin-right: 10px;
  display: flex;
  justify-items: center;
}
@media all and (max-width: 779px) {
  footer .container .left .logo {
    margin-left: -10px;
  }
}
footer .container .left .logo img {
  width: 100%;
  height: auto;
}
footer .container .left .copyright {
  width: 250px;
}
@media all and (max-width: 779px) {
  footer .container .left .copyright {
    width: 215px;
  }
}
@media all and (max-width: 779px) {
  footer .container .right {
    text-align: center;
  }
}
footer .container .right a:link,
footer .container .right a:visited,
footer .container .right a:active,
footer .container .right a:hover {
  font-size: 1rem;
  color: #fff;
}