@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
body {
	position: relative;
}
@media (max-width: 768px) {
	body {
		padding-bottom: 15vw;
	}
}

/*---------- header ----------*/
header {
    width: 100%;
}
header .home-wrap{
	height:60px;
	padding: 0 10px;
	margin: 0;
	background: var(--color-orange)
}
header .home-wrap a{
	width:70px;
	height:100%;
	background: var(--color-orange-dark);
	color: var(--color-white);
	font-size:1.5rem;
	display: flex;
	align-items: center;
	justify-content: center
}

header .header-inn {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.10);
}

/*ロゴ*/
header .header-logo {
    width: 180px;
    display: block;
}
header .gnav-wrap {
    width: calc(100% - 200px);
}
header .gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
}
header .gnav-wrap ul#gnav li {
	display: block;
    padding: 0 1em;
}
header .gnav-wrap ul#gnav li a {
    padding: 0 5px;
    display: block;
    font-size: 1.5rem;
	line-height: 1.4;
    font-weight: 400;
    -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;
}

@media (min-width: 769px) {
    header .gnav-wrap ul#gnav li a:hover{
		text-decoration: underline
    }
}
@media (max-width: 1080px) {
	header .gnav-wrap ul#gnav li {
		padding: 0 0.5em;
	}
	header .gnav-wrap ul#gnav li a {
		padding: 0;
		font-size: 1.48vw;
	}
}
@media (max-width: 768px) {
    header {
        width: 100%;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
	header .home-wrap{
		height:50px;
		padding: 0 2vw;
		margin: 0;
		background: var(--color-orange)
	}
	header .home-wrap a{
		width:60px;
		font-size:1.4rem;
	}

	header .header-inn {
		width: 100%;
		height:40px;
		margin: 0 auto;
		padding: 0 2vw;
	}
	


    /*ロゴ*/
    header .header-logo {
        width: 140px;
        margin: 0 auto 0 0;
        display: block;
		overflow: hidden
    }

    header .gnav-wrap {
        width: 42%;
        height: auto;
		display: none;
        padding:4vw 2vw ;
        background: var(--color-white);
        position: fixed;
        top: 90px;
        right: 0;
        z-index: 998;
    }
    header .gnav-wrap ul#gnav {
        width: 100%;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
    }
    header .gnav-wrap ul#gnav li a {
        display: block;
        color: var(--color-black);
        font-size: 3.4vw;
        font-weight: 500;
        position: relative;
    }
	header .gnav-wrap ul#gnav li:not(:first-child){
		margin-top: 4vw
	}
	
	/* 開閉ボタン */
	.sp-menu-trigger {
		width: 40px;
		height: 40px;
		z-index: 2001;
		background: #000;
		border: none;
	}
	.sp-menu-btn {
		width: 60%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
	}
	.sp-menu-btn span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-btn span:nth-child(1){
		top: calc(50% - 15%);
	}
	.sp-menu-btn span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-btn span:nth-child(3){
		top: calc(50% + 15%);
	}

	
	/*開閉ボタンopen時*/
	.is-open .sp-menu-btn span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
		background: #fff;
	}
	.is-open .sp-menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.is-open .sp-menu-btn span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
		background: #fff;
	}

}


/*---------- footer ----------*/

/* 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-size: 1.0rem;
    font-weight: 500;
    line-height: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9996;
}
@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-size: 2.2vw;
        font-weight: 500;
        line-height: 1;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 9996;
    }
    
}

footer {
    width: 100%;
	padding: 20px 0;
    text-align: center;
	background: var(--color-orange);
	color: var(--color-white);
	line-height: 1.4
}

footer .copyright {
    
}

@media (max-width: 768px) {
    footer {
        width: 100%;
		padding: 4vw 0;
		font-size: 2.8vw;
    }

    footer .copyright {
        width: 100%;
        font-size: 2.6vw;
		margin-top: 2vw
    }
}


/*---------- コンテンツ レイアウト ----------*/
.lp-student .cont-inn{
	width:90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0 80px
}

@media (max-width: 767px) {
	.lp-student .cont-inn{
		width:94%;
		padding: 3vw 0 8vw
	}
  }




/*---------- テキスト ----------*/

/*--title--*/
.lp-student-head{
	background-image: url("../../img/common/bk_hero_title@3x.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 20px 0;
}
.lp-student-head .h-title-txt{
	width:75%;
	max-width: 746px;
	margin: 0 auto;
	padding: 20px 0;
	background:rgba(255,255,255,0.80);
	color: var(--color-orange);
	font-size:4.0rem;
	font-weight: 600;
	text-align: center
}
@media (max-width: 767px) {
	.lp-student-head{
		padding: 2vw 0;
	}
	.lp-student-head .h-title-txt{
		padding:3vw 0;
		font-size:5.2vw;
	}	
}

/*--txt--*/
.lp-student-lead{
	font-size:2.4rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4
}
@media (max-width: 767px) {
	.lp-student-lead{
		font-size:4.2vw;
	}

}

/*---------- ボタン ----------*/


/*--btn--*/
.lp-student-btn{
	width:85%;
	max-width: 760px;
	margin: 0 auto
}
.lp-student-btn a{
	display: block;
	width:100%;
	height:100%;
	background: var(--color-green);
	color: var(--color-white);
	border:2px solid  var(--color-white);
	border-radius: 10px;
	font-size:2.8rem;
	font-weight: 600;
	line-height: 1;
	padding:0.8em;
	text-align: center;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
	position: relative
}
.lp-student-btn a::after{
	position: absolute;
	content:'';
	width:1.2em;
	height:1.2em;
	right:0.3em;
	top:0;
	bottom:0;
	margin: auto;
	background-image: url("../../img/arrow_w.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;	
}
.lp-student-btn a span{
	padding-left:1.5em;
	position: relative
}
.lp-student-btn a span::before{
	position: absolute;
	content:'';
	width:1.2em;
	height:1.2em;
	left:0;
	top:-0.1em;
	background-image: url("../../img/icon_user_w.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

@media (max-width: 767px) {
	.lp-student-btn{
		width:100%;
	}
	.lp-student-btn a{
		border-radius: 4vw;
		font-size:4.0vw;
		padding:1em;
	}
	
  }

a.btn-floating {
    width: auto;
	padding: 80px 20px 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: var(--color-green) url("../../img/icon_user_w.svg")  center top 45px no-repeat;
	background-size: 22px;
	border: 1px solid #fff;
	border-right: none;
	border-radius: 10px 0 0 10px;
	color: #fff;
    text-align: left;
	line-height: 1;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	font-weight: 600;
	font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","Noto Sans JP","メイリオ",Meiryo,"Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}


@media (max-width: 768px) {
	a.btn-floating {
		width: 100%;
		height: 15vw;
		padding: 0 4vw;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background: var(--color-green) url("../../img/icon_user_w.svg") left 5vw center no-repeat;
		background-size: 4vw;
		border: none;
		border-radius: 0;
		text-align: center;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		position: fixed;
		right: 0;
		top: auto;
		bottom: 0;
		transform: none;
		z-index: 999;
	}
    
}

