@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
	font-size: 62.5%; /* font-sizeは10px */
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	line-height: 1.5;
	font-family: "dnp-shuei-gothic-gin-std","YuGothic", "游ゴシック","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 14px;
    font-weight: 400;
	color: #35404f;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media screen and (max-width: 479px) {
    .sp-disp {
        display: block !important;
    }

    .sp-disp-table {
        display:table !important;
    }

    .sp-disp-inline {
        display:inline !important;
    }

    .sp-disp-inline-block {
        display: inline-block !important;
    }

    .sp-disp-none {
        display: none !important;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * loader
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.loader {
    position: absolute;
    z-index: 2;
	width: 100%;
	height: 100vh;
}

.circle {
    width: 90px;
    height: 90px;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.circle img {
    width: 90px;
    height: 90px;
}

.circle-border {
  width: 90px;
  height: 90px;
  padding: 0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,0.1) 33%, rgba(255,255,255,1) 100%);
  animation: spin .5s linear 0s infinite;
}

@media screen and (max-width: 479px) {
    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 50px;
        height: 50px;
    }

    .circle-border {
      width: 50px;
      height: 50px;
    }
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * main-visual
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main-visual {
	overflow: hidden;
	position: relative;
    z-index: 0;
	width: 100%;
	height: 100vh;
}

#main-visual-movie {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
}

.main-visual-overlay {
	z-index: 2;
	display: none;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url('../../images/pattern.png') 0 0 repeat;
}

.mv-bg-contents {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    height: auto;
    padding-left: 15%;
    transform: translate(0, -50%);
}

.mv-logo {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
}

.mv-logo img {
    width: 45%;
    height: auto;
}

.mv-copy {
    margin: 0;
    font-size: 20px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #9782f9;
}

@media screen and (max-width: 479px) {
    .mv-bg-contents {
        padding-left: 10%;
    }

    .mv-logo {
        position: relative;
        width: 100%;
        margin: 0 0 20px;
    }

    .mv-logo img {
        width: 55%;
    }

    .mv-copy {
        font-size: 12px;
    }
}

.main-visual-scroll-arrow {
	display: none;
	position: absolute;
	z-index: 4;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	margin: 0 auto;
	background-color: rgba(178,204,234,0.2);
    overflow: hidden;
}

.main-visual-scroll-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 50px;
	margin: 0 auto;
	background-color: rgba(178,204,234,1);
	-webkit-animation: moveDown 1.3s ease-in-out infinite;
	animation: moveDown 1.3s ease-in-out infinite;
}

@-webkit-keyframes moveDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0
    }
}

@keyframes moveDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * header
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100px;
}

.header-tsg-logo {
	display: none;
	position: absolute;
	top: 30px;
	right: 180px;
	width: 105px;
	height: 40px;
    margin: 0;
}

.header-tsg-logo img {
	width: 100%;
}

.header-school-logo {
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 104px;
	height: 45px;
    margin: 0;
}

.header-school-logo img {
	width: 100%;
}

@media screen and (max-width: 479px) {
    .header-tsg-logo {
        display: none;
        position: absolute;
        top: 15px;
        right: 100px;
        width: 79px;
        height: 30px;
        margin: 0;
    }

    .header-tsg-logo img {
        width: 100%;
    }

    .header-school-logo {
        display: none;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 70px;
        height: 30px;
        margin: 0;
    }

    .header-school-logo img {
        width: 100%;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * footer
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
	position: relative;
	width: 100%;
	background: #14151b url('../../images/bg-line-navy.png');
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 15px 15px;
	color: #ffffff;
}

footer a {
	color: #ffffff;
}

footer a:hover {
	color: #ffffff;
}

.footer-to-top {
	width: 100%;
	height: 60px;
    margin: 0 auto;
}

.footer-to-top a {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
    border-bottom: 1px solid #555555;
	background: #14151b url('../../images/bg-line-navy.png');
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 15px 15px;
    text-align: center;
    line-height: 59px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}

.footer-to-top a:hover {
    text-decoration: none;
}

@media screen and (max-width: 479px) {
    .footer-to-top {
        width: 100%;
        height: 50px;
        margin: 0 auto;
    }

    .footer-to-top a {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        border-bottom: 1px solid #555555;
        background: #14151b url('../../images/bg-line-navy.png');
        background-position: 0 0;
        background-repeat: repeat;
        background-size: 15px 15px;
        text-align: center;
        line-height: 49px;
        font-family: "brandon-grotesque", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 14px;
        color: #ffffff;
    }
}

.footer-contents {
	position: relative;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;/*上下中央*/
	-ms-flex-align: center;
    align-items: center;
	width: 100%;
	margin: 0 auto;
    padding: 100px 50px;
}

.footer-logo {
    position: relative;
    width: 25%;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    width: 60%;
    height: auto;
    transition: all 300ms;
}

.footer-logo.tate img {
    width: auto;
    height: 25px;
    transition: all 300ms;
}

.footer-logo img:hover {
    opacity: 0.7;
}

@media screen and (max-width: 479px) {
    .footer-contents {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;/*上下中央*/
        -ms-flex-align: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
        padding: 30px 15px 15px;
    }

    .footer-logo {
        position: relative;
        width: 33.33%;
        margin: 0 auto 30px;
        text-align: center;
    }

    .footer-logo img {
        width: 65%;
        height: auto;
        transition: all 300ms;
    }

    .footer-logo.tate img {
        width: auto;
        height: 20px;
        transition: all 300ms;
    }

    .footer-logo img:hover {
        opacity: 0.7;
    }
}

.footer-sns {
    position: relative;
    width: 100%;
    text-align: center;
}

.footer-sns-title {
    margin-bottom: 10px;
    line-height: 1;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 19px;
    color: #9782f9;
}

.footer-sns-icon {
    display: inline-block;
    height: 30px;
    margin: 0 10px 0;
    line-height: 1;
    font-size: 30px;
    color: #9782f9;
    transition: all 300ms;
}

.footer-sns-icon i {
    color: #9782f9;
}

.footer-sns-icon.insta {
    font-size: 32px;
}

.footer-sns-icon.fb {
    vertical-align: -2px;
    font-size: 38px;
}

.footer-sns-icon:hover {
    opacity: 1;
}

@media screen and (max-width: 479px) {
    .footer-sns-title {
        font-size: 14px;
    }

    .footer-sns-icon {
        display: inline-block;
        height: 30px;
        margin: 0 10px 0;
        line-height: 1;
        font-size: 30px;
        transition: all 300ms;
    }

    .footer-sns-icon.insta {
        font-size: 32px;
    }

    .footer-sns-icon.fb {
        vertical-align: -2px;
        font-size: 36px;
    }
}

.footer-link {
    position: relative;
    width: 100%;
    margin: 80px 0 50px;
    text-align: center;
}

.footer-link-text {
    display: inline-block;
    margin: 0 20px;
    font-size: 14px;
}

.footer-link-text a:hover {
    text-decoration: none;
}

@media screen and (max-width: 479px) {
    .footer-link {
        position: relative;
        width: 90%;
        margin: 50px auto 30px;
        text-align: center;
    }

    .footer-link-text {
        display: inline-block;
        margin: 0 10px;
        font-size: 11px;
    }
}

.footer-org {
    position: relative;
    display: table;
    width: 70%;
    margin: 0 auto 35px;
}

.footer-org p {
    position: relative;
    display: table-cell;
    width: 50%;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    font-size: 14px;
}

.footer-org p img {
    height: 40px;
    transition: all 300ms;
}

.footer-org p img:hover {
    opacity: 1;
}

@media screen and (max-width: 479px) {
    .footer-org {
        position: relative;
        display: table;
        width: 90%;
        margin: 0 auto 15px;
    }

    .footer-org p {
        position: relative;
        display: table-cell;
        width: 50%;
        margin: 0;
        text-align: center;
        vertical-align: middle;
        line-height: 30px;
        font-size: 10px;
    }

    .footer-org p img {
        height: 30px;
        transition: all 300ms;
    }
}

.copyright {
	position: relative;
	padding: 15px 0;
	width: 100%;
	text-align: center;
}

.copyright small {
	line-height: 1;
	font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

@media screen and (max-width: 479px) {
    .copyright small {
        line-height: 1;
        font-family: "brandon-grotesque", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 9px;
        font-size: 2.6vw;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #ffffff;
}

section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

section p {
	line-height: 2.5;
	font-size: 14px;
}

section ul li {
	font-size: 14px;
}

section ul li ul li {
	list-style: ' - ';
    line-height: 1.5;
}

section a {
	color: #6e52f6;
}

section a:hover {
	text-decoration: underline;
}

.section-inner {
    width: 100%;
    margin: 0 auto;
    padding: 50px 50px;
}

@media screen and (max-width: 479px) {
    section p {
        line-height: 1.8;
        font-size: 14px;
    }

    section ul li {
        font-size: 14px;
    }

    .section-inner {
        width: 100%;
        margin: 0 auto;
        padding: 30px 15px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * heading
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.h2 {
	position: relative;
	margin-bottom: 50px;
    padding-left: 50px;
	line-height: 1;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #6e52f6;
	font-size: 36px;
}

.h2:before {
    content: "";
	position: absolute;
    top: 18px;
	left: 0;
    width: 35px;
    height: 1px;
    background: #6e52f6;
}

.h2.light {
    color: #9782f9;
}

.h2.light:before {
    background: #9782f9;
}

.h3 {
	position: relative;
	margin-bottom: 20px;
	line-height: 1;
	font-size: 20px;
    font-weight: 500;
}

.h4 {
	position: relative;
    width: 100%;
    height: 60px;
	margin-bottom: 0;
    border: 1px solid #000000;
	line-height: 59px;
    text-align: center;
	font-size: 16px;
    font-weight: 500;
    color: #000000;
}

@media screen and (max-width: 479px) {
    .h2 {
        margin-bottom: 30px;
        padding-left: 30px;
        font-size: 25px;
    }

    .h2:before {
        top: 12px;
        left: 0;
        width: 20px;
        height: 1px;
    }

    .h3 {
        line-height: 1.2;
        font-size: 16px;
    }

    .h4 {
        position: relative;
        width: 100%;
        height: 40px;
        margin-bottom: 0;
        padding: 0 10px;
        border: 1px solid #000000;
        line-height: 38px;
        text-align: left;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
    }
    
    .h4 br {
        display: inline;
    }
    
    .h4.auto {
        position: relative;
        width: 100%;
        height: 60px;
        margin-bottom: 0;
        padding: 10px 10px 0;
        border: 1px solid #000000;
        line-height: 1.5;
        text-align: left;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
    }
    
    .end-mark {
        font-size: 10px;
    }
    
    .end-icon {
        display: block;
        position: absolute;
        content: "";
        top: 13px;
        right: 10px;
        height: 12px;
        width: 14px;
        background: url('../../images/icon-triangle-down.svg') center center no-repeat;
        background-size: 14px 12px;
    }

    .end-icon.open {
        display: block;
        position: absolute;
        content: "";
        top: 13px;
        right: 10px;
        height: 12px;
        width: 14px;
        background: url('../../images/icon-triangle-up.svg') center center no-repeat;
        background-size: 14px 12px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * common parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

hr {
	display: block;
	width: 100%;
	height: 1px;
	margin: 20px auto;
	background-color: rgba(255,255,255,0.2);
	border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}

.link-btn {
	position: relative;
	display: inline-block;
	height: 40px;
    width: 160px;
	margin: 0;
	padding: 0 ;
	border-radius: 60px;
	background: #00dea0;
	line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
	color: #ffffff;
	transition: all 300ms linear;
}

.link-btn:hover {
	text-decoration: none;
	opacity: 1;
}

blockquote {
	width: 90%;
	margin: 20px auto;
	padding: 30px;
	background: #fafafa;
	line-height: 1.5em;
	border: 3px solid #dddddd;
	border-radius: 6px;
}

.note {
	margin: 20px auto;
	line-height: 1.5em;
	font-size: 14px;
}

.note dt {
	position: relative;
}

.note dt span {
	position: absolute;
}

.note dd {
	padding-left: 1em;
	padding-bottom: 10px;
}

.atten {
	width: 100%;
	margin: 20px auto;
	padding: 20px;
	background: #fafafa;
	line-height: 1.5;
	border: 1px solid #dddddd;
    box-shadow: 0 0 0 3px #f7f7f7;
	border-radius: 6px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *top page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  top-wrapper ------------------------- */

.wrapper {
	overflow: hidden;
	position: relative;
    background: #ffffff;
}

/*-------------------------  section intro ------------------------- */

#section-intro {
    position: relative;
	width: 100%;
	margin: 0 auto;
    background: #14151b url('../../images/bg-line-navy.png');
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 15px 15px;
}

#section-intro:after {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 50px;
    height: 227px;
    background: url('../../images/title-about.svg') left center no-repeat;
	background-size: cover;
}

.intro-copy {
    line-height: 2.5;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
}
.intro-copy span {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
}

@media screen and (max-width: 479px) {
    #section-intro:after {
        content: "";
        position: absolute;
        top: 30px;
        left: 0;
        width: 28px;
        height: 127px;
        background: url('../../images/title-about.svg') left center no-repeat;
        background-size: cover;
    }

    .intro-copy {
        line-height: 2.5;
        text-align: center;
        font-size: 12px;
        font-size: 3.4vw;
        color: #ffffff;
    }
    
    .intro-copy span {
        font-size: 16px;
        font-size: 3.8vw;
        font-weight: 600;
        color: #ffffff;
    }
}

/*-------------------------  section features ------------------------- */

#section-top-features {
    position: relative;
    width: 100%;
	margin: 0 auto;
}

.features-box-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.features-box {
	position: relative;
	z-index: 1;
	width: 48%;
    margin-bottom: 30px;
    padding: 60px 30px 30px 30px;
    border: 1px solid #6e52f6;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    color: #6e52f6;
}

.features-box::before {
    position: absolute;
    top: 0;
    left: 20px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 46px;
    color: #6e52f6;
}

.features-box:nth-of-type(1):before {
    content: "1";
}

.features-box:nth-of-type(2):before {
    content: "2";
}

.features-box:nth-of-type(3):before {
    content: "3";
}

.features-box-img {
    margin-bottom: 20px;
    text-align: center;
}

.features-box-img img {
    width: 60%;
}

.features-box-title {
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
    font-size: 18px;
    font-weight: bold;
}

.features-box-desc {
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: 16px;
}

@media screen and (max-width: 479px) {

    .features-box-wrap {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .features-box {
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 30px;
        padding: 15px 15px 15px 15px;
    }
    
    .features-box::before {
        position: absolute;
        top: 0;
        left: 15px;
        font-family: "brandon-grotesque", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 36px;
        color: #6e52f6;
    }
    
    .features-box-img {
        margin-bottom: 10px;
        text-align: center;
    }

    .features-box-img img {
        width: 40%;
    }

    .features-box-title {
        margin-bottom: 10px;
        text-align: center;
        line-height: 1;
        font-size: 16px;
        font-weight: bold;
    }

    .features-box-desc {
        margin-bottom: 0px;
        line-height: 1.5;
        font-size: 14px;
    }
}

/*-------------------------  section apply ------------------------- */

#section-apply {
    position: relative;
	width: 100%;
	margin: 0 auto;
    background: #14151b url('../../images/bg-line-navy.png');
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 15px 15px;
    color: #ffffff;
}

.app-table {
	display: block;
	margin: 0 auto 30px;
}

.app-table-left {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.app-table-right {
    position: relative;
    width: 100%;
    padding: 0;
}

.app-table-title {
    display: inline-block;
    width: 180px;
    padding: 10px 0;
    border: 1px solid #6e52f6;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    font-size: 16px;
    color: #6e52f6;
}

.app-table-title.light {
    border: 1px solid #9782f9;
    color: #9782f9;
}

.app-table-title.eng {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.app-table-right > p {
    margin: 0 0 0;
    font-size: 16px;
}

.app-table-right > ol {
    margin: 5px 0 0;
}

.app-table-right > ol li {
    margin: 0 0 20px 18px;
    line-height: 1.8;
    font-size: 16px !important;
}

.app-table-right > ol li span {
    font-size: 14px;
}

@media screen and (max-width: 479px) {
    .app-table-title {
        display: inline-block;
        width: 100px;
        padding: 5px 0;
        border: 1px solid #6e52f6;
        text-align: center;
        line-height: 1;
        font-weight: bold;
        font-size: 14px;
        color: #6e52f6;
    }

    .app-table-right > p {
        margin: 0 0 0;
        font-size: 14px;
    }

    .app-table-right > ol {
        margin: 5px 0 0;
    }

    .app-table-right > ol li {
        margin: 0 0 20px 18px;
        line-height: 1.8;
        font-size: 14px !important;
    }

    .app-table-right > ol li span {
        font-size: 12px;
    }
}

.app-link {
    position: relative;
    display: block;
    width: 500px;
    height: 70px;
    margin: 100px auto 0;
    padding: 0;
    border-radius: 100px;
    background: #6e52f6;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 70px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    transition: all 300ms;
}

.app-link span {
    margin-right: 20px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.app-link:before {
    position: absolute;
    content: "";
    top: 28px;
    right: 40px;
    width: 12px;
    height: 14px;
    background: url('../../images/icon-triangle.svg') center center no-repeat;
	background-size: 12px 14px;
    transition: all 300ms;
}

.app-link:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #ffffff;
}

.app-link:hover:before {
    top: 28px;
    right: 40px;
}

@media screen and (max-width: 479px) {
    .app-link {
        position: relative;
        display: block;
        width: 100%;
        height: 70px;
        margin: 30px auto 0;
        padding: 0;
        padding-top: 16px;
        border-radius: 100px;
        background: #6e52f6;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        text-align: center;
        line-height: 1.2;
        font-size: 12px;
        font-weight: bold;
        color: #ffffff;
        transition: all 300ms;
    }

    .app-link span {
        margin-right: 0;
        font-family: "brandon-grotesque", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
    }

    .app-link:before {
        position: absolute;
        content: "";
        top: 28px;
        right: 15px;
        width: 12px;
        height: 14px;
        background: url('../../images/icon-triangle.svg') center center no-repeat;
        background-size: 12px 14px;
        transition: all 300ms;
    }

    .app-link:hover {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        text-decoration: none;
        color: #ffffff;
    }

    .app-link:hover:before {
        top: 28px;
        right: 15px;
    }
}

/*-------------------------  section meetups ------------------------- */

#section-individuals {
    position: relative;
	width: 100%;
	margin: 0 auto;
    background: #14151b url('../images/bg-line-navy.png');
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 15px 15px;
    color: #ffffff;
}

/*-------------------------  section meetups ------------------------- */

#section-meetups {
}

.line-box {
    margin-bottom: 50px;
    padding: 50px;
    border:1px solid #000000;
    border-top: none;
}

@media screen and (max-width: 479px) {
    .line-box {
        margin-bottom: 30px;
        padding: 15px;
        border:1px solid #000000;
        border-top: none;
    }
}

/*-------------------------  section partner ------------------------- */

#section-partner {
    position: relative;
    width: 100%;
	margin: 0 auto;
}

.url-link {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 50px;
    margin: 20px auto 0;
    padding: 0 30px;
    border-radius: 100px;
    background: #6e52f6;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    line-height: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    transition: all 300ms;
}

.url-link span {
    margin-right: 20px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.url-link:before {
    position: absolute;
    content: "";
    top: 18px;
    right: 20px;
    width: 12px;
    height: 14px;
    background: url('../../images/icon-triangle.svg') center center no-repeat;
	background-size: 12px 14px;
    transition: all 300ms;
}

.url-link:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #ffffff;
}

.url-link:hover:before {
    top: 18px;
    right: 20px;
}

@media screen and (max-width: 479px) {
    .url-link {
        width: 150px;
    }
}