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;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    line-height: 1;
}

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;
}

body {
    -webkit-text-size-adjust: none
}

mark {
    background-color: transparent;
    color: inherit
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="text"],input[type="email"],select,textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    min-height: var(--viewport-height);
    line-height: 1.0;
    word-wrap: break-word;
    overflow-x: hidden;
}

body:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--background-height);
    z-index: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out 0.375s, visibility 1s 0.375s;
    transform: scale(1);
    background-attachment: scroll;
    background-image: url('./assets/images/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
}

body:after {
    display: block;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--background-height);
    z-index: 0;
    opacity: 0;
    visibility: visible;
    transition: opacity 1s ease-in-out 0.375s, visibility 1s 0.375s;
    transform: scale(1);
    background-image: url('./assets/images/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.is-loading:after {
    opacity: 1;
    transition: opacity 1s ease-in-out 0.375s, visibility 1s 0.375s;
    visibility: visible;
}

:root {
    --site-language-direction: ltr;
    --site-language-alignment: left;
    --viewport-height: 100vh;
    --background-height: 100vh;
}

html {
    font-size: 18pt;
}

u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-weight: normal;
    text-indent: 0;
    letter-spacing: 0;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
}

mark {
    background-color: rgba(144,144,144,0.25);
}

s {
    text-decoration: line-through;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}

#wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: var(--viewport-height);
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 1.5625rem 1.5625rem 1.5625rem 1.5625rem;
}

#main {
    display: flex;
    position: relative;
    max-width: 100%;
    z-index: 1;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
    text-align:left;
    background-color: rgba(34, 36, 43, 0.779);
    border-radius: 2rem 2rem 2rem 2rem;
    transition: opacity 1s ease 0s,transform 1s ease 0s;
}

#main > .inner {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    padding: 3.125rem 2.5rem;
    max-width: 100%;
    width: 25rem;
}

#main > .inner > * {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    transition: opacity 0.5s ease-in-out 0.125s;
}

#main > .inner > :first-child {
    margin-top: 0 !important;
}

#main > .inner > :last-child {
    margin-bottom: 0 !important;
}

#main > .inner > .full {
    margin-left: calc(-2.5rem);
    width: calc(100% + 5rem + 0.4725px);
    max-width: calc(100% + 5rem + 0.4725px);
}

#main > .inner > .full:first-child {
    margin-top: -3.125rem !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main > .inner > .full:last-child {
    margin-bottom: -3.125rem !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#main > .inner > .full.screen {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    border-radius: 0 !important;
    left: 50%;
    right: auto;
    margin-left: -50vw;
}

body.is-loading #main {
    opacity: 0;
    transform: translateY(1.6875rem);
}

body.is-loading #main > .inner > * {
    opacity: 0;
}

#main > .inner > :nth-child(2) {
    transition-delay: 0.25s;
}

#main > .inner > :nth-child(3) {
    transition-delay: 0.375s;
}

#main > .inner > :nth-child(4) {
    transition-delay: 0.5s;
}

#main > .inner > :nth-child(5) {
    transition-delay: 0.625s;
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > * {
    transition: none !important;
}

body.is-instant:after {
    display: none !important;
    transition: none !important;
}

.image {
    position: relative;
    max-width: 100%;
    display: block;
}

.image .frame {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.image .frame img {
    width: inherit;
    max-width: 100%;
    vertical-align: top;
    border-radius: 0 !important;
}

.image.full .frame {
    display: block;
}

.image.full:first-child .frame {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image.full:last-child .frame {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#image01:not(:first-child) {
    margin-top: 1.5rem !important;
}

#image01:not(:last-child) {
    margin-bottom: 1.5rem !important;
}

#image01 .frame {
    width: 7rem;
    border-radius: 100%;
    transition: none;
}

#image01 .frame img {
    transition: none;
}

h1, h2, h3, p {
    direction: var(--site-language-direction);
}

h1 br + br, h2 br + br, h3 br + br, p br + br {
    display: block;
    content: ' ';
}

h1 .li, h2 .li, h3 .li, p .li {
    display: list-item;
    padding-left: 0.5em;
    margin: 0.75em 0 0 1em;
}

#text02 br + br {
    margin-top: 0.675rem;
}

#text02 {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.175rem;
    width: calc(100% + 0.175rem);
    font-size: 2.875em;
    line-height: 1.125;
    font-weight: 400;
}

#text02 a {
    text-decoration: underline;
}

#text02 a:hover {
    text-decoration: none;
}

#text01 br + br {
    margin-top: 0.855rem;
}

#text01 {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.425;
    font-weight: 400;
}

#text01 a {
    text-decoration: underline;
}

#text01 a:hover {
    text-decoration: none;
}

.icons {
    cursor: default;
    padding: 0;
    letter-spacing: 0;
}

.icons li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons li a svg {
    display: block;
    position: relative;
}

.icons li a + svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.icons li a .label {
    display: none;
}

#icons01 {
    font-size: 1.25em;
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
}

#icons01 li {
    margin: 0.5rem;
}

#icons01 li a {
    border-radius: 100%;
    width: 2em;
    height: 2em;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons01 li a svg {
    width: 60%;
    height: 60%;
    transition: fill 0.25s ease;
}

#icons01 a svg {
    fill: #000000;
}

#icons01 a {
    border: solid 1px #FFFFFF;
}

#icons01 li a + svg {
    transition: fill 0.25s ease, stroke 0.25s ease;
}

#icons01 .n01 svg {
    fill: #ffffff;
}

#icons01 .n01 {
    border: solid 1px rgba(119,214,214,0.251);
}

#icons01 .n01:hover {
    border-color: #ffffff !important;
}

#icons01 .n01:hover svg {
    fill: #ffffff !important;
}

#icons01 .n02 svg {
    fill: #FF005C;
}

#icons01 .n02 {
    border: solid 1px rgba(214,88,171,0.251);
}

#icons01 .n02:hover {
    border-color: #ffffff !important;
}

#icons01 .n02:hover svg {
    fill: #ffffff !important;
}

#icons01 .n03 svg {
    fill: #745DFC;
}

#icons01 .n03 {
    border: solid 1px #3F386B;
}

#icons01 .n03:hover {
    border-color: #745DFC !important;
}

#icons01 .n03:hover svg {
    fill: #745DFC !important;
}

#icons01 .n04 svg {
    fill: #8000FF;
}

#icons01 .n04 {
    border: solid 1px #573678;
}

#icons01 .n04:hover {
    border-color: #8000FF !important;
}

#icons01 .n04:hover svg {
    fill: #8000FF !important;
}

#icons01 .n05 svg {
    fill: #000000;
}

#icons01 .n05 {
    border: solid 1px #545454;
}

#icons01 .n05:hover {
    border-color: #000000 !important;
}

#icons01 .n05:hover svg {
    fill: #000000 !important;
}

#icons01 .n06 svg {
    fill: #00FF0A;
}

#icons01 .n06 {
    border: solid 1px #0019FF;
}

#icons01 .n06:hover {
    border-color: #ffffff !important;
}

#icons01 .n06:hover svg {
    fill: #ffffff !important;
}

.icc-credits {
    display: block;
    position: relative;
    transition-delay: 0s !important;
    opacity: 1 !important;
}

.icc-credits span {
    border-radius: 24px;
    cursor: pointer;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1;
    position: relative;
    text-decoration: none;
    width: auto;
}

.icc-credits span a {
    display: inline-block;
    padding: 0.5em 0.375em;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 1;
}

.icc-credits span a:before {
    transition: opacity 0.25s ease;
    opacity: 1;
}

.icc-credits span a:after {
    transition: opacity 0.25s ease;
    opacity: 1;
}

.icc-credits span::after {
    transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: linear-gradient(30deg, #A464A1 15%, #3B5DAD 85%);
    opacity: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: 0 0.25em 1.25em 0 rgba(0,0,0,0.25);
}

.icc-credits span:hover {
    text-transform: none !important;
}

.icc-credits span:hover a {
    color: #ffffff !important;
    transform: scale(1.1) translateY(-0.05rem);
}

.icc-credits span:hover a:before {
    opacity: 0;
}

.icc-credits span:hover a:after {
    opacity: 0;
}

.icc-credits span:hover::after {
    opacity: 1;
    transform: scale(1.1) translateY(-0.05rem);
}

#credits span {
    color: rgba(255, 255, 255, 0.498);
    margin-top: 1.125rem !important;
}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 11pt;
    }

    #main > .inner {
        padding: 3.125rem 2rem;
    }

    #main > .inner > * {
        margin-top: 1.125rem;
        margin-bottom: 1.125rem;
    }

    #main > .inner > .full {
        margin-left: calc(-2rem);
        width: calc(100% + 4rem + 0.4725px);
        max-width: calc(100% + 4rem + 0.4725px);
    }

    #main > .inner > .full:first-child {
        margin-top: -3.125rem !important;
    }

    #main > .inner > .full:last-child {
        margin-bottom: -3.125rem !important;
    }

    #main > .inner > .full.screen {
        margin-left: -50vw;
    }

    #image01:not(:first-child) {
        margin-top: 1.125rem !important;
    }

    #image01:not(:last-child) {
        margin-bottom: 1.125rem !important;
    }

    #image01 .frame {
        width: 7rem;
    }

    #text02 {
        letter-spacing: 0.153125rem;
        width: calc(100% + 0.153125rem);
        font-size: 2.875em;
        line-height: 1.125;
    }

    #text01 {
        letter-spacing: -0.021875rem;
        width: 100%;
        font-size: 1em;
        line-height: 1.425;
    }

    #icons01 {
        font-size: 1.25em;
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
    }

    #icons01 li {
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    #main > .inner > * {
        margin-top: 0.984375rem;
        margin-bottom: 0.984375rem;
    }
}

@media (max-width: 360px) {
    #main > .inner {
        padding: 2.34375rem 1.5rem;
    }

    #main > .inner > * {
        margin-top: 0.84375rem;
        margin-bottom: 0.84375rem;
    }

    #main > .inner > .full {
        margin-left: calc(-1.5rem);
        width: calc(100% + 3rem + 0.4725px);
        max-width: calc(100% + 3rem + 0.4725px);
    }

    #main > .inner > .full:first-child {
        margin-top: -2.34375rem !important;
    }

    #main > .inner > .full:last-child {
        margin-bottom: -2.34375rem !important;
    }

    #main > .inner > .full.screen {
        margin-left: -50vw;
    }

    #text02 {
        font-size: 2em;
    }

    #text01 {
        font-size: 1em;
    }

    #icons01 {
        width: calc(100% + 0.75rem);
        margin-left: -0.375rem;
    }

    #icons01 li {
        margin: 0.375rem;
    }
}