/*
Theme Name: 週1副社長
Description: 週1副社長
Version: 1.0
Author: 週1副社長
*/

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{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.5rem;}




/* body */
body {
	background: #22201E;
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
	letter-spacing: 0.02em;
	-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: hidden;
}


/* カラー */
.bg-blue {
	background: #0752E2;
}
.bg-red {
	background: #FF1010;
}
.bg-green {
	background: #03BFBB;
}


/* テキスト装飾 */
.min {
	font-family: "Playfair Display", serif;
	font-weight: 400;
}
.en {
	font-family: "Schibsted Grotesk", sans-serif;
	font-weight: 500;
}
a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* 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 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #22201E;
	padding: 1vw 1vw 1vw 1.5vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 22;
}
	#header .logo a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		line-height: 1;
	}
	#header .logo a:hover {
		opacity: 0.7;
	}
		#header .logo a img:nth-child(1) {
			width: 4vw;
			margin-right: 1.5vw;
		}
		#header .logo a img:nth-child(2) {
			width: 10vw;
		}

	#header .globalnav {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
		#header .globalnav ul.nav-list li {
			margin-right: 2vw;
		}
			#header .globalnav ul.nav-list li a {
				display: block;
				line-height: 1;
				font-size: 1.075vw;
			}
			#header .globalnav ul.nav-list li a:hover {
				color: #EBFF00;
			}

		#header .globalnav ul.btn-list {
			width: 30vw;
		}
			#header .globalnav ul.btn-list li {
				width: 48%;
				border-radius: 0.5vw;
				overflow: hidden;
			}
			#header .globalnav ul.btn-list li.btn-cta {
				background: #0652E2;
			}
			#header .globalnav ul.btn-list li.btn-external {
				background: #FF1010;
			}
				#header .globalnav ul.btn-list li a {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					padding: 0.7vw 1.3vw;
					font-size: 1.3vw;
					font-weight: 700;
					line-height: 1.4em;
					position: relative;
					z-index: 2;
				}
				#header .globalnav ul.btn-list li.btn-cta a:after {
					content: "";
					width: 1.4vw;
					height: 1.4vw;
					background: url("img/common/icon_arrow_white.svg") no-repeat center / 100%;
					position: absolute;
					top: 50%;
					right: 1.3vw;
					margin-top: -0.7vw;
				}
				#header .globalnav ul.btn-list li.btn-external a:after {
					content: "";
					width: 1.4vw;
					height: 1.4vw;
					background: url("img/common/icon_external_white.svg") no-repeat center / 100%;
					position: absolute;
					top: 50%;
					right: 1.3vw;
					margin-top: -0.7vw;
				}

				#header .globalnav ul.btn-list li a:before {
					content: "";
					width: 0;
					height: 100%;
					position: absolute;
					top: 0;
					left: 0;
					z-index: -1;
				}
				#header .globalnav ul.btn-list li.btn-cta a:before {
					background: #0034C3;
				}
				#header .globalnav ul.btn-list li.btn-external a:before {
					background: #C30000;
				}
				#header .globalnav ul.btn-list li a:hover:before {
					width: 100%;
				}
@media screen and (max-width: 767px) {
	#header {
		padding: 0 2vw 0 4vw;
		height: 16vw;
	}
		#header .logo a img:nth-child(1) {
			width: 12vw;
			margin-right: 4vw;
		}
		#header .logo a img:nth-child(2) {
			width: 30vw;
		}

		#header .globalnav ul.nav-list {
			display: none;
		}

		#header .globalnav ul.btn-list {
			width: 100%;
			position: fixed;
			bottom: 0;
			left: 0;
		}
			#header .globalnav ul.btn-list li {
				width: 50%;
				border-radius: 0;
			}
				#header .globalnav ul.btn-list li a {
					padding: 4vw 3vw;
					font-size: 3.6vw;
				}
				#header .globalnav ul.btn-list li.btn-cta a:after {
					width: 3.4vw;
					height: 3.4vw;
					right: 3vw;
					margin-top: -1.7vw;
				}
				#header .globalnav ul.btn-list li.btn-external a:after {
					width: 3.4vw;
					height: 3.4vw;
					right: 3vw;
					margin-top: -1.7vw;
				}
}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニューボタン */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubtn {
	width: 16vw;
	height: 16vw;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 25;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		background: #EBFF00;
		width: 16vw;
		height: 16vw;
	}
		#menubtn .menu span {
			width: 8vw;
			display: inline-block;
			border-radius: 1px;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-left: -4vw;
			height: 1px;
			background: #000;
			transition: 0.3s;
			-webkit-transition: 0.3s;
		}
		#menubtn .menu span:nth-of-type(1) {
			margin-top: -3px;
		}
		#menubtn .menu span:nth-of-type(2) {
			margin-top: 3px;
		}

		#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) {
				transform: translateY(-6px) rotate(155deg);
				margin-top: 6px;
			}
@media screen and (min-width: 768px) {
	#menubtn {
		display: none;
	}
}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	display: none;
}
@media screen and (max-width: 767px) {
	#menubox {
		width: 100%;
		height: 100vh;
		height: 100dvh;
		background: #22201E;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 22;
	}
		#menubox .menunav {
			display: block;
			width: 100%;
			height: 100%;
			padding: 32vw 12vw 12vw 12vw;
			overflow: hidden;
			overflow-y: scroll;
		}
			#menubox .menunav .nav a.linkbox {
				display: flex;
				justify-content: flex-start;
				align-items: baseline;
				border-top: solid 1px #535353;
				padding: 4vw;
				line-height: 1;
				background: url("img/common/btn_arrow_yellow.svg") no-repeat right 4vw center / 4vw;
			}
			#menubox .menunav .nav a.linkbox:nth-last-child(1) {
				border-bottom: solid 1px #535353;
			}
			#menubox .menunav .nav a.linkbox:hover {
				opacity: 0.7;
			}
				#menubox .menunav .nav a.linkbox .en {
					color: #AFAFAF;
					width: 20vw;
				}
	
		#menubox .menunav ul.btn-list {
			display: block;
			margin-top: 12vw;
		}
			#menubox .menunav ul.btn-list li {
				width: 100%;
				border-radius: 1vw;
				overflow: hidden;
			}
			#menubox .menunav ul.btn-list li.btn-cta {
				background: #0652E2;
				margin-bottom: 6vw;
			}
			#menubox .menunav ul.btn-list li.btn-external {
				background: #FF1010;
			}
				#menubox .menunav ul.btn-list li a {
					display: block;
					padding: 5vw;
					font-size: 4.0vw;
					font-weight: 700;
					line-height: 1;
					position: relative;
					z-index: 2;
				}
				#menubox .menunav ul.btn-list li.btn-cta a:after {
					content: "";
					width: 6vw;
					height: 6vw;
					background: url("img/common/btn_arrow_white.svg") no-repeat center / 100%;
					position: absolute;
					top: 50%;
					right: 5vw;
					margin-top: -3vw;
				}
				#menubox .menunav ul.btn-list li.btn-external a:after {
					content: "";
					width: 6vw;
					height: 6vw;
					background: url("img/common/btn_external_white.svg") no-repeat center / 100%;
					position: absolute;
					top: 50%;
					right: 5vw;
					margin-top: -3vw;
				}

				#menubox .menunav ul.btn-list li a:before {
					content: "";
					width: 0;
					height: 100%;
					position: absolute;
					top: 0;
					left: 0;
					z-index: -1;
				}
				#menubox .menunav ul.btn-list li.btn-cta a:before {
					background: #0034C3;
				}
				#menubox .menunav ul.btn-list li.btn-external a:before {
					background: #C30000;
				}
				#menubox .menunav ul.btn-list li a:hover:before {
					width: 100%;
				}
					#menubox .menunav ul.btn-list li a .en {
						display: block;
						font-size: 2.8vw;
						line-height: 1;
						margin-top: 3vw;
					}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle {
	width: 100%;
	margin-top: 7vw;
	position: relative;
	overflow: hidden;
}
#pagetitle:before {
	content: "";
	width: 100%;
	height: 5vw;
	background: #22201E;
	border-radius: 3vw 3vw 0 0;
	position: absolute;
	bottom: 0;
	left: 0;
}
#pagetitle.news {
	background: url("img/pagetitle/news_pht.jpg") no-repeat center / cover;
}
#pagetitle.matching {
	background: url("img/pagetitle/matching_pht.jpg") no-repeat center / cover;
}
#pagetitle.contact {
	background: url("img/pagetitle/contact_pht.jpg") no-repeat center / cover;
}
#pagetitle.entry {
	background: url("img/pagetitle/entry_pht.jpg") no-repeat center / cover;
}
	#pagetitle .inner-detail {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		height: 30vw;
	}
		#pagetitle .page-name {
			font-size: 2.8vw;
			font-weight: 700;
			line-height: 1.4em;
			margin-bottom: 8vw;
		}
			#pagetitle .page-name span {
				font-size: 2.0vw;
			}

		#pagetitle .breadcrumb {
			width: 100%;
			position: absolute;
			bottom: 0;
			left: 0;
			white-space: nowrap;
			overflow-x: scroll;
		}
		#pagetitle .breadcrumb::-webkit-scrollbar {
			width: 3px;
			height: 3px;
		}
		#pagetitle .breadcrumb::-webkit-scrollbar-track {
			background: none;
		}
		#pagetitle .breadcrumb::-webkit-scrollbar-thumb {
			background: rgba(255,255,255,0.3);
		}
@media screen and (max-width: 767px) {
	#pagetitle {
		margin-top: 16vw;
	}
	#pagetitle:before {
		height: 10vw;
		border-radius: 6vw 6vw 0 0;
	}
		#pagetitle .inner-detail {
			height: 56vw;
		}
			#pagetitle .page-name {
				font-size: 7.8vw;
				margin-bottom: 15vw;
			}
				#pagetitle .page-name span {
					font-size: 4.4vw;
				}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ボタン */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* btn */
.btn {
	width: 20vw;
	border-radius: 2.5vw;
	overflow: hidden;
	background: #fff;
}
.btn.btn-black {
	background: #22201E;
}
.btn.btn-blue {
	background: #0752E2;
}
.btn.btn-yellow {
	background: #EBFF00;
}
.btn.btn-red {
	background: #FF0F10;
}
.btn.btn-green {
	background: #03BFBB;
}
	.btn a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 5vw;
		font-size: 1.3vw;
		font-weight: 700;
		line-height: 1.3em;
		padding: 0 2vw;
		position: relative;
		z-index: 2;
	}
	.btn a:after {
		content: "";
		width: 2vw;
		height: 2vw;
		background: url("img/common/btn_arrow_white.svg") no-repeat center / 100%;
		position: absolute;
		top: 50%;
		right: 1.5vw;
		margin-top: -1vw;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
	.btn a:before {
		content: "";
		width: 0;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.btn a:hover:before {
		width: 100%;
	}

	.btn.btn-black a:hover {
		color: #22201E;
	}
	.btn.btn-black a:before {
		background: #EBFF00;
	}
	.btn.btn-black a:after {
		background: url("img/common/btn_arrow_yellow.svg") no-repeat center / 100%;
	}
	.btn.btn-black a:hover:after {
		background: url("img/common/btn_arrow_black.svg") no-repeat center / 100%;
	}

	.btn.btn-blue a:hover {
		color: #0752E2;
	}
	.btn.btn-blue a:hover:after {
		background: url("img/common/btn_arrow_blue.svg") no-repeat center / 100%;
	}

	.btn.btn-white-blue a {
		color: #0752E2;
	}
	.btn.btn-white-blue a:after {
		background: url("img/common/btn_arrow_blue.svg") no-repeat center / 100%;
	}
	.btn.btn-white-blue a:before {
		background: #0034C3;
	}
	.btn.btn-white-blue a:hover {
		color: #fff;
	}
	.btn.btn-white-blue a:hover:after {
		background: url("img/common/btn_arrow_white.svg") no-repeat center / 100%;
	}

	.btn.btn-yellow a {
		color: #21201E;
	}
	.btn.btn-yellow a:before {
		background: #fff;
	}
	.btn.btn-yellow a:after {
		background: url("img/common/btn_arrow_black.svg") no-repeat center / 100%;
	}
	.btn.btn-yellow a:hover:after {
		background: url("img/common/btn_arrow_black.svg") no-repeat center / 100%;
	}

	.btn.btn-red a:hover {
		color: #FF0F10;
	}
	.btn.btn-red a:hover:after {
		background: url("img/common/btn_arrow_red.svg") no-repeat center / 100%;
	}

	.btn.btn-white-red a {
		color: #FF0F10;
	}
	.btn.btn-white-red a:after {
		background: url("img/common/btn_arrow_red.svg") no-repeat center / 100%;
	}
	.btn.btn-white-red a:before {
		background: #C30000;
	}
	.btn.btn-white-red a:hover {
		color: #fff;
	}
	.btn.btn-white-red a:hover:after {
		background: url("img/common/btn_arrow_white.svg") no-repeat center / 100%;
	}

	.btn.btn-green a:hover {
		color: #03BFBB;
	}
	.btn.btn-green a:hover:after {
		background: url("img/common/btn_arrow_green.svg") no-repeat center / 100%;
	}
@media screen and (max-width: 767px) {
	.btn {
		width: 65vw;
		border-radius: 8vw;
	}
		.btn a {
			height: 16vw;
			font-size: 3.8vw;
			padding: 0 6vw;
		}
		.btn a:after {
			width: 6vw;
			height: 6vw;
			right: 5vw;
			margin-top: -3vw;
		}
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.sp {
	display: none;
}

/* main */
#main {
	display: block;
}
.inner {
	width: 90%;
	margin: 0 auto;
	position: relative;
}
.inner-detail {
	width: 84%;
	margin: 0 auto;
	position: relative;
}

/* 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.05);
		-moz-transform: scale(1.05);
		-o-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

/* wrap */
.wrap-beginning {
	padding-top: 5vw;
}
.wrap-top {
	padding-top: 10vw;
}
.wrap-bottom {
	padding-bottom: 10vw;
}

/* txt */
.txt-18 {
	font-size: 1.3vw;
	line-height: 2em;
}
.txt-16 {
	font-size: 1.15vw;
	line-height: 2em;
}
.txt-14 {
	font-size: 1.0vw;
	line-height: 2em;
}
.txt-12 {
	font-size: 0.85vw;
	line-height: 1.4em;
}

/* pagenavi */
.pagenavi {
	width: 100%;
	display: block;
}
.wp-pagenavi {
	clear: both;
	text-align: center;
	font-weight: 500;
}
.wp-pagenavi a, .wp-pagenavi span {
	display: inline-block;
	width: 3vw;
	height: 3vw;
	border-radius: 50%;
	font-family: "Schibsted Grotesk", sans-serif;
	font-weight: 400;
	font-size: 1.1vw;
	font-weight: 500;
	background: #22201E;
	border: none;
	color: #fff;
	text-align: center;
	line-height: 3vw;
	margin: 0 0.5vw;
	padding: 0;
	transition: 0.3s;
	-webkit-ransition: 0.3s;
}
.wp-pagenavi a:hover{
	opacity: 1;
	color: #22201E;
	font-weight: 700;
	background: #F1F1F1;
}
.wp-pagenavi span.current{
	color: #22201E;
	background: #fff;
	font-weight: 700;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: none;
}
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}
	.pc {
		display: none !important;
	}

	/* inner */
	.inner {
		width: 86%;
		margin: 0 auto;
		position: relative;
	}
	.inner-detail {
		width: 86%;
		margin: 0 auto;
		position: relative;
	}

	/* wrap */
	.wrap-beginning {
		padding-top: 10vw;
	}
	.wrap-top {
		padding-top: 10vw;
	}
	.wrap-bottom {
		padding-bottom: 10vw;
	}

	/* txt */
	.txt-18 {
		font-size: 4.2vw;
		line-height: 1.8em;
	}
	.txt-16 {
		font-size: 3.8vw;
		line-height: 1.8em;
	}
	.txt-14 {
		font-size: 3.4vw;
		line-height: 1.6em;
	}
	.txt-12 {
		font-size: 2.8vw;
		line-height: 1.4em;
	}

	/* pagenavi */
	.wp-pagenavi a, .wp-pagenavi span {
		width: 8vw;
		height: 8vw;
		font-size: 3.2vw;
		line-height: 8vw;
		margin: 0 1vw;
	}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	background: #22201E;
	padding: 6vw 0;
}
	#footer ul.btn-list {
		margin-bottom: 6vw;
	}
		#footer ul.btn-list li {
			width: 48%;
			border-radius: 0.5vw;
			overflow: hidden;
		}
		#footer ul.btn-list li.btn-cta {
			background: #0652E2;
		}
		#footer ul.btn-list li.btn-external {
			background: #FF1010;
		}
			#footer ul.btn-list li a {
				display: block;
				padding: 3vw;
				font-size: 2.1vw;
				font-weight: 700;
				line-height: 1;
				position: relative;
				z-index: 2;
			}
			#footer ul.btn-list li.btn-cta a:after {
				content: "";
				width: 2.4vw;
				height: 2.4vw;
				background: url("img/common/btn_arrow_white.svg") no-repeat center / 100%;
				position: absolute;
				top: 50%;
				right: 3vw;
				margin-top: -1.2vw;
			}
			#footer ul.btn-list li.btn-external a:after {
				content: "";
				width: 2.4vw;
				height: 2.4vw;
				background: url("img/common/btn_external_white.svg") no-repeat center / 100%;
				position: absolute;
				top: 50%;
				right: 3vw;
				margin-top: -1.2vw;
			}

			#footer ul.btn-list li a:before {
				content: "";
				width: 0;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				z-index: -1;
			}
			#footer ul.btn-list li.btn-cta a:before {
				background: #0034C3;
			}
			#footer ul.btn-list li.btn-external a:before {
				background: #C30000;
			}
			#footer ul.btn-list li a:hover:before {
				width: 100%;
			}
				#footer ul.btn-list li a .en {
					display: block;
					font-size: 1.0vw;
					line-height: 1;
					margin-top: 1vw;
				}

	#footer .area .nav {
		width: 48%;
		order: 2;
	}
		#footer .area .nav a.linkbox {
			display: flex;
			justify-content: flex-start;
			align-items: baseline;
			border-top: solid 1px #535353;
			padding: 1.2vw;
			line-height: 1;
			background: url("img/common/btn_arrow_yellow.svg") no-repeat right 2vw center / 1.5vw;
		}
		#footer .area .nav a.linkbox:nth-last-child(1) {
			border-bottom: solid 1px #535353;
		}
		#footer .area .nav a.linkbox:hover {
			opacity: 0.7;
		}
			#footer .area .nav a.linkbox .en {
				color: #AFAFAF;
				width: 7vw;
			}

	#footer .area .profile {
		width: 48%;
		order: 1;
	}
		#footer .area .profile .name {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			margin-bottom: 3vw;
		}
			#footer .area .profile .name img {
				width: 20%;
			}

			#footer .area .profile .name h3 {
				font-size: 1.3vw;
				letter-spacing: 0.06em;
				line-height: 1.4em;
				padding-left: 2vw;
			}
				#footer .area .profile .name h3 .jp {
					font-size: 1.0vw;
				}
				#footer .area .profile .name h3 .en {
					font-size: 0.8vw;
				}

		#footer .area .profile .access {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			margin-bottom: 10vw;
		}
			#footer .area .profile .access .txt-14 {
				line-height: 1.8em;
			}
@media screen and (max-width: 767px) {
	#footer {
		background: #22201E;
		padding: 12vw 0 22vw 0;
	}
		#footer ul.btn-list {
			display: block;
			margin-bottom: 12vw;
		}
			#footer ul.btn-list li {
				width: 100%;
				border-radius: 1vw;
			}
			#footer ul.btn-list li.btn-cta {
				margin-bottom: 6vw;
			}
				#footer ul.btn-list li a {
					padding: 5vw;
					font-size: 4.0vw;
				}
				#footer ul.btn-list li.btn-cta a:after {
					width: 6vw;
					height: 6vw;
					right: 5vw;
					margin-top: -3vw;
				}
				#footer ul.btn-list li.btn-external a:after {
					width: 6vw;
					height: 6vw;
					right: 5vw;
					margin-top: -3vw;
				}
					#footer ul.btn-list li a .en {
						font-size: 2.8vw;
						margin-top: 3vw;
					}

		#footer .area {
			display: block;
		}
			#footer .area .nav {
				width: 100%;
				margin-bottom: 12vw;
			}
				#footer .area .nav a.linkbox {
					display: flex;
					justify-content: flex-start;
					align-items: baseline;
					border-top: solid 1px #535353;
					padding: 4vw;
					line-height: 1;
					background: url("img/common/btn_arrow_yellow.svg") no-repeat right 4vw center / 4vw;
				}
				#footer .area .nav a.linkbox:nth-last-child(1) {
					border-bottom: solid 1px #535353;
				}
					#footer .area .nav a.linkbox .en {
						color: #AFAFAF;
						width: 20vw;
					}

			#footer .area .profile {
				width: 100%;
			}
				#footer .area .profile .name {
					margin-bottom: 6vw;
				}
					#footer .area .profile .name img {
						width: 24%;
					}

					#footer .area .profile .name h3 {
						font-size: 3.2vw;
						letter-spacing: 0.02em;
						line-height: 1.6em;
						padding-left: 4vw;
					}
						#footer .area .profile .name h3 .jp {
							font-size: 3.0vw;
						}
						#footer .area .profile .name h3 .en {
							font-size: 2.8vw;
						}

				#footer .area .profile .access {
					margin-bottom: 10vw;
				}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* アニメーション */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.img-wrap {
	opacity: 0;
}
.img-wrap.img-animation {
	animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
	position: relative;
	opacity: 1;
}
.img-wrap.img-animation:before {
  animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.img-wrap-yellow.img-animation:before {
  background: #EAFF00;
}
.img-wrap-blue.img-animation:before {
  background: #0752E2;
}
.img-wrap-red.img-animation:before {
  background: #FF1010;
}
.img-wrap-green.img-animation:before {
  background: #00BFBB;
}
@keyframes img-opacity {
  0% {
	opacity: 0;
  }
	
}
@keyframes img-animation {
  100% {
	transform: translateX(101%);
	opacity: 1;
  }
}


.smoothText {
	overflow: hidden;
	display: block;
}
.smoothTextTrigger{
	transition: .9s ease-in-out;
	transform: translate3d(0,100%,0) skewY(12deg);
	transform-origin: left;
	display: block;
}
.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}


























