@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}

a {
text-decoration: none;
}
body {
  background: #151515 url('../images/bg.jpg') no-repeat fixed left bottom;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-family: Raleway, "Hiragino Kaku Gothic ProN",  Meiryo,  sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}



/* --------------------------------
 * parts
 * -------------------------------- */
.heading {
  position: relative;
  display: inline-block;
  margin: 30px 0 15px;
  padding-bottom: 15px;
  letter-spacing: 2px;
  font-size: 4rem;
}
.heading::before,
.heading::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #999;
}
.heading::before {
  bottom: 5px;
}
.button {
  display: inline-block;
  width: 200px;
  padding: 20px;
  border-radius: 4px;
  background-color: #afa58d;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1.2rem;
}
.button:hover {
  opacity: 0.9;
}
.button-showy {
  background-color: #D29E04;
}
.button-ghost {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
}


/* --------------------------------
 * header
 * -------------------------------- */
.header {
  padding: 150px 30px 80px;
}
.site-title-sub {
  margin: 0 0 10px;
  letter-spacing: 1px;
  font-size: 2.2rem;
  text-shadow: 1px 1px 3px #000;  
}
.site-title-sub::before,
.site-title-sub::after {
  content: '';
  display: inline-block;
  width: 140px;
  height: 2px;
  margin: 0 30px;
  background-color: #fff;
  vertical-align: middle;
}
.site-title {
  margin: 30px 0 40px;
  font-size: 7.6rem;
  text-shadow: 1px 1px 3px #000;  
}
.site-description {
  margin-bottom: 50px;
  color: #fff;
  font-size: 1.6rem;
  text-shadow: 1px 1px 3px #000;  
}
.buttons .button {
  margin: 10px;
}



#global-navi {
    background:#000000;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0px;
    width: 100%;
}
#wrapper nav ul li{
display:inline-block;
font-size: 10px;
padding:  5px 5px 5px 28px;
}
#wrapper nav ul li a{
text-decoration: none;
}
.nav-icon {
  color: #fff;
  font-size: 2rem;
}
/* --------------------------------
 * pickup
 * -------------------------------- */
 
.pickup {
  padding: 20px 0;
  background-color: #fff;
  color: #333;
}

.pickup-wrapper {
  display: table;
  width: 65%;
  margin: 20px auto 0;
  table-layout: fixed;
}

.pickup-box {
  display: table-cell;
    margin: 2em 0;
    padding: 10px;
}

.pickup-box img {
  padding: 10px 10px 5px 5px;
  max-width: 100%;
}
.pickup-box h2 {
  margin: 0;
}
.pickup-box p {
  margin: 10;
  overflow: auto;
  zoom: 1;
}
.pickup-right {
  width: 60%;
  float: left;
} 

.pickup-a {
text-decoration: none;
}
/* --------------------------------
 * about
 * -------------------------------- */
.about {
  padding: 10px 30px;
  background-color: #fff;
  color: #333;
}
.about-text {
  margin: 10px 0;
  line-height: 2.5;
}

.about-text2 {
  margin: 10px 0;
  line-height: 2.5;
  font-size: 18px;
}

.about-box {
  margin: 10px 0;
  float: left;
  width: 100%;
  background: #fff;
}
.about-box img {
  max-width: 100%;
  padding: 5px;
}
.about-box h2 {
  margin: 10;
  padding: 10px;
  text-align:left;
}
.about-box p {
  margin: 10;
  padding: 10px;
  text-align:center;
}
.about-right {
  width: 60%;
  float: left;
} 

/* --------------------------------
 * works
 * -------------------------------- */
.works {
  padding: 30px 0;
  background-color: #383634;
}
.works-wrapper {
  display: table;
  width: 100%;
  margin-top: 60px;
  table-layout: fixed;
}
.work-box {
  position: relative;
  display: table-cell;
}
.work-image {
  display: block;
  width: 100%;
  margin: 0 0 60%;
}
.work-description {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  overflow-y: auto;
}
.work-description-inner {
  display: table;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.work-text {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.7rem;
  line-height: 2;
}
.work-text .button {
  width: 60%;
  margin-top: 20px;
  padding: 3px;
}
.work-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: no-repeat;
  background-size: 100% 100%;
  opacity: 0.2;
  transform: scaleY(-1);
}
.work-box.tree::after {
  background-image: url('../images/bt_keypoint.jpg');
}
.work-box.building::after {
  background-image: url('../images/bt_seishonohanashi.jpg');
}
.work-box.lake::after {
  background-image: url('../images/omowazu.jpg');
}
.work-box.sky::after {
  background-image: url('../images/osusume04.jpg');
}
.work-box:nth-child(odd) .work-image {
  margin: 60% 0 0;
}
.work-box:nth-child(odd) .work-description,
.work-box:nth-child(odd)::after {
  top: 0;
}
/* --------------------------------
 * guest
 * -------------------------------- */

.guest {
  padding: 20px 0;
  background-color: #fff;
  color: #333;
}

.guest-wrapper {
  display: table;
  width: 80%;
  margin: 20px auto 0;
  table-layout: fixed;
}
.guest-box {
  display: table-cell;
}
.guest-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  border: 4px solid;
  border-radius: 50%;
  color: #f1b400;
  font-size: 8rem;
  line-height: 142px;
}
.guest-title {
  margin: 0 20px 0px;
  font-size: 2rem;
  color: #f1b400;
  }

.guest-title2 {
  margin: 0 20px 20px;
  font-size: 2rem;
  color: #f1b400;
  }
.guest-text {
  margin: 0 20px;
  line-height: 2;
}

/* --------------------------------
 * contents
 * -------------------------------- */
.contents {
  padding: 20px 0;
  background-color: #F5F5F5;
  color: #333;
  
}
.contents-wrapper {
  display: table;
  width: 100%;
  margin: 30px auto 0;
  table-layout: fixed;
}
.contents-box {
  display: table-cell;
}
.contents-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  color: #f1b400;
  font-size: 8rem;
  line-height: 142px;
}
.contents-title {
  margin: 0 20px 0px;
  font-size: 2rem;
  color: #f1b400;
  }

.contents-title2 {
  margin: 0 20px 20px;
  font-size: 2rem;
  color: #f1b400;
  }
  
.contents-text {
  margin: 0 20px;
  line-height: 2;
}
.contents-text2 {
  margin: 0 20px;
  line-height: 2;
}

.contents-box img {
  max-width: 100%;
  float: center;
  padding: 20px;
}

.contents img:hover{
filter:alpha(opacity=80);
opacity:0.8;
}
/* --------------------------------
 * skills
 * -------------------------------- */
.skills {
  padding: 20px 0;
  background-color: #F5F5F5;
  color: #333;
  
}
.skills-wrapper {
  display: table;
  width: 90%;
  margin: 20px auto 0;
  table-layout: fixed;
}
.skill-box {
  display: table-cell;
}
.skill-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  border: 4px solid;
  border-radius: 50%;
  color: #f1b400;
  font-size: 8rem;
  line-height: 142px;
}
.skill-title {
  margin: 0 20px 0px;
  font-size: 2rem;
  color: #f1b400;
  }

.skill-title2 {
  margin: 0 20px 20px;
  font-size: 2rem;
  color: #f1b400;
  }
.skill-text {
  margin: 0 20px;
  line-height: 2;
}


/* --------------------------------
 * content
 * -------------------------------- */
.content {
  padding: 30px 0;
  background-color: #383634;
  color: #fff;
}
.content-wrapper {
  display: table;
  width: 80%;
  margin: 50px auto 0;
  table-layout: fixed;
}
.content-box {
  display: table-cell;
}
.content-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  border: 4px solid;
  border-radius: 50%;
  color: #f1b400;
  font-size: 8rem;
  line-height: 142px;
}
.content-title {
  margin: 0 20px 20px;
  font-size: 2rem;
  color: #f1b400;
  }

.content-title2 {
  margin: 0 20px 20px;
  font-size: 2rem;
  color: #f1b400;
  }
.content-text {
  margin: 0 20px;
  line-height: 2;
}


/* --------------------------------
 * contact
 * -------------------------------- */
.contact {
  padding: 30px 0 0px;
  text-shadow: 1px 1px 3px #000;  
}
.contact-form {
  width: 50%;
  margin: 50px auto 0;
}
.contact-form input[type=text],
.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 15px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.55);
  color: #000000;
}
.contact-form input[type=text]:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5) inset;
}
.contact-form textarea {
  height: 150px;
}
.contact-form input[type=submit] {
  display: block;
  width: 200px;
  margin: 40px auto 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.25);
  color: #228B22;
  cursor: pointer;
}
.contact-form input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.55);
}


/* --------------------------------
 * footer
 * -------------------------------- */
.footer {
  padding: 2px 0;
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px #000;  
  
}

/* --------------------------------
 * smart phone
 * -------------------------------- */
 
@media (max-width: 1024px) {
  body {
    background-image: none;
  }
}


@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
  .heading {
    margin-top: 20px;
    font-size: 2.5rem;
  }
  .button:hover {
    opacity: 1;
  }

  /* --- header --- */
  .header {
    padding-top: 60px;
  }
  .site-title-sub {
    font-size: 1.4rem;
  }
  .site-title-sub::before,
  .site-title-sub::after {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .site-title {
    margin-top: 35px;
    font-size: 3rem;
  }
  /* --- contents --- */
  .contents-wrapper,
  .contents-box {
    display: block;
  }
  .contents-box {
    margin: 40px auto;
  }
  .contents-icon {
    width: 100px;
    height: 100px;
    font-size: 5rem;
    line-height: 92px;
  }
  .contents-text {
    margin: 0;
  }

  /* --- about --- */
  .about-text {
    line-height: 1.8;
    
  .about-image {
      max-width: 300px;
   height: auto;
  }
}

  /* --- works --- */
  .works-wrapper,
  .work-box {
    display: block;
  }
  .work-image {
    display: none;
  }
  .work-description {
    position: relative;
  }
  .work-box::after {
    top: 0;
    height: 100%;
    background-size: cover;
  }

  /* --- skills --- */
  .skills-wrapper,
  .skill-box {
    display: block;
  }
  .skill-box {
    margin: 40px auto;
  }
  .skill-icon {
    width: 100px;
    height: 100px;
    font-size: 5rem;
    line-height: 92px;
  }
  .skill-text {
    margin: 0;
  }
  
  /* --- menu --- */
  .menu {display:none}

  /* --- contact --- */
  .contact {
    padding-bottom: 80px;
  }
  .contact-form {
    width: 80%;
  }

  /* --- guest --- */
  .guest-wrapper,
  .guest-box {
    display: block;
  }
  .guest-box {
    margin: 40px auto;
  }
  .guest-text {
    margin: 0;
  }
  
  /* --- pickup --- */
  .pickup-wrapper,
  .pickup-box {
    display: block;
  }
  .pickup-box {
    margin: 40px auto;
  }
  .pickup-text {
    margin: 0;
  }
  .pickup-image {
      max-width: 300px;
   height: auto;
  }
}
/* --------------------------------
 * challenge
 *
 * 31行目からの.heading::before, .heading::afterの
 * スタイルをコメントアウトしてから適用してください。
 * -------------------------------- */
/*
.heading::before,
.heading::after {
  content: '';
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  margin: 0 0.5em;
  border: 1px solid;
  vertical-align: 0.2em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.work-box {
  overflow: hidden;
}
.work-image {
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.work-box:nth-child(odd) .work-image {
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.work-box:nth-child(even) .work-image {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.work-box:hover .work-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
*/

/* twitterページ */
#twitter {
    position: fixed;
    bottom: 20px;
    left: 90px;
    font-size: 77%;
    opacity: 0.7;
}
#twitter a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 50px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#twitter a:hover {
    text-decoration: none;
    background: #999;
}

/* facebookページ */
#facebook {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 77%;
    opacity: 0.7;
}
#facebook a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 50px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#facebook a:hover {
    text-decoration: none;
    background: #999;
}
/* ページの先頭に戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    opacity: 0.5;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}

/* ドロップメニュー */
#dropmenu{
  list-style-type: none;
  width: 980px;
  height: 40px;
  margin: 30px auto 0px;
  padding: 0;
  background: #383634;
  border-bottom: 5px solid #535d09;
  border-radius: 3px 3px 0 0;
}
#dropmenu li{
  position: relative;
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
	padding: 0;
  border-radius: 0 0 3px 3px;
}
#dropmenu li:last-child ul{
  left: -100%;
  width: 100%
}
#dropmenu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#dropmenu li ul li a{
  padding: 13px 15px;
  background: #6e7c0c;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}
#dropmenu li:hover > a{
  background: #6e7c0c;
  color: #eff7b1;
}
#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #7c8c0e;
  border-bottom: 1px solid #616d0b;
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}


/* メニュー */
.menu {  
  padding: 5px 0;
  background-color: #F5F5F5;
  color: #333;
}
.menu-wrapper {
  display: table;
  width: 90%;
  margin: 20px auto 0;
  table-layout: fixed;
}
.menu-box {
  display: table-cell;
}
.menu div {
	margin-bottom: 20px;
}

.menu h3 {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px currentColor;
	font-size: 14px;
}

.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: block;
	padding: 5px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.menu a:hover {
	background-color: rgba(0,0,0,0.3);
}
.menu-text {
  margin: 0 10px;
  line-height: 2;
  color: #585858;
}

/*ul.menu{
padding:0;
list-style-type:none;
overflow:hidden;
}
ul.menu li{
width:22%;
padding:5px 10px;
}
ul.menu li:nth-child(even){
float:left;
}
ul.menu li:nth-child(odd){
float:left;
clear:left;
}

.menu {  
  padding: 20px 0;
  background-color: #F5F5F5;
  color: #333;
}
.menu-wrapper {
  display: table;
  width: 90%;
  margin: 50px auto 0;
  table-layout: fixed;
}
.menu-box {
  display: table-cell;
}

.menu-text {
  margin: 0 10px;
  line-height: 2;
  color: #585858;
}*/

.sample-box-3 {
    border: 4px double #ddd;
    margin: 2em 0;
    padding: 2em;
}

