@charset "UTF-8";
/* fingers.com CSS Document */

html,
html * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
    font-family: arial, sans-serif;
	font-size: 1.25vw;
}

/* Header */
header {
	width: 100%;
	top: 0;
	padding: 0;
	position: fixed;
	z-index: 1000;
}

.fingers {
	position: relative;
	height: 3.5em;
	background-color: #333333; /* ブラウザ上部の余白を消す色指定 */
}


/* Site Title: www.fingers.com */
h1 {
    font-family: 'acumin-pro-extra-condensed', sans-serif;
	color: #acacac; /* h1のフォントカラー */
	font-size: 3.5em;
	letter-spacing: .10em;
    text-align: center;
    padding-top: 1.1em;
}

/* Intro */
.intro {
	padding-top:15em;
	padding-bottom:4em;
    padding-left: 3em;
    padding-right: 3em;
	text-align: center;
}

.intro p {
	font-family: 'acumin-pro-extra-condensed', sans-serif;
	color: #000000;
	position: relative;
	text-transform: none;
	font-size: 4em;
	line-height: 1.7;
	letter-spacing: 0em;
    max-width: 20em;
}

/* Blogs */
.blogs {
     width: 100%;
     max-width: 1200px;
     margin: auto;
}
.flexbox {
	display: flex;
}

/* Blogs Title Specification */
.blog-title {
	font-family: 'acumin-pro-extra-condensed', sans-serif;
	font-size: 3.2em;
    color: #ffffff;
	font-weight: 100;
	padding: 2em 0 0 0;
	letter-spacing: .36em;
	text-transform: uppercase;
	line-height: 1.5;
	max-width: 9em;
	margin-bottom: .5em;
}
/* Blogs Text Specification */
.blog-text {
	font-family: 'acumin-pro-extra-condensed', sans-serif;
	font-size: 2.8em;
    color: #ffffff;
    letter-spacing: .1em;
	line-height: 1.9;
	opacity: .4;
	max-width: 85%;
}  

/* Blogs Text Specification Read More Link */
.see-more {
	font-family: 'acumin-pro-extra-condensed', sans-serif;
	font-size: 2.8em;
	color:#ffb81d;
	letter-spacing: .1em;
	display: inline-block;
	margin-top: 2em;
	padding: 0 0 .4em 0;
	transition: all .3s;
	text-decoration: none;
}
.see-more:link {
	color:#ffb81d;
}
.see-more:visited {
	color:#ffb81d;
}
.see-more:hover {
	border-bottom: 1px solid white;
}
.see-more:active {
	color:#ffffff;
}

/* Blog Bikes Description */
.blog-bikes {
	background-image: url("img/tern-rip-bkg.jpg");
	background-size: auto 100%;
	width: 50%;
	padding-top: 2em;
    padding-right: 4em;
    padding-bottom: 10em;
    padding-left: 4em;
}

/* Blog Dishy Description */
.blog-dishy {
	background: #4a412d;
	width: 50%;
	padding-top: 2em;
    padding-right: 4em;
    padding-bottom: 10em;
    padding-left: 4em;
}
 @media screen and (max-width: 1023px) {
     .flexbox {
         display: block;
     }
     .flexbox .blog-bikes {
         width: 100%;
         margin: 0 auto;
     }
     .flexbox .blog-dishy {
         width: 100%;
         margin: 0 auto;
     }
}

/* Footer */
footer {
	margin-top: -3.5em;
	padding-top: 10em;
    padding-bottom: 0;
	background-color: #333333;
}

.footer-content {
	width: 80%;
	margin: 0 auto;
	padding-bottom: 2em;
}

/* Footer Social */
.footer-social {
	display: block;
	width: 100%;
	list-style-type: none;
	text-align: center;
}
.footer-social li {
	display: inline-block;
	margin: 1em;
}
.footer-social li a {
	line-height: 6.0em;
	display: inline-block;
	width: 5em;
	height: 5em;
	text-align: center;
	border: 2px solid rgba(204,204,204,.3);
	border-radius: 50%;
}
.footer-social li a:hover {
	border-color: #ccccccc;
	background: #cccccc;
}
.footer-social li a img {
	width: auto;
	height: 2em;
}
.footer-social li a .social-hover {
	display: none;
}
.footer-social li a:hover .social-default {
	display: none;
}
.footer-social li a:hover .social-hover {
	display: inline;
}

/* Footer Info */
.footer-info {
	padding-top: 7.5em;
    padding-bottom: 3em;
    margin-left: 3em;

}
/* Footer Text Specification */
.footer-info p {
	font-size: 1.6em;
	font-family: acumin-pro-extra-condensed,sans-serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.9;
	letter-spacing: .1em;
	color: #cccccc;
	max-width: 36em;
	margin-bottom: 1.7em;
}
.footer-info span {
    font-size: 1em;
    font-family: acumin-pro-extra-condensed,sans-serif;
	font-weight: 300;
	font-style: normal;
    line-height: 1.9;
	letter-spacing: .1em;
	color: #ffb81d;
}

/* Google Adsense */
.adsense {
    background-color: #111111;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}