/* ============================================
   Font styles
   ============================================ */

.text-english {
  font-family: "pf-marlet-display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ============================================
   General styles
   ============================================ */

html {
  color: #000000;
  font-size: 1.45em;
  line-height: 1.6;

}

html,
body {
  background-color: #F8F6E7;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "YuGothic", sans-serif;

}

@media screen and (max-width: 1600px) {
  html {
    font-size: 1.3em;
    line-height: 1.5;
  }

}

@media screen and (max-width: 1400px) {
  html {
    font-size: 1.3em;
    line-height: 1.4;
  }

}

@media screen and (max-width: 1200px) {
  html {
    font-size: 1.2em;
    line-height: 1.4;
  }

}

@media screen and (max-width: 992px) {
  html {
    font-size: 1.1em;
    line-height: 1.3;
  }

}

::-moz-selection {
  background: #ffd500;
  color: #000000;
  text-shadow: none;
}

::selection {
  background: #ffd500;
  text-shadow: none;
  color: #000000;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #262626;
  opacity: 1;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Container
   ============================================ */

.container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width: 1600px) {
  .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }

}

@media screen and (max-width: 1200px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media screen and (max-width: 992px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }

}

@media screen and (max-width: 500px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

}

/* ============================================
   Links
   ============================================ */

a,
a:hover,
a:visited,
a:active {
  color: #262626;
  text-decoration: none;
}

/* ============================================
      Headings
      ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.text-english h1 {
  font-size: 3.2rem;
}

.text-english h2 {
  font-size: 3.2rem;
}

.text-english h3 {
  font-size: 2.9rem;
}

.text-english h4 {
  font-size: 2.7rem;
}

.text-english h5 {
  font-size: 2.5rem;
}

.text-english h6 {
  font-size: 2.3rem;
}

/* ============================================
      Header
      ============================================ */

header {
  color: #fff;
  padding: 3.2% 0;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1000;
}

header nav {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-self: center;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-self: center;
  width: 100%;
  height: 100%;
}

header nav a,
header nav a:visited,
header nav a:active,
header nav a:focus,
header nav a:link {
  color: #000000;
  margin: 0 10px;
  text-decoration: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

header nav a:hover {
  color: #262626;
  text-decoration: none;
}

header a {
  color: #000000;
  text-decoration: none;
}

header a:hover {
  color: #000000;
  text-decoration: underline;
}

header div {
  display: flex;
}

header div.logo {
  width: 25%;
}

header div.logo img {
  max-width: 320px;
  height: auto;
}

@media screen and (max-width: 992px) {
  header div.logo img {
    width: 280px;
  }

}

header div.text {
  width: 74%;
  padding-left: 1%;
  justify-content: flex-end;
}

header div.text p {
  margin-right: 5%;
  margin-top: 7px;
  font-size: 0.9rem;
}

header div.text a {
  margin-right: 10%;
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: bold;
}

header div.text a i {
  margin-right: 5px;
  font-size: 1.25rem;
}

header .toggle-nav {
  margin-top: 9px;
  cursor: pointer;
}

header .toggle-nav i {
  font-size: 1.5rem;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  header div.logo {
    width: 50%;
  }

  header div.text {
    width: 50%;
  }

  header .toggle-nav {
    margin-top: 19px;
    cursor: pointer;
  }

  header .toggle-nav i {
    font-size: 1.9rem;
    color: #ffffff;
  }

}

.page-inner header div.text p {
  color: #000000;
}

.page-inner header div.text a {
  color: #000000 !important;
}

.page-inner header .toggle-nav i {
  color: #000000;
}

@media screen and (max-width: 992px) {
  header div.text p {
    display: none !important;
  }

  header div.text a {
    display: none !important;
  }
}

/* ============================================
      Footer
      ============================================ */

footer {
  background: #262626;
  color: #fff;
  padding: 90px 0;
}

@media screen and (max-width: 1400px) {
  footer {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0;
  }
}

footer .logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

footer nav {
  margin: 40px 0;
  padding: 0;
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer nav ul li {
  display: inline;
}

footer nav a {
  color: #fff !important;
  margin: 0 10px;
  text-decoration: none;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer nav,
footer nav ul,
footer nav ul li {
  margin: 0;
  padding: 0;
}

footer nav a {
  padding: 0;
  margin: 0;
  margin-right: 15px;
  text-decoration: underline;
}

footer h4 {
  line-height: 2.3rem;
  font-weight: normal;
}



/* ============================================
   Footer logo-row
   ============================================ */


footer .logo-row {
  display: flex;
}

footer .logo-row div.logo {
  width: 25%;
}

footer .logo-row div.logo img {
  max-width: 320px;
  height: auto;
}

@media screen and (max-width: 992px) {
  footer .logo-row div.logo img {
    width: 280px;
  }

}

footer .logo-row div.text {
  width: 74%;
  padding-left: 1%;
  display: flex;
  justify-content: flex-end;
}

footer .logo-row div.text div:first-child {
  margin-right: 20px;
  width: 350px;
}

footer .logo-row div.text div:last-child {
  width: 250px;
  text-align: end;
}

@media screen and (max-width: 1200px) {
  footer .logo-row div.text div:last-child {
    width: 150px;
    text-align: end;
  }
}

footer .logo-row div.text p {
  margin-top: 7px;
  font-size: 0.95rem;
}

@media screen and (max-width: 992px) {
  footer .logo-row div.text {
    display: block;
    width: 100%;
    margin-top: 0;
  }

  footer .logo-row div.logo {
    width: 100%;
  }

  footer .logo-row div.text div:first-child {
    margin-right: 0;
    width: 100%;
    font-size: 1rem;
  }

  footer .logo-row div.text div:last-child {
    width: 100%;
    text-align: start;
    font-size: 1rem;
  }

  footer .logo-row div.text p {
    font-size: 1rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  footer .logo-row {
    display: block;
  }

  footer .logo-row div.text {
    display: block;
    width: 100%;
    margin-top: 30px;
  }

  footer .logo-row div.logo {
    width: 100%;
  }

  footer .logo-row div.text div:first-child {
    margin-right: 0;
    width: 100%;
    font-size: 1rem;
  }

  footer .logo-row div.text div:last-child {
    width: 100%;
    text-align: start;
    font-size: 1rem;
  }

  footer .logo-row div.text p {
    font-size: 1rem;
  }
}

/* ============================================
   Footer Contact Button Block
   ============================================ */

.content-bottom-end {
  display: flex;
  align-items: last baseline;
  justify-content: end;
}

@media screen and (max-width: 992px) {
  .content-bottom-end {
    display: block;
    align-items: flex-start;
    justify-content: start;
    margin-top: 30px;
  }

}

/* ============================================
   Sticky Footer
   ============================================ */

html,
body {
  box-sizing: border-box;
  height: 100%;
  padding: 0;
  margin: 0;
}

.wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-header,
.page-footer {
  flex-grow: 0;
  flex-shrink: 0;
}

.page-body {
  flex-grow: 1;
}

/* ============================================
   Main Banner
   ============================================ */

.main-banner {
  width: 100%;
  height: 100vh;
  background-color: #262626;
  background-image: url('../img/main-banner.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .main-banner {
    background-attachment: scroll;
  }

}

.main-banner .container-fluid {
  display: flex;
  justify-content: flex-start;
  align-items: last baseline;
  width: auto;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 992px) {
  .main-banner .container-fluid {
    align-items: center;
  }
}

.main-banner-title {
  width: 90%;
  margin-bottom: 20vh;
}

@media screen and (max-width: 1200px) {
  .main-banner-title {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .main-banner-title {
    margin-bottom: 0;
  }
}


.main-banner-image {
  position: absolute;
  top: 20%;
  right: 7%;
  width: 200px;
  height: 200px;
}

@media screen and (max-width: 992px) {
  .main-banner-image {
    display: none;
  }
}

/* ============================================
   Main Content
   ============================================ */

section {
  padding: 4% 0;
}

@media screen and (max-width: 1400px) {
  section {
    padding: 5% 0;
  }
}

@media screen and (max-width: 1200px) {
  section {
    padding: 60px 0;
  }

}

@media screen and (max-width: 768px) {
  section {
    padding: 40px 0;
  }

}

/* ============================================
   Generic Classes
   ============================================ */

.font-weight-bold {
  font-weight: 500;
}

.line-height-lg {
  line-height: 2;
}

.letter-spacing-lg {
  letter-spacing: 6px;
}

/* ============================================
   Background Colors
   ============================================ */

.bg-grey {
  background-color: #F4F4F4;
}

.bg-sand {
  background-color: #F8F6E7;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-dark-blue {
  background-color: #222945;
}

/* ============================================
   Background Images
   ============================================ */

.bg-dark-blue-img {
  background-image: url('../img/section-bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-dark-blue-img-2 {
  background-image: url('../img/section-bg-2.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .bg-dark-blue-img {
    background-attachment: scroll;
  }

  .bg-dark-blue-img-2 {
    background-attachment: scroll;
  }

}

/* ============================================
     Text Colors
     ============================================ */

.text-blue {
  color: #262626 !important;
}

.text-yellow {
  color: #FFD710 !important;
}

.text-gold {
  color: #A08E7F !important;
}

/* ============================================
   Text Colors on Backgrounds
   ============================================ */

.bg-dark-blue .text-yellow {
  color: #FFF074 !important;
}

/* ============================================
   Bootstrap
   ============================================ */

.btn,
.btn:hover,
.btn:visited,
.btn:active,
.btn:focus,
.btn:link {
  background: #262626;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
}

.btn-link {
  background: none !important;
  border-radius: 0;
  padding: 0;
}

.bg-dark-blue .btn-link {
  margin-top: 100px;
}

@media screen and (max-width: 1200px) {
  .bg-dark-blue .btn-link {
    margin-top: 60px;
  }

}

.bg-dark-blue .btn-link i {
  margin-left: 12px;
  font-size: 0.75rem;
  top: -2px;
  position: relative;
}

.btn.btn-bordered {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #000000;
  color: #000000;
  width: 100%;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 5px;
}

.btn.btn-bordered i {
  float: right;
  font-size: 0.5rem;
  margin-top: 7px;
}

footer .btn,
footer .btn:hover,
footer .btn:visited,
footer .btn:active,
footer .btn:focus,
footer .btn:link {
  background: #FCDC22;
  color: #000000;
  text-decoration: none;
  border-radius: 0;
  padding: 14px 60px;
  font-weight: bold;
  border: none;
}

footer a:tel {
  color: #ffffff;
  text-decoration: none;
}

.service-filter {
  background: #FCDC22;
  color: #000000;
  text-decoration: none;
  border-radius: 0;
  padding: 14px 60px;
  font-weight: bold;
  border: solid 2px #000000;
}

.service-filter:hover {
  background: #000000;
  color: #ffffff;
}

.service-filter.active {
  background: #000000;
  color: #ffffff;
}

.navigation-buttons {
  margin-top: 30px;
}

.navigation-buttons a {
  background: #FCDC22 !important;
  color: #000000 !important;
  text-decoration: none;
  border-radius: 0 !important;
  padding: 14px 10px;
  font-weight: bold;
  border: solid 2px #000000 !important;
}

.navigation-buttons a:hover {
  background: #000000 !important;
  color: #ffffff !important;
}


/* ============================================
   Contact Form
   ============================================ */

.contact-form h2 {
  margin: 0;
  padding: 0;
}

.contact-form p {
  margin: 0;
  padding: 0;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: solid 1px #262626;
  border-radius: 0px;
}

.contact-form input[type="submit"] {
  background: #FCDC22;
  color: #000000;
  text-decoration: none;
  border-radius: 0;
  padding: 14px 60px;
  font-weight: bold;
  margin-top: 20px;
}

.contact-form input[type="submit"]:hover {
  background: #262626;
  color: #ffffff;
}


/* ============================================
   Responsive Embed
   ============================================ */

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   Contact Buttons
   ============================================ */

.contact-buttons {
  border-bottom: solid 10px #ffffff;
}

.contact-buttons .contact-button i {
  font-size: 1.8rem;
  position: relative;
  top: -3px;
}

.contact-buttons .contact-button {
  background: #FDEE73;
  font-size: 2.7rem;
  line-height: 2.0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 20px 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 250px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact-buttons .contact-button {
    font-size: 2.2rem !important;
    padding: 20px 15px 10px 15px !important;
    min-height: 180px !important;
  }

}

.contact-buttons .contact-button span {
  font-size: 1.2rem;
}


.contact-buttons .contact-button-second {
  background: #FCDC22;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 20px 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 250px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact-buttons .contact-button-second {
    font-size: 1.4rem !important;
    padding: 20px 15px 10px 15px !important;
    min-height: 180px !important;
  }

}

.contact-buttons .contact-button-second span {
  font-size: 1.1rem;
}

/* ============================================
   Heading + Subheading Styles
   ============================================ */

.heading-subtitle {
  margin: 0;
  padding: 0 0 3% 0;
}

.heading-subtitle h2 {
  margin: 0;
  padding: 0 0 1.5% 0;
}

.bg-dark-blue p {
  margin: 0;
  padding: 1.75% 0;
}

@media screen and (max-width: 1200px) {
  .heading-subtitle {
    padding: 0 0 20px 0;
  }

  .heading-subtitle h2 {
    padding: 0 0 15px 0;
  }

  .bg-dark-blue p {
    padding: 15px 0;
  }

}

/* ============================================
   Header Spacer - Page inner
   ============================================ */

.header-spacer {
  width: 100%;
  height: 140px;
}

@media screen and (max-width: 768px) {
  .header-spacer {
    height: 110px;
  }

}

/* ============================================
   100% height, flex center blocks
   ============================================ */

.vh-100-flex {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* ============================================
   Mobile Menu
   ============================================ */

.toggle-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262626;
  z-index: 1000;
  display: none;
}

.page-inner .toggle-menu {
  background: #F8F6E7;
}

.toggle-menu .container-fluid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.toggle-menu nav {
  margin-top: 40px;
}

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

.toggle-menu nav ul li {
  margin-right: 15px;
}

.toggle-menu nav a,
.toggle-menu nav a:visited,
.toggle-menu nav a:active,
.toggle-menu nav a:focus,
.toggle-menu nav a:link {
  color: #fff;
  margin: 10px 0;
  font-size: 3rem;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .toggle-menu nav a {
    font-size: 2rem !important;
    margin: 8px 0 !important;
  }

}

.page-inner .toggle-menu nav a,
.page-inner .toggle-menu nav a:visited,
.page-inner .toggle-menu nav a:active,
.page-inner .toggle-menu nav a:focus,
.page-inner .toggle-menu nav a:link {
  color: #000000;
}

.toggle-menu nav a:hover {
  text-decoration: underline;
}

.toggle-menu-open {
  display: block;
}

/* Profile Image */

.profile-img img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* ============================================
   Table
   ============================================ */

.table> :not(caption)>*>* {
  background-color: #F8F6E7;
}

.table {
  font-weight: bold;
}