/***** responsive setting *****/
/***** common *****/
* {
  font-family: 'Source Sans Pro', sans-serif;
}

body {
  overflow-x: hidden;
}

/***** header *****/
div.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 760px) {
  div.container {
    padding-top: 80px;
  }
}

div.container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 760px) {
  div.container header {
    position: fixed;
    left: 0;
    top: 0;
    height: 80px;
  }
}

div.container header h1 {
  margin-left: 40px;
}

@media screen and (max-width: 760px) {
  div.container header h1 {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1080px) {
  div.container header h1 img {
    width: 249px;
    height: 32px;
  }
}

div.container header input#drawer_input {
  display: none;
}

div.container header input#drawer_input:checked ~ label.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

div.container header input#drawer_input:checked ~ label.drawer_open span:before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

div.container header input#drawer_input:checked ~ label.drawer_open span:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

div.container header input#drawer_input:checked ~ ul {
  left: 0%;
}

div.container header label.drawer_open {
  display: none;
}

@media screen and (max-width: 1080px) {
  div.container header label.drawer_open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    right: 30px;
    z-index: 200;
    cursor: pointer;
  }
  div.container header label.drawer_open span,
  div.container header label.drawer_open span:before,
  div.container header label.drawer_open span:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #262f5e;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
  }
  div.container header label.drawer_open span:before {
    bottom: 12px;
  }
  div.container header label.drawer_open span:after {
    top: 12px;
  }
}

@media screen and (max-width: 760px) {
  div.container header label.drawer_open {
    width: 40px;
    height: 40px;
    right: 20px;
  }
  div.container header label.drawer_open span,
  div.container header label.drawer_open span:before,
  div.container header label.drawer_open span:after {
    width: 40px;
  }
}

@media screen and (max-width: 1080px) {
  div.container header ul {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    top: 0%;
    left: 100%;
    z-index: 90;
    background: #fff;
    opacity: 0.92;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

@media screen and (max-width: 760px) {
  div.container header ul {
    padding-top: 80px;
  }
}

div.container header ul li {
  margin-left: 30px;
  display: inline-block;
}

@media screen and (max-width: 1080px) {
  div.container header ul li {
    display: block;
    margin: 0 auto;
    padding: 40px 80px;
    border-bottom: 2px solid #dbdbdb;
    width: 80%;
    background-image: url(../images/menu_arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
  }
  div.container header ul li a {
    display: inline-block;
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  div.container header ul li {
    padding: 20px 80px;
    border-bottom: 1px solid #dbdbdb;
    width: 100%;
    background-image: url(../images/menu_arrow.png);
    background-repeat: no-repeat;
    background-position: 40px center;
    background-size: 13px;
  }
  div.container header ul li a {
    display: inline-block;
    width: 100%;
  }
}

div.container header ul li.btn-request-quote-small {
  width: 220px;
  height: 60px;
}

@media screen and (max-width: 1080px) {
  div.container header ul li.btn-request-quote-small {
    margin: 0 auto;
    width: 560px;
    height: 180px;
    background: none;
  }
}

@media screen and (max-width: 760px) {
  div.container header ul li.btn-request-quote-small {
    width: 420px;
    height: 100px;
    background: none;
  }
}

div.container header ul li.btn-request-quote-small a {
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: #800020;
  color: #fff;
  font-size: 19px;
  font-style: italic;
  background-image: url(../images/btn-request-quote-small-arrow.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
}

@media screen and (max-width: 1080px) {
  div.container header ul li.btn-request-quote-small a {
    font-size: 40px;
    background-position: right 30px center;
    background-size: 60px;
  }
}

@media screen and (max-width: 760px) {
  div.container header ul li.btn-request-quote-small a {
    font-size: 20px;
    background-position: right 20px center;
    background-size: 40px;
  }
}

div.container header ul li.btn-request-quote-small:hover {
  opacity: 0.6;
}

div.container header ul li:last-child {
  margin-right: 30px;
}

@media screen and (max-width: 1080px) {
  div.container header ul li:last-child {
    margin: 20px auto;
    border-bottom: none;
  }
}

@media screen and (max-width: 760px) {
  div.container header ul li:last-child {
    margin: 10px auto;
    border-bottom: none;
  }
}

div.container header a {
  font-size: 19px;
  color: #666;
  font-weight: 600;
}

@media screen and (max-width: 1080px) {
  div.container header a {
    font-size: 40px;
  }
}

@media screen and (max-width: 760px) {
  div.container header a {
    font-size: 20px;
  }
}

div.container header a:hover {
  text-decoration: underline;
}

div.container div.jambotron {
  width: 100vw;
  height: 358px;
  margin: 0 calc(50% - 50vw);
  background-image: url(../images/sakestreet-export_jambotron.jpg);
  background-position: center;
}

@media screen and (max-width: 760px) {
  div.container div.jambotron {
    height: 160px;
    background-size: cover;
  }
}

div.container main {
  width: 100%;
  max-width: 1400px;
}

div.container main h2 {
  margin-top: 120px;
  text-align: center;
  font-size: 80px;
  font-weight: 200;
  font-style: italic;
  color: #1d2b60;
}

@media screen and (max-width: 760px) {
  div.container main h2 {
    margin-top: 80px;
    font-size: 40px;
  }
}

div.container main div.services {
  margin: 120px 40px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 760px) {
  div.container main div.services {
    margin: 40px 20px 0;
  }
}

div.container main div.services div.service-image {
  width: 52%;
}

@media screen and (max-width: 760px) {
  div.container main div.services div.service-image {
    width: calc(100% - 40px);
  }
}

div.container main div.services div.service-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

div.container main div.services div:nth-child(n+3) {
  margin-top: 120px;
}

@media screen and (max-width: 760px) {
  div.container main div.services div:nth-child(n+3) {
    margin-top: 0px;
  }
}

@media screen and (max-width: 760px) {
  div.container main div.services div:nth-child(n+2) {
    margin-top: 25px;
  }
}

@media screen and (max-width: 760px) {
  div.container main div.services div:nth-child(odd) {
    margin-top: 50px;
  }
}

div.container main div.services div.service-description {
  padding: 0 60px;
  width: 48%;
}

@media screen and (max-width: 760px) {
  div.container main div.services div.service-description {
    padding: 0;
    width: calc(100% - 40px);
  }
}

div.container main div.services div.service-description h3 {
  font-size: 50px;
  font-weight: 700;
  color: #1d2b60;
}

@media screen and (max-width: 760px) {
  div.container main div.services div.service-description h3 {
    font-size: 26px;
  }
}

div.container main div.services div.service-description p {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 760px) {
  div.container main div.services div.service-description p {
    margin-top: 20px;
    font-size: 16px;
  }
}

div.container main div.services div.service-description p span.note {
  font-size: 18px;
  font-style: italic;
}

@media screen and (max-width: 760px) {
  div.container main div.services div.service-description p span.note {
    font-size: 14px;
  }
}

div.container main div.services .service-item_01 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

div.container main div.services .service-item_02 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

div.container main div.services .service-item_03 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

@media screen and (max-width: 760px) {
  div.container main div.services .service-item_03 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

div.container main div.services .service-item_04 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media screen and (max-width: 760px) {
  div.container main div.services .service-item_04 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

div.container main div.services .service-item_05 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

div.container main div.services .service-item_06 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

div.container main div.btn-request-quote {
  margin: 180px auto 0;
  width: 520px;
  height: 110px;
}

@media screen and (max-width: 760px) {
  div.container main div.btn-request-quote {
    margin: 60px auto 0;
    width: 260px;
    height: 60px;
  }
}

div.container main div.btn-request-quote a {
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #800020;
  color: #fff;
  font-size: 44px;
  font-style: italic;
  background-image: url(../images/btn-request-quote-arrow.png);
  background-repeat: no-repeat;
  background-position: right 50px center;
}

@media screen and (max-width: 760px) {
  div.container main div.btn-request-quote a {
    font-size: 20px;
    background-position: right 20px center;
    background-size: 40px;
  }
}

div.container main div.btn-request-quote:hover {
  opacity: 0.6;
}

div.container main div.procedure {
  margin: 120px auto 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 40px auto 0;
    width: calc(100% - 40px);
  }
}

div.container main div.procedure div.procedure-number {
  width: 170px;
  font-size: 115px;
  font-weight: 200;
  font-style: italic;
  color: #1d2b60;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-number {
    width: 100%;
    text-align: center;
    font-size: 56px;
  }
}

div.container main div.procedure div.procedure-image {
  width: 209px;
  height: 209px;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-image {
    margin-top: 16px;
    width: 96px;
    height: 96px;
  }
}

div.container main div.procedure div.procedure-image img {
  width: 100%;
  height: 100%;
}

div.container main div.procedure div.procedure-description {
  width: calc(100% - 379px);
  padding: 0 50px;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-description {
    padding: 0 0 0 20px;
    margin-top: 16px;
    width: calc(100% - 96px);
  }
}

div.container main div.procedure div.procedure-description h4 {
  font-size: 42px;
  font-weight: 600;
  color: #262f5e;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-description h4 {
    font-size: 20px;
  }
}

div.container main div.procedure div.procedure-description p {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.8;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-description p {
    margin-top: 10px;
    font-size: 16px;
  }
}

div.container main div.procedure div.procedure-description p span {
  font-size: 18px;
  font-style: italic;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div.procedure-description p span {
    font-size: 14px;
  }
}

div.container main div.procedure div:nth-child(n+4) {
  margin-top: 60px;
}

@media screen and (max-width: 760px) {
  div.container main div.procedure div:nth-child(n+4) {
    margin-top: 20px;
  }
}

div.container main div.about {
  margin: 120px auto 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 760px) {
  div.container main div.about {
    margin: 60px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

div.container main div.about div.about-image {
  width: 50%;
  max-width: 738px;
}

@media screen and (max-width: 760px) {
  div.container main div.about div.about-image {
    margin: 30px auto 0;
    padding: 0 20px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

div.container main div.about div.about-image img {
  width: 100%;
  height: auto;
}

div.container main div.about div.about-description {
  padding: 0 60px;
  width: 50%;
}

@media screen and (max-width: 760px) {
  div.container main div.about div.about-description {
    padding: 0 20px;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

div.container main div.about div.about-description div.about-logo {
  width: 50%;
  margin: 0 auto;
  height: auto;
}

div.container main div.about div.about-description div.about-logo img {
  width: 100%;
  height: auto;
}

div.container main div.about div.about-description p {
  margin-top: 60px;
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 760px) {
  div.container main div.about div.about-description p {
    margin-top: 30px;
    font-size: 16px;
  }
}

div.container main div.who-we-are {
  margin: 120px auto 0;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are {
    margin: 60px 0;
  }
}

div.container main div.who-we-are h2 {
  text-align: left;
  color: #a9a298;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are h2 {
    text-align: center;
  }
}

div.container main div.who-we-are div.members-container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #f5f2ed;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container {
    width: 100%;
    margin: 0;
  }
}

div.container main div.who-we-are div.members-container div.members {
  margin: -45px auto 0;
  padding: 96px 0;
  width: calc(100% - 90px);
  max-width: 930px;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members {
    margin: -22px auto 0;
    width: 100%;
    padding: 60px 0;
  }
}

div.container main div.who-we-are div.members-container div.members div.member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members div.member {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

div.container main div.who-we-are div.members-container div.members div.member div.member-profile {
  padding-right: 50px;
  width: calc(100% - 220px);
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members div.member div.member-profile {
    padding: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

div.container main div.who-we-are div.members-container div.members div.member div.member-profile h4 {
  font-size: 42px;
  font-weight: 600;
  color: #262f5e;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members div.member div.member-profile h4 {
    margin-top: 16px;
    text-align: center;
    font-size: 21px;
  }
}

div.container main div.who-we-are div.members-container div.members div.member div.member-profile p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members div.member div.member-profile p {
    margin-top: 16px;
    font-size: 16px;
  }
}

div.container main div.who-we-are div.members-container div.members div.member div.member-image {
  width: 220px;
  height: 220px;
}

@media screen and (max-width: 760px) {
  div.container main div.who-we-are div.members-container div.members div.member div.member-image {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

div.container main div.who-we-are div.members-container div.members div.member div.member-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

div.container footer {
  border-top: 1px solid #000;
  margin: 120px 0;
  padding: 20px 0;
}

@media screen and (max-width: 760px) {
  div.container footer {
    margin: 60px 0 80px;
  }
}

div.container footer p {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */