@charset "UTF-8";

/* header
-----------------------------------------------------*/
header {
    width: 100%;
    box-sizing: border-box;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
}
header .header-in {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
}

header.is-fixed {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
header.is-fixed .header-in {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
}
/* ロゴ */
header .header-logo {
    width: 16%;
    max-width: 220px;
    margin: 40px auto 0 40px;
}
header .header-logo a {
    display: block;
}
header .header-logo a p {
    margin-top: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


/*メニューエリア*/
header .menu-area {
    width: 60px;
    margin-left: auto;
    display: block;
}


/* メニュー */
header #menu-trigger{
    width: 100%;
    height: 60px;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    cursor: pointer;
    z-index: 9999;
    text-align: center;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

header #menu-trigger img {
    width: 33%;
    margin: 8px auto 14px;
}


/* ハンバーガー内 */
header .gnav-wrap {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9998;
    overflow: scroll;
}
header ul#gnav {
    margin: 50px auto 0;
    display: block;
}

/* 単独 */
header ul#gnav li {
    display: block;
    text-align: center;
}
header ul#gnav> li > a{
    width: 100%;
    padding: 25px 0 10px;
    display: inline-block;
    position: relative;
    color: #3b393a;
    font-size: 18px;
    line-height: 1; 
}

/* 親 */
header ul#gnav> li > p.acc-ttl{
    width: 100%;
    padding: 25px 0 10px;
    color: #3b393a;
    font-size: 18px;
    line-height: 1; 
	cursor: pointer
}
header ul#gnav> li > p.acc-ttl span{
	position: relative;
}
header ul#gnav> li > p.acc-ttl span::after{
	position: absolute;
	content: '';
	width:16px;
	height:16px;
	top:0;
	bottom:0;
	right:-30px;
	margin: auto;
	background-image: url("../images/icon_arrow_hum.svg");
	background-repeat: no-repeat;
	background-position: center;
	    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;

}
header ul#gnav> li > p.acc-ttl.active span::after{
	transform: rotate(180deg)
}

/* サブ */
header ul#gnav li div.acc-inner{
	display: none;
	padding-bottom: 15px
}
header ul#gnav li div.acc-inner ul{
	display: inline-block
}
header ul#gnav li div.acc-inner ul li{
	display: block;
	text-align: left;
}
header ul#gnav li div.acc-inner ul  a{
    width: 100%;
    padding:2px;
    display: inline-block;
    position: relative;
    color: #000;
    font-size: 14px;
    line-height: 1; 
}

/* エントリー */
header ul#gnav> li.entry p{
    width: 100%;
    padding: 25px 0 10px;
    display: inline-block;
    position: relative;
    color: #000;
    font-size: 14px;
    line-height: 1; 
}
header ul#gnav> li.entry .entry-inner{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	width:80%;
	max-width: 600px;
	margin: 0 auto;
}
header ul#gnav> li.entry .entry-inner a{
	width: calc((100% - 30px) / 3);
    margin: 0 5px 20px;
	border: 1px solid #9C9C9C;
}



/* SOUND */
header #mute {
    width: 100%;
    height: 60px;
    margin-bottom: 1px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    cursor: pointer;
    z-index: 9997;
    text-align: center;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}
header #mute .play-muted, 
header #mute .play-sound {
    width: 100%;
}

header #mute img {
    width: 33%;
    margin: 8px auto 14px;
}

/* ENTRY */
header #btn-entry {
    width: 100%;
    height: 60px;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #e6002d;
    cursor: pointer;
    z-index: 9997;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

header #btn-entry img {
    width: 33%;
    margin: 8px auto 14px;
}



@media (max-width: 768px) {
    header {
        width: 100%;
        box-sizing: border-box;
        background: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 99999;
    }
    header .header-in {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
    }

    header.is-fixed {
        width: 100%;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
    }
    header.is-fixed .header-in {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
    }
    /* ロゴ */
    header .header-logo {
        width: 30%;
        max-width: 200px;
        margin: 4vw auto 0 4vw;
    }
    header .header-logo a {
        display: block;
    }
    header .header-logo a p {
        margin-top: 2vw;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 3.0vw;
        font-weight: 500;
        line-height: 1;
    }


    /*メニューエリア*/
    header .menu-area {
        width: 12vw;
        margin-left: auto;
        display: block;
    }


    /* メニュー */
    header #menu-trigger{
        width: 100%;
        height: 12vw;
        margin-bottom: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #fff;
        cursor: pointer;
        z-index: 9999;
        text-align: center;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2vw;
        font-weight: 700;
        line-height: 1;
    }

    header #menu-trigger img {
        width: 50%;
        margin: 1vw auto 2vw;
    }




/* ハンバーガー内 */
    header .gnav-wrap {
        width: 100%;
        height: 100vh;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 9998;
    }
    header ul#gnav {
        margin: 12vw auto 0;
        display: block;
    }

/* 単独 */

    header ul#gnav li {
        display: block;
        text-align: center;
    }

	header ul#gnav li a {
        width: 100%;
        padding: 5vw 0  3vw;
        display: inline-block;
        position: relative;
        color: #3b393a;
        font-size: 4.0vw;
        line-height: 1;
    }
	

	/* 親 */
	header ul#gnav> li > p.acc-ttl{
		width: 100%;
		padding: 5vw 0 3vw;
		color: #3b393a;
		font-size: 4.0vw;
		line-height: 1; 
		cursor: pointer
	}
	header ul#gnav> li > p.acc-ttl span{
		position: relative;
	}
	header ul#gnav> li > p.acc-ttl span::after{
		position: absolute;
		content: '';
		width:4vw;
		height:4vw;
		top:0;
		bottom:0;
		right:-8vw;
		margin: auto;
		background-image: url("../images/icon_arrow_hum.svg");
		background-repeat: no-repeat;
		background-position: center;
			-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;

	}
	header ul#gnav> li > p.acc-ttl.active span::after{
		transform: rotate(180deg)
	}

/* サブ */
	header ul#gnav li div.acc-inner{
		display: none;
		padding-bottom: 3vw
	}
	header ul#gnav li div.acc-inner ul{
		display: inline-block
	}
	header ul#gnav li div.acc-inner ul li{
		display: block;
		text-align: left;
	}
	header ul#gnav li div.acc-inner ul  a{
		width: 100%;
		padding:2vw;
		display: inline-block;
		position: relative;
		color: #000;
		font-size: 3.2vw;
		line-height: 1; 
	}

	/* エントリー */
	header ul#gnav> li.entry p{
		width: 100%;
		padding: 5vw 0 3vw;
		display: inline-block;
		position: relative;
		color: #000;
		font-size: 3.2vw;
		line-height: 1; 
	}
	header ul#gnav> li.entry .entry-inner{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width:86%;
		margin: 0 auto;
	}
	header ul#gnav> li.entry .entry-inner a{
		width: calc((100% - 10vw) / 2);
		border: 1px solid #9C9C9C;
        margin: 0;
		padding: 0;
	}
    
	header ul#gnav > li.entry .entry-inner a:nth-child(2n){
		margin-left: 5vw;
	}
	header ul#gnav > li.entry .entry-inner a:nth-child(n + 3){
		margin-top: 2vw;
	}

	
	
	


    /* SOUND */
    header #mute {
        width: 100%;
        height: 12vw;
        margin-bottom: 1px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #fff;
        cursor: pointer;
        z-index: 9997;
        text-align: center;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2vw;
        font-weight: 500;
        line-height: 1;
    }

    header #mute img {
        width: 50%;
        margin: 1vw auto 2vw;
    }

    /* ENTRY */
    header #btn-entry {
        width: 100%;
        height: 12vw;
        margin-bottom: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #e6002d;
        cursor: pointer;
        z-index: 9997;
        text-align: center;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2vw;
        font-weight: 500;
        line-height: 1;
    }

    header #btn-entry img {
        width: 50%;
        margin: 1vw auto 2vw;
    }
}


/* 共通
-----------------------------------------------------*/
.inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.btn-more {
    width: 230px;
    display: block;
    border-bottom: 1px dotted #fff;
    position: relative;
}
.btn-more span {
    width: 100%;
    padding: 20px 10px;
    position: relative;
    display: block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
}

.btn-more::after {
    content: "";
    width: 0%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: all 0.8s ease;
}

.btn-more img {
    width: 7px;
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transition: all 0.2s ease;
}
/*
.btn-more::after {
    content: "";
    width: 7px;
    height: 7px;
    background: url("../images/icon_arrow_right.svg") center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}*/
.btn-area a{
	z-index: 2
}
@media (min-width: 769px) {
    .btn-more:hover {
        width: 230px;
        display: block;
        border-bottom: 1px dotted #fff;
        position: relative;
    }
    .btn-more:hover::after {
        width: 100%;
        transition: all 0.8s ease;
    }
    .btn-more:hover img {
        right: 5px;
    }
    /*.btn-more:hover::after {
        right: 5px;
    }*/
	
	.btn-area:hover .btn-more::after {
		 width: 100%;
        transition: all 0.8s ease;
	}
	.btn-area:hover .btn-more img  {
		  right: 5px;
	}
}
@media (max-width: 768px) {
    .inner {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .btn-more {
        width: 100%;
        max-width: 230px;
        padding: 2vw 0;
        display: block;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.4vw;
        font-weight: 500;
        line-height: 1;
        border-bottom: 1px dotted #fff;
        position: relative;
    }
    .btn-more span {
        width: 100%;
        padding: 2vw 1vw;
        position: relative;
        display: flex;
        justify-content: space-between;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        box-sizing: border-box;
    }
    .btn-more img {
        width: 1.4vw;
        position: absolute;
        top: calc(50% - 0.7vw);
        right: 1vw;
        transition: all 0.2s ease;
    }
    /*.btn-more::after {
        content: "";
        width: 1vw;
        height: 1vw;
        background: url("../images/icon_arrow_right.svg") center center no-repeat;
        background-size: 100%;
        position: absolute;
        top: calc(50% - 00.5vw);
        right: 0;
    }*/
}


/* 
-----------------------------------------------------*/

@media (max-width: 768px) {
}


/* エントリー
-----------------------------------------------------*/
#cont-entry {
    width: 100%;
    padding: 90px 0 140px;
    position: relative;
    background: #bcc4d5;
    z-index: 8;
}
#cont-entry h2 {
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
}
#cont-entry h2 span.h2-en {
    margin-top: 30px;
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
#cont-entry .inner {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    position: relative;
    z-index: 9;
}

#cont-entry .inner .bnr {
    width: 30%;
    margin: 0 5% 0 0;
    position: relative;
    text-align: left;
}
#cont-entry .inner .bnr:nth-of-type(3n) {
    margin-right: 0;
}
#cont-entry .inner .bnr:last-child {
    margin-right: 0;
}
#cont-entry .inner .bnr:nth-child(n + 4) {
    margin-top: 40px;
}
#cont-entry .inner .link-bnr-wrap {
    width: 30%;
    margin: 60px 20px 0;
    position: relative;
    text-align: center;
}
#cont-entry .inner .link-bnr-wrap p {
	margin-bottom: 20px;
	color: #fff;
}

@media (max-width: 768px) {
    #cont-entry {
        width: 100%;
        padding: 20vw 0 24vw;
        position: relative;
        background: #bcc4d5;
        z-index: 8;
    }
    #cont-entry h2 {
        margin-bottom: 8vw;
        text-align: center;
        font-size: 8vw;
        font-weight: 300;
        line-height: 1;
    }
    #cont-entry h2 span.h2-en {
        margin-top: 4vw;
        display: block;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 3.2vw;
        font-weight: 500;
    }
    #cont-entry .inner {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        z-index: 9;
    }

    #cont-entry .inner .bnr {
        width: 60%;
        margin: 0 auto 8vw;
        position: relative;
        text-align: left;
    }
    #cont-entry .inner .bnr:nth-of-type(3),
	 #cont-entry .inner .bnr:nth-of-type(6), 
	#cont-entry .inner .bnr:last-child{
        margin-right: auto;
        /*margin-bottom: 0;*/
    }
    #cont-entry .inner .bnr:nth-child(n + 4) {
        margin-top: 0;
    }
	#cont-entry .inner .link-bnr-wrap {
        width: 60%;
		margin: 12vw auto 0;
		position: relative;
		text-align: center;
	}
	#cont-entry .inner .link-bnr-wrap p {
		margin-bottom: 4vw;
	}

}



/* footer
-----------------------------------------------------*/
footer {
    width: 100%;
    padding: 75px 0 40px;
    background: #fff;
    position: relative;
    z-index: 999;
}
footer .footer-logo {
    width: 478px;
    display: block;
}
footer .footer-logo p {
    margin-top: 10px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

footer .footer-links {
    margin: 45px auto 80px;
    display: flex;
    justify-content: space-between;
}
footer .footer-links ul li.link-parent a {
    margin-bottom: 25px;
    display: block;
    font-size: 18px;
    line-height: 1;
}
footer .footer-links ul li.link-parent.no-child a {
    margin-bottom: 40px;
}
footer .footer-links ul li.link-child a {
    margin-top: 15px;
    padding-left: 18px;
    display: block;
    font-size: 13px;
    position: relative;
    line-height: 1;
}
footer .footer-links ul li.link-child a::after {
    content: "-";
    display: block;
    position: absolute;
    top: 0;
    left: 4px;
}


footer .footer-bottom {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
footer .footer-bottom .copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
}
footer .footer-bottom a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    footer {
        width: 100%;
        padding: 10vw 0 6vw;
        background: #fff;
        position: relative;
        z-index: 999;
    }
    footer .footer-logo {
        width: 70%;
        max-width: 282px;
        display: block;
    }
    footer .footer-logo p {
        margin-top: 2vw;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-size: 3.0vw;
        font-weight: 500;
        line-height: 1;
    }

    footer .footer-links {
        margin: 10vw auto 5vw;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    footer .footer-links ul{
        width: 44%;
        margin-bottom: 8vw;
    }
    footer .footer-links ul li.link-parent a {
        margin-bottom: 4vw;
        display: block;
        font-size: 3.8vw;
        line-height: 1;
    }
    footer .footer-links ul li.link-parent.no-child a {
        margin-bottom: 40px;
    }
    footer .footer-links ul li.link-child a {
        margin-top: 4vw;
        padding-left: 5vw;
        display: block;
        font-size: 3.0vw;
        position: relative;
        line-height: 1;
    }
    footer .footer-links ul li.link-child a::after {
        content: "-";
        display: block;
        position: absolute;
        top: 0;
        left: 4px;
    }


    footer .footer-bottom {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
    footer .footer-bottom .copyright {
        margin-top: 5vw;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2vw;
        font-weight: 500;
    }
    footer .footer-bottom a {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.4vw;
        font-weight: 500;
    }
}

/* pagetop
-----------------------------------------------------*/
.pagetop {
    width: 60px;
    height: 60px;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #3b393a;
    cursor: pointer;
    text-align: center;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9996;
}
.pagetop img {
    width: 35%;
    margin: 8px auto 14px;
}
@media (max-width: 768px) {
    .pagetop {
        width: 12vw;
        height: 12vw;
        margin-bottom: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #3b393a;
        cursor: pointer;
        text-align: center;
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2vw;
        font-weight: 500;
        line-height: 1;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 9996;
    }
    .pagetop img {
        width: 50%;
        margin: 1vw auto 2vw;
    }
    
}


/*モーダル*/
.modal-open {
    padding: 10px 20px;
    display: inline-block;
    background: #fff;
    text-align: center;
    font-size: 14px;
    border: 2px solid #004097;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9997;
}
.modal-bg {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    display: none;
}
.modal-contents {
    width: 80%;
    max-width: 1000px;
    position: fixed;
    z-index: 9999;
    display: none;
    padding: 30px 30px;
    text-align: left;
    font-size: 14px;
    background: #fff;
}
.modal-contents .tgn-info-txt {
    position: relative;
}
.modal-close {
    width: 40px;
    position: absolute;
    top: -90px;
    right: -90px;
    z-index: 9999;
    cursor: pointer;
}
@media (max-width: 768px) {
    .modal-open {
        padding: 2vw 3vw;
        font-size: 2.6vw;
    }
    .modal-contents {
        width: 80%;
        padding: 4vw;
        font-size: 2.8vw;
    }
    .modal-contents .tgn-info-txt {
        position: relative;
    }
    .modal-close {
        width: 6vw;
        position: absolute;
        top: -12vw;
        right: -2vw;
        z-index: 9999;
        cursor: pointer;
    }
    
}

/* スクロールエフェクト
---------------------------------------------------------------------------- */
.is-effect {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}
.is-effect-delay {
    -webkit-transition: 1.2s ease-in-out;
    -moz-transition: 1.2s ease-in-out;
    -o-transition: 1.2s ease-in-out;
    transition: 1.2s ease-in-out;
}
.is-effect-fade {
    opacity: 0;
}
.is-effect-right {
    opacity: 0;
    -webkit-transform: translate(80px, 0);
    -moz-transform: translate(80px, 0);
    -ms-transform: translate(80px, 0);
    -o-transform: translate(80px, 0);
    transform: translate(80px, 0);

    -webkit-transition: 1.0s ease-in-out;
    -moz-transition: 1.0s ease-in-out;
    -o-transition: 1.0s ease-in-out;
    transition: 1.0s ease-in-out;
}
.is-effect-left {
    opacity: 0;
    -webkit-transform: translate(-80px, 0);
    -moz-transform: translate(-80px, 0);
    -ms-transform: translate(-80px, 0);
    -o-transform: translate(-80px, 0);
    transform: translate(-80px, 0);
}
.is-effect-up {
    opacity: 0;
    -webkit-transform: translate(0, 80px);
    -moz-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    transform: translate(0, 80px);
}
.is-effect-down {
    opacity: 0;
    -webkit-transform: translate(0, -80px);
    -moz-transform: translate(0, -80px);
    -ms-transform: translate(0, -80px);
    -o-transform: translate(0, -80px);
    transform: translate(0, -80px);
}

.is-effect-on {
    opacity : 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}