@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&amp;subset=japanese);

/*=====共通設定=====*/
/* clearfix */
.clearfix {zoom:1;}
.clearfix::after {
  content: ""; 
  display: block; 
  clear: both;
}
:root {
	--base: #fff;
	--ac: #0789cf;
	--sub: #efefef;
	--st: #e89506;
	--text: #1A1A1A;
	--st-text: #FFCB73;
  }

h1,h2,h3,h4,h5,h6 {
	font-weight:normal;
}

ul {
  list-style: none;
}


input, select {
	font-size: 16px;
	margin: 0;
	background: #fff;
	border: 1px solid #333333;
	height: 40px;
	outline: none;
	line-height: 40px;
	padding: 0 8px;
	max-width: 100%;
	color: #333;
}


/*----link----*/
a,li:link {
  color: var(--main-text);
  text-decoration: none;
	transition: all .3s;	
	-webkit-transition: 0.3s all;
	-moz-transition:0.3s all;
	-o-transition:　0.3s all;
}

a:hover {
	text-decoration: none;
}

a img{
	transition: all .3s;
	-webkit-transition: 0.3s all;
	-moz-transition:0.3s all;
	-o-transition:　0.3s all;
}



/*----その他----*/
*{
	color: #333;
	font-size: 16px;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', "Noto Sans Japanese","Hiragino Sans","Hiragino Kaku Gothic Pro","YuGothic","Yu Gothic","游ゴシック","メイリオ","Meiryo",erdana,Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif ;
}

select, input, button, textarea {
	font: 99% 'Noto Sans JP', "Noto Sans Japanese","Hiragino Sans","Hiragino Kaku Gothic Pro","YuGothic","Yu Gothic","游ゴシック","メイリオ","Meiryo",erdana,Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif ;
}

@media all and (-ms-high-contrast: none){
  *{
    font-weight: 600; /* IE10以上 */
  }
}

html{
	height: 100%;
}

body {
	position: relative;
}

/*--パララックス背景部分--*/
.parallax {
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover; 
	background: var(--ac);
}



/*--ボタン--*/
section .btn_area {
	text-align: center;
}

a.btn_link01{
	background: var(--ac);
	display: inline-block;
	padding: 4px;
	border-radius: 30px;
}

a.btn_link01 span{
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	display: block;
	width: 325px;
	height: 52px;
	background-color: #fff;
	border-radius: 26px;
}

a.btn_link01:hover{
	opacity: 0.6;
}

a.btn_link02{
	background-color: #fff;
	display: inline-block;
	padding: 2px;
	border-radius: 30px;
}

a.btn_link02 span{
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	display: block;
	width: 329px;
	height: 56px;
	color: var(--ac);
	background: var(--base);
	border-radius: 28px;
}

a.btn_link02:hover{
	opacity: 0.6;
}





/*--header--*/
header{
	width: 100%;
	background: var(--ac);
	padding: 10px 0;
}

header .inner01{
	display: flex;
	justify-content: space-between;
}

header h1{
	
}

header h1 a:hover {
	opacity: 0.7;
}

header nav{
	
}

header nav ul{
	text-align: center;
	font-size: 0;
	padding: 4px 0 0 0;
}

header nav ul li{
	display: inline-block;
	margin-right: 30px;
}

header nav ul li:last-child{
	margin-right: 0;
}

header nav ul li a.here {
	border-color: #fff;
}

header nav ul li a{
	display: inline-block;
	color: #fff;
	padding: 7px 17px;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
	
	border: 1px solid transparent;
	border-radius: 20px;
}

header nav ul li a:hover{
	border-color: #fff;
}


/*--header　レスポンシブ時スライドメニュー--*/
.scroll-prevent {
  overflow: hidden;
}

.menu-trigger {
  display: none;
  width: 48px;
  height: 48px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 100;
	border: #fff 2px solid;
	border-radius: 24px;
	transition: all .3s;
}

.menu-trigger:hover{
	opacity: 0.7;
}

.menu-trigger p{
	color: #fff;
	font-size: 12px;
	line-height: 44px;
	width: 44px;
	text-align: center;
	transition: all .3s;
}

.menu-trigger.active p{
	opacity: 0;
}

.menu-trigger span {
	background-color: #fff;
  display: none;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  width: 50%;
  height: 2px;
  transition: all .5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateX(-11px) translateY(21px) rotate(-45deg);

}

.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(2) {
	transform: translateX(-11px) translateY(-21px) rotate(45deg);

}

.menu-trigger.active span{
	display: inline-block;
}
 





/*----section 共通部分----*/
section{
	width: 100%;
}

.inner01{
	width: 1000px;
	margin: 0 auto;
}

.inner02{
	width: 790px;
	margin: 0 auto;
}


/*----section.apply----*/
section.apply{
	
}

section.apply .top{
	padding: 47px 0 0 0;
	position: relative;
	height: 290px;
}

section.apply .top p{
	width: 100%;
	position: absolute;
	z-index: 2;
	text-align: center;
}

section.apply .top p span{
	font-size: 21px;
	font-weight: 600;
	color: #fff;
	line-height: 1.9;
	position: relative;
}

section.apply .top p span:before,
section.apply .top p span:after{
	content: '';
  position: absolute;
  top: 52%;
  display: inline-block;
  width: 85px;
	height: 2px;
  background-color: #fff;
  
}

section.apply .top p span:before {
  left:-80px;
	-webkit-transform: rotate(67deg);
  transform: rotate(67deg);
}

section.apply .top p span:after {
  right: -80px;
	-webkit-transform: rotate(-67deg);
  transform: rotate(-67deg);
}

section.apply .top a{
	position: absolute;
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	width: 365px;
	height: 80px;
	line-height: 80px;
	background: var(--st);
	z-index: 2;
	text-align: center;
	top: 162px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 40px;
}

section.apply .top a:hover{
	opacity: 0.8;
}

section.apply .top .filter{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
	z-index: 1;
}

section.apply .bottom{
	background: #f1f4f6;
	border-bottom: #333 1px solid;
	padding: 60px 0;
}

section.apply .bottom .inner02{
	display: flex;
  justify-content: space-between;
}

section.apply .bottom .inner02 > div{
	width: 365px;
}

section.apply .bottom .inner02 > div a{
	display: block;
	width: 100%;
	height: 80px;
	font-size: 22px;
	line-height: 80px;
	text-align: center;
	background: var(--ac);
	border-radius: 40px;
}

section.apply .bottom .inner02 > div a:hover{
	opacity: 0.8;
}

section.apply .bottom .inner02 > div a span{
	color: #fff;
	position: relative;
}

section.apply .bottom .inner02 > div a span:before{
	position: absolute;
	left: 0;
}

section.apply .bottom .inner02 > div p {
	text-align: center;
	margin: 23px 0 0 0;
	font-size: 16px;
	line-height: 1.4;
}

section.apply .bottom .est span{
	padding: 0 0 0 50px;
}

section.apply .bottom .est span:before{
	content: url(../img/cmn_ico_01.png);
	padding: 10px 0 0 0;
}

section.apply .bottom .inq{
	
}

section.apply .bottom .inq span{
	padding: 0 0 0 54px;
}

section.apply .bottom .inq span:before{
	content: url(../img/cmn_ico_02.png);
	padding: 5px 0 0 0;
}





/*----下層ページ共通設定----*/
section.mv_under{
	height: 140px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background: var(--ac);
}

section.mv_under h2{
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: fit-content;
	line-height: 1.4;
	text-align: center;
}

section.mv_under .mv_filter01{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 1;
}


.topicpath{
	border-bottom: 1px #333 solid;
	padding: 9px 0;
	margin: 0 0 47px;
}

.topicpath ul{
	font-size: 0;
}

.topicpath li{
	font-size: 13px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-right: 23px;
	line-height: 1.5;
	color:#006797;
}
.topicpath li:first-child{
	padding-left: 0;
}

.topicpath li:first-child a {
	padding: 1px 0 0;
	display: block;
}

.topicpath li:not(:first-child){
}

.topicpath li:last-child{
	font-weight: 500;
}

.topicpath li:after{
	content: '＞';
	position: absolute;
	top: 1.5px;
	right: 4px;
	line-height: 15px;
}

.topicpath li:last-child:after{
	content: none;
}

.topicpath li a:hover{
	opacity: 0.7;
}

section.under{
	margin: 0 0 135px;
}

section.under:last-child{
	margin: 0 0 150px;
}

section.under h3{
	width: 100%;
	font-size: 23px;
	line-height: 1.4;
	color: #006797;
	border-bottom: 2px solid #006797;
	padding: 0 0 8px;
	letter-spacing: 0.02em;
	text-indent: 0.02em;
}

section.under .subtxt{
	margin: 19px 0 0;
}

section.under .subtxt p{
	font-size: 15px;
	line-height: 1.5;
}





/*--footer--*/
footer{
	background: var(--ac);
}

footer .inner01 > div{
	display: flex;
	justify-content: space-between;
}

footer .top{
	padding: 27px 10px;
	border-bottom: #fff 1px solid;
}

footer .top > a:hover{
	opacity: 0.7;
}

footer .top ul{
	text-align: center;
	font-size: 0;
	padding: 6px 0 0 0;
}

footer .top li{
	display: inline-block;
	margin-right: 30px;
}

footer .topul li:last-child{
	margin-right: 0;
}

footer .top ul li a{
	display: inline-block;
	color: var(--ac);
	padding: 8px 17px;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
	background: var(--base);
	border: 1px solid #fff;
	border-radius: 20px;
}

footer .top ul li a:hover{
	opacity: 0.7;
}

footer .bottom{
	padding: 14px 10px 16px;
}

footer .bottom ul{
	font-size: 0;
}

footer .bottom li{
	display: inline-block;
	margin-right: 27px;
}

footer .bottom li:last-child{
	margin-right: 0;
}

footer .bottom li a{
	color: #fff;
	font-size: 13px;
}

footer .bottom li a:hover{
	opacity: 0.7;
}

footer .bottom li.outlink a:after{
	content: url(../img/cmn_ico_03.png);
	padding-left: 4px;
}


footer .bottom .copyright p{
	color: #fff;
	font-size: 12px;
}


/*--ページトップボタン　スクロールすると出現--*/
main{
	position: relative;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 90px;
	right: 0;
	width: 70px;
	height: 70px;
	background: rgba(0, 103, 151, 1);
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
	z-index: 1;
	overflow: hidden;
}

.pagetop:hover{
	opacity: 0.6;
}

.pagetop:before,
.pagetop:after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.pagetop::before{
    left: 33.5px;
    width: 3px;
    height: 33px;
    background: #fff;
}
.pagetop::after{
    top: -9px;
    left: 25px;
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/*--固定 申し込みボタン　スクロールすると出現--*/
.fixed_apply{
	display: none;
	width: 100%;
	background:rgba(7, 137, 207, 0.8);
	backdrop-filter:blur(2px);
	height: 80px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 3;
}

.fixed_apply .inner01{
	position: relative;
	height: 100%;
}


.fixed_apply p{
	width: 325px;
	color: #fff;
	line-height: 1.5;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.fixed_apply ul{
	font-size: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.fixed_apply li{
	display:inline-block;
	margin-right: 30px;
}

.fixed_apply li:last-child{
	margin-right: 0;
}

.fixed_apply li a{
	font-size: 16px;
	display: block;
	width: 190px;
	height: 55px;
	line-height: 55px;
	border: #fff 1px solid;
	text-align: center;
}

.fixed_apply li:first-child a{
	background: var(--st);
	border-radius: 40px;
}

.fixed_apply li:not(:first-child) a{
	background: var(--base);
	color: var(--ac);
	border-radius: 40px;
}

.fixed_apply li a:hover{
	opacity: 0.8;
}
.fixed_apply li a span{
	color: var(--ac);
}

.fixed_apply li:first-child a span{
	color: #fff;
}

.fixed_apply li a span:after{
	content: '＞';
	padding-left: 5px;
	font-size: 15px;
}

/*2021/03/16 追記*/

ul.fixed_link{
	position: fixed;
	right: 0px;
	top: 200px;
	z-index: 100;
}

ul.fixed_link li{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	background: #005a48;
	/*background: #006797;*/
	color: #fff;
	
}

ul.fixed_link li a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	line-height: 1.3;
}

ul.fixed_link li:hover{
	opacity: 0.8;
	transition: all ease .3s;
}

ul.fixed_link li.here{
	display: none;
}

/*追記ここまで*/


/*==レスポンシブ設定==*/
@media screen and (min-width:1020px) {
	
	
}

/*------------ノートPC用------------------*/
@media screen and (min-width: 960px) and (max-width: 1019px) {
	.inner01{
		width: 100%;
		max-width: 1000px;
		padding: 0 20px;
	}

	.fixed_apply {
    padding: 0 15px;
	}
	
	.fixed_apply li {
    margin-right: 15px;
	}
	
	
}

/*------------タブレット用------------------*/
@media screen and (min-width: 560px) and (max-width: 959px) {
	
	section.under {
    margin: 0 0 115px;
	}
	
	.inner01{
		width: 100%;
		padding: 0 20px;
	}
	
	.inner02{
		width: 100%;
		max-width: 790px;
		padding: 0 20px;
	}
	
	.parallax {
    background-attachment: scroll;
	}
	
	header {
		background: transparent;
    padding: 22px 20px 12px;
    z-index: 2;
		position: absolute;
	}
	
	header .inner01 {
    padding: 0;
	}
	
	.menu-trigger {
    display: inline-block;
	}

	nav {
		width: 100%;
		height: calc(100% - 72px);
		padding-top: 45px;
		background-color: #006797;
		position: fixed;
		top: 72px;
		right: 0;
		z-index: 10;
		transform: translate(100%);
		transition: all .3s;
	}
	
	nav.open {
		transform: translateZ(0);
	}
	
	header nav ul li {
		color: #fff;
		display: block;
    margin-right: 0;
		margin-bottom: 25px;
	}
	
	header nav ul li a{
		font-size: 18px;
		padding: 9px 20px;
	}

	section.mv_under {
    height: 260px;
	}
	
	section.mv_under h2 {
    transform: translate(-50%, -25%);
	}
	
	
	
	
	
	
	section.apply .bottom .inner02 > div {
    width: calc((100% - 20px) / 2);
	}
	
	section.apply .bottom .inner02 > div a{
		height: auto;
	}
	
	section.apply .bottom .inner02 > div a span {
    padding: 73px 15px 22px;
    display: block;
    line-height: 1.4;
    font-size: 18px;
	}
	
	section.apply .bottom .inner02 > div a span:before {
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
		padding: 0;
	}
	
	section.apply .bottom .inner02 > div.inq a span:before{
		top: 26px;
	}
	
	
	footer .inner01 > div{
		display: block;
	}
	
	footer .top {
    padding: 30px 10px 44px;
	}
	
	footer .top > a{
    display: block;
    text-align: center;
		margin-bottom: 32px;
	}
	
	footer .top li:last-child{
		margin-right: 0;
	}
	
	footer .bottom {
    padding: 20px 10px 18px;
	}
	
	footer .bottom ul {
    text-align: center;
		margin-bottom: 20px;
	}
	
	footer .bottom .copyright p {
    text-align: center;
	}
	
	
	
	
	.pagetop{
		bottom: 285px;
	}
	
	.fixed_apply {
    padding: 0 20px;
	}
	
	.fixed_apply p {
    display: none;
	}
	
	.fixed_apply ul{
		width: 100%;
    max-width: 630px;
    left: 50%;
    transform: translate(-50% , -50%);
	}
	
	.fixed_apply li {
    margin-right: 4%;
    width: calc(92% / 3);
	}
	
	.fixed_apply li a{
		width: 100%;
	}
	
	
}

/*-----------スマホ-------------*/
@media screen and (max-width: 559px) {
	.inner01,
	.inner02 {
		width: 100%;
		padding: 0 15px;
	}
	
	a.btn_link01,
	a.btn_link02 {
    width: 100%;
    max-width: 333px;
	}
	
	a.btn_link01 span,
	a.btn_link02 span{
    width: 100%;
	}
	
	.parallax {
    background-attachment: scroll;
	}
	
	header {
		background: transparent;
    padding: 22px 15px 12px;
		position: absolute;
    z-index: 2;
	}
	
	header .inner01 {
    padding: 0;
	}
	
	.menu-trigger {
    display: inline-block;
    right: 15px;
	}

	nav {
		width: 100%;
		height: calc(100% - 72px);
		padding-top: 45px;
		background-color: #006797;
		position: fixed;
		top: 72px;
		right: 0;
		z-index: 10;
		transform: translate(100%);
		transition: all .3s;
	}
	
	nav.open {
		transform: translateZ(0);
	}
	
	header nav ul li {
		color: #fff;
		display: block;
    margin-right: 0;
		margin-bottom: 25px;
	}
	
	header nav ul li a{
		font-size: 18px;
		padding: 9px 20px;
	}

	section.mv_under {
    height: 225px;
	}
	
	section.mv_under h2 {
    transform: translate(-50%, -50%);
    padding: 41px 0 0;
	}
	
	.topicpath {
    padding: 9px 0;
		margin: 0 0 35px;
	}
	
	section.apply .top {
    padding: 42px 15px 0;
		height: 240px;
	}
	
	section.apply .top p {
    width: calc(100% - 30px);
	}
	
	section.apply .top p span {
    font-size: 16px;
	}
	
	section.apply .top p span:before, 
	section.apply .top p span:after {
    width: 60px;
	}
	
	section.apply .top p span:before {
    left: -52px;
	}
	
	section.apply .top p span:after {
    right: -52px;
	}
	
	section.apply .top a {
    width: calc(100% - 30px);
    max-width: 365px;
    height: 70px;
    line-height: 70px;
		font-size: 21px;
		top: 125px;
	}
	
	section.apply .bottom {
    padding: 40px 0;
	}
	
	section.apply .bottom .inner02 {
    display: block;
	}
	
	section.apply .bottom .inner02 > div {
    width: 100%;
    max-width: 365px;
    margin: 0 auto;
	}
	
	section.apply .bottom .inner02 > .est {
   margin: 0 auto 25px;
	}
	
	section.apply .bottom .inner02 > div a {
		position: relative;
		width: 100%;
		max-width: 365px;
    height: 70px;
    line-height: 70px;
	}
	
	section.apply .bottom .inner02 > div a span {
    font-size: 18px;
    padding: 0;
		position: static;
		width: 100%;
    display: block;
		padding: 0 0 0 56px;
	}
	
	section.apply .bottom .inner02 > div a span:before {
		display: inline-block;
    position: absolute;
    background-size: contain;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
	}
	
	section.apply .bottom .inner02 > .est a span:before {
		content: '';
		width: 29px;
		height: 34px;
		background-image: url(../img/cmn_ico_01.png);
		padding: 0;
		left: 19px;
	}
	
	section.apply .bottom .inq span:before {
		content: '';
		width: 40px;
		height: 29px;
		background-image: url(../img/cmn_ico_02.png);
		padding: 0;
	}
	
	section.apply .bottom .inner02 > div p {
    margin: 8px 0 0 0;
	}
	
	section.under h3 {
    font-size: 21px;
    padding: 0 0 6px;
	}
	
	
	
	
	
	footer .inner01 > div {
    display: block;
		text-align: center;
	}
	
	footer .top img {
    width: 200px;
    height: auto;
	}

	footer .top ul {
    display: none;
	}
	
	footer .bottom {
    padding: 14px 15px 16px;
	}
	
	footer .bottom ul {
    text-align: center;
		margin-bottom: 12px;
	}
	
	footer .bottom li {
    line-height: 2;
	}
	
	footer .bottom li a {
    font-size: 14px;
	}
	
	
	
	
	
	
	
	.pagetop {
    width: 44px;
    height: 44px;
		bottom: 75px;
	}
	
	.pagetop::before {
    left: 21px;
    width: 2px;
    height: 24px;
	}
	
	.pagetop::after {
    top: -9px;
    left: 15px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	}
	
	
	.fixed_apply {
    padding: 0 10px;
		height: 70px;
	}
	
	.fixed_apply p {
    display: none;
	}
	
	.fixed_apply ul{
		width: 100%;
    max-width: 395px;
    left: 50%;
    transform: translate(-50% , -50%);
	}
	
	.fixed_apply li {
    margin-right: 4%;
    width: calc(96% / 2);
	}
	
	.fixed_apply li:nth-child(2){
		display: none;
	}
	
	.fixed_apply li a{
		width: 100%;
		font-size: 14.5px;
		height: 45px;
    line-height: 45px;
	}
	
	
}



