@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500&display=swap&subset=japanese');
/*--------------------------------------------------------------------------------------------------

   common

--------------------------------------------------------------------------------------------------*/


/*reset-------------------------------------------------*/
*, *:before, *:after {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 box-sizing: border-box;
}

body,div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd {
	margin: 0;
	padding: 0;
}

table {
 border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: none;
	vertical-align: top;
  -webkit-backface-visibility: hidden;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

header,section,article,aside,footer,nav {
 display: block;
}

:focus {
    outline: none;
}
/*-------------------------------------------------reset*/


/*common-------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	line-height: 1.8;
	font-weight: 300;
}

a:link {
	color: #898989;
	text-decoration: none;
}

a:visited {
	color: #898989;
}

a:hover, a:active {
	color: #898989;
}

.clear:after {
 content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */

.alignleft {
	float: left;
	margin: 0 10px 10px 0;
}

.alignright {
	float: right;
	margin: 0 0 10px 10px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

@keyframes fadeinop {
 0% {
  opacity: 0;
	}
 100% {
  opacity: 1;
	}
}

@keyframes fadeinbt {
 0% {
  opacity: 0;
  transform: translateY(60px);
 }
 100% {
  opacity: 1;
  transform: translateY(0);
 }
}

@keyframes fadeinlr {
 0% {
  opacity: 0;
  transform: translateX(-60px);
 }
 100% {
  opacity: 1;
  transform: translateX(0);
 }
}

@keyframes fadeinrl {
 0% {
  opacity: 0;
  transform: translateX(60px);
 }
 100% {
  opacity: 1;
  transform: translateX(0);
 }
}

/*-------------------------------------------------common*/


/*------------------------------------------------------------------------------------------------
  body
--------------------------------------------------------------------------------------------------*/
#title {
	position: fixed;
	width: 100%;
	height: 80px;
	z-index: 100;
	background-color: rgba(0, 0, 0, .6);
}

#title h1 {
	width: 86%;
	margin: 0 auto;
	color: #FFF;
	font-size: 21px;
	font-weight: 300;
	line-height: 80px;
	letter-spacing: 2px;
}

.menubtn {
	display: none;
}

#menusp {
	display: none;
}

#menu {
	position: fixed;
	width: 100%;
	top: 80px;	
	z-index: 110;
	padding: 40px 0;
}

.fadein {
	opacity: 0;
 animation-name: fadeinop;
 animation-duration: 2s;
	animation-iteration-count: 1;
 animation-fill-mode: forwards;
}

#menu #nav {
	width: 86%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	font-size: 14px;
}

#menu #nav li {
	margin: 0 40px 0 0;
	letter-spacing: 0.5px;
}

#menu .active {
	color: #221815;
}

#scroll {
	position: fixed;
	width: 100%;
	z-index: 130;
	bottom: 6%;
	left: 90%;
	opacity: 0;
}

.fadeInScroll {
	opacity: 0;
 animation-name: fadeinbt;
 animation-duration: 2s;
	animation-iteration-count: 1;
 animation-fill-mode: forwards;
}

#copy {
	width: 100%;
	height: 8%;
	color: #898989;
	position: fixed;
	z-index: 120;
	bottom: 0;
	font-size: 14px;
	padding: 10px 0 0;
	opacity: 0;
}

#copy p {
	width: 70%;
	margin: 0 auto;
	text-align: right;
}

.fadeInLtor {
	opacity: 0;
 animation-name: fadeinlr;
 animation-duration: 2s;
	animation-iteration-count: 1;
 animation-fill-mode: forwards;
}

.fadeInLtol {
	opacity: 0;
 animation-name: fadeinrl;
 animation-duration: 2s;
	animation-iteration-count: 1;
 animation-fill-mode: forwards;
}


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

body {
	position: relative;
 -webkit-text-size-adjust: none;
	margin: 0;
	padding: 0;
	color: #333333;
 left: 0;
}

#title {
	height: 40px;
}

#title h1 {
	width: 100%;
	margin: 0 auto 0 20px;
	font-size: 16px;
	line-height: 40px;
}

.menubtn {
	display: block;
	position:absolute;
	right: 10px;
	top: 6px;
	width: 28px;
	height: 28px;
	cursor:pointer;
}

.menubtn span {
	position:absolute;
	width: 28px;
	height:3px;
	background: rgba(255,255,255, .8);
	transition:0.3s;
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	left: 0;
}

.menubtn span.top {
	top: 8px;
}

.menubtn span.bottom {
	top: 16px;
}

.menubtn span.menuclick1 {
	transform:rotate(-315deg);
	top: 13px;
}

.menubtn span.menuclick3 {
	transform:rotate(315deg);
	top: 13px;
}

#menu {
	display: none;
}

#menusp {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index: 200;
	top: 40px;
}

#menusp ul {
	margin: 0;
	padding: 40px 20px 20px;
	list-style: none;
}

#menusp ul li {
	margin: 0 0 20px;
}

#menusp ul li a {
	font-size: 20px;
	color: #666;
}

#scroll {
	width: 98%;
	margin: 0 auto;
	left: 80%;
}

#scroll a {
	display: block;
}

#copy {
	height: auto;
	font-size: 12px;
	padding-bottom: 6px;
}

#copy p {
	width: 100%;
	text-align: center;
}



}