@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none;box-sizing:border-box;}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}strong{font-weight: bold}ul li {list-style:none}img{width:100%;height:auto}
html{font-size: 62.5%;}
body{font-size: 1.6em;}




/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #231815;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #231815;
	padding: 0;
	margin: 0;
	letter-spacing: 0.06em;
	-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;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: "Hind Madurai", serif;
	font-weight: 600;
}

.white {
	color: #fff;
}
.gray {
	color: #F2F4F5;
}
.orange {
	color: #F99900;
}
.yellow {
	color: #FFCD00;
}

.bg-gray {
	background: #F2F4F5;
}
.bg-orange {
	background: #FFFAF3;
}




/* 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%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
	#header .logo a {
		display: block;
		height: 80px;
	}
	#header .logo a:hover {
		opacity: 0.7;
	}
		#header .logo a img {
			width: auto;
			height: 100%;
		}

        #header .info .internshipbtn {
			width: 210px;
        }
			#header .info .internshipbtn a {
				height: 80px;
				display: flex;
				justify-content: center;
				align-items: center;
				background: #FFCD00 url("../img/icon_arrow_black.svg") no-repeat right 10px center;
				font-size: 1.2rem;
				font-weight: 500;
				text-align: center;
				line-height: 1.5em;
				padding-right: 10px;
			}
			#header .info .internshipbtn a:hover {
				background: #F99900 url("../img/icon_arrow_white.svg") no-repeat right 10px center;
				color: #fff;
			}
				#header .info .internshipbtn a .en {
					font-size: 1.8rem;
					font-weight: 600;
				}

        #header .info .recruitbtn {
			width: 140px;
        }
			#header .info .recruitbtn a {
				height: 80px;
				display: flex;
				justify-content: center;
				align-items: center;
				background: #FFCD00 url("../img/icon_arrow_black.svg") no-repeat right 10px center;
				font-size: 1.8rem;
				text-align: center;
				line-height: 1.2em;
			}
			#header .info .recruitbtn a:hover {
				background: #F99900 url("../img/icon_arrow_white.svg") no-repeat right 10px center;
				color: #fff;
			}

        #header .info .menubtn {
            width: 140px;
            height: 80px;
            background: #141414;
        }
            #header .info .menubtn .menu {
                display: block;
                position: relative;
                cursor: pointer;
                width: 140px;
                height: 80px;
            }
			#header .info .menubtn .menu:before {
				height: 80px;
				display: flex;
				justify-content: center;
				align-items: center;
				content: "MENU";
				font-size: 1.2rem;
				font-family: 'Barlow', sans-serif;
				font-weight: 600;
				letter-spacing: 0.06em;
				line-height: 1;
				color: #fff;
				text-align: center;
				position: absolute;
				top: 0;
				left: 25px;
			}
                #header .info .menubtn .menu .openbtn-area {
                    transition: all .4s;
                }
                    #header .info .menubtn .menu span {
                        width: 40px !important;
                        display: inline-block;
                        transition: all .4s;
                        position: absolute;
                        right: 25px;
                        height: 1px;
                        background: #fff;
                    }
                    #header .info .menubtn .menu span:nth-of-type(1) {
                        top: 30px;	
                    }
                    #header .info .menubtn .menu span:nth-of-type(2) {
                        top: 40px;
                    }
                    #header .info .menubtn .menu span:nth-of-type(3) {
                        top: 50px;
                    }

                #header .info .menubtn .menu.active .openbtn-area {
                    transform: rotateY(-360deg);
                }
                    #header .info .menubtn .menu.active span:nth-of-type(1) {
                        width: 40px !important;
                        top: 35px;
                        transform: translateY(6px) rotate(-135deg);
                    }
                    #header .info .menubtn .menu.active span:nth-of-type(2) {
                        opacity: 0;
                    }
                    #header .info .menubtn .menu.active span:nth-of-type(3) {
                        width: 40px !important;
                        top: 45px;
                        transform: translateY(-6px) rotate(135deg);
                    }
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	display: none;
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}
	#menubox .menunav {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: auto;
		height: 100vh;
		position: relative;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
	#menubox .menunav .phtbg {
		width: -webkit-calc(100% - 1000px);
		width: calc(100% - 1000px);
		height: 100vh;
		background: url("../img/menu_pht.jpg") no-repeat left 10% center / cover;
	}
		#menubox .menunav .text {
			max-width: 1000px;
			padding: 0 100px;
		}
			#menubox .menunav .text ul li {
				width: 260px;
				margin-top: 60px;
			}
			#menubox .menunav .text ul li:nth-child(1),
			#menubox .menunav .text ul li:nth-child(2),
			#menubox .menunav .text ul li:nth-child(3) {
				margin-top: 0;
			}
				#menubox .menunav .text ul li a.head {
					display: inline-block;
					font-size: 1.5rem;
					font-weight: 600;
					position: relative;
				}
				#menubox .menunav .text ul li a.head:before {
					content: "";
					width: 100%;
					height: 1px;
					background: #34414D;
					position: absolute;
					bottom: 0;
					right: 0;
					transition: 0.3s;
					-webkit-transition: 0.3s;
				}
				#menubox .menunav .text ul li a.head:hover:before {
					width: 0;
				}
				#menubox .menunav .text ul li a.head.ac {
					pointer-events: none;
				}
				#menubox .menunav .text ul li a.head.ac:before {
					display: none;
				}

				#menubox .menunav .text ul li ul.sub_list {
					margin-top: 15px;
				}
					#menubox .menunav .text ul li ul.sub_list li {
						margin-top: 0;
						padding-right: 20px;
						margin-bottom: 10px;
					}
					#menubox .menunav .text ul li ul.sub_list li:nth-last-child(1) {
						margin-bottom: 0;
					}
						#menubox .menunav .text ul li ul.sub_list li a {
							display: block;
							font-size: 1.4rem;
							letter-spacing: 0;
							line-height: 1.3em;
							text-align: left;
							position: relative;
						}
						#menubox .menunav .text ul li ul.sub_list li a:hover {
							opacity: 0.7;
						}
						#menubox .menunav .text ul li ul.sub_list li.external a {
							background: url("../img/icon_external_black.svg") no-repeat left center / 14px;
							padding-left: 20px;
						}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	margin-bottom: 100px;
}
	#pagetitle .bg-gray .text {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 150px;
		padding-bottom: 60px;
	}
		#pagetitle .bg-gray .text h1 {
			font-size: 4.0rem;
			font-weight: 700;
			line-height: 1.3em;
		}

		#pagetitle .bg-gray .text .en {
			font-size: 1.4rem;
			font-weight: 600;
			line-height: 1;
			margin-top: 10px;
		}

	#pagetitle .bg-gray .breadcrumbs {
		font-size: 1.2rem;
		line-height: 1;
		padding-bottom: 20px;
	}
		#pagetitle .bg-gray .breadcrumbs a {
			text-decoration: underline;
			color: #6A6A6A;
		}
		#pagetitle .bg-gray .breadcrumbs a:hover {
			text-decoration: none;
		}

	#pagetitle .marquee {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: #F2F4F5;
	}
		#pagetitle .marquee .marquee__item {
			flex: 0 0 auto;
			overflow: hidden;
			font-size: 10.0rem;
			font-weight: 600;
			white-space: nowrap;
			line-height: 0.7;
			padding-right: 20px;
		}
		#pagetitle .marquee .marquee__item:nth-child(odd) {
			animation: loop 80s -40s linear infinite;
		}
		#pagetitle .marquee .marquee__item:nth-child(even) {
			animation: loop2 80s linear infinite;
		}
		@keyframes loop {
			0% {
				transform: translateX(100%);
			}
			to {
				transform: translateX(-100%);
			}
		}
		@keyframes loop2 {
			0% {
				transform: translateX(0);
			}
			to {
				transform: translateX(-200%);
			}
		}


/* title */
.title {
	margin-bottom: 35px;
}
	.title .en {
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1;
		margin-bottom: 8px;
	}

	.title h2 {
		font-size: 3.4rem;
		font-weight: 700;
		line-height: 1.3em;
	}


/* orange-tit */
.orange-tit {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3em;
	color: #F99900;
	margin-bottom: 12px;
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* main */
#main {
	display: block;
}
.inner {
	width: 1100px;
	margin: auto;
	position: relative;
}
.inner_full {
	width: 100%;
	position: relative;
}


/* wrap */
.wrap-top {
	padding-top: 180px;
}
.wrap-bottom {
	padding-bottom: 180px;
}


/* txt */
.txt {
	font-size: 1.6rem;
	line-height: 2em;
}
.sub-txt {
	font-size: 1.3rem;
	line-height: 1.6em;
}

/* img-over */
a .img-over {
	overflow: hidden;
}
	a .img-over img {
		-moz-transition: -moz-transform 0.2s linear;
		-webkit-transition: -webkit-transform 0.2s linear;
		-o-transition: -o-transform 0.2s linear;
		-ms-transition: -ms-transform 0.2s linear;
		transition: transform 0.2s linear;
	}
	a:hover .img-over img {
		-webkit-transform: scale(1.08);
		-moz-transform: scale(1.08);
		-o-transform: scale(1.08);
		-ms-transform: scale(1.08);
		transform: scale(1.08);
	}


/* btn */
.btn {
	width: 280px;
}
.btn.center {
	margin: 0 auto;
}
	.btn a {
		display: block;
		height: 66px;
		background: #FFCD00;
		font-size: 1.4rem;
		line-height: 70px;
		text-align: center;
		position: relative;
	}
	.btn a:hover {
		background: #F99900;
		letter-spacing: 0.18em;
		color: #fff;
	}
	.btn a:before {
		content: "";
		width: 60px;
		height: 1px;
		background: #231815;
		position: absolute;
		top: 50%;
		left: -30px;
		margin-top: -0.5px;
	}
	.btn a:hover:before {
		width: 30px;
		background: #fff;
		left: 0;
	}


/* beginning */
#beginning .txt {
	text-align: center;
}

#beginning ul.anchor {
	margin-top: 40px;
}
	#beginning ul.anchor li {
		width: 23.5%;
		margin-right: 2%;
	}
	#beginning ul.anchor li:nth-child(4n) {
		margin-right: 0;
	}
	#beginning ul.anchor.column5 li {
		width: 18.2%;
		margin-right: 2%;
	}
	#beginning ul.anchor.column5 li:nth-child(5) {
		margin-right: 0;
	}
		#beginning ul.anchor li a {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			height: 80px;
			background: #FFCD00 url("../img/icon_ac_arrow.svg") no-repeat right 20px center;
			padding: 0 40px 0 20px;
			font-size: 1.6rem;
			font-weight: 700;
			line-height: 1.3em;
		}
		#beginning ul.anchor li a:hover {
			background: #F99900 url("../img/icon_ac_arrow.svg") no-repeat right 20px center;
			color: #fff;
		}


/* table-layout */
.table-layout {
	width: 100%;
	border-collapse: collapse;
}
	.table-layout th {
		width: 270px;
		border-top: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
		background: #F2F4F5;
		padding: 20px;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.3em;
		text-align: left;
	}

	.table-layout td {
		width: -webkit-calc(100% - 280px);
		width: calc(100% - 280px);
		border-top: solid 1px #ddd;
		border-bottom: solid 1px #ddd;
		padding: 20px;
	}
		.table-layout td .txt {
			margin-bottom: 12px;
		}
		.table-layout td .txt:nth-last-child(1) {
			margin-bottom: 0;
		}
	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #27262B;
	padding: 100px 0;
}
	#footer .navarea {
		margin-bottom: 90px;
	}
		#footer .navarea .logobox {
			width: 266px;
		}
			#footer .navarea .logobox .logo {
				width: 152px;
				margin-bottom: 30px;
			}
			#footer .navarea .logobox a:hover {
				opacity: 0.7;
			}

		#footer .navarea .localnav {
			width: -webkit-calc(100% - 266px);
			width: calc(100% - 266px);
		}
			#footer .navarea .localnav ul {
				margin-left: 50px;
			}
			#footer .navarea .localnav ul:nth-last-child(1) {
				margin-left: 0;
			}
				#footer .navarea .localnav ul li {
					margin-bottom: 5px;
				}
					#footer .navarea .localnav ul li a {
						display: block;
						font-size: 1.5rem;
						font-weight: 600;
						color: #fff;
					}
					#footer .navarea .localnav ul li a:hover {
						color: #FDCD00;
					}
					#footer .navarea .localnav ul li.external a {
						background: url("../img/icon_external_white.svg") no-repeat left center / 14px;
						padding-left: 20px;
					}
					#footer .navarea .localnav ul li.external a:hover {
						background: url("../img/icon_external_yellow.svg") no-repeat left center / 14px;
					}

	#footer .infoarea .copyright {
		width: 477px;
		font-size: 1.1rem;
		line-height: 1;
		letter-spacing: 0.02em;
		color: #D1D1D1;
	}

	#footer .infoarea ul {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: -webkit-calc(100% - 477px);
		width: calc(100% - 477px);
	}
		#footer .infoarea ul li {
			margin-right: 30px;
		}
		#footer .infoarea ul li:nth-last-child(1) {
			margin-right: 0;
		}
			#footer .infoarea ul li a {
				display: block;
				font-size: 1.3rem;
				font-weight: 500;
				line-height: 1;
				color: #D1D1D1;
			}
			#footer .infoarea ul li a:hover {
				opacity: 0.7;
			}






/* max 1300px */
@media screen and (max-width: 1300px) {




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* menubox */
#menubox .menunav .phtbg {
	width: -webkit-calc(100% - 850px);
	width: calc(100% - 780px);
}
	#menubox .menunav .text {
		max-width: 850px;
		padding: 0 0 0 70px;
	}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* main */
.inner {
	width: 100%;
	padding: 0 5%;
}
	

}





/* 1024px */
@media screen and (max-width: 1024px) {




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .logo a {
	height: 60px;
}

#header .info .internshipbtn {
	width: 170px;
}
	#header .info .internshipbtn a {
		height: 60px;
		font-size: 1.0rem;
	}
		#header .info .internshipbtn a .en {
			font-size: 1.5rem;
		}
    
#header .info .recruitbtn {
	width: 100px;
}
	#header .info .recruitbtn a {
		height: 60px;
		font-size: 1.3rem;
	}

#header .info .menubtn {
	width: 100px;
	height: 60px;
}
	#header .info .menubtn .menu {
		width: 100px;
		height: 60px;
	}
	#header .info .menubtn .menu:before {
		height: 60px;
		font-size: 1.0rem;
		left: 15px;
	}
		#header .info .menubtn .menu span {
			width: 30px !important;
			right: 15px;
		}
		#header .info .menubtn .menu span:nth-of-type(1) {
			top: 21px;	
		}
		#header .info .menubtn .menu span:nth-of-type(2) {
			top: 29px;
		}
		#header .info .menubtn .menu span:nth-of-type(3) {
			top: 38px;
		}

			#header .info .menubtn .menu.active span:nth-of-type(1) {
				width: 30px !important;
				top: 22px;
			}
			#header .info .menubtn .menu.active span:nth-of-type(2) {
				opacity: 0;
			}
			#header .info .menubtn .menu.active span:nth-of-type(3) {
				width: 30px !important;
				top: 34px;
			}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox .menunav .phtbg {
	display: none;
}
	#menubox .menunav .text {
		max-width: 630px;
		margin: auto;
		padding: 0;
	}
		#menubox .menunav .text ul li {
			width: 210px;
		}
			#menubox .menunav .text ul li a.head {
				font-size: 1.4rem;
			}
			#menubox .menunav .text ul li a.head:hover:before {
				width: 100%;
			}

			#menubox .menunav .text ul li ul.sub_list {
				margin-top: 15px;
			}
				#menubox .menunav .text ul li ul.sub_list li {
					padding-right: 20px;
					margin-bottom: 7px;
				}
					#menubox .menunav .text ul li ul.sub_list li a {
						font-size: 1.2rem;
						line-height: 1.4em;
					}
					#menubox .menunav .text ul li ul.sub_list li a:hover {
						opacity: 1;
					}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle  */
#pagetitle {
	margin-bottom: 70px;
}
	#pagetitle .bg-gray .text {
		padding-top: 120px;
		padding-bottom: 50px;
	}
		#pagetitle .bg-gray .text h1 {
			font-size: 3.4rem;
		}

		#pagetitle .bg-gray .text .en {
			font-size: 1.2rem;
		}

	#pagetitle .bg-gray .breadcrumbs {
		font-size: 1.1rem;
	}

	#pagetitle .marquee .marquee__item {
		font-size: 8.0rem;
	}


/* title */
.title {
	margin-bottom: 25px;
}
	.title .en {
		font-size: 1.3rem;
	}

	.title h2 {
		font-size: 3.0rem;
	}


/* orange-tit */
.orange-tit {
	font-size: 2.2rem;
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* wrap */
.wrap-top {
	padding-top: 140px;
}
.wrap-bottom {
	padding-bottom: 140px;
}
	

/* txt */
.txt {
	font-size: 1.5rem;
    line-height: 1.8em;
}
.sub-txt {
	font-size: 1.2rem;
	line-height: 1.4em;
}


/* btn */
.btn {
	width: 240px;
}
	.btn a {
		height: 60px;
		font-size: 1.3rem;
		line-height: 64px;
	}
	.btn a:before {
		width: 50px;
		left: -25px;
	}
	.btn a:hover:before {
		width: 25px;
	}


/* beginning */
#beginning ul.anchor {
	margin-top: 35px;
}
	#beginning ul.anchor li a {
		height: 70px;
		background: #FFCD00 url("../img/icon_ac_arrow.svg") no-repeat right 15px center;
		padding: 0 40px 0 15px;
		font-size: 1.4rem;
	}
	#beginning ul.anchor li a:hover {
		background: #F99900 url("../img/icon_ac_arrow.svg") no-repeat right 15px center;
	}


/* table-layout */
.table-layout th {
	width: 220px;
	font-size: 1.5rem;
}

.table-layout td {
	width: -webkit-calc(100% - 220px);
	width: calc(100% - 220px);
}


	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding: 60px 0 40px 0;
}
	#footer .navarea {
		margin-bottom: 40px;
	}
		#footer .navarea .logobox {
			margin: auto;
		}
			#footer .navarea .logobox .logo {
				margin: 0 auto 30px auto;
			}


		#footer .navarea .localnav {
			display: none;
		}


	#footer .infoarea {
		display: block;
	}
		#footer .infoarea .copyright {
			width: 100%;
			font-size: 1.0rem;
			text-align: center;
		}

		#footer .infoarea ul {
			display: flex;
			justify-content: center;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			width: 100%;
			margin-bottom: 40px;
		}
			#footer .infoarea ul li {
				margin-right: 20px;
			}
			#footer .infoarea ul li:nth-last-child(1) {
				margin-right: 0;
			}
				#footer .infoarea ul li a {
					font-size: 1.2rem;
					opacity: 0.8;
					color: #fff;
				}
				#footer .infoarea ul li a:hover {
					opacity: 0.7;
				}



}

	







/* max 767px */
@media screen and (max-width: 767px) {


.sp {
	display: block;
}
.pc {
	display: none;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	background: #fff;
}
#header .info .internshipbtn {
	display: none;
}




	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	width: 100%;
}
	#menubox .menunav {
		display: block;
		width: 100%;
		height: 100%;
		padding: 61px 0 80px 0;
		overflow: hidden;
		overflow-y: scroll;
	}
		#menubox .menunav .text {
			max-width: 100%;
		}
			#menubox .menunav .text ul {
				border-bottom: solid 1px #ddd;
			}
			#menubox .menunav .text ul li {
				width: 100%;
				margin-top: 0 !important;
				border-top: solid 1px #ddd;
			}
				#menubox .menunav .text ul li a.head {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					font-size: 1.4rem;
					line-height: 1;
					padding: 0 20px;
					height: 56px;
				}
				#menubox .menunav .text ul li a.head:before {
					display: none;
				}
				#menubox .menunav .text ul li a.ac {
					position: relative;
				}
				#menubox .menunav .text ul li a.head.ac {
					pointer-events: all;
				}
				#menubox .menunav .text ul li a.head.ac:before {
					display: block;
					content: "";
					width: 16px;
					height: 2px;
					background: #34414D;
					position: absolute;
					top: 50%;
					right: 20px;
					margin-top: -1px;
					z-index: 2;
				}
				#menubox .menunav .text ul li a.ac:after {
					content: "";
					width: 2px;
					height: 16px;
					background: #34414D;
					position: absolute;
					top: 50%;
					right: 27px;
					margin-top: -8px;
					z-index: 2;
				}
				#menubox .menunav .text ul li a.ac:hover:before {
					width: 16px;
				}
				#menubox .menunav .text ul li a.ac.active:after {
					display: none;
				}

				#menubox .menunav .text ul li ul.sub_list {
					display: none;
					margin-top: 0;
					padding: 0 20px;
					padding-bottom: 20px;
				}
					#menubox .menunav .text ul li ul.sub_list li {
						padding-right: 0;
						border-top: none;
					}
						#menubox .menunav .text ul li ul.sub_list li a {
							font-size: 1.3rem;
						}
						#menubox .menunav .text ul li ul.sub_list li.external a {
							background: url("../img/icon_external_black.svg") no-repeat left center / 12px;
							padding-left: 18px;
						}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	margin-bottom: 50px;
}
	#pagetitle .bg-gray .text {
		display: block;
		padding-top: 110px;
		padding-bottom: 45px;
	}
		#pagetitle .bg-gray .text h1 {
			font-size: 3.0rem;
		}

		#pagetitle .bg-gray .text .en {
			font-size: 1.2rem;
		}

	#pagetitle .bg-gray .breadcrumbs {
		font-size: 1.0rem;
	}

	#pagetitle .marquee .marquee__item {
		font-size: 7.0rem;
	}


/* title */
.title .en {
	font-size: 1.0rem;
}

.title h2 {
	font-size: 2.4rem;
}


/* orange-tit */
.orange-tit {
	font-size: 1.8rem;
	margin-bottom: 10px;
}

	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* main */
.inner {
    padding: 0 8%;
}
	
	
/* wrap */
.wrap-top {
	padding-top: 80px;
}
.wrap-bottom {
	padding-bottom: 80px;
}
	
	
/* txt */
.txt {
	font-size: 1.4rem;
}
.sub-txt {
	font-size: 1.1rem;
}


/* btn */
.btn {
	width: 75%;
}
	.btn a {
		height: 56px;
		font-size: 1.4rem;
		line-height: 60px;
	}


/* beginning */
#beginning .txt {
	text-align: left;
}
	
#beginning ul.anchor {
	margin-top: 20px;
}
	#beginning ul.anchor li {
		width: 48%;
		margin-right: 4%;
		margin-top: 4%;
	}
	#beginning ul.anchor li:nth-child(2n) {
		margin-right: 0;
	}
	#beginning ul.anchor.column5 li {
		width: 48%;
		margin-right: 4%;
		margin-top: 4%;
	}
	#beginning ul.anchor.column5 li:nth-child(2n) {
		margin-right: 0;
	}
		#beginning ul.anchor li a {
			height: 60px;
			background: #FFCD00 url("../img/icon_ac_arrow.svg") no-repeat right 12px center;
			padding: 0 40px 0 12px;
			font-size: 1.3rem;
			letter-spacing: 0;
		}
		#beginning ul.anchor li a:hover {
			background: #F99900 url("../img/icon_ac_arrow.svg") no-repeat right 12px center;
		}


/* table-layout */
.table-layout {
	border-bottom: solid 1px #ddd;
}
	.table-layout th {
		display: block;
		width: 100%;
		border-top: solid 1px #ddd;
		border-bottom: none;
		background: none;
		padding: 25px 10px 10px 10px;
		font-size: 1.7rem;
	}

	.table-layout td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
		padding: 0 10px 20px 10px;
	}
	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer .navarea .logobox .logo {
	margin: 0 auto 20px auto;
}



#footer .infoarea ul {
	margin-bottom: 25px;
}
	#footer .infoarea ul li {
		margin-right: 15px;
		margin-bottom: 15px;
	}
		#footer .infoarea ul li a {
			font-size: 1.2rem;
		}


}