@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.6em;}



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: bold;
}


ul li {
	list-style:none;	
}


/* box-sizing */ 
* {
	box-sizing: border-box;
}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: ""; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}



/* img */ 
img {
	width: 100%;
	height: auto;
}



/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #1C1C1C;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 小文字 */
.cap {
	line-height: 1.5;
	font-size: 1.2rem;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 500;
	color: #2B2B2B;
	padding: 0;
	margin: 0;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: hidden;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
}




/* flex */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	background: #0D4EA2;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
}
#header.is-animation {
	background: none;
}
    #header .logo {
        width: 200px;
		margin-top: 25px;
		margin-left: 30px;
		transition: 0.3s;
		-webkit-transition: 0.3s;
    }
    #header.is-animation .logo {
		opacity: 0;
		pointer-events: none;
    }
        #header .logo a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            height: 30px;
        }
        #header .logo a:hover {
			opacity: 0.6;
        }
			#header .logo a img {
				width: 88px;
			}
			#header .logo a .en {
				display: block;
				font-size: 1.4rem;
				color: #fff;
				line-height: 1.2em;
				padding-left: 12px;
			}


    #header .info {
        width: -webkit-calc(100% - 200px);
        width: calc(100% - 200px);
    }
        #header .info .globalnav {
            width: -webkit-calc(100% - 310px);
            width: calc(100% - 310px);
			transition: 0.3s;
			-webkit-transition: 0.3s;
        }
        #header.is-animation .info .globalnav {
            opacity: 0;
			pointer-events: none;
        }
            #header .info .globalnav li {
                position: relative;
				margin-right: 25px;
            }
                #header .info .globalnav li a.head {
                    display: block;
                    height: 80px;
					padding-top: 25px;
					font-size: 1.5rem;
					font-weight: 700;
					color: #fff;
                    position: relative;
                }
                #header .info .globalnav li.has-child.active a.head:before {
                    content: "";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 0 10px 10px 10px;
                    border-color: transparent transparent rgba(46,137,237,1) transparent;
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    margin-left: -10px;
                }

				#header .info .globalnav li.has-child .sub_list {
					width: 220px;
					position: absolute;
					left: 50%;
					top: 80px;
					margin-left: -110px;
					background: linear-gradient(to bottom , rgba(46,137,237,1), rgba(106,225,255,1));
					visibility: hidden;
					opacity: 0;
				}
				#header .info .globalnav li.has-child:hover > .sub_list {
					visibility: visible;
					opacity: 1;
				}
					#header .info .globalnav li.has-child .sub_list li {
						width: 100%;
						border-bottom: solid 1px rgba(255,255,255,0.2);
					}
					#header .info .globalnav li.has-child .sub_list li:nth-last-child(1) {
						border-bottom: none;
					}
						#header .info .globalnav li.has-child .sub_list li a {
							display: block;
							font-size: 1.3rem;
							font-weight: 700;
							color: #fff;
							padding: 12px;
						}
						#header .info .globalnav li.has-child .sub_list li a:hover {
							opacity: 0.7;
						}


        #header .info .cta {
			width: 180px;
			background: #fff;
			margin-right: 130px;
        }
			#header .info .cta li {
				width: 50%;
				border-right: solid 1px #ddd;
				position: relative;
			}
				#header .info .cta li a {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 80px;
					font-size: 1.4rem;
					text-align: center;
					line-height: 1;
				}
				#header .info .cta li a:hover {
					color: #2E89ED;
				}
				#header .info .cta li a.active {
					color: #2E89ED;
				}

				#header .info .cta li ul.sub_list {
					display: none;
					width: 100%;
					background: -webkit-linear-gradient(0deg, rgba(46,137,237,1), rgba(106,225,255,1));
					margin-right: 0;
					position: absolute;
					top: 80px;
					left: 0;
				}
					#header .info .cta li ul.sub_list li {
						width: 100%;
						border-right: none;
						border-top: solid 1px rgba(255,255,255,0.4);
					}
						#header .info .cta li ul.sub_list li a {
							height: 50px;
							color: #fff;
						}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 130px;
	height: 80px;
	background: #fff;
	position: fixed;
	padding-left: 50px;
	top: 0;
	right: 0;
	z-index: 100;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		width: 80px;
		height: 80px;
	}
	#menubtn .menu:before {
		content: "MENU";
		height: 80px;
		font-size: 1.2rem;
		font-family: 'Barlow', sans-serif;
		font-weight: 600;
		line-height: 80px;
		position: absolute;
		top: 0;
		left: -24px;
	}
		#menubtn .menu .openbtn-area {
			transition: all .4s;
		}
			#menubtn .menu span {
				width: 30px !important;
				display: inline-block;
				transition: all .4s;
				position: absolute;
				left: 50%;
				margin-left: -15px;
				height: 1px;
				background: #2B2B2B;
			}
			#menubtn .menu span:nth-of-type(1) {
				top: 33px;	
			}
			#menubtn .menu span:nth-of-type(2) {
				top: 40px;
			}
			#menubtn .menu span:nth-of-type(3) {
				top: 47px;
				width: 15px !important;
			}

		#menubtn .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#menubtn .menu.active span:nth-of-type(1) {
				top: 35px;
				left: 50%;
				transform: translateY(6px) rotate(-135deg);
			}
			#menubtn .menu.active span:nth-of-type(2) {
				opacity: 0;
			}
			#menubtn .menu.active span:nth-of-type(3) {
				width: 30px !important;
				top: 46px;
				left: 50%;
				transform: translateY(-6px) rotate(135deg);
			}
	
	
/* menubox */
#menubox {
	display: none;
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 11;
	overflow-y: auto;
}
	#menubox .menunav {
		padding-top:calc(100px + 5%);
	}
		#menubox .menunav > ul {
			margin: 0 auto 40px;
			width: 90%;
			max-width: 1180px;
			column-gap: 5%;
		}
			#menubox .menunav ul li {
				width: 30%;
				margin-bottom: 40px;
			}

			#menubox .menunav ul li:nth-child(1) {
				margin-bottom: 60px;
			}

				#menubox .menunav ul li .head {
					display: block;
					font-size: 2.2rem;
					font-weight: 700;
					line-height: 1;
				}
				#menubox .menunav ul li .head.en {
					font-size: 3.0rem;
					font-weight: 600;
					background: url("../img/icon_arrow_blue.svg") no-repeat left center / 30px;
					padding-left: 40px;
				}
				#menubox .menunav ul li a.head.en:hover {
					color: #2E89ED;
				}
				/*#menubox .menunav ul li:nth-child(2) .head.en {
					opacity: 0.3;
					pointer-events: none;
				}*/

				#menubox .menunav ul li .sub_list {
					border-top: solid 1px #ddd;
					margin-top: 22px;
					padding-top: 15px;
				}
					#menubox .menunav ul li .sub_list li {
						width: 100%;
						margin-right: 0;
						margin-bottom: 0;
						margin-top: 8px;
					}
						#menubox .menunav ul li .sub_list li a {
							display: block;
							font-size: 1.6rem;
							line-height: 1.4em;
							font-weight: 500;
							background: url("../img/icon_arrow_blue.svg") no-repeat left center / 14px;
							padding-left: 22px;
						}
						#menubox .menunav ul li .sub_list li a:hover {
							color: #2E89ED;
						}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	display: block;
}

/* inner */
.inner {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	position: relative;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

/* wrap */
.wrap {
	padding-bottom: 100px;
}
.intro {
	padding-top: 100px;
}


/* txt */
.txt {
	font-size: 1.5rem;
	line-height: 1.8em;
}


/* more */
a .more {
	width: 130px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 60px;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 50px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover .more {
	width: 135px;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 60px;
}
	a .more .en {
		font-size: 1.6rem;
		line-height: 1;
		background: -webkit-linear-gradient(0deg, rgba(46,137,237,1), rgba(106,225,255,1));
		color: #2E89ED;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
      


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
    width: 100%;
	padding-top: 390px;
}
	#pagetitle .text {
		width: 50%;
		background: #fff;
		padding-top: 50px;
		padding-left: 100px;
		position: relative;
	}
	#pagetitle .text:before {
		content: "";
		width: 100px;
		height: 3px;
		background: -webkit-linear-gradient(0deg, rgba(46,137,237,1), rgba(106,225,255,1));
		position: absolute;
		top: 0;
		left: 100px;
		z-index: 1;
	}
		#pagetitle .text .en {
			font-size: 1.8rem;
			line-height: 1;
			color: #BEBEBE;
			margin-bottom: 10px;
		}
		#pagetitle .text h1 {
			font-size: 4.0rem;
			line-height: 1.3em;
		}


/* h2_tit */
.h2_tit {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.3em;
	padding-left: 60px;
	margin-bottom: 30px;
	position: relative;
}
.h2_tit.white {
	color: #fff;
}
.h2_tit:before {
	content: "";
	width: 40px;
	height: 1px;
	background: #707070;
	position: absolute;
	top: 50%;
	left: 0;
}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	padding: 60px 0 0 0;
}
	#footer .f-area {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 60px;
	}
		#footer .f-area .catch {
			width: 460px;
			font-size: 8.0rem;
			font-weight: 700;
			line-height: 1;
			background: -webkit-linear-gradient(0deg, rgba(46,137,237,1), rgba(106,225,255,1));
			color: #2E89ED;
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}

		#footer .f-area ul.flex-start {
            width: -webkit-calc(100% - 460px);
            width: calc(100% - 460px);
		}
		#footer .f-area .cta-btn {
			width: 49%;
			background: -webkit-linear-gradient(0deg, rgba(46,137,237,1), rgba(106,225,255,1));
		}
			#footer .f-area .cta-btn a {
				display: flex;
				justify-content: center;
				align-items: center;
				height: 90px;
				background: url("../img/icon_arrow_white.svg") no-repeat right 20px center / 30px;
				font-size: 2.6rem;
				font-weight: 600;
				line-height: 1;
				color: #fff;
				text-align: center;
			}
			#footer .f-area .cta-btn a:hover {
				background: url("../img/icon_arrow_white.svg") no-repeat right 15px center / 30px;
			}

		#footer .f-area ul.flex li {
			margin-right: 20px;
		}
			#footer .f-area ul.flex li a {
				display: block;
				background: url("../img/icon_external.svg") no-repeat right center;
				font-size: 1.4rem;
				padding-right: 15px;
			}
			#footer .f-area ul.flex li a:hover {
				opacity: 0.6;
			}

		#footer .f-area .copyright {
			font-size: 1.2rem;
			text-align: right;
		}
      






/* 1200px */
@media screen and (max-width: 1200px) {




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	background: none;
}
	#header .info .globalnav li {
		display: none;
	}
	

	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubox */

#menubox .menunav > ul{
column-gap: 4%;
}

#menubox .menunav ul li {
	width: 48%;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle .text {
	padding-left: 7%;
}
#pagetitle .text:before {
	left: 14%;
}


	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* inner */
.inner {
	max-width: 100%;
	padding: 0 7%;
}


}





/* 1024px */
@media screen and (max-width: 1024px) {
      


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
    width: 100%;
	padding-top: 300px;
}
	#pagetitle .text {
		padding-top: 40px;
	}
		#pagetitle .text .en {
			font-size: 1.6rem;
		}
		#pagetitle .text h1 {
			font-size: 3.0rem;
		}


/* h2_tit */
.h2_tit {
	font-size: 2.3rem;
}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* txt */
.txt {
	font-size: 1.4rem;
}





	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding: 40px 0 0 0;
}
	#footer .f-area {
		margin-bottom: 40px;
	}
		#footer .f-area .catch {
			width: 290px;
			font-size: 5.0rem;
		}

		#footer .f-area ul.flex-start {
            width: -webkit-calc(100% - 290px);
            width: calc(100% - 290px);
		}
			#footer .f-area .cta-btn {
				width: 49%;
			}
				#footer .f-area .cta-btn a {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					height: 70px;
					background: url("../img/icon_arrow_white.svg") no-repeat right 15px center / 30px;
					font-size: 2.0rem;
					text-align: left;
					padding-left: 20px;
				}
				#footer .f-area .cta-btn a:hover {
					background: url("../img/icon_arrow_white.svg") no-repeat right 10px center / 30px;
				}

		#footer .f-area ul.flex li a {
			font-size: 1.2rem;
		}

		#footer .f-area .copyright {
			font-size: 1.0rem;
		}


}

	







/* max 767px */
@media screen and (max-width: 767px) {


.sp {
	display: block;
}
.pc {
	display: none;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .logo {
	width: 130px;
	margin-top: 20px;
	margin-left: 15px;
}
	#header .logo a {
		height: 24px;
	}
		#header .logo a img {
			width: 60px;
		}
		#header .logo a .en {
			font-size: 1.0rem;
			padding-left: 10px;
		}


#header .info {
	width: -webkit-calc(100% - 130px);
	width: calc(100% - 130px);
}
	#header .info .globalnav {
		width: -webkit-calc(100% - 200px);
		width: calc(100% - 200px);
	}


	#header .info .cta {
		width: 140px;
		margin-right: 60px;
	}
		#header .info .cta li a {
			height: 60px;
			font-size: 1.2rem;
		}
			#header .info .cta li ul.sub_list {
				top: 60px;
			}
				#header .info .cta li ul.sub_list li a {
					height: 40px;
				}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 60px;
	height: 60px;
	padding-left: 0;
}
	#menubtn .menu {
		width: 60px;
		height: 60px;
	}
	#menubtn .menu:before {
		display: none;
	}
		#menubtn .menu span {
			width: 30px !important;
			margin-left: -15px;
		}
		#menubtn .menu span:nth-of-type(1) {
			top: 22px;	
		}
		#menubtn .menu span:nth-of-type(2) {
			top: 30px;
		}
		#menubtn .menu span:nth-of-type(3) {
			top: 39px;
		}

		#menubtn .menu.active span:nth-of-type(1) {
			width: 30px !important;
			top: 24px;
			margin-left: -15px;
		}
		#menubtn .menu.active span:nth-of-type(3) {
			width: 30px !important;
			top: 36px;
			margin-left: -15px;
		}
	
	
/* menubox */
#menubox {
	max-width: 100%;
	height: 100vh;
	height: 100dvh;
}
#menubox .menunav {
    padding-top: calc(70px + 5%);
}
		#menubox .menunav ul li {
			width: 100%;
			margin-bottom: 30px;
		}
		#menubox .menunav ul li:nth-child(1) {
			margin-bottom: 30px;
		}
			#menubox .menunav ul li .head {
				font-size: 2.0rem;
			}
			#menubox .menunav ul li .head.en {
				font-size: 2.2rem;
				background: url("../img/icon_arrow_blue.svg") no-repeat left center / 20px;
				padding-left: 26px;
			}

			#menubox .menunav ul li .sub_list {
				border-top: none;
				margin-top: 0;
				padding-top: 5px;
			}
				#menubox .menunav ul li .sub_list li a {
					font-size: 1.5rem;
					padding-left: 18px;
				}
      


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	padding-top: 250px;
}
	#pagetitle .text {
		width: 93%;
		padding-top: 25px;
	}
	#pagetitle .text:before {
		width: 50px;
		left: 8%;
	}


/* h2_tit */
.h2_tit {
	font-size: 2.2rem;
	padding-left: 45px;
	margin-bottom: 20px;
}
.h2_tit:before {
	width: 30px;
}


	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	padding: 0;
}

/* wrap */
.wrap {
	padding-bottom: 70px;
}
.intro {
	padding-top: 70px;
}


/* more */
a .more {
	width: 135px;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 50px;
}
a:hover .more {
	width: 135px;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / 50px;
}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	padding: 40px 0 0 0;
}
	#footer .f-area {
		display: block;
		margin-bottom: 30px;
	}
		#footer .f-area .catch {
			width: 100%;
			font-size: 5.0rem;
			text-align: center;
			line-height: 1;
			text-indent: 10px;
			margin-bottom: 18px;
		}

		#footer .f-area ul.flex-start {
			width: 100%;
		}
		#footer .f-area .cta-btn {
			width: 100%;
			max-width: 300px;
			margin: 1em auto 0;
		}
			#footer .f-area .cta-btn a {
				height: 70px;
				font-size: 1.7rem;
			}
			#footer .f-area .cta-btn a:hover {
				background: url("../img/icon_arrow_white.svg") no-repeat right 15px center / 30px;
			}

		#footer .f-area ul.flex {
			display: flex;
			justify-content: center;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		}
			#footer .f-area ul.flex li {
				margin-right: 13px;
			}
			#footer .f-area ul.flex li:nth-last-child(1) {
				margin-right: 0;
			}
				#footer .f-area ul.flex li a {
					font-size: 1.1rem;
					padding-right: 13px;
				}

		#footer .f-area .copyright {
			padding-top: 20px;
			font-size: 1.0rem;
			text-align: center;
		}
	


}