@charset "UTF-8";
/* CSS Document */

.pcv {
	display: none!important;
}

html {
	/*height: 100%;*/
	font-size: 1.35vw;
	transition: opacity 0.3s;
	background: #fff;
	pointer-events: none;
	
	overscroll-behavior: none;
	width: 100%;
	height: 100%;
    
    overflow-x: hidden;
}

body {
	font-family: 'Noto Sans JP',"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.4rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	/*line-break: strict;
	word-break: normal;
	word-wrap: break-word;*/
    text-align: center;
	overscroll-behavior: none;
	
	color: #1E2584;
}
#container {
	position: relative;
	opacity: 0;
	transition: opacity 0.8s 0.2s;
    margin-top: 88px;
}
html.start {
	pointer-events: auto;
}
html.start #container {
	opacity: 1;
}
html.fixed {
    overflow-y: hidden;
}


a {
	text-decoration: none;
	transition: opacity 0.2s;
	display: inline-block;
	vertical-align: top;
	color: #1E2584;
}
a:active {
	/*opacity: 0.5;*/
}


/*Chrome, Safari スクロールバー 装飾*/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: rgba(255,255,255,0);
}
::-webkit-scrollbar-thumb {
	background: #1D2087;
    border-radius: 4px;
}



#container > main{
	position: relative;
	z-index: 10;
}

main .contents > section {
	overflow: hidden;
	z-index: 10;
	position: relative;
}
section {
	position: relative;
    will-change: transform;
}
.jumpTarget {
    position: absolute;
    top: -88px;
}


.wrapper {
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
/*------------------------------------------------*/
header {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 88px;
    z-index: 100;
}
header .wrapper {
    max-width: none;
    height: 100%;
}
header h1 {
    position: absolute;
    left: 20px;
    top: 20px;
    height: 45px;
}
header h1 img.logo {
    width: 110px;
    position: absolute;
    left: 0;
    top: 8px;
}
header h1 img.logo_b {
    width: 90px;
    position: absolute;
    left: 130px;
    top: 0;
}
header .rightWrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200px;
	display: flex;
	justify-content: flex-end;
}

header .rightWrap #menuBtn {
	width: 98px;
	height: 88px;
	position: absolute;
	right: 0;
	top: 0;
    cursor: pointer;
	will-change: transform;
}
header .rightWrap #menuBtn span {
	display: block;
	width: 50px;
	height: 5px;
	background: #008E9E;
	position: absolute;
	left: 24px;
	top: 44px;
	transition: transform 0.3s, opacity 0.3s;
}
header .rightWrap #menuBtn span.t1 {
	transform: translateY(-17px);
}
header .rightWrap #menuBtn span.t2 {
	transform: scaleX(1) translateY(0);
}
header .rightWrap #menuBtn span.t3 {
	transform: translateY(17px);
}
.naviOpen header .rightWrap #menuBtn span.t1 {
	transform: rotate(215deg) scale(1.1);
    height: 4px;
}
.naviOpen header .rightWrap #menuBtn span.t2 {
	transform: scaleX(0) translateY(0);
    opacity: 0;
}
.naviOpen header .rightWrap #menuBtn span.t3 {
	transform: rotate(-215deg) scale(1.1);
    height: 4px;
}
header .rightWrap .sns {
    /*position: absolute;
    right: 95px;
    top: 0;
    height: 88px;
    width: 130px;*/
}
header .rightWrap .sns:last-child {
	margin-right: 25px;
}
header .rightWrap .sns::after {
	content: '';
	clear: both;
	display: block;
}
header .rightWrap .sns a {
    vertical-align: middle;
    margin-left: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    float: left;
}
header .rightWrap .sns a img {
    width: 45px;
}
nav#mainNavi {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    will-change: transform;
}
.naviOpen nav#mainNavi {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s;
}
nav#mainNavi::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
    background: rgba(255,255,255,0.9);
    z-index: -1;
}
nav#mainNavi .inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 150px;
}
nav#mainNavi > * {
    transform: translateY(-50px);
    transition: transform 0.15s;
    will-change: transform;
}
.naviOpen nav#mainNavi > * {
    transform: translateY(0);
    transition: transform 0.3s;
}
nav#mainNavi img.title {
    display: block;
    width: 410px;
    margin: 0 auto 90px;
}
nav#mainNavi ul {
    display: inline-block;
}
nav#mainNavi ul li {
    text-align: left;
    margin-bottom: 35px;
}
nav#mainNavi ul li a {
    display: inline-block;
    background: rgba(30,37,133,0);
    padding: 10px 20px;
    border-radius: 20px;
}
nav#mainNavi ul li a:active {
    background: rgba(30,37,133,0.1);
}
nav#mainNavi ul li a img {
    height: 6.6667vw;
}

/*------------------------------------------------*/
h3.heading {
    position: relative;
    height: 160px;
}
h3.heading span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
}
h3.heading span::after {
    content: '';
	width: 160px;
	height: 160px;
	position: absolute;
	left: -50%;
    right: -50%;
	top: -50%;
    bottom: -50%;
    margin: auto;
    z-index: 1;
    background: url("../images/hd_bg.svg") no-repeat;
    transform: scale(0);
    will-change: transform;
}
h3.heading img {
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    will-change: transform;
    max-width: 100%;
}
h3.heading.show span::after {
    transform: scale(1);
    transition: 0.3s;
}
h3.heading.show img {
    animation: bounce 0.5s 0.3s forwards;
}

h4.heading img {
    opacity: 0;
    will-change: transform;
}
h4.heading.show img,
.fadeTrg.show h4.heading img {
    animation: bounce3 0.5s 0.3s forwards;
}
mark {
    background: none;
    position: relative;
    color: #1E2584;
    padding: 0 0.2em;
}
mark::after {
    content: '';
    display: block;
    width: 100%;
    height: 80%;
    background: #F8EB00;
    transform: scaleX(0);
    transform-origin: left top;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -2px;
    margin: auto 0;
    z-index: 1;
}
.fadeTrg.show mark::after {
    transition: transform 1s 0.8s;
    /*transition-timing-function: cubic-bezier(.98,.01,.6,1);*/
    transform: scaleX(1);
}
.fadeTrg.show mark.dly::after {
    transition-delay: 1.6s;
}
.fadeTrg.show mark.dly-2::after {
    transition-delay: 1.4s;
}
.fadeTrg.show mark.dly-3::after {
    transition-delay: 2s;
}
mark span {
    position: relative;
    z-index: 2;
}
/*------------------------------------------------*/

/*------------------------------------------------*/
#sec_3  {
    width: 100%;
    background: url("../images/s3_bg.png") center top/1440px auto repeat;
    overflow: hidden;
}
#sec_3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 13vw;
    background: url("../images/s5_bg_top.png") center bottom -1px/100% auto no-repeat;
    pointer-events: none;
}



#sec_3 h4 {
    margin-bottom: 30px;
}
#sec_3 h4 img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


#sec_3 > .inner {
    background: #fff;
    margin: 0 auto;
    border-left: 10px solid #EBF3F5;
    border-right: 10px solid #EBF3F5;
    padding: 0 0;
}

#sec_3 > .inner > section {
    /*padding-top: 40px;*/
    position: relative;
}

#sec_3-1 {
    padding-top: 30px;
}

#sec_3-1 h2 {
	margin: 70px auto 70px;
	position: relative;
}
#sec_3-1 h2 img.t1 {
    display: block;
    width: 77.73vw;
    margin: 0 auto;
    opacity: 0;
	position: relative;
	will-change: transform;
	z-index: 1;
}
#sec_3-1 h2 img.t2 {
    display: block;
    width: 10vw;
    position: absolute;
    top: -8vw;
    left: 24vw;
    opacity: 0;
	z-index: 2;
}
.start #sec_3-1 h2 img.t1 {
	animation: bounce2 1s 0.3s forwards;
}
.start #sec_3-1 h2 img.t2 {
	animation: bounce2 1s 0.3s forwards;
}

#sec_3-1 h3.heading img {
	max-width: 94%;
	will-change: transform;
}
#sec_3-1 h3.heading.show span::after {
    transform: scale(1);
    transition: 0.3s 0.6s;
}
#sec_3-1 h3.heading.show img {
    animation: bounce 0.5s 0.9s forwards;
}

#sec_3-1 .end{
text-align: center;
border-bottom: 5px solid #F8EB00;
border-top: 5px solid #F8EB00;
font-size: 2.6rem;
margin: 40px auto 0;;
padding: 10px;
}

.cr.c1 {
    width: 46.6667vw;
    height: 13.3333vw;
    background: url("../images/c1.svg") center center/contain no-repeat;
    position: absolute;
    right: -20vw;
    top: 56vw;
    z-index: 0;
    transform: translateX(200px);
}
.cr.c2 {
    width: 38.6667vw;
    height: 8vw;
    background: url("../images/c2.svg") center center/contain no-repeat;
    position: absolute;
    left: -20vw;
    top: -12vw;
    z-index: 0;
    transform: translateX(-200px);
}
.cr.c5 {
    width: 46.6667vw;
    height: 13.3333vw;
    background: url("../images/c5.svg") center center/contain no-repeat;
    position: absolute;
    right: -17vw;
    top: 111vw;
    z-index: 0;
    transform: translateX(200px);
}
.cr.c6 {
    display: none;
}
.cr.c3 {
    display: none;
}
.cr.c4 {
    width: 46.6667vw;
    height: 13.3333vw;
    background: url("../images/c1.svg") center center/contain no-repeat;
    position: absolute;
    left: -22.6667vw;
    top: 0vw;
    z-index: 0;
    transform: translateX(-200px);
}
.cr.show {
    transform: 0;
}

#sec_3-1 h4 {
    margin-top: 35px;
}

#sec_3-1 .wrap {
    margin: 40px auto 20px;
}
#sec_3-1 img.image {
    width: 42vw;
}
#sec_3-1 .textWrap {
    text-align: left;
	margin-top: 5px;
}
#sec_3-1 .textWrap .t1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    text-align: center;
}
#sec_3-1 .textWrap .t1 mark {
    font-size: 4.0rem;
    margin-left: 10px;
}
#sec_3-1 .textWrap p {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: -0.04em;
}
#sec_3-1 .textWrap p span {
    margin-right: -0.5em;
}

#sec_3-1 .tm {
	margin: 50px 0;
}
#sec_3-7  {
	margin-top: 100px;
}
#sec_3-7 .heading {
	mmargin-bottom: 30px;
}
#sec_3-7 .t1 {
	margin-bottom: 30px;
	font-size: 2.8rem;
}
#sec_3-7 #youtube_wrap {
	margin-bottom: 50px;
}
#sec_3-7 #youtube_wrap iframe {
	width: 92vw;
	height: 51.75vw;
}
#sec_3-7 .h {
	margin-bottom: 0;
}
#sec_3-7 .h img {
	max-width: 100%;
}
#sec_3-8  {
	padding-bottom: 140px;
}
#sec_3-8 .wrapper {
	padding: 0 10px;
}
#sec_3-8 h3 {
	margin: 50px 0 20px;
	position: relative;
}
#sec_3-8 h3 img {
	width: 23.2vw;
}
#sec_3-8 h3.m1::before {
	content: '';
	width: 18.4vw;
	height: 16.533vw;
	position: absolute;
	left: -5px;
	bottom: 10px;
	z-index: 0;
	background: url("../images/m1_deco.svg") center center/contain no-repeat;
}
#sec_3-8 h3.m1::after {
	content: '';
	width: 18.4vw;
	height: 16.533vw;
	position: absolute;
	right: -5px;
	bottom: 10px;
	z-index: 0;
	background: url("../images/m1_deco.svg") center center/contain  no-repeat;
	transform: scaleX(-1);
}
#sec_3-8 h3.m2::before {
	content: '';
	width: 21.733vw;
	height: 10.667vw;
	position: absolute;
	left: -5px;
	bottom: 10px;
	z-index: 0;
	background: url("../images/m2_deco.svg") center center/contain  no-repeat;
}
#sec_3-8 h3.m2::after {
	content: '';
	width: 21.733vw;
	height: 10.667vw;
	position: absolute;
	right: -5px;
	bottom: 10px;
	z-index: 0;
	background: url("../images/m2_deco.svg") center center/contain  no-repeat;
	transform: scaleX(-1);
}
#sec_3-8 .m3_wrap {
	position: relative;
}
#sec_3-8 .m3_wrap::before {
	content: '';
	width: 97.867vw;
	height: 6vw;
	position: absolute;
	left: -50%;
	right: -50%;
	top: 130px;
	margin: 0 auto;
	z-index: 10;
	background: url("../images/m3_deco1_sp.svg") center center/contain no-repeat;
}
#sec_3-8 .m3_wrap::after {
	content: '';
	width: 97.2vw;
	height: 6.133vw;
	position: absolute;
	left: -50%;
	right: -50%;
	bottom: -75px;
	margin: 0 auto;
	z-index: 10;
	background: url("../images/m3_deco2_sp.svg") center center/contain  no-repeat;
}

#sec_3-8 .m_wrap {
	position: relative;
}
#sec_3-8 .frame {
	background: #fff;
	margin-bottom: 60px;
}
#sec_3-8 .frame:last-child {
	margin-bottom: 0;
}
#sec_3-8 .frame .wrap {
	padding: 35px 20px;
    position: relative;
	background: url("../images/frame_bg.svg") center center no-repeat;
}
#sec_3-8 .frame.f1 {
    border: 7px solid #1DB0BF;
    padding: 4px;
    box-sizing: border-box;
}
#sec_3-8 .frame.f1 .wrap {
    border: 3px solid #F8EB00;
	/*background-size: 142px auto;*/
}
#sec_3-8 .frame.f2 {
    border: 8px solid #F8EB00;
    padding: 4px;
    box-sizing: border-box;
}
#sec_3-8 .frame.f2 .wrap {
	border: 3px solid #1DB0BF;
}
#sec_3-8 .frame.f3 {
    border: 8px solid #B5D2D7;
    padding: 4px;
    box-sizing: border-box;
}
#sec_3-8 .frame.f3 .wrap {
	border: 3px solid #F8EB00;
}
#sec_3-8 .frame h4,
#sec_3-8 .frame .n {
	font-family: 'Zen Antique Soft', serif;
	font-weight: normal;
}
#sec_3-8 .frame h4 {
	font-size: 3.8rem;
	line-height: 1.2;
	letter-spacing: -0.05em;
	text-align: center;
}
#sec_3-8 .frame .n {
	font-size: 2.4rem;
	line-height: 1.2;
	text-align: right;
	margin-bottom: 15px;
}
#sec_3-8 .frame h5,
#sec_3-8 .frame p {
	font-size: 2.4rem;
	line-height: 1.8;
	text-align: left;
	
	text-align: justify;
	text-justify: inter-ideograph;
}

#sec_3-8 .frame .wrap.scr {
	padding: 8px;
	background: none;
}
#sec_3-8 .frame .wrap.scr .inner {
	height: 500px;
	overflow-y: auto;
	padding: 0 30px 50px;
}
#sec_3-8 .frame .wrap.scr h4,
#sec_3-8 .frame .wrap.scr .n {
	font-size: 2.4rem;
	line-height: 1.4;
	text-align: center;
}
#sec_3-8 .frame .wrap.scr h4 {
	margin: 35px 0 0;
}
#sec_3-8 .frame .wrap.scr .n {
	margin: 0 0 35px;
}

#sec_3-8 .kiyaku {
    background: url("../images/s3_4_frame.svg") no-repeat;
    height: 560px;
    margin: 130px auto 0;
    padding: 30px 22px 0;
	border: 16px solid #E0E0E0;
	border-left-color: #ADADAD;
	border-right-color: #ADADAD;
	color: #333333;
	background: #fff;
}
#sec_3-8 .kiyaku h5 {
    font-size: 3rem;
    line-height: 1.2;
	letter-spacing: -0.05em;
    margin-bottom: 3vw;
    white-space: nowrap;
}
#sec_3-8 .kiyaku .wrap {
    overflow-y: scroll;
    height: 58vw;
    padding: 10px 20px;
    text-align: left;
}
#sec_3-8 .kiyaku .wrap p {
    font-size: 2.6rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: -0.05em;
}
#sec_3-8 .kiyaku .wrap::-webkit-scrollbar-thumb {
	background: #333;
}


/*------------------------------------------------*/
#sec_5 {
    background: url("../images/s5_bg.png") center top/100% auto repeat-y;
    padding-top: 4vw;
    padding-bottom: 16vw;
    position: relative;
}
#sec_5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 16vw;
    background: url("../images/s5_bg_bottom.png") center bottom -1px/100% auto no-repeat;
    pointer-events: none;
}
#sec_5 .wrapper {
}
#sec_5 ul {
    margin: 80px auto 0;
}
#sec_5 ul li {
    text-align: left;
    margin-bottom: 70px;
}
#sec_5 ul li .wrap {
    position: relative;
    padding-left: 0;
    margin-bottom: 3vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
#sec_5 ul li img.image {
    width: 205px;
    margin-right: 12px
}
#sec_5 ul li h4 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.4;
}
#sec_5 ul li h4 mark {
    padding-right: 20px;
}
#sec_5 ul li h5 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0;
    letter-spacing: -0.05em;
}
#sec_5 ul li p {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 3vw;
    letter-spacing: -0.05em;
}
#sec_5 ul li .wrap span {
    margin-right: -0.5em;
}
#sec_5 ul li a.btn {
    display: block;
    left: 0;
    right: 0;
    width: 50vw;
    height: 13.3333vw;
    line-height: 13vw;
    color: #fff;
    background: #008E9E;
    font-size: 2.4rem;
    border-radius: 50px;
    text-align: center;
    margin: 0 auto;
    transition: opacity 0.2s;
}
#sec_5 ul li a.btn:active {
    opacity: 0.7;
}

/*------------------------------------------------*/
footer {
    background: #fff;
    min-height: 120px;
    padding: 27px 0 20px;
}
footer .wrapper {
}
footer .logo {
    margin-bottom: 10px;
}
footer .logo img {
    display: block;
    height: 32px;
    margin: 0 auto;
}
footer .copyright {
    font-size: 2.4rem;
    line-height: 1;
    color: #685840;
    font-family: Helvetica, 'sans-serif';
    font-weight: normal;
}
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/


#modal {
    z-index: 2000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    overflow: hidden;
}
html.loaded #modal {
    display: block;
}
#modal.open {
    opacity: 1;
    pointer-events: auto;
}
#modal .inner {
    position: relative;
    width: 100%;
    height: 100%;
}
#modal .bg {
    width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
    z-index: 1;
    background: rgba(0,0,0,0.7);
}
#modal .frame {
    width: 84%;
    height: 88%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 2;
}
#modal .frame.yt {
    width: 85.3333vw;
    height: 48vw;
}

#modal .modalCloseBtn {
    position: absolute;
    right: -48px;
    top: -48px;
    width: 96px;
    height: 96px;
    background: #fff url("../images/modal_close.svg") center center no-repeat;
    cursor: pointer;
    z-index: 100;
    border-radius: 48px;
    cursor: pointer;
}
#modal .frame ul {
    width: 100%;
    height: 100%;
    background: #eee;
}
#modal.open .frame ul {
    animation: modal_open 0.5s forwards;
    will-change: transform;
}
#modal .frame ul li {
    display: none;
    width: 100%;
    height: 100%;
}
#modal .frame ul li#yt_modal {
    background: #000;
}
#modal .frame ul li.show {
    display: block;
}
@keyframes modal_open {
	0%, 20%, 40%, 60%, 80%, 100% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		transform: scale3d(0.7, 0.7, 0.7);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}
#modal .frame ul li iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
}
#modal .frame ul li.kigo {
    background: url("../images/kigo_bg.png") center center/cover no-repeat;
    position: relative;
    text-align: center;
    overflow-y: auto;
}
#modal .frame ul li.kigo .wrap {
    padding: 50px 20px 80px;
}
#modal .frame ul li.kigo h3 {
    width: 12.6667vw;
    height: 12.6667vw;
    background: url("../images/kigo_m.svg") center center/contain no-repeat;
    font-size: 3.2rem;
    line-height: 12.6vw;
    text-align: center;
    margin: 0 auto 4.6667vw;
}
#modal .frame ul li.kigo .wrap div {
    font-size: 2.5rem;
    line-height: 1.8;
    margin-bottom: 2em;
}
#modal .frame ul li.kigo .wrap div h5 {
    display: block;
    font-size: 2.5rem;
    line-height: 1.8;
    margin: 0 auto;
}
#modal .frame ul li.kigo .wrap div span {
    display: inline-block;
    margin: 0 0.4em;
}


#pageTopBtn {
    position: fixed;
    right: 15px;
    bottom: 135px;
    z-index: 90;
    cursor: pointer;
    transition: transform 0.2s,opacity 0.2s;
    pointer-events: none;
    opacity: 0;
    will-change: transform;
}
#pageTopBtn span {
    display: block;
    background: url("../images/pagetop_btn.svg") center center/contain no-repeat;
    width: 21.3333vw;
    height: 21.3333vw;
}
#pageTopBtn.show {
    opacity: 1;
    pointer-events: auto;
}
#pageTopBtn:active {
    transform: scale(1.1);
}


.coming{padding: 0 20px; margin: 0 auto;}
.coming img{width: 100%;}


