@charset "utf-8";

/*----------------------------------------------------------------
 MainLayout
 -----------------------------------------------------------------
 c/p
 <link href="./common/css/layout.css" rel="stylesheet" type="text/css" media="screen,print" />
----------------------------------------------------------------*/
/*----------------------------------------------------------------
 base
----------------------------------------------------------------*/
html,body{
	font-size			: 50%; /* 8px */
}
@media screen and (min-width: 768px) {
html,body{
	font-size			: 62.5%; /* 10px */
}
}
body{
	font-size			: 1.6rem;
	font-family			: "ヒラギノ角ゴ Pro",'Hiragino Kaku Gothic Pro',"メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
	font-weight			: 300;
	line-height			: 1.8;
	color				: #333;
}

/* inline element
-----------------------------------------------------*/

/* link
----------------------------------*/
a{
	text-decoration		: underline;
	color: #333;
}
a:hover{
	text-decoration		: none;
}
a[name]{
	text-decoration		: none;
	color				: #333;
}

.twitter a:hover	{ color: #00aced!important; }
.facebook a:hover	{ color: #315096!important; }
.instagram a:hover	{ color: #3f729b!important; }
.youtube a:hover	{ color: #cd201f!important; }
.soundcloud a:hover	{ color: #ff8800!important; }
.nico2 a svg		{ fill: #CCC; }
.nico2 a:hover svg	{ fill: #2D2D2D; }


/*-----------------------------------------------------
 class
-----------------------------------------------------*/
/* responsive svg
-----------------------------------------------------*/
.svg_wrapper {
	position			: relative;
	height				: 0;
	padding-top			: 15.3%;
}
.svg_wrapper svg {
	display				: block;
	position			: absolute;
	top					: 0;
	left				: 0;
	height				: 100%;
	width				: 100%;
}
@media screen and (min-width: 768px){
.svg_wrapper { padding-top: 9.3%; }
}
/* br
-----------------------------------------------------*/
@media screen and (min-width: 768px) { .br_sp{ display: none; } }

/* hide
-----------------------------------------------------*/
@media screen and (max-width: 768px) { [data-show=hide_sp]{ display: none; } }
@media screen and (min-width: 768px) { [data-show=hide_pc]{ display: none; } }

/* view
-----------------------------------------------------*/
@media screen and (max-width: 768px) { [data-show=show_sp]{ display: block; } }
@media screen and (min-width: 768px) { [data-show=show_pc]{ display: block; } }

/* separater line
-----------------------------------------------------*/
hr.separater{ display: none; }

/* anchor(pagetop)
-----------------------------------------------------*/
p.anchor{
	visibility			: hidden;
	position			: absolute;
	top					: 0px;
	left				: 0px;
}

/* navi-opener
-----------------------------------------------------*/
.navi-opener{
	position			: fixed;
	top					: 0px;
	right				: 0px;
	z-index				: 100;
	cursor				: pointer;
	width				: 78px;
	height				: 4.5rem;
	padding				: 0 2rem 0 0;
	text-align			: left;
	line-height			: 4.5rem;
	font-size			: 2rem;
	font-family			: 'Open Sans', sans-serif;
	color				: #666666;
}
.navi-opener .bar {
	transition			: all 0.2s ease 0s;
	display				: block;
	position			: absolute;
	top					: 50%;
	right				: 1rem;
	margin				: -1px 0 0 -7px;
	width				: 20px;
	height				: 3px;
	background			: #666;
}

.navi-opener .bar::before,
.navi-opener .bar::after {
	transition			: all 0.3s ease 0s;
	content				: " ";
	display				: block;
	position			: absolute;
	top					: 50%;
	right				: 0;
	width				: 20px;
	height				: 3px;
	background			: #666;
}
.navi-opener .bar::before	{ margin-top: -9px; }
.navi-opener .bar::after	{ margin-top: 6px; }

/* open */
.navi-opener.open .bar { background: transparent; }
.navi-opener.open .bar::before,
.navi-opener.open .bar::after	{ margin-top: 0; }
.navi-opener.open .bar::before	{ transform: rotate(-45deg); }
.navi-opener.open .bar::after	{ transform: rotate(-135deg); }


/*----------------------------------------------------------------
 layout
----------------------------------------------------------------*/
/*-----------------------------------------------------
 wrap
-----------------------------------------------------*/
.wrap{
	position			: relative;
	overflow			: hidden;
}
#wrap{
	width				: 100%;
}

/*-----------------------------------------------------
 area
-----------------------------------------------------*/
.area{
	position			: relative;
	overflow			: hidden;
	clear				: both;
}
#header{
	z-index				: 10;
	width				: 100%;
	text-align			: center;
	min-height			: 18vh;
}
#mainview{
	position			: fixed;
	left				: 0px;
	top					: 0px;
	z-index				: 9;
	width				: 100%;
	text-align			: center;
	min-height			: 18vh;
}
#navigation{
	position			: fixed;
	left				: 0px;
	top					: 0px;
	z-index				: 20;
	width				: 100%;
	height				: 100%;
	background			: rgba(255,255,255,0.85);
}
#contents{
	z-index				: 11;
	background			: #FFF;
}
#main{
	opacity: 0;
}
#footer{
	z-index				: 11;
	border-top			: 1px solid #666;
	background			: #FFF;
	text-align			: center;
}
@media screen and (min-width: 768px){
#mainview,
#header{ min-height: 200px; }
#navigation{
	width				: 100%;
	background			: #fff;
	height				: auto;
}
}

/*-----------------------------------------------------
 container
-----------------------------------------------------*/
.container{
	position			: relative;
	overflow			: hidden;
	clear				: both;
	margin				: 0 auto;
	width				: 95vw;
}
#header .container{ height: 100%; }
#mainview .container{}
#navigation .container{ width: 100vw; }
#contents .container{}
#contents .column-container{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
}
#footer .container{ padding: 2rem 0; }
@media screen and (min-width: 768px){
#navigation .container{
	width				: 95vw;
	height				: 77px;
}
}
@media screen and (min-width: 1000px){
.container,
#navigation .container,
#mainview .container{ width: 970px; }
#header .container{
	padding				: 0;
	height				: 100%;
}
}

/*-----------------------------------------------------
 column
-----------------------------------------------------*/
.column{
	position			: relative;
	overflow			: hidden;
	clear				: both;
	margin				: 3rem 0;
	/*border: 1px solid red;*/
}
#social-link{}

@media screen and (min-width: 768px){
.column{
	margin				: 7rem 0;
}
.column:first-child{
	margin				: 9rem 0 7rem 0;
}
#social-link{
	position			: absolute;
	top					: 1rem;
	margin				: 0;
	width				: 100%;
	height				: 5rem;
}
}

/*----------------------------------------------------------------
 styles
----------------------------------------------------------------*/

/*-----------------------------------------------------
 header
-----------------------------------------------------*/
#header .logo {
	position		: relative;
	margin			: 0 auto;
	width			: 96vw;
	height			: 18vh;
	line-height		: 1rem;
}
#header .logo img{
	position		: absolute;
	bottom			: -1px;
	left			: 0;
}
@media screen and (min-width: 768px){
#header .logo {
	position		: relative;
	margin			: 0 auto;
	width			: 100%;
	height			: 200px;
	padding			: 142px 0 0 0;
	text-align		: center;
	line-height		: 1rem;
}
#header .logo img{ position: static; }
}
@media screen and (min-width: 1000px){
#header .logo { width: 970px; }
}
/*-----------------------------------------------------
 mainview
-----------------------------------------------------*/
#mainview p{ overflow: hidden; }
#mainview img{
	position		: absolute;
	left			: -10%;
	top				: -30%;
	width			: 120%;
	max-width		: 120%;
}
@media screen and (min-width: 768px){
#mainview img{
	position			: relative;
	top					: -20px;
	left				: auto;
	width				: auto;
	max-width			: 100%;
}
}
/*-----------------------------------------------------
 navigation
-----------------------------------------------------*/
#navigation .navi{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction		: column;
	margin				: 5rem 0 0 0;
	border-top			: 1px solid #ccc;
	font-family			: 'Open Sans', sans-serif;
	font-weight			: 300;
	font-style			: italic;
	font-size			: 1.8rem;
}
#navigation .navi li{
	list-style			: none outside;
	position			: relative;
	border-bottom		: 1px solid #ccc;
}
#navigation .navi li a{
	display				: block;
	height				: 5rem;
	padding				: 0 2rem;
	background			: rgba(255,255,255,0.5);
	line-height			: 5rem;
	text-decoration		: none;
	color				: #666;
}
#navigation .navi li a:hover{
	background			: rgba(255,255,255,0.8);
}
#navigation .navi li a:after{
	content				: "";
	position			: absolute;
	top					: 30%;
	right				: 2rem;
	line-height			: 1;
	font-style			: normal;
	font-family			: "FontAwesome", sans-serif;
	font-size			: 2rem;
}
@media screen and (min-width: 768px){
#navigation .navi{
	display				: block;
	overflow			: visible;
	margin				: 0;
	border				: none;
	height				: 8rem;
	padding				: 1.8rem 0 0.9rem 0;
	text-align			: center;
	font-size			: 2rem;
	font-style			: normal;
	font-weight			: 300;
}
#navigation .navi li{
	overflow			: visible;
	display				: inline-block;
	padding				: 0;
	border				: none;
	width				: auto;
}
#navigation .navi li a{
	transition			: all 0.2s ease 0s;
	display				: inline-block;
	margin				: 0 0.9rem;
	width				: auto;
	height				: auto;
	line-height			: 3rem;
	padding				: 0 0 0.5rem 0;
	background			: none;
	text-align			: center;
	line-height			: 1;
	color				: #666;
}
#navigation .navi li a:after{
	content				: "";
	display				: none;
}
#navigation .navi li.current-menu-item a,
#navigation .navi li a:hover{
	background			: none;
	box-shadow			: 0 7px 0 #DBE43F;
}
}
@media screen and (min-width: 1000px){
#navigation .navi{ font-size: 2.4rem; }
#navigation .navi li a{ margin: 0 1.5rem; }
}

/*-----------------------------------------------------
 contents
-----------------------------------------------------*/
/*-----------------------------------------------------
 social-link
-----------------------------------------------------*/
#contents #social-link ul{ text-align: center; }
#contents #social-link ul li{
	display				: inline-block;
	list-style			: none;
	margin				: 0 0.5rem;
	font-size			: 3.2rem;
}
#contents #social-link ul li a{
	color				: #CCC;
}
@media screen and (min-width: 768px){
#contents #social-link ul{
	margin				: 0;
	padding				: 1rem;
	text-align			: right;
	line-height			: 1;
}
#contents #social-link ul li{ margin: 0 0.25rem; }
}

/*-----------------------------------------------------
 footer
-----------------------------------------------------*/
#footer img{
	margin				: 0 0.4rem;
	height				: 1.6rem;
	vertical-align		: -0.1rem;
}