@charset "utf-8";

html {
	font-size: 62.5%;
}

body {
	font-family:"Segoe UI","Segoe UI Black", "Segoe UI Bold", "Segoe UI Semibold", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro;
	font-size: 10px;
	font-size: 1rem;
	color: #fff;

	background-image: url(../images/bg_img01.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}

/* スクロールゲージ */
.progress {
	width: 5px;
	height: 100%;
	background: #ed7a27;
	position: fixed;
	right: 0;
	top: 0;
	animation: progressBar 0.1s linear;
	animation-timeline: scroll();
	transform-origin: top right;
}
@keyframes progressBar {
	0% {
		transform: scaleY(0);
	}
	100% {
		transform: scaleY(1);
	}
}
/* スクロールゲージ終わり */

/* ヘッダーボタン */
nav {
	margin: auto;
	font-family: Segoe UI Bold;
}

nav ul {
	display: flex;
}

nav ul li {
	background-color: #000;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin: auto;
	flex: 1;
}

nav ul li a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 21px;
}

nav ul li a:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
	margin: -1px;
}
/* ヘッダーボタン終わり */


/* ヘッダーボタン位置 */
header {
	width: 100%;
	height: 0px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1000;
}

nav {
	width: 1500px;
	float: center;
}

nav ul li {
	margin: 40px;
	float: center;
}
/* ヘッダーボタン位置終わり */

/* ハンバーガーメニュー */
.line a {
	position: relative;
	font-size: 1.6rem;
	text-decoration: none;
	color: #fff;
}

.line a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ed7a27;
	transform: scale(0);
	transform-origin: center top;
	transition: .3s;
}

.line a:hover::after {
	transform: scale(1);
}


.toggle,
.rpMenu {
	display: none;
}


/* スクロール誘導アニメ */
.induction {
	position: relative;
	top: -200px;
	width: 24px;
	height: 24px;
	margin-left: auto;
	margin-right: auto;
}

.chevron {
	position: absolute;
	width: 28px;
	height: 8px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
	animation: move 3s ease-out infinite;
}

.chevron:first-child {
	animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
	animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
	content: ' ';
	position: absolute;
	top: 0;
	height: 100%;
	width: 51%;
	margin-left: auto;
	margin-right: auto;
	background: #000;
}

.chevron:before {
	left: 0;
	transform: skew(0deg, 30deg);
}

.chevron:after {
	right: 0;
	width: 50%;
	transform: skew(0deg, -30deg);
}

@keyframes move {
	25% {
		opacity: 1;

	}
	33% {
		opacity: 1;
		transform: translateY(30px);
	}
	67% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 0;
		transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
	}
}

.text {
	display: block;
	margin-top: 75px;
	margin-left: -30px;
	font-family: "Segoe UI","Segoe UI Black", "Segoe UI Bold", "Segoe UI Semibold",;
	font-size: 12px;
	color: #000;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: .25;
	animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
	to {
		opacity: 1;
	}
}
/* スクロール誘導アニメ終わり */


/* ここからコンテンツ */
#main img {
	width: 100%;
	height: 650px;
}
/* profile */
article {
	padding-top: 40px;
}

#pimg {
	text-align: center;
	margin-bottom: -10px;
}

.inner {
	width: 980px;
	margin: 0 auto;
	text-align: center;
}

#profile h1 {
	font-size: 4.5rem;
	margin-bottom: 30px;
}

#profile h2 {
	font-size: 3rem;
	margin: 30px 0;
}

#profile p {
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 2px;
}


/* copyright */
footer {
	background-color: #000;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #fff;
	font-size: 1.8rem;
	margin-top: 60px;
}

/* pageTopBtn */
#page_top {
	position: fixed;
	bottom: 60px;
	right: 20px;
	font-size: 1rem;
}

#page_top a {
	display: block;
	width: 100px;
	padding: 30px 0;
	text-align: center;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

#page_top a:hover {
	background-color: #fff;
	color: #000;
	border: 2px solid #aaa;
	margin: -2px;
}




/*************** responsive *******************/

@media screen and (max-width:768px) {


nav {
	display: none;
}

.inner {
	width: 307px;
}

.bg_img01 {
	display: none;
}

.bgImg {
	display: block;
	margin-bottom: -2px;
}

h2 {
	font-size: 4rem;
}


footer {
	font-size: 1.2rem;
}

#page_top a {
	width: 80px;
	padding: 20px 0;
}

.toggle {
	display: block;
	position: fixed;
	top: 3px;
	right: 13px;
	width: 42px;
	height: 51px;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}

.toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 2px solid #eee;
	transition: 0.35s ease-in-out;
}

.toggle span:first-child {
	top: 9px;
}

.toggle span:nth-child(2) {
	top: 18px;
}

.toggle span:nth-child(3) {
	top: 27px;
}

.toggle span:last-child {
	border: none;
	color: #eee;
	font-size: 1rem;
	font-weight: bold;
	top: 34px;
}

.toggle.active span:first-child {
	top: 18px;
	transform: rotate(-45deg);
}

.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
	top:18px;
	transform: rotate(45deg);
}

.rpMenu {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	text-align: center;
	z-index: 1;
	width: 100%;
	transform: translateY(-100%);
	transition: all 0.6s;
}

.rpMenu ul {
	margin-top: 0;
}

.rpMenu ul li {
	width: 100%;
	border-bottom: 1px solid #333;
	margin-right: 0;
}

.rpMenu ul li a {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	color: #fff;
	font-size: 1.4rem;
}

.rpMenu ul li:nth-child(n+6) a {
	padding: 10px 0;
}

.rpMenu ul li a:hover {
	background-color: #fff;
	color: #999;
}

.rpMenu.active {
	transform: translateY(0%);
}





}
/////////////////////
