﻿@charset "utf-8";

/**  Bass  **/

@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/css?family=Vollkorn:400,700);

* {
	border: none;
	margin: 0px;
	padding: 0px;
	font-weight: 400;
	font-size: inherit;
}
html {
	-webkit-text-size-adjust: 100%;
}
section, article, aside, dialog, figure, footer, header, hgroup, nav, li {
	display: block;
}
body {
	margin: 0px;
	font-size: 14px;
	font-family: 'Lato', "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, sans-serif;
	line-height: 1.8;
	letter-spacing: 0.1em;
	text-align: center;
	color: #333;
	background-color: #FBF9F3;
}
.serif {
	font-family: "Vollkorn", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝B", "ＭＳ Ｐ明朝", serif;
}
::selection {
    background: #1d6aa6; /*背景色*/
    color: #fff; /*文字色*/
}
::-moz-selection {
    background: #1d6aa6; /*背景色*/
    color: #fff; /*文字色*/
}

a {
	color: #2A98ED;
	outline: none;
	text-decoration: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
.noef a {
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
}
a:hover {
	color: #62B9F7;
	text-decoration: underline;
	text-shadow: 0 0 6px rgba(98,185,247,0.3);
}
a.hover {
	cursor: pointer;
}
li {
	list-style-type: none;
}

.fade {
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
.fade:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
} 

/* clearfix */

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}


/** header **/

#header {
	background-color: #19a0ce;
	color: white;
	display: table;
	width: 100%;
}
#header .header_box {
	display: table-cell;
	vertical-align:middle;
}
#header h1 {
	font-size: 60px;
}
#header h1 span {
	font-size: 130%;
}
#header p {
	font-size: 30px;
	line-height: 1;
	margin-top:-20px;
}


/** main_img **/

#main_img {
	background-color: #0C7DA4;
	width: 100%;
	height: auto;
}
#main_img p {
	margin: 0 auto;
	padding: 80px 0px ;
	width: 100%;
}
#main_img img {
	width: 600px;
	border: 5px solid white;
}



/** contents **/

.contents {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	padding: 60px 0 80px;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto;
  
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.tracklist {
	text-align: left;
	width:450px;
	margin: 0 auto;
}
.tracklist h2 {
	font-size: 40px;
	font-weight: bold;
	color: #19a0ce;
	text-align: center;
	margin-bottom: 10px;
}
.tracklist p {
	font-size: 26px;
	color: #19a0ce;
}
.tracklist p span {
	font-weight: bold;
	display:inline-block;
	margin-right:10px;
}

.link {
	display: inline-block;
	width: 250px;
	text-align: center;
	text-decoration: none;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: #19a0ce;
	border: 2px solid #19a0ce;
	color: white;
	line-height: 50px;
	margin: 40px auto 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.link a {
	color: white;
	font-weight: bold;
	font-size: 16px;
	display: block;
}
.link:hover {
	background-color: #FBF9F3;
	border-color: #19a0ce;
}
.link:hover a {
	color: #19a0ce;
	text-decoration: none;
}


/** footer **/

#footer {
	background-color: #19a0ce;
	color: white;
	height: 280px;
}
#footer p {
	padding-top: 70px;
}
#footer p span {
	font-weight: bold;
}
#footer ul {
	clear: both;
	width: 300px;
	margin: 10px auto 0;
}
#footer ul li {
	float: left;
	width: 100px;
	color: #fff;
}
#footer ul li:first-child  {
	margin-left: 0;
}
#footer ul li a {
	color: #fff;
	font-size: 40px;
}
#footer ul li a i {
	color: #fff;
}


@media screen and (max-width: 600px) {
	#header h1 {
		font-size: 26px;
	}
	#header p {
		font-size: 16px;
		margin-top:0px;
	}

	
	/** main_img **/

	#main_img {
		background-color: #1d6aa6;
		width: 100%;
		height: auto;
	}
	#main_img p {
		margin: 0 auto;
		padding: 60px 5px 50px;
		width: 100%;
		-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
	#main_img img {
		width: 90%;
		margin: 0 auto;
		border: 5px solid white;
		-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
	
	
	.contents {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	padding: 40px 0 60px;
}
	.tracklist {
	text-align: left;
	width:100%;
	margin: 0 auto;
}
	.tracklist h2 {
	font-size: 20px;
	font-weight: bold;
	color: #19a0ce;
	text-align: center;
	margin-bottom: 10px;
}
.tracklist p {
	font-size: 16px;
	color: #19a0ce;
	text-align:center;
}
	
	/** footer **/
	
	#footer {
		background-color: #62B9F7;
		color: white;
		height: 240px;
	}
	#footer p {
		padding-top: 60px;
		letter-spacing: 0.05em;
	}
	#footer ul {
		clear: both;
		width: 175px;
		margin: 20px auto 0;
	}
	#footer ul li {
		width: 45px;
		float: left;
		margin-left: 20px;
	}
	#footer ul li img {
		width: 45px;
	}
	#footer ul li:first-child  {
		margin-left: 0;
	}
}