@charset "UTF-8";

/*------------------------------------------------------------------------------------
          
STYLE
									
------------------------------------------------------------------------------------*/

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

.pageHeader {
    width: 100%;
    padding-top: calc(70px + 50px + 40vw);
    padding-bottom: 40vw;
}

.pageHeader .pageTitle {
    font-size: 1.8rem;
    letter-spacing: .25rem;
    text-indent: .25rem;
    text-align: center;
    color: #1cc0e2;
}

.pageHeader .pageTitle span {
    display: block;
	width: 100%;
	overflow: hidden;
    font-size: 2.4rem;
    letter-spacing: 1rem;
    text-indent: 1rem;
    line-height: 1.1;
    padding-bottom: 5px;
}


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

.fullHeader {
    width: 100%;
    height: 100vh;
	position: relative;
	overflow: hidden;
}

.fullHeader .fullHeaderTitle {
	font-size: 3rem;
    letter-spacing: .2rem;
    text-indent: 0.2rem;
	text-align:center;
	color: #fff;
	width: 100%;
	padding: 0 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}

.fullHeader .fullHeaderTitle span.en {
    display: block;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: .5rem;
    text-indent: .5rem;
    color: #fff;
    margin-bottom: 15px;
}

.fullHeader .fullHeaderImg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 1;
	visibility: visible;
}

.fullHeader .fullHeaderImg.invisible {
	opacity: 0;
	visibility: hidden;
}

.fullHeader .fullHeaderImg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,30,63,0), #001e3f 75%);
    opacity: .75;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
	z-index: 5;
}

.fullHeader .fullHeaderImg:after {
	content: "";
	display: block;
	width: 100%;
	height: 10vh;
	background-color: #001e3f;
	position: fixed;
	left: 0;
	bottom: 0;
	transform: translate(0,99%);
}

.fullHeader .fullHeaderImg img {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 3;
}

/*SCROLL-ANIM*/

.scrollAnim {
    width: 100%;
    height: 60px;
	padding: 0 20px;
    position: absolute;
    left: 0;
    bottom: 0;
	z-index: 50;
	transition: all 600ms cubic-bezier(0.32, 0.08, 0.24, 1) 400ms;
	transform: translate(0,100%);
	opacity: 0;
}

.show .scrollAnim {
	transform: translate(0,0);
	opacity: 1;
}

.scrollAnim a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1cc0e2;
	position: relative;
}

.scrollAnim a span:not(.hr) {
	display: inline-block;
    font-size: 1.1rem;
	letter-spacing: .1rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}

.scrollAnim a span.firstLetter {
	left: calc(50% - 40px);
}

.scrollAnim a span.lastLetter {
	left: calc(50% + 40px);
}

.scrollAnim a span.hr {
	display: block;
	width: 1px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	overflow: hidden;
	z-index: 1;
}

.scrollAnim a span.hr:after {
	content: "";
	display:block;
	width: 100%;
	height: 100%;
	background-color: #001e3f;
	position: absolute;
	top: 0;
	left: 0;
	animation: scrollAnim 1600ms ease infinite;
}

@keyframes scrollAnim {
	0% { transform:translate(0,-100%); opacity: 1; }
	85% { transform:translate(0,100%); opacity: 1; }
	90% { transform:translate(0,100%); opacity: 0; }
	95% { transform:translate(0,-100%); opacity: 0; }
	100% { transform:translate(0,-100%); opacity: 1; }
}


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

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

.section + .section {
	margin-top: calc(30vw - 100px);
}

.section .sectionInner {
}

.section .sectionInner .sectionImg {
    position: relative;
	overflow: hidden;
	z-index: 10;
}

.section .sectionInner .sectionImg:after {
	content: "";
	display:block;
	width: 110%;
	height: 110%;
	background: #104195;
	opacity: 1;
	position: absolute;
	top: -5%;
	left: -5%;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.section .sectionInner .sectionImg.in:after {
	opacity: .675;
	background: #001e3f;
	transition: all 1200ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.section .sectionInner .sectionImg img {
	width: 100%;
    height: 70vw;
}

.section .sectionInner .sectionImg .sectionTitle {
    width: 100%;
    font-size: 3rem;
	line-height: 1.32;
    letter-spacing: .2rem;
    text-indent: .2rem;
    text-align: center;
    color: #fff;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    margin: 0;
	z-index: 10;
}

.section .sectionInner .sectionImg .sectionTitle .en {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: .5rem;
    color: #fff;
    margin-bottom: 12px;
}

.section .sectionInner .sectionTxt {
    width: calc(100% - 40px);
    padding: 60px 7.5%;
    background-color: #e6e9ec;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}

.section .sectionInner .sectionTxt .sectionHead {
    font-size: 2.2rem;
}

.section .sectionInner .sectionTxt .sectionHead + p {
    margin-top: 20px;
}

.section .sectionInner .sectionTxt .sectionHead + p + .sectionHead {
    border-top: 1px solid #334b65;
    margin-top: 60px;
    padding-top: 60px;
}

.section .sectionInner .sectionTxt .txt + .attention {
    font-size: 80%;
    line-height: 1.5;
    opacity: .8;
    margin-top: 15px;
}

.section .sectionInner .sectionTxt .txtInnerImg {
    width: 100%;
    margin: 20px auto 0;
}

.section .sectionInner .sectionTxt .txtInnerImg figure {
    display: block;
    width: 100%;
}

.section .sectionInner .sectionTxt .txtInnerImg figure + figure {
	margin-top: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg figure img {
	display: block;
    width: 100%;
}

.section .sectionInner .sectionTxt .txtInnerImg figure figcaption {
    font-size: 1.2rem;
    margin: 5px auto 20px;
}

.section .sectionInner .sectionTxt .txtInnerImg figure:last-child figcaption {
    margin: 5px auto 0;
}


/*------------------------------------------------------ ANCHOR-LIST */

.anchor {
    width: 100%;
    overflow: hidden;
    margin-top: calc(30vw - 50px);
    padding-top: 50px;
	position: sticky;
    top: -1px;
    left: 0;
    z-index: 500;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.anchor + .section {
	margin-top: -40px;
}

.anchor .anchorInner {
	width: 100%;
    overflow: scroll;
	border-bottom: 1px solid #0f387e;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/*SCROLLBAR INVISIBLE*/
.anchor .anchorInner::-webkit-scrollbar {
	display: none;
}

.anchor .anchorInner .anchorList {
    width: 780px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.anchor .anchorInner .anchorList li a.link {
	padding-bottom: 4px;
	border-bottom: 2px solid #fff;
}


/*------------------------------------------------------ ENTRY-BOX */

.entryBox {
	width: 100%;
    background: #1cc0e2;
    padding: 30vw 0;
}

.entryBox .entryBoxInner {
	width: 100%;
	padding: 0 40px; 
}

.entryBox .entryBoxInner .entryBoxTxt {
    width: 100%;
	text-align: center;
}

.entryBox .entryBoxInner .entryBoxTxt img {
	display: block;
	width: 100%;
	max-width: 364px;
	margin: 0 auto;
}

.entryBox .entryBoxInner .entryBoxTxt a.link {
    display: inline-block;
    width: auto;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: .75rem;
    text-indent: .75rem;
    color: #001e3f;
    padding-bottom: 5px;
    border-bottom: 2px solid #001e3f;
	margin: 25px auto 0;
}

.entryBox .entryBoxInner .entryBoxTxt a.link span {
}

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

#slideGuide {
	display: none;
}


/*------------------------------------------------------ AS-OF */

.asof {
	width: 100%;
    background-color: #001e3f;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
    margin-top: -15px;
}

.asof p {
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #fff;
    opacity: .5;
}

.asof p span {
	display: inline-block;
}


/*------------------------------------------------------------------------------------

以下 TAB 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 500px) {
	
/*------------------------------------------------------ PAGE-HEADER */

.pageHeader {
    padding-top: calc(70px + 50px + 10vw);
    padding-bottom: 10vw;
}

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

/*SCROLL-ANIM*/

.scrollAnim {
	padding: 0;
}

.scrollAnim a {
	margin: 0 auto;
}


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

.section + .section {
    margin-top: calc(15vw - 100px);
}

.section .sectionInner .sectionTxt .sectionHead {
    text-align: center;
}

.section .sectionInner .sectionImg img {
    width: 100%;
    height: 40vw;
}

.section .sectionInner .sectionTxt .txtInnerImg {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px auto 0;
}

.section .sectionInner .sectionTxt .txtInnerImg figure {
    width: calc(50% - 5px);
    height: auto;
	margin-top: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg figure:nth-child(2n+1) {
	margin-right: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg.onlyImg {
	width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
}

.section .sectionInner .sectionTxt .txtInnerImg.onlyImg figure {
	width: 100%;
	margin: 0;
}


/*------------------------------------------------------ ANCHOR-LIST */

.anchor {
    margin-top: calc(15vw - 50px);
}

.anchor .anchorInner .anchorList {
    width: 850px;
}


/*------------------------------------------------------ ENTRY-BOX */

.entryBox {
    padding: 15vw 0;
}

}


/*------------------------------------------------------------------------------------

以下 PC 用
									
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 900px) {
	
/*------------------------------------------------------ PAGE-HEADER */

.pageHeader {
    padding: 170px 0 100px;
}

.pageHeader .pageTitle {
    font-size: 2.2rem;
}

.pageHeader .pageTitle span {
    font-size: 3.2rem;
    letter-spacing: 3.2rem;
    text-indent: 3.2rem;
	padding-bottom: 15px;
}


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

.fullHeader .fullHeaderTitle {
    font-size: 3.8rem;
	top: 47.5%;
}

.fullHeader .fullHeaderTitle span.en {
    font-size: 2.6rem;
}

/*SCROLL-ANIM*/

.scrollAnim {
    height: 80px;
}

.scrollAnim a {
    width: 40vw;
	transition: background-color 250ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.scrollAnim a:hover {
	background-color: #3edeff;
}

.scrollAnim a span:not(.hr) {
    font-size: 1.2rem;
}

.scrollAnim a span.hr {
    height: 40px;
}


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

.section {
    padding-top: 130px;
    margin-top: -130px;
}

.section + .section {
    margin-top: calc(10vw - 130px);
}

.section .sectionInner .sectionImg img {
    width: 100%;
    height: 400px;
}

.section .sectionInner .sectionImg .sectionTitle {
    width: 1000px;
    font-size: 3.8rem;
    letter-spacing: .5rem;
    text-indent: .5rem;
    top: calc(50% - 40px);
    padding: 0;
}

.section .sectionInner .sectionImg .sectionTitle .en {
    font-size: 1.3rem;
}

.section .sectionInner .sectionTxt {
    width: 900px;
    padding: 80px 150px;
    margin: -80px auto 0;
}

.section .sectionInner .sectionTxt .sectionHead {
    font-size: 2.6rem;
    text-align: center;
}

.section .sectionInner .sectionTxt .sectionHead + p {
    margin-top: 35px;
}

.section .sectionInner .sectionTxt .sectionHead + p + .sectionHead {
    margin-top: 70px;
    padding-top: 70px;
}

.section .sectionInner .sectionTxt .txt + .attention {
    margin-top: 20px;
}

.section .sectionInner .sectionTxt .txtInnerImg:not(.onlyImg) figure {
    width: 295px;
    height: auto;
	margin-top: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg:not(.onlyImg) figure + figure {
    margin-top: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg:not(.onlyImg) figure:nth-child(2n+1) {
	margin-right: 10px;
}

.section .sectionInner .sectionTxt .txtInnerImg:not(.onlyImg) figure img {
	width: 295px;
    height: 200px;
}

.section .sectionInner .sectionTxt .txtInnerImg figure figcaption {
    margin: 5px auto 10px;
}


/*------------------------------------------------------ ANCHOR-LIST */

.anchor {
    margin-top: calc(10vw - 80px);
    padding-top: 80px;
}

.anchor + .section {
    margin-top: -50px;
}

.anchor .anchorInner {
    width: 1000px;
    margin: 0 auto;
}

.anchor .anchorInner .anchorList {
    width: 100%;
}

.anchor .anchorInner .anchorList li a.link {
    font-size: 1.7rem;
    padding-bottom: 5px;
}


/*------------------------------------------------------ ENTRY-BOX */

.entryBox {
    padding: 10vw 0;
}

.entryBox .entryBoxInner .entryBoxTxt img {
    width: 572px;
    max-width: 572px;
	height: 45px;
}

.entryBox .entryBoxInner .entryBoxTxt a.link {
    width: auto;
    font-size: 2.4rem;
    margin: 40px auto 0;
}

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

#slideGuide {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    background: transparent;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: all 300ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

#slideGuide.hidden {
	opacity: 0;
	visibility: hidden;
}

#slideGuide .slideGuideInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#slideGuide .slideGuideInner .drag {
	order: 2;
    display: block;
    font-size: 1.8rem;
    line-height: 35px;
    letter-spacing: .5rem;
    text-indent: .5rem;
    text-align: center;
    color: #fff;
	transition: all 600ms cubic-bezier(0.32, 0.08, 0.24, 1) 300ms;
}

#slideGuide.in .slideGuideInner .drag {
	text-indent: 2rem;
	letter-spacing: 2rem;
}

#slideGuide .slideGuideInner .left {
	order: 1;
	width: 35px;
	height: 35px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#slideGuide .slideGuideInner .left img {
	transition: transform 600ms cubic-bezier(0.32, 0.08, 0.24, 1) 300ms;
	transform: translate(100%,0);
}

#slideGuide.in .slideGuideInner .left img {
	transform: translate(0,0);
}

#slideGuide .slideGuideInner .right {
	order: 3;
	width: 35px;
	height: 35px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#slideGuide .slideGuideInner .right img {
	transition: transform 600ms cubic-bezier(0.32, 0.08, 0.24, 1) 300ms;
	transform: translate(-100%,0);
}

#slideGuide.in .slideGuideInner .right img {
	transform: translate(0,0);
}

}