@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;width:100%;height:auto}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none;list-style:none}address{font-style:normal}strong{font-weight: bold}
html{font-size: 62.5%;}
body{font-size: 1.6em;}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: ""; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}



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



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



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	font-weight: 400;
	color: #191919;
	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: 'Roboto', sans-serif;
	font-weight: 400;
}




/* 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: rgba(255,255,255,0.9);
	border-bottom: solid 1px #00387A;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 22;
}
    #header .logo {
        width: 290px;
		padding-left: 25px;
    }
        #header .logo a {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            height: 70px;
        }
            #header .logo a img {
                width: 140px;
				margin-right: 15px;
            }

            #header .logo a span {
				width: 85px;
				display: flex;
				justify-content: center;
				align-items: center;
          		height: 70px;
                font-size: 1.4rem;
				letter-spacing: 0.06em;
                line-height: 1.2em;
				color: #00387A;
            }


    #header .info {
        width: -webkit-calc(100% - 290px);
        width: calc(100% - 290px);
    }
        #header .info .globalnav {
            width: -webkit-calc(100% - 200px);
            width: calc(100% - 200px);
        }
            #header .info .globalnav li {
				margin-right: 35px;
            }
            #header .info .globalnav li.off {
				display: none;
            }
                #header .info .globalnav li a.head {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 70px;
                    font-size: 1.4rem;
                    text-align: center;
					letter-spacing: 0.06em;
                    line-height: 1.2em;
                    position: relative;
                }
                #header .info .globalnav li.active a.head {
					color: #00387A;
                }
                #header .info .globalnav li.has-child.active a.head:before {
                    content: "";
                    width: 0;
                    height: 0;
					border-style: solid;
					border-width: 8px 8px 0 8px;
					border-color: #00397a transparent transparent transparent;
                    position: absolute;
                    bottom: 5px;
                    left: 50%;
                    margin-left: -8px;
                }

				#header .info .globalnav li.has-child .sub_list {
					width: 100%;
					position: absolute;
					left: 0;
					top: 70px;
					background: rgba(255,255,255,0.5);
					backdrop-filter: blur(10px);
					visibility: hidden;
					padding: 30px 45px 0 45px;
					opacity: 0;
					transition: 0.3s;
					-webkit-transition: 0.3s;
				}
				#header .info .globalnav li.has-child:hover > .sub_list {
					visibility: visible;
					opacity: 1;
				}
					#header .info .globalnav li.has-child .sub_list .subhead {
						font-size: 1.8rem;
						line-height: 1;
						color: #000;
						letter-spacing: 0.1em;
						margin-bottom: 15px;
					}

					#header .info .globalnav li.has-child .sub_list .morelist {
						position: absolute;
						top: 20px;
						right: 20px;
					}
						#header .info .globalnav li.has-child .sub_list .morelist a {
							display: block;
							font-size: 1.2rem;
							text-decoration: underline;
						}
						#header .info .globalnav li.has-child .sub_list .morelist a:hover {
							text-decoration: none;
						}

					#header .info .globalnav li.has-child .sub_list.project .box {
						width: 40%;
					}
					#header .info .globalnav li.has-child .sub_list.global .box:nth-child(2) {
						width: 33.3%;
					}
					#header .info .globalnav li.has-child .sub_list.global .box:nth-child(1) {
						width: 66.7%;
					}
						#header .info .globalnav li.has-child .sub_list.recruit ul li {
							width: 16.6%;
						}

						#header .info .globalnav li.has-child .sub_list.project ul li {
							width: 50%;
						}
						#header .info .globalnav li.has-child .sub_list.global .box:nth-child(2) ul li {
							width: 50%;
						}
						#header .info .globalnav li.has-child .sub_list.global .box:nth-child(1) ul li {
							width: 25%;
						}
						#header .info .globalnav li.has-child .sub_list ul li {
							width: 20%;
							padding: 0 5px;
							margin-right: 0;
							margin-bottom: 30px;
						}
						#header .info .globalnav li.has-child .sub_list ul li:nth-last-child(1) {
							border-bottom: none;
						}
						#header .info .globalnav li.has-child .sub_list ul.work-person li {
							padding: 0 5px 0 0;
						}
							#header .info .globalnav li.has-child .sub_list ul li a {
								display: block;
								color: #000;
							}
							#header .info .globalnav li.has-child .sub_list ul.work-person li a {
								display: flex;
								justify-content: center;
								align-items: center;
							}
							#header .info .globalnav li.has-child .sub_list ul li a:hover {
								opacity: 0.7;
							}
								#header .info .globalnav li.has-child .sub_list ul.work-person li a img {
									width: 50px;
								}

								#header .info .globalnav li.has-child .sub_list ul li a span {
									display: block;
									font-size: 1.2rem;
									text-align: center;
									line-height: 1.2em;
									padding-top: 10px;
								}
								#header .info .globalnav li.has-child .sub_list ul.work-person li a p {
									width: -webkit-calc(100% - 60px);
									width: calc(100% - 60px);
									font-size: 1.2rem;
									line-height: 1.4em;
									letter-spacing: 0;
									padding-left: 10px;
								}
									#header .info .globalnav li.has-child .sub_list ul.work-person li a p span {
										font-size: 1.0rem;
										text-align: left;
										padding-top: 0;
									}


        #header .info .btn-entry {
			width: 100px;
			margin-right: 100px;
        }
			#header .info .btn-entry a {
				display: flex;
				justify-content: center;
				align-items: center;
				height: 70px;
				background: #00387A;
				font-size: 1.4rem;
				line-height: 1;
				text-align: center;
				color: #fff;
			}
			#header .info .btn-entry a:hover {
				background: #012D60;
			}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 100px;
	height: 70px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1101;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		width: 100px;
		height: 70px;
	}
		#menubtn .menu .openbtn-area {
			transition: all .4s;
		}
			#menubtn .menu span {
				width: 40px !important;
				display: inline-block;
				transition: all .4s;
				position: absolute;
				top: 50%;
				left: 50%;
				margin-left: -20px;
				height: 1px;
				background: #231815;
			}
			#menubtn .menu span:nth-of-type(1) {
				margin-top: -6px;
			}
			#menubtn .menu span:nth-of-type(2) {
				margin-top: -0.5px;
			}
			#menubtn .menu span:nth-of-type(3) {
				margin-top: 6px;
			}

		#menubtn .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#menubtn .menu.active span:nth-of-type(1) {
				transform: translateY(6px) rotate(-155deg);
				margin-top: -6px;
			}
			#menubtn .menu.active span:nth-of-type(2) {
				opacity: 0;
			}
			#menubtn .menu.active span:nth-of-type(3) {
				transform: translateY(-6px) rotate(155deg);
				margin-top: 6px;
			}
	
	
/* menubox */
#menubox {
	display: none;
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1100;
}
	#menubox .menunav {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
		#menubox .menunav .entry-area {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 270px;
			background: #00387A;
			height: 100vh;
			padding: 0 20px;
			position: relative;
			order: 1;
		}
			#menubox .menunav .entry-area .logo {
				width: 100%;
				position: absolute;
				top: 30px;
				left: 0;
			}
				#menubox .menunav .entry-area .logo a {
					display: block;
					width: 140px;
					margin: 0 auto;
				}
				#menubox .menunav .entry-area .logo a:hover {
					opacity: 0.7;
				}

			#menubox .menunav .entry-area .infobox .catchcopy {
				margin-bottom: 30px;
			}

			#menubox .menunav .entry-area .infobox a.entry-btn {
				display: block;
				background: #fff url("../img/icon_arrow_blue.svg") no-repeat right 5% center;
				padding: 17px 0;
				margin-bottom: 10px;
				height: 90px;
				text-align: center;
			}
			#menubox .menunav .entry-area .infobox a.entry-btn:hover {
				opacity: 0.7;
			}
			#menubox .menunav .entry-area .infobox a.entry-btn.off {
				display: none;
			}
				#menubox .menunav .entry-area .infobox a.entry-btn span {
					display: block;
					color: #00387A;
					text-align: center;
					line-height: 1;
				}
				#menubox .menunav .entry-area .infobox a.entry-btn .en {
					font-size: 3.6rem;
					font-weight: 500;
					margin-bottom: 5px;
				}
				#menubox .menunav .entry-area .infobox a.entry-btn .jp {
					font-size: 1.2rem;
					font-weight: 700;
				}
				#menubox .menunav .entry-area .infobox a.entry-btn img {
					display: block;
					width: 120px;
					padding: 7px;
					margin: 0 auto 5px auto;
				}

			#menubox .menunav .entry-area .infobox ul.sublink li {
				margin-top: 10px;
				margin-right: 20px;
			}
			#menubox .menunav .entry-area .infobox ul.sublink li:nth-last-child(1) {
				margin-right: 0;
			}
				#menubox .menunav .entry-area .infobox ul.sublink li a {
					display: block;
					font-size: 1.2rem;
					line-height: 1;
					color: #fff;
					text-decoration: underline;
				}
				#menubox .menunav .entry-area .infobox ul.sublink li a:hover {
					opacity: 0.7;
					text-decoration: none;
				}


		#menubox .menunav .whitebox {
            width: -webkit-calc(100% - 270px);
            width: calc(100% - 270px);
			height: 100vh;
			overflow-y: scroll;
			padding: 0 5%;
			order: 2;
		}
			#menubox .menunav .whitebox ul.menulist li {
				width: 30%;
				margin-right: 3%;
				border-top: dashed 1px #ddd;
				padding: 30px 0;
			}
			#menubox .menunav .whitebox ul.menulist li:nth-child(3n) {
				margin-right: 0;
			}
				#menubox .menunav .whitebox ul.menulist li a.head {
					display: block;
					background: #F1F4F7;
					padding: 5px 10px 3px 10px;
					pointer-events: none;
				}
					#menubox .menunav .whitebox ul.menulist li a.head span {
						line-height: 1;
					}
					#menubox .menunav .whitebox ul.menulist li a.head .en {
						display: none;
						font-size: 1.2rem;
						font-weight: 500;
						color: #00387A;
						padding-left: 10px;
					}
					#menubox .menunav .whitebox ul.menulist li a.head .jp {
						font-size: 1.8rem;
						letter-spacing: 0.06em;
						font-weight: 600;
					}

				#menubox .menunav .whitebox ul.menulist li .sub_list .box {
					margin-top: 13px;
				}
				#menubox .menunav .whitebox ul.menulist li .sub_list .box.first {
					margin-bottom: 16px;
				}
				#menubox .menunav .whitebox ul.menulist li.off .sub_list .box {
					display: none;
				}
				#menubox .menunav .whitebox ul.menulist li.off .sub_list ul {
					display: none;
				}
					#menubox .menunav .whitebox ul.menulist li .sub_list .subhead {
						font-size: 1.2rem;
						line-height: 1;
					}
					#menubox .menunav .whitebox ul.menulist li .sub_list .subhead.blue {
						color: #487CBF;
						margin-top: 20px;
					}
					#menubox .menunav .whitebox ul.menulist li .sub_list .subhead.green {
						color: #59B8A1;
						margin-top: 20px;
					}

					#menubox .menunav .whitebox ul.menulist li .sub_list li {
						width: auto;
						border: none;
						margin-top: 10px;
						margin-right: 20px;
						padding: 0;
					}
					#menubox .menunav .whitebox ul.menulist li .sub_list li:nth-last-child(1) {
						margin-right: 0;
					}
						#menubox .menunav .whitebox ul.menulist li .sub_list li a {
							display: block;
							background: url("../img/icon_list.svg") no-repeat left top 3px;
							padding-left: 12px;
							font-size: 1.3rem;
							font-weight: 500;
							line-height: 1.2em;
						}
						#menubox .menunav .whitebox ul.menulist li .sub_list li a:hover {
							opacity: 0.5;
						}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	display: block;
}

/* inner */
.inner {
	max-width: 1300px;
	padding: 0 50px;
	margin: 0 auto;
	position: relative;
}
.inner_1000 {
	max-width: 1100px;
	padding: 0 50px;
	margin: 0 auto;
	position: relative;
}
.inner_1100 {
	max-width: 1200px;
	padding: 0 50px;
	margin: 0 auto;
	position: relative;
}


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


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




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	margin-top: 70px;
}
	#pagetitle .inner {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 300px;
	}
		#pagetitle .inner .breadcrumb {
			font-size: 1.2rem;
			position: absolute;
			top: 20px;
			left: 50px;
		}
		#pagetitle .inner .breadcrumb.white {
			color: #fff;
		}
		#pagetitle .inner .breadcrumb.black {
			color: #000000;
		}
			#pagetitle .inner .breadcrumb a {
				text-decoration: underline;
			}
			#pagetitle .inner .breadcrumb.white a {
				color: #fff;
			}
			#pagetitle .inner .breadcrumb.black a {
				color: #000000;
			}
			#pagetitle .inner .breadcrumb a:hover {
				text-decoration: none;
			}


		#pagetitle .inner .ttl {
			color: #fff;
		}
			#pagetitle .inner .ttl .en {
				font-size: 5.0rem;
				line-height: 1.3em;
			}
			#pagetitle .inner .ttl h1 {
				font-size: 2.0rem;
				font-weight: 600;
				letter-spacing: 0.1em;
				line-height: 1.3em;
			}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	padding: 60px 0;
}
	#footer .inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		#footer .inner .link a {
			display: block;
			font-size: 1.0rem;
			line-height: 1;
			margin-right: 30px;
		}
		#footer .inner .link a:hover {
			text-decoration: underline;
		}


		#footer .inner .info {
			display: flex;
			justify-content: flex-start;
			align-items: center;
		}
			#footer .inner .info ul li {
				margin-right: 15px;
			}
				#footer .inner .info ul li a {
					display: block;
					line-height: 1;
				}

			#footer .inner .info .copyright {
				font-size: 1.0rem;
				text-align: right;
			}





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



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .info .globalnav li {
	display: none;
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox .menunav .whitebox ul.menulist li {
	width: 48%;
	margin-right: 4%;
	padding: 18px 0 25px 0;
}
#menubox .menunav .whitebox ul.menulist li:nth-child(3n) {
	margin-right: 4%;
}
#menubox .menunav .whitebox ul.menulist li:nth-child(2n) {
	margin-right: 0;
}
	#menubox .menunav .whitebox ul.menulist li a.head .jp {
		font-size: 1.6rem;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
	
/* inner */
.inner {
	padding: 0 6%;
}
.inner_1000 {
	padding: 0 6%;
}
.inner_1100 {
	padding: 0 6%;
}


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


/* txt */
.txt {
	font-size: 1.4rem;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle .inner {
	height: 200px;
}
	#pagetitle .inner .breadcrumb {
		font-size: 1.0rem;
		top: 15px;
		left: 7%;
	}


	#pagetitle .inner .ttl .en {
		font-size: 4.0rem;
	}
	#pagetitle .inner .ttl h1 {
		font-size: 1.7rem;
	}


}

	







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


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




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header .logo {
	width: -webkit-calc(100% - 150px);
	width: calc(100% - 150px);
	padding-left: 10px;
}
	#header .logo a {
		height: 60px;
	}
		#header .logo a img {
			width: 100px;
			margin-right: 8px;
		}

		#header .logo a span {
			width: 80px;
			height: 60px;
			background: none;
			font-size: 1.2rem;
		}


#header .info {
	width: 150px;
}
	#header .info .globalnav {
		display: none;
	}
        #header .info .btn-entry {
			width: 130px;
			margin-right: 60px;
        }
			#header .info .btn-entry a {
				display: flex;
				justify-content: center;
				align-items: center;
				height: 60px;
				background: #00387A;
				font-size: 1.4rem;
				line-height: 1;
				text-align: center;
				color: #fff;
			}
			#header .info .btn-entry a:hover {
				background: #012D60;
			}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* menubtn */
#menubtn {
	width: 60px;
	height: 60px;
}
	#menubtn .menu {
		width: 60px;
		height: 60px;
	}
		#menubtn .menu span {
			width: 30px !important;
			margin-left: -15px;
		}
		#menubtn .menu span:nth-of-type(1) {
			margin-top: -6px;
		}
		#menubtn .menu span:nth-of-type(2) {
			margin-top: -0.5px;
		}
		#menubtn .menu span:nth-of-type(3) {
			margin-top: 6px;
		}

	#menubtn .menu.active .openbtn-area {
		transform: rotateY(-360deg);
	}
		#menubtn .menu.active span:nth-of-type(1) {
			transform: translateY(6px) rotate(-155deg);
			margin-top: -6px;
		}
		#menubtn .menu.active span:nth-of-type(2) {
			opacity: 0;
		}
		#menubtn .menu.active span:nth-of-type(3) {
			transform: translateY(-6px) rotate(155deg);
			margin-top: 6px;
		}
	
	
/* menubox */
#menubox {
	max-width: 100%;
	height: 100vh;
	height: 100dvh;
}
	#menubox .menunav {
		display: block;
		height: 100%;
		overflow-y: scroll;
	}
		#menubox .menunav .entry-area {
			display: block;
			width: 100%;
			height: auto;
			padding: 40px 7%;
		}
			#menubox .menunav .entry-area .logo {
				display: none;
			}
	
			#menubox .menunav .entry-area .infobox ul.sublink li {
				margin-top: 30px;
			}


		#menubox .menunav .whitebox {
			width: 100%;
			height: auto;
			overflow-y: visible;
			padding: 0 7%;
		}
			#menubox .menunav .whitebox ul.menulist {
				display: block;
			}
			#menubox .menunav .whitebox ul.menulist li {
				width: 100%;
				margin-right: 0;
				padding: 35px 0;
			}
			#menubox .menunav .whitebox ul.menulist li:nth-last-child(1),
			#menubox .menunav .whitebox ul.menulist li:nth-last-child(2) {
				border-bottom: none;
			}
			#menubox .menunav .whitebox ul.menulist li:nth-child(1) {
				border-top: none;
			}
				#menubox .menunav .whitebox ul.menulist li a.head .en {
					display: inline-block;
					font-size: 1.4rem;
				}
				#menubox .menunav .whitebox ul.menulist li a.head .jp {
					font-size: 2.0rem;
				}
	
				#menubox .menunav .whitebox ul.menulist li .sub_list li {
					margin-top: 13px;
				}
					#menubox .menunav .whitebox ul.menulist li .sub_list li a {
						font-size: 1.4rem;
					}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

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




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 下層タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	margin-top: 60px;
}
	#pagetitle .inner .ttl .en {
		font-size: 3.0rem;
		line-height: 1;
		padding-top: 10px;
		margin-bottom: 10px;
	}
	#pagetitle .inner .ttl h1 {
		font-size: 1.6rem;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	padding: 40px 0;
}
	#footer .inner {
		display: block;
	}
		#footer .inner .link {
			display: flex;
			justify-content: center;
			align-items: center;
			margin-bottom: 20px;
		}
			#footer .inner .link a {
				margin-right: 20px;
			}
			#footer .inner .link a:nth-last-child(1) {
				margin-right: 0;
			}


		#footer .inner .info {
			display: block;
		}
			#footer .inner .info ul {
				display: flex;
				justify-content: center;
				align-items: center;
				margin-bottom: 20px;
			}
				#footer .inner .info ul li {
					margin-right: 15px;
				}
				#footer .inner .info ul li:nth-last-child(1) {
					margin-right: 0;
				}

			#footer .inner .info .copyright {
				text-align: center;
			}
	


}