@charset "utf-8";
body {
	font: 14px/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
li {
	line-height: 1.6em;	
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 0.7em 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
/*	padding-right: 15px;
	padding-left: 15px;*/ /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {
	color: #3f67e1;	
	font-family: "Century Gothic", CenturyGothic, AppleGothic, verdana, sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.2em;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link, a:visited {
	color: #327ED6;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: underline;
}


/* ~~ text ~~ */
.txt-blue {
	color: #327ED6;
}

.txt-red {
	color: #FF0000;	
}

.txt-gray {
	color: #333;
}

.txt-small {
	font-size: 12px;
}

.jp {
	font-family: Verdana, Roboto, “Droid Sans”, “游ゴシック”, YuGothic, “ヒラギノ角ゴ ProN W3”, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
}

.indent {
	margin: 0;
	padding: 0 30px 30px 30px;
}

label {
	display: inline-block;
	width: 100px;
	padding: 12px 0;
	vertical-align: top;
}
input[type=text], input[type=email], select {
    width: 800px;
    padding: 12px 20px;
    margin: 0 0 8px 0;
    display: inline-block;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

textarea {
    width: 800px;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}
input[type=button], input[type=submit], input[type=reset], button[type=submit] {
    background-color: #008CBA;
    color: white;
    border: 2px solid #008CBA;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover, button[type=submit]:hover {
    background-color: white; 
    color: black; 
}



/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 1060px;
	background-color: #fff;
	margin: 0 auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
header {
	padding: 0 15px;
}

header h1 {
	padding-top: 15px;
	font-size: 30px;
}

header a {
	color: #1e367c;	
	text-decoration: none;
}
header a:hover, a:active, a:focus { 
	text-decoration: none;
}

/* ~~ Navigation ~~ */
nav {
	padding-top: 60px;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, verdana, sans-serif;
}

nav a {
	display: inline-block;
	margin: 0 0 20px 20px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1em;
}

nav a:hover, nav a.current {
	color: #3f67e1;	
	text-shadow: 2px 2px 4px #a3d4ff;
}

nav i {
	vertical-align: text-bottom;	
}


/* ~~ Main ~~ */
main {
}

.centre {
	padding: 30px 0 25px 0;
	text-align: center;

}

.centre h1 {
	font-size: 2.8em;
}

.centre p {
	font-size: 18px;
	color: #333366;
}

.centre h2 {
	color: #0072ff;
	font-size: 2.2em;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-style:italic;
	font-weight: normal;
}

.error h2 {
	color: #0072ff;
	font-size: 2.2em;
	font-style:italic;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.error .email-link {
	color: #327ED6;
	text-decoration: underline;
}

.error .email-link:hover {
	opacity: 0.6;
}

/** polaroid **/
.polaroid-v {
  position: relative;
  width: 300px;
  margin-right: 33px;
  margin-bottom: 20px;
}

.polaroid-h {
  position: relative;
  width: 480px;
  margin-bottom: 20px;
}

.polaroid-v img, .polaroid-h img {
  border: 10px solid #fff;
  border-bottom: 60px solid #fff;
  -webkit-box-shadow: 5px 5px 5px #777;
     -moz-box-shadow: 5px 5px 5px #777;
          box-shadow: 5px 5px 5px #777;
}

.polaroid-v p, .polaroid-h p {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 0px;
  font:12px/1.1 Georgia, "Times New Roman", Times, serif;
  color: #333;
}


/* ~~ The footer ~~ */
footer {
	padding: 50px 0;
	text-align: center;
	border-top: 2px solid #6dcff6;
}

footer .links {
	margin-bottom: 20px;
}

footer .links a {
	margin: 0 10px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	display: inline-block;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


/* ~~ Index ~~ */
.sky {
  position: relative;
}

.sky-img { 
  width: 100%;
  height: auto;
}

.welcome {
  position: absolute;
  top: 3em;
  right: 0;
  text-align: center;
	color: #fff;
}

.welcome h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-style:italic;
	font-size: 2.8em;
	color: #fff;
}

.sky-img2 {
  position: absolute;
  bottom: 2em;
  right: 5em;
  -ms-transform: rotate(-10deg); /* IE 9 */
  -webkit-transform: rotate(-10deg); /* Safari 3-8 */
  transform: rotate(-10deg);
}

.sky-img2 img {
  border-bottom-width: 10px;
}

.news {
	margin-top: 3.5em;
	padding: 4em;
	width: 80%;
	text-align: left;
	background-image: url(images/cloud-1.png);
	background-size: 100% 100%;
	color: #0046a7;
/*
	background: rgba(255, 255, 255, 0.2);	
*/
}

.news-left-col {
	float: left;
	width: 20%;
	box-sizing: border-box;
	padding-right: 16px;
}

.news-right-col {
	float: left;
	width: 80%;
	box-sizing: border-box;
}

.news-right-col .news-list {
	list-style-position: outside;
	padding-left: 1em;
}

.news h4 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.6em;
	font-style: italic;
	text-decoration: underline;
	margin-bottom: 0.4em;
	line-height: 1em;
}

.piano {
	width: 100%;
}

.greeting, .greeting-jp {
	margin: 30px 0;
	background: url(images/music-sheet.jpg) no-repeat;
	background-size: cover;
}

.greeting img {
	margin-right: 20px;
}

.greeting-jp img {
	margin-left: 20px;
}

.greeting-text {
	padding: 20px 15px 0 20px;
}


/* ~~ Classes ~~ */
.price {
	font-size: 1.2em;
	color: #2e3192;
}

.td1 {
	width: 100px;
}

/* ~~ Profile ~~ */
.profileimg {
	margin-left: 15px;
}

.profileimg p {
	text-align: right;
}

.profile-photos {
	background-color: #e3ecf1;
	padding: 30px 0 30px 40px;
	margin-bottom: 50px;
}

/* ~~ Gallery ~~ */
#gallery, #gallery2 {
	display: none;
	margin-bottom: 30px;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
 .cf:before,
 .cf:after {
		 content: " "; /* 1 */
		 display: table; /* 2 */
 }
 
 .cf:after {
		 clear: both;
 }
 
 /**
	* For IE 6/7 only
	* Include this rule to trigger hasLayout and contain floats.
	*/
 .cf {
		 *zoom: 1;
 }

/* Gallary page */
.gallery-section-title {
	font-size: 1.5rem;
}

.gallery-section-content {
	margin-bottom: 60px;
}