@charset "UTF-8";

/*------------------------------------------------------------------------------------------------------------------------------
          
SP
									
------------------------------------------------------------------------------------------------------------------------------*/

* { box-sizing: border-box; }
html { font-size: 62.5%; /*10px*/ }

body {
	width: 100%;
	height: auto;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
	background-color: #fff;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#container {
	width: 100%;
	margin: 0 auto;
	color: #212635;
	opacity: 0;
	animation: fadeIn 300ms ease 300ms forwards;
}

@keyframes fadeIn {
	from { opacity: 0;}
	to { opacity: 1; }
}

h1,h2,h3,h4,h5,h6,bold,th { font-size: 2rem; letter-spacing: .03em; font-weight: 700; line-height: 1.4; margin: 0; padding: 0; }
p,ul,ol,li,dl,dd,blockquote,form,input,fieldset,legend,td { font-size: 1.4rem; letter-spacing: .025em; font-weight: 500; margin: 0; padding: 0; }

a, a:focus, a:active { color: inherit; text-decoration: none;}
li { list-style: none; }
p { line-height: 2.4; }
a.disable { pointer-events: none;}

picture, figure { display: block; line-height: 0; }
img.fit { object-fit: cover; }
img {
	width: 100%;
	-webkit-backface-visibility: hidden;
	pointer-events: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	touch-callout:none;
	user-select:none;
	image-rendering: -webkit-optimize-contrast;
}

main { display:block; width: 100%;}
article { width: 100%; position:relative; z-index:10;}


/*FONT*/
.blue { color: #0088ff; }
.jost { font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: .03em; }
br.pc { display: none;}
.bold { font-weight: 700;}
.nowrap { white-space: nowrap;}


/*BACKGROUND*/
.bg-g { background-color: #e9eaeb; }
.bg-n { background-color: #212635; }

button {
	transition: all 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

button.hover {
	background-color: #0088ff !important;
}


/*------------------------------------------------------ LOADING */

#loading {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1000;
	clip-path: circle(100%);
}

#loading.active {
	animation: hidden 800ms cubic-bezier(0.32, 0.08, 0.24, 1) forwards;
}

@keyframes hidden {
	0% { clip-path: circle(100%); }
	95% { clip-path: circle(0%); }
	100% { clip-path: circle(0%); display:none; visibility: hidden; }
}

#loading div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 54px;
}

#loading div span {
	display: block;
	width: 12px;
	height: 12px;
	background-color: #0088ff;
	border-radius: 50%;
	transform: scale(0);
	animation: load 1200ms ease infinite;
}

@keyframes load {
	0% { transform: scale(0);}
	20% { transform: scale(100%);}
	80% { transform: scale(100%);}
	100% { transform: scale(0);}
}

#loading div span:nth-child(1) { animation-delay: 0; }
#loading div span:nth-child(2) { animation-delay: 200ms; }
#loading div span:nth-child(3) { animation-delay: 400ms; }


/*------------------------------------------------------ HEADER */

#gHeader {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#gHeader .gHeaderInner {
	padding: 20px 20px 0 20px;
}

#gHeader .gHeaderInner .gHeaderLogo {
	display: flex;
    align-items: center;
}

#gHeader .gHeaderInner .gHeaderLogo img {
	display: block;
	width: 60px;
    height: 36px;
}

#gHeader .gHeaderInner .gHeaderLogo span {
	display: block;
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 10px;
}


/*------------------------------------------------------ GRAND-NAV */

#gNav {
    position: fixed;
    top: 20px;
    right: 20px;
	z-index: 1000;
}

#gNav .gNavInner {
    display: flex;
    align-items: center;
	position: relative;
}

#gNav .gNavInner button {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 36px;
    background-color: #212635;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 18px;
	position: relative;
	z-index: 900;
    transition: all 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav.reverse .gNavInner button {
	background-color: #383c4a;
}

#gNav .gNavInner button span {
	display: block;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}

#gNav .gNavInner .gNavTrigger {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #212635;
	position: relative;
    margin-left: 10px;
	z-index: 900;
	cursor: pointer;
    transition: all 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav.reverse .gNavInner .gNavTrigger {
	background-color: #383c4a;
}

#gNav .gNavInner .gNavTrigger.hover {
	background-color: #0088ff
}

#gNav .gNavInner .gNavTrigger .open {
	width: 100%;
	height: 100%;
	position: relative;
}

#gNav .gNavInner .gNavTrigger span {
    display: block;
    width: 40%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav .gNavInner .gNavTrigger span:nth-child(1) {
	transform: translate(-50%, -50%);
	margin-top: -5px;
}
#gNav .gNavInner .gNavTrigger span:nth-child(2),
#gNav .gNavInner .gNavTrigger span:nth-child(4) {
	transform: translate(-50%, -50%);
}
#gNav .gNavInner .gNavTrigger span:nth-child(3) {
	transform: translate(-50%, -50%);
	margin-top: 5px;
}

#gNav .gNavInner .gNavTrigger.active span:nth-child(1) {
	transform: translate(-50%, -50%) scale(0,1);
}
#gNav .gNavInner .gNavTrigger.active span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}
#gNav .gNavInner .gNavTrigger.active span:nth-child(3) {
	transform: translate(-50%, -50%) scale(0,1);
}
#gNav .gNavInner .gNavTrigger.active span:nth-child(4) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#gNav .gNavInner .gNavTrigger .close {
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	z-index: 1;
}

#gNav .gNavInner .gNavTrigger.active .close {
	height: 100%;
	visibility: visible;
}

#gNav .gNavInner .gNavList {
    width: 100%;
    height: 100vh;
    background-color: rgb(161 168 172 / 50%);
    backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
	visibility: hidden; 
    clip-path: circle(0 at calc(100% - 38px) 38px);
    transition: all 450ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav .gNavInner .gNavTrigger.active + .gNavList {
	visibility: visible;
    clip-path: circle(150% at calc(100% - 38px) 38px);
    transition: all 600ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav .gNavInner .gNavList nav {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#gNav .gNavInner .gNavList nav ol {
}

#gNav .gNavInner .gNavList nav ol li:not(:first-child) {
    margin-top: 32px;
}

#gNav .gNavInner .gNavList nav ol li a {
    display: inline-block;
    font-size: 2.4rem;
	font-weight: 700;
    line-height: 1;
}

#gNav .gNavInner .gNavList nav ol li a .jp {
	display: flex;
	align-items: center;
	position: relative;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav .gNavInner .gNavList nav ol li a .jp:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: #0088ff;
	margin-top: 3px;
    margin-right: 0;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#gNav .gNavInner .gNavList nav ol li a .jost {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    color: #0088ff;
    margin-bottom: 8px;
}

/*HOVER*/

#gNav .gNavInner .gNavList nav ol li a.hover .jp {
	color: #0088ff;
}

#gNav .gNavInner .gNavList nav ol li a.hover .jp:before {
	width: 16px;
	margin-right: 8px;
}



/*------------------------------------------------------ WRAP */

.wrap {
	width: calc(100vw - (100vw / 12) * 2);
	margin-left: auto;
	margin-right: auto;
}

/*------------------------------------------------------ RADIUS */

.radius {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}


/*------------------------------------------------------ CONTETNS */

.contents {
	width: 100%;
	height: auto;
}


/*------------------------------------------------------ PHASE */

.phase {
	border-radius: 30px;
    padding: 112px 0 112px;
	position: relative;
}

.phase + .phase {
	margin-top: 60px;
}

/*.phase:before {
    content: "";
    display: block;
    width: 80%;
    height: 0;
    padding-top: 25%;
    background: url(../img/bg-g-img.jpg) center top / 100% auto no-repeat;
    position: absolute;
    top: 220px;
    right: 0;
}*/

.phase.bg-n:before {
	background: url(../img/bg-n-img.jpg) center top / 100% auto no-repeat;
}

.phase .phaseInner {
	position: relative;
	z-index: 1;
}

.phase .phaseInner .phaseHeader {
	width: 100%;
}

.phase .phaseInner .phaseHeader .phaseTitle {
    width: 100%;
    font-size: 4.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.phase .phaseInner .phaseHeader .phaseTitle .jost {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 7.2rem;
    top: -45px;
    left: -10vw;
    position: absolute;
    z-index: -1;
    overflow: hidden;
}

.phase .phaseInner .phaseHeader .phaseTitle .jost span {
    display: inline;
    transition: all 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
    transform: translate(0, 110%);
}

.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(1) { transition-delay: none; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(2) { transition-delay: 75ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(3) { transition-delay: 150ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(4) { transition-delay: 225ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(5) { transition-delay: 300ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(6) { transition-delay: 375ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(7) { transition-delay: 450ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(8) { transition-delay: 525ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(9) { transition-delay: 600ms; }
.phase .phaseInner .phaseHeader .phaseTitle .jost span:nth-child(10) { transition-delay: 675ms; }

.phase .phaseInner .phaseHeader .phaseTitle.in .jost span {
    transform: translate(0,0);
}

.phase .phaseInner .phaseHeader .phaseLead {
    margin: 30px auto 0;
}

.phase .phaseInner .phaseHeader .phaseLead br {
	display: none;
}


/*BACKGROUND-NAVY*/

.phase.bg-n .phaseInner .phaseHeader .phaseTitle .jost {
	color: rgb(255 255 255 / 10%);
}

.phase.bg-n .phaseInner .phaseHeader .phaseTitle,
.phase.bg-n .phaseInner .phaseHeader .phaseLead {
	color: #fff;
}


/*------------------------------------------------------ SECTION */

.section {
	width: 100%;
	margin-top: 45px;
}

.section .sectionTitle {
	position: relative;
    z-index: 1;
    transform: translate(-16px, 50%);
}

.section .sectionTitle > span {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    padding: 12px 20px;
    border-radius: 60px 60px 0 60px;
    background: linear-gradient(90deg, #0088ff, #003c87);
}

.section .sectionTitle > span > span {
	display: block;
    font-size: 60%;
    margin-bottom: 2px;
}

.section .sectionEn {
	display: none;
}

.section .sectionInner {
    width: calc(100% + (100vw / 12));
    border-radius: 24px 0 0 24px;
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.section .sectionWrap {
    padding-right: calc(100vw / 12);
    padding-left: 25px;
}

.section .sectionWrap + .sectionWrap {
	margin-top: 30px;
}

.section .sectionInner .sectionLead {
    color: #003c87;
    line-height: 2;
	font-weight: 700;
	text-align: justify;
}

.section .sectionInner .sectionLead span {
    display: inline-block;
    font-size: 140%;
	line-height: 1;
    padding: 0 1px;
}


/*------------------------------------------------------ SLIDE */

.slide {
    width: 100%;
    position: relative;
	padding-left: 25px;
	margin-top: 40px;
	overflow: hidden;
	z-index: 1;
}

.slide .swiper {
	overflow: visible;
}

.slide .slideInner {
}

.slide .slideInner li {
	padding-right: calc(100vw / 12);
}

.slide .slideInner li .slideImg {
}

.slide .slideInner li .slideImg img {
	border-radius: 12px 12px 0 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.slide .slideInner li .slideTxt {
	display: flex;
	flex-wrap: wrap;
}

.slide .slideInner li .slideTxt .slideTitle {
    order: 2;
    width: 100%;
    margin-top: 15px;
}

.slide .slideInner li .slideTxt .slideTag {
	order: 1;
    display: flex;
    align-items: center;
	margin-top: 15px;
}

.slide .slideInner li .slideTxt .slideTag li {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.2;
    border: 1px solid #d3d4d7;
    padding: 4px 6px;
    border-radius: 4px;
    background-color: #fff;
}

.slide .slideInner li .slideTxt .slideTag li + li {
	margin-left: 5px;
}

.slide .slideInner li .slideTxt .slideHead {
    order: 3;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 13px;
}

.slide .slideInner li .slideTxt .txt {
    order: 4;
    width: 100%;
    color: #595c68;
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: justify;
    margin-top: 10px;
}

.slide .swiperBtn {
	display: none;
}

.slide .btnNext,
.slide .btnPrev {
	display: none;
	opacity: 0;
	visibility: hidden;
}


/*------------------------------------------------------ PAGE-TOP */

#pageTop {
	width: 36px;
    height: 36px;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 600;
    transform: scale(0);
    transition: transform 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#pageTop.scroll {
	transform: scale(1);
}

#pageTop a {
    display: block;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
	border: 1px solid #dedfe1;
    position: relative;
    margin: 0 auto;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#pageTop a svg {
	width: 40%;
    fill: #212635;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(180deg);
	transition: fill 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

/*HOVER*/

#pageTop a.hover {
	box-shadow: 0 5px 15px rgb(0 0 0 / 25%);
	border: 1px solid #fff;
}

#pageTop a.hover svg {
	fill: #0088ff;
}


/*------------------------------------------------------ FOOTER */

#gFooter {
	width: 100%;
	padding: 100px 0;
	background-color: #fff;
}

#gFooter .gFooterInner {
	width: 100%;
    padding: 0 25px;
}

#gFooter .gFooterInner .gFooterLogo {
    display: block;
    line-height: 0;
    width: 100%;
}

#gFooter .gFooterInner .gFooterLogo img {
    display: block;
    width: 90px;
    margin: 0 auto;
}

#gFooter .gFooterInner .gFooterLogo span {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
    margin: 5px 0 0;
}

#gFooter .gFooterInner .gFooterBtn {
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 30px auto 0;
}

#gFooter .gFooterInner .gFooterBtn button {
	display: inline-flex;
    align-items: center;
    width: auto;
	min-width: 116px;
    height: 36px;
    background-color: #212635;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

#gFooter .gFooterInner .gFooterBtn button span {
	display: block;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
	margin: 0 auto;
}

#gFooter .gFooterInner .copyrights {
	font-size: 1rem;
    line-height: 1.1;
    text-align: center;
    color: #9ba0ae;
    margin: 30px auto 0;
}


/*------------------------------------------------------ DELAY */

.delay > li {
	opacity: 0;
	left: 10px;
	position: relative;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.delay > li.in {
	opacity: 1;
	left: 0;
}


/*------------------------------------------------------------------------------------------------------------------------------
          
TAB
									
------------------------------------------------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 500px) {
	
h1,h2,h3,h4,h5,h6,bold,th { font-size: 2.8rem; }
p,ul,ol,li,dl,dd,blockquote,form,input,fieldset,legend,td { font-size: 1.5rem; }
br.pc { display: inline; }
	
/*------------------------------------------------------ HEADER */

#gHeader .gHeaderInner .gHeaderLogo img {
    width: 90px;
    height: 54px;
}

#gHeader .gHeaderInner .gHeaderLogo span {
	font-size: 1.4rem;
    margin-left: 15px;
}

#gNav .gNavInner button {
    height: 54px;
    padding: 0 42px;
    border-radius: 27px;
}

#gNav .gNavInner button span {
	font-size: 1.4rem;
}

#gNav .gNavInner .gNavTrigger {
    width: 54px;
    height: 54px;
	margin-left: 15px;
}

#gNav .gNavInner .gNavTrigger span:nth-child(1) {
    margin-top: -6px;
}
#gNav .gNavInner .gNavTrigger span:nth-child(3) {
    margin-top: 6px;
}

#gNav .gNavInner .gNavList {
    clip-path: circle(0 at calc(100% - 47px) 47px);
}

#gNav .gNavInner .gNavTrigger.active + .gNavList {
    clip-path: circle(150% at calc(100% - 47px) 47px);
}

/*------------------------------------------------------ WRAP */

.wrap {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}


/*------------------------------------------------------ PHASE */

.phase {
	width: 100%;
    overflow: hidden;
    border-radius: 30px;
    padding: 150px 0 120px;
}

/*.phase:before {
	width: 60%;
    height: 0;
    padding-top: 18.5%;
}*/

.phase .phaseInner .phaseHeader .phaseTitle {
    font-size: 5rem;
}

.phase .phaseInner .phaseHeader .phaseTitle br {
	display: none;
}

.phase .phaseInner .phaseHeader .phaseTitle .jost {
    font-size: 12rem;
    top: -87px;
    left: -14vw;
}


/*------------------------------------------------------ SECTION */

.section .sectionTitle > span {
    font-size: 2.2rem;
}

.section .sectionInner {
    width: calc(100% + 12.5vw);
	padding-top: 50px;
}

.section .sectionWrap {
    padding-right: 12.5vw;
    padding-left: 50px;
}

.section .sectionWrap + .sectionWrap {
    margin-top: 35px;
}



/*------------------------------------------------------ SLIDE */

.slide {
    padding-left: 50px;
}

.slide .slideInner li {
    padding-right: 12.5vw;
}

.slide .slideInner li .slideTxt .slideHead {
    font-size: 1.6rem;
}

.slide .slideInner li .slideTxt .txt {
    font-size: 1.4rem;
}


/*------------------------------------------------------ PAGE-TOP */

#pageTop,
#pageTop a {
    width: 54px;
    height: 54px;
}

#pageTop a svg {
    width: 32%;
}


/*------------------------------------------------------ FOOTER */

#gFooter {
    padding: 160px 0;
}

#gFooter .gFooterInner .gFooterLogo img {
    width: 120px;
}

#gFooter .gFooterInner .gFooterLogo span {
    font-size: 1.5rem;
    margin: 8px 0 0;
}

#gFooter .gFooterInner .gFooterBtn {
    width: 360px;
}

#gFooter .gFooterInner .gFooterBtn button {
    min-width: 160px;
    height: 54px;
    padding: 0 36px;
    border-radius: 27px;
}

#gFooter .gFooterInner .gFooterBtn button span {
    font-size: 1.4rem;
}

#gFooter .gFooterInner .copyrights {
    margin: 25px auto 0;
}

}


/*------------------------------------------------------------------------------------------------------------------------------
          
PC
									
------------------------------------------------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 900px) {
	
h1,h2,h3,h4,h5,h6,bold,th { font-size: 2.8rem; }
p,ul,ol,li,dl,dd,blockquote,form,input,fieldset,legend,td { font-size: 1.5rem; }
br.pc { display: inline; }
	
/*------------------------------------------------------ HEADER */


/*------------------------------------------------------ GRAND-NAV */

#gNav .gNavInner .gNavTrigger {
    margin-left: 20px;
}

#gNav .gNavInner .gNavList nav {
	width: calc(100% - (100% / 15) * 4);
	margin: 0 auto;
}

#gNav .gNavInner .gNavList nav ol li {
	text-align: center;
}

#gNav .gNavInner .gNavList nav ol li:not(:first-child) {
    margin-top: 36px;
}

#gNav .gNavInner .gNavList nav ol li a {
    font-size: 3.2rem;
}

#gNav .gNavInner .gNavList nav ol li a .jost {
    font-size: 1.5rem;
}

#gNav .gNavInner .gNavList nav ol li a .jp:before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	margin: 0 auto;
}

/*HOVER*/

#gNav .gNavInner .gNavList nav ol li a.hover .jp:before {
	width: 74.5px;
	margin: 0 auto;
}


/*------------------------------------------------------ WRAP */

.wrap {
	width: 100%;
}


/*------------------------------------------------------ CONTENTS */

/*------------------------------------------------------ PHASE */

.phase {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - (100% / 15) * 2);
	padding: 200px 0 120px;
	margin: 0 auto;
	overflow: inherit;
}

.phase + .phase {
    margin-top: calc(100% / 15);
}

/*.phase:before {
	width: 534px;
    height: 160px;
    padding-top: 0;
	top: 160px;
}*/

.phase .phaseInner .phaseHeader {
	width: calc(100% - (100% / 13) * 2);
	margin: 0 auto;
}

.phase .phaseInner .phaseHeader .phaseTitle {
    font-size: 6rem;
}

.phase .phaseInner .phaseHeader .phaseTitle .jost {
    font-size: 18rem;
    top: -140px;
    left: -8.2vw;
}

.phase .phaseInner .phaseHeader .phaseLead {
    padding-left: calc(100% / 11);
    margin: 50px auto 0;
}

.phase .phaseInner .phaseHeader .phaseLead br {
	display: inline;
}


/*------------------------------------------------------ SECTION */

.section {
    width: calc(100% - (100% / 13));
    margin-top: 160px;
	margin-left: calc((100% / 13) * 2);
	position: relative;
}

.section .sectionTitle {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-25px, -50%);
}

.section .sectionTitle > span {
    font-size: 2.8rem;
    padding: 14px 25px;
}

.section .sectionEn {
    display: block;
    position: absolute;
    top: -80px;
    right: calc(100% / 13);
}

.section .sectionEn .jost {
    display: flex;
    align-items: center;
	color: #fff;
    font-size: 10rem;
    line-height: 1;
    overflow: hidden;
}

.section .sectionEn .jost span {
    display: inline;
    transition: all 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
    transform: translate(0, 110%);
}

.section .sectionEn.in .jost span:nth-child(1) { transition-delay: none; }
.section .sectionEn.in .jost span:nth-child(2) { transition-delay: 75ms; }
.section .sectionEn.in .jost span:nth-child(3) { transition-delay: 150ms; }
.section .sectionEn.in .jost span:nth-child(4) { transition-delay: 225ms; }
.section .sectionEn.in .jost span:nth-child(5) { transition-delay: 300ms; }
.section .sectionEn.in .jost span:nth-child(6) { transition-delay: 375ms; }
.section .sectionEn.in .jost span:nth-child(7) { transition-delay: 450ms; }
.section .sectionEn.in .jost span:nth-child(8) { transition-delay: 525ms; }
.section .sectionEn.in .jost span:nth-child(9) { transition-delay: 600ms; }
.section .sectionEn.in .jost span:nth-child(10) { transition-delay: 675ms; }
.section .sectionEn.in .jost span:nth-child(11) { transition-delay: 750ms; }
.section .sectionEn.in .jost span:nth-child(12) { transition-delay: 825ms; }

.section .sectionEn.in .jost span {
    transform: translate(0,0);
}

.section .sectionInner {
    width: 100%;
	padding-top: 75px;
    padding-bottom: 100px;
}

.section .sectionWrap {
    padding-right: calc(100% / 12 * 2);
    padding-left: calc(100% / 12 / 2);
}


/*------------------------------------------------------ SLIDE */

.slide {
	padding-left: calc(100% / 12 / 2);
	cursor: grab;
}

.slide:active {
	cursor: grabbing;
}

.slide .slideInner > li {
	padding-right: calc(100% / 12);
}

.slide .swiperBtn {
	display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-right: calc(100vw / 15);
    margin-top: 20px;
}

.slide .btnNext,
.slide .btnPrev {
	display: block;
	opacity: 1;
	visibility: visible;
	width: 54px;
    height: 32px;
	position: relative;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.slide .btnNext {
	border-left: 1px solid #e9eaeb;
}

.slide .btnNext svg,
.slide .btnPrev svg {
	width: 32%;
	fill: #212635;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: fill 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.slide .btnNext svg {
    transform: rotate(-90deg);
}

.slide .btnPrev svg {
    transform: rotate(90deg);
}

.slide .btnNext:not(.swiper-button-disabled):hover svg,
.slide .btnPrev:not(.swiper-button-disabled):hover svg {
	fill: #0088ff;
}

.slide .btnNext.swiper-button-disabled svg,
.slide .btnPrev.swiper-button-disabled svg {
	fill: #e9eaeb;
}

}

/*------------------------------------------------------------------------------------------------------------------------------
          
INTERNSHIP
									
------------------------------------------------------------------------------------------------------------------------------*/

#gFooter .gFooterInner .gFooterBtn {
    display: block;
    text-align: center;
}

#gFooter .gFooterInner .gFooterBtn button + button {
	margin-top: 10px;
}

@media print, screen and (min-width: 500px) {
	
#gFooter .gFooterInner .gFooterBtn {
    width: auto;
	display: flex;
    justify-content: center;
    align-items: center;
}

#gFooter .gFooterInner .gFooterBtn button + button {
	margin-top: 0;
	margin-left: 15px;
}
	
}

@media print, screen and (min-width: 900px) {
}