@charset "utf-8";

/*========== Body ==========*/

body {
    color: #888088;
}

.font--chennai {
    font-family: chennai, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #4a317a;
    font-size: 4.25rem;
    margin-bottom: 0.8em;
}

body::before {
    background: url("img/fuji.jpg") no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

@media (max-width: 768.98px) {}

@media (max-width: 414.98px) {
    .font--chennai {
        font-weight: 400;
        font-style: normal;
        font-size: 2rem;
        margin-bottom: 0.8em;
    }
}


/*========== Simple Banner ==========*/

.simple-banner {
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
    width: 100%;
    height: 3em;
}

@media (max-width: 768.98px) {}

@media (max-width: 414.98px) {
    .simple-banner {
        height: 1.5em;
    }
}


/*========== LOGO ==========*/

.sub-logo {
    display: inline;
    height: 50px;
    width: 50px;
    margin: auto 0.2em auto 0;
    vertical-align: top;
}

.sub-logo.fp {
    vertical-align: bottom;
}

.title__logo {
    display: flex;
    justify-content: center;
}

.title__logo h2 {
    font-size: 1.2rem;
}

.title__logo img {
    height: 50px;
    width: 50px;
    margin-left: 1.5em;
}

.dr__main--logo {
    height: 8em;
    margin-bottom: 5em;
}

@media (max-width: 768.98px) {
    .title__logo {
        display: block;
        text-align: center;
    }
    .title__logo img {
        margin-left: 0;
    }
    .dr__main--logo {
        height: 6.5em;
        margin-bottom: 2.5em;
    }
}

@media (max-width: 414.98px) {
    .dr__main--logo {
        height: 5em;
    }
}


/*========== Button ==========*/

.button-circle {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border: 0 none;
}

.button-square {
    height: 210px;
    width: 210px;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border: 0 none;
}

.button-rectangle {
    max-height: 100%;
    max-width: 800px;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border: 0 none;
    padding: 0.3em 1em;
}

.button-circle:hover,
.button-square:hover,
.button-rectangle:hover {
    transition: .3s;
    opacity: 0.7;
    cursor: pointer;
}

@media (max-width: 768.98px) {}

@media (max-width: 414.98px) {
    .button-circle {
        height: 100px;
        width: 100px;
        font-size: 1.2rem;
    }
    .button-square {
        height: 150px;
        width: 150px;
        font-size: 1.2rem;
    }
    .button-rectangle {
        font-size: 1rem;
    }
}


/*========== Header ==========*/

#header {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

#g-navi {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.55em 0 1em 0;
    text-align: center;
}

.header-logo {
    height: 7em;
    margin-right: 1em;
    margin-left: 1em;
}

.language span {
    color: #fff;
    font-size: 1rem;
    padding: 0 1em;
}

.language a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    padding: 0 1em;
    transition: 0.3s;
}

.language a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

#g-navi ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

#g-navi ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 0.3em 0.6em;
    font-size: 1.1rem;
    font-weight: 500;
    width: 98px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover {
    color: #6e6592;
}

#g-navi ul li ul {
    display: flex;
    flex-flow: column;
}

#g-navi ul li ul li {
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-flow: column;
}

#g-navi ul li:hover>ul>li {
    color: #6e6592;
    overflow: visible;
    transition: 0.3s;
    height: 1.65em;
}

@media (max-width: 1099.98px) {
    #g-navi {
        margin: 0 auto 0 0;
        padding: 2em 0 0.9em 2em;
    }
    #g-navi .header-logo {
        display: block;
        text-align: left;
    }
    #g-navi ul {
        display: none;
    }
}

@media (max-width: 768.98px) {
    #g-navi {
        padding: 1.5em 0 0.7em 2em;
    }
    #g-navi .header-logo {
        height: 5.5em;
    }
}

@media (max-width: 414.98px) {
    #g-navi {
        padding: 1.5em 0 0.5em 1em;
    }
    #g-navi .header-logo {
        height: 4.5em;
    }
    .language {
        display: none;
    }
}


/*========== DRAWER MENUS ==========*/

.drawer-icon {
    position: fixed;
    top: 55px;
    right: 30px;
    z-index: 999;
    display: none;
    padding: 1em;
    border-radius: 20%;
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
}

.drawer-icon.is-active {
    background: none;
    border: none;
}

.drawer-icon.is-active .drawer-icon-bar1 {
    transform: rotate(-45deg);
    top: 8px;
}

.drawer-icon.is-active .drawer-icon-bar2 {
    display: none;
}

.drawer-icon.is-active .drawer-icon-bar3 {
    transform: rotate(45deg);
    top: 8px;
}

.drawer-icon-bars {
    width: 22px;
    height: 20px;
    display: block;
    position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
    position: absolute;
    width: 22px;
    height: 4px;
    background: #fff;
    top: 0;
    left: 0;
}

.drawer-icon-bar1 {
    top: 0;
}

.drawer-icon-bar2 {
    top: 8px;
}

.drawer-icon-bar3 {
    top: 16px;
}

.drawer-content {
    width: 100%;
    max-height: 800px;
    position: fixed;
    text-align: center;
    box-shadow: 0 0 3px rgba(#000, 0.15);
    z-index: 998;
    transform: translateX(105%);
    transition: 0.3s;
    padding-bottom: 1em;
}

.drawer-content.is-active {
    transform: translateX(0);
    transition: 0.3s;
    top: 50px;
}

.drawer-content ul li a {
    display: block;
    text-decoration: none;
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.drawer-content ul li ul li a {
    display: block;
    text-decoration: none;
    padding: 13px 20px;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
}

.drawer-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 997;
    display: none;
}

.drawer-background.is-active {
    display: block;
}

@media (max-width: 1099.98px) {
    .drawer-icon {
        display: block;
    }
}

@media (max-width: 768.98px) {}

@media (max-width: 414.98px) {}


/*============ Common (Container) ============*/

.common__container {
    background-color: #fff;
}

.common__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 8em 2em;
}

.common__content {}

.common__content h2 {
    color: #00000c;
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
}

.common__content p {
    color: #888088;
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 2em;
}

.common__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768.98px) {
    .common__inner {
        padding: 4em 2em;
    }
    .common__content h2 {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }
    .common__content p {
        margin-bottom: 1em;
        line-height: 1.8;
    }
}

@media (max-width: 414.98px) {
    .common__container {}
    .common__inner {}
    .common__content {}
    .common__content h2 {
        font-size: 1.2rem;
    }
    .common__content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5em;
    }
    .common__content p:last-child {}
}


/*============ Common (Background) ============*/

.common--fb__container::before {
    background: url("img/virus.jpg") no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

.common--fb__inner {
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
}

.common--fb__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6em 2em 2em 2em;
}

.common--fb__content h2 {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
}

.common--fb__content p {
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 3em;
}

@media (max-width: 768.98px) {}

@media (max-width: 414.98px) {
    .common--fb__container::before {}
    .common--fb__inner {}
    .common--fb__content {
        padding: 3.5em 2em;
    }
    .common--fb__content h2 {
        font-size: 2.8rem;
        line-height: 1.5;
        margin-bottom: 1.5em;
    }
    .common--fb__content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5em;
    }
    .common--fb__content p:last-child {
        margin-bottom: 0;
    }
}


/*============ Common (List) ============*/

.common--lists {
    text-align: left;
    margin-bottom: 5em;
    padding-left: 3em;
    padding-right: 3em;
}

.common--lists ol {
    list-style-type: decimal;
    list-style-position: outside;
}

.common--lists li {
    font-size: 1.65em;
    line-height: 2.5;
    color: #888088;
    margin-bottom: 1em;
}

.common--lists li:last-child {
    margin-bottom: 0;
}

.list--icon {
    width: 30px;
    height: 30px;
    margin-right: 0.5em;
    vertical-align: top;
    margin-top: 0.3em;
}

.list--icon.end {
    margin-left: 0.5em;
    margin-right: 0;
}

@media (max-width: 768.98px) {
    .common--lists {
        margin-bottom: 3em;
    }
    .common--lists li {
        line-height: 1.8;
        font-weight: 300;
    }
}

@media (max-width: 414.98px) {
    .common--lists {
        margin-bottom: 2em;
        padding-left: 2em;
        padding-right: 2em;
    }
    .common--lists ol {}
    .common--lists li {
        font-size: 1em;
        line-height: 1.5;
        margin-bottom: 1em;
    }
    .common--lists li:last-child {}
    .list--icon {
        width: 15px;
        height: 15px;
        margin-right: 0.5em;
        vertical-align: top;
        margin-top: 0.3em;
    }
    .list--icon.end {
        margin-left: 0.5em;
        margin-right: 0;
    }
}


/*============ Common (Others) ============*/

.font-purple {
    color: #4a317a;
}

.font-black {
    color: #00000c;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.underlined {
    text-decoration: underline;
    font-weight: 300;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-2 {
    padding-bottom: 2em;
}

.pb-3 {
    padding-bottom: 3em;
}

hr {
    background-color: #4a317a;
    border: 0.05em solid #4a317a;
    margin-top: 3em;
    margin-bottom: 6em;
}

.page__bottom--btn {
    padding: 3em 0 2em 0;
    text-align: center;
}

.page__bottom--btn button {
    margin: 0 0.5em;
}

@media (max-width: 768.98px) {
    hr {
        margin-top: 3em;
        margin-bottom: 3em;
    }
}

@media (max-width: 414.98px) {
    .page__bottom--btn {
        padding: 3em 0 1em 0;
        text-align: center;
    }
}


/*============ Common (Video) ============*/

.video-wrap {
    max-width: 50%;
}

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin-bottom: 1.5em;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
}

@media (max-width: 768.98px) {
    .video-wrap {
        max-width: 80%;
    }
    .video iframe {
        left: 15%;
    }
}

@media (max-width: 414.98px) {
    .video-wrap {
        max-width: 100%;
        margin-bottom: 3em;
    }
    .video iframe {
        left: 0;
    }
}


/*=============== COMMON (JA) ===============*/

.common__content .heading2 {
    color: #4a317a;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
}

.common__content .heading3 {
    color: #4a317a;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1em;
}

.common__content .paragraph {
    color: #888088;
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 2.5em;
}

.common--lists.ja-lists {
    margin-bottom: 5em;
    padding-left: 7em;
    padding-right: 7em;
}

.common__content .list {
    font-size: 1.4rem;
    line-height: 1.5;
}

.common--fb__content.ja-cl {
    font-size: 1.4rem;
}

@media (max-width: 768.98px) {
    .common__content .heading2 {
        font-size: 1.6rem;
        margin-bottom: 1.5em;
    }
    .common__content .heading3 {
        font-size: 1.6rem;
        margin-bottom: 1em;
    }
    .common__content .paragraph {
        font-size: 1.2rem;
        line-height: 2;
        margin-bottom: 2.5em;
    }
    .common--lists.ja-lists {
        margin-bottom: 5em;
        padding-left: 5em;
        padding-right: 5em;
    }
    .common__content .list {
        font-size: 1.2rem;
    }
}

@media (max-width: 414.98px) {
    .common__content .heading2 {
        font-size: 1.2rem;
        margin-bottom: 1.5em;
    }
    .common__content .heading3 {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 1em;
    }
    .common__content .paragraph {
        font-size: 1rem;
        line-height: 2;
        margin-bottom: 2.5em;
    }
    .common--lists.ja-lists {
        margin-bottom: 5em;
        padding-left: 1em;
        padding-right: 1em;
    }
    .common__content .list {
        font-size: 1rem;
        line-height: 1.5;
    }
}


/*========== FOOTER ==========*/

.footer__container {
    background-image: linear-gradient(90deg, rgba(74, 49, 122, 1), rgba(205, 167, 255, 1));
    color: #fff;
    text-align: center;
}

.footer__inner {
    max-width: 1200px;
    padding: 4.5em 2em 1.5em;
    margin: 0 auto;
}

.footer__content--upper {
    margin-bottom: 1em;
}

.footer--register {
    margin-bottom: 1em;
}

.footer--register h2 {
    margin-bottom: 0.5em;
    font-size: 2.4rem;
}

.footer--register button {
    margin-bottom: 1.65em;
    background: #fff;
    color: #00000c;
}

.footer--register button img {
    width: 35px;
    vertical-align: middle;
    margin-right: 0.5em;
}

.footer__content--middle {
    margin-bottom: 0.5em;
}

.footer-logo {
    height: 6.5rem;
}

.social-media.info {
    margin-bottom: 2em;
}

.social-media.info a {
    margin-right: 2.5em;
    transition: .3s;
}

.social-media.info a:last-child {
    margin-right: 0;
}

.social-media.info a:hover {
    opacity: 0.7;
    transition: .3s;
}

.social-media.voice {
    margin-bottom: 2.5em;
}

.social-media.voice a {
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

.social-media.voice a:hover {
    opacity: 0.7;
    transition: .3s;
}

.social-media.voice span {
    display: block;
    font-size: 1.4rem;
    line-height: 2.3;
}

.footer--icon {
    width: 45px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    box-shadow: 0px 0px 0px 2px #fff inset;
    padding: 0.5em;
    border-radius: 10px;
}

.footer__menus {
    line-height: 2;
    display: flex;
    justify-content: center;
}

.footer__menus a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 1em;
}

.footer__menus a:hover {
    color: #594f80;
    text-decoration: none;
}

.footer__menu {
    margin-right: 1.5em;
    font-size: 0.875rem;
    font-weight: 300;
}

.footer__menu:nth-child(4) {
    margin-right: 0;
}

.copy--right {
    font-weight: 300;
    font-size: 0.875rem;
}

@media (max-width: 1099.98px) {}

@media (max-width: 768.98px) {
    .footer-inner {
        padding: 2em;
        display: block;
    }
    .footer-logo-container {
        width: 100%;
        text-align: center;
        margin-bottom: 1em;
    }
    .footer-logo {
        height: 5.5rem;
    }
    .footer-text-container {
        width: 100%;
        text-align: center;
    }
    .corp-address {
        margin-bottom: 1em;
    }
    .flex {
        padding-top: 0.8em;
        text-align: center;
        justify-content: space-around;
    }
}

@media (max-width: 414.98px) {
    .footer__inner {
        padding: 3em 2em 1.5em;
    }
    .footer--register {
        margin-bottom: 3em;
    }
    .footer--register button {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    .footer--register button img {
        width: 25px;
    }
    .footer-logo {
        height: 4rem;
    }
}