/*=========================================== 
	RESET
=========================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  background-color: transparent;
  font-family: "Yu Gothic Medium", YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 2rem;
  color: /*#434343*/ #333;
  ;
  /*-webkit-font-smoothing: antialiased;*/
  letter-spacing: 0.02rem;
  vertical-align: baseline;
}
@media screen and (max-width : 480px) {
  html, body {
    font-size: 98%;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
input, textarea {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
a {
  text-decoration: none;
}
a:hover {
  color: #888;
  opacity: .6;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
img {
  width: 100%;
  height: auto;
}
a img:hover {
  opacity: .6;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*=========================================== 
	COMMON
=========================================== */
.container {
  max-width: 1120px;
}
.drawer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 180%;
  padding-right: 50px;
}
.drawer-brand span {
  font-size: 48%;
  display: block;
  margin-bottom: -23px;
  letter-spacing: .09em;
}
.drawer-navbar-header {
  text-align: left;
}
.drawer-navbar .drawer-menu-item {
  font-family: 'Poppins', sans-serif;
  line-height: 1rem;
  padding: 2rem;
  font-size: 120%;
  font-weight: 300;
}
.drawer-navbar {
  border: none;
  background-color: rgba(255, 255, 255, .7);
  height: 4rem;
}
@media (min-width: 64em) {
  .drawer-navbar .drawer-nav {
    background-color: transparent;
  }
}
.drawer-navbar .drawer-navbar-header {
  border: none;
  background-color: transparent;
}
.drawer-menu-item {
  text-decoration: none;
}
.drawer-menu-item:hover {
  text-decoration: none;
}
a.drawer-menu-item {
  display: inline-block;
  position: relative;
  color: #555;
  text-decoration: none;
  padding-top: 10px;
  /*font-size: 14px;*/
}
a.drawer-menu-item:before {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 17px;
  width: 70%;
  height: 1px;
  background: #555;
  transform: scale(0, 1);
  transition: 0.4s;
}
a.drawer-menu-item:hover:before {
  transform: scale(1);
}
.drawer-menu-item:hover {
  text-decoration: none;
}
h1 .ttl_main01 {
  font-family: 'Poppins', sans-serif;
  font-size: 200%;
  font-weight: 700;
  letter-spacing: .1em;
}
.ttl_main01_sub {
  font-size: 70%;
  font-weight: 500;
  padding-right: 20px;
  line-height: 1.5;
  display: inline-block;
}
h1 .ttl_main02 {
  font-size: 90%;
  display: block;
  margin-bottom: 3%;
}
h1 .ttl_main03 {
  font-size: 60%;
  display: block;
  margin-left: 3px;
}
.txt_catch {
  /*font-size: 90%;*/
}
@media screen and (max-width : 480px) {
  h1 .ttl_main01 {
    font-size: 100%;
  }
  h1 .ttl_main02 {
    font-size: 50%;
  }
  h1 .ttl_main03 {
    font-size: 60%;
    margin-bottom: 10%;
  }
}
/*==================================
　FLOW
===================================*/
.stepflow_ttl {
  font-family: 'Poppins', sans-serif;
  font-size: 120%;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  display: inline-block;
  padding: 0 45px;
  margin: 1.5rem 0 .5rem;
  color: #999;
}
@media screen and (max-width : 480px) {
  .stepflow_ttl {
    font-size: 100%;
  }
}
.stepflow_ttl:before, .stepflow_ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #999;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.stepflow_ttl:before {
  left: 0;
}
.stepflow_ttl:after {
  right: 0;
}
.stepflow_label {
  font-size: 130%;
  font-weight: 700;
  padding: 1rem 0;
}
@media screen and (max-width : 480px) {
  .stepflow_label {
    padding: 1rem 0 .1rem;
  }
}
.stepflow_content {
  padding-bottom: 2rem;
}
/*==================================
　PAGE TITLE
===================================*/
h3.flow_ttl, h3.team_ttl, h3.contact_ttl, h3.project_ttl {
  font-family: 'Poppins', sans-serif;
  font-size: 400%;
  font-weight: 500;
  padding: 20% 0 5%;
}
h3.flow_ttl, h3.team_ttl {
  padding: 15% 0 5%;
}
@media screen and (max-width : 480px) {
  h3.flow_ttl, h3.team_ttl, h3.contact_ttl, h3.project_ttl {
    font-size: 250%;
    padding: 5% 0;
  }
  h3.flow_ttl, h3.team_ttl {
    padding: 5% 0 0;
  }
}
span.text_ttl {
  display: block;
  font-size: 14px;
  padding-top: 10px;
  color: #888;
}
.pro_name {
  font-family: 'Poppins', sans-serif;
  font-size: 250%;
  font-weight: 500;
  color: #000;
}
.name_sub {
  display: block;
  font-size: 40%;
  color: #555;
  margin-top: 1%;
}
.name_position {
  display: block;
  font-size: 40%;
  font-weight: 700;
  color: #999;
  margin-top: -1.5%;
}
.pro_txt {
  text-align: justify;
  text-align-last: left;
}
@media screen and (max-width : 480px) {
  .pro_name {
    margin-top: -7%;
    font-size: 200%;
    line-height: 1.5;
  }
  .name_sub {
    font-size: 50%;
    margin-top: -3%;
  }
  .pro_txt {
    font-size: 90%;
  }
  .pro_txt p {
    line-height: 1.5;
  }
}
.address {
  text-align: center;
}
@media screen and (max-width : 480px) {
  .address {
    font-size: 70%;
  }
}
/*==================================
　PROJECTS PAGE
===================================*/
a .projects_name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 100%;
  border-bottom: none;
  line-height: 1;
  padding: .5rem 0;
}
a:hover .projects_name {
  opacity: .6;
  transition: 1s all;
}
.project_img {
  overflow: hidden;
  display: block;
}
a .project_img img {
  transition: all .3s linear;
  display: block;
}
a .project_img img:hover {
  transform: scale(1.2);
  transition: all .3s linear;
}
/*==================================
　BUTTON
===================================*/
.bt_contact a {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  display: inline-block;
  color: #333;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
  transition: .3s;
  text-align: center;
  letter-spacing: .3em;
  width: 100%;
  max-width: 400px;
  padding: 1rem 0;
  margin: 0 auto;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bt_contact a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
  text-align: center;
}
.bt_contact a:hover {
  color: #fff;
  opacity: 1;
}
.bt_contact a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.bt_contact a {
  max-width: 300px;
}
/*==================================
　FORM
===================================*/
.form-wrap label {
  padding: 1rem 0 0;
}
.form-control {
  border-bottom: 1px solid #333;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.form-label-round {
  border: 1px solid #333;
  border-radius: 5px;
}