@keyframes scroll {
  0% {
    top: 0;
    height: 20%;
  }
  50% {
    height: 100%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden;
}
html.menu-opened {
  overflow: hidden;
}

body {
  margin: 0;
  font-size: 100%;
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 90px;
  background-color: #f2f2f2;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  body {
    padding-top: 90px;
  }
}
body.noscroll {
  overflow: hidden;
}
body.scrolled .top-bar {
  height: 60px;
}
body.scrolled .top-bar .logo img {
  width: 100px;
}
body.scrolled .fixed-menu {
  top: 60px;
}
body.scrolled .menu-icon-container {
  height: 60px;
}
body.menu-opened {
  overflow: hidden;
}
body.menu-opened .fixed-nav {
  transform: translateX(0);
  opacity: 1;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6em;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .hidden-xs {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .hidden-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.visible-xs {
  display: none;
}
@media screen and (max-width: 640px) {
  .visible-xs {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .visible-xs.inline {
    display: inline-block;
  }
}

.visible-sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .visible-sm {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .visible-sm.inline {
    display: inline-block;
  }
}

.visible-md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .visible-md {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .visible-md.inline {
    display: inline-block;
  }
}

.popup {
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup-wrapper {
  transform: translateY(0);
}
.popup .popup-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 0 30px 30px;
  margin: 30px;
  position: relative;
  transform: translateY(100vh);
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  .popup .popup-wrapper {
    margin: 15px;
    padding: 15px 0 15px 15px;
  }
}
.popup .popup-wrapper.popup-wrapper-sm {
  max-width: 800px;
}
.popup .popup-wrapper .popup-close {
  position: absolute;
  right: -10px;
  top: -60px;
  border: none;
  background: none;
  padding: 0;
  font-size: 4.5em;
  color: #fff;
  cursor: pointer;
}
.popup .popup-wrapper .popup-close:focus {
  outline: none;
}
.popup .popup-wrapper .popup-container {
  overflow: scroll;
  max-height: 80vh;
  padding-right: 30px;
}
@media screen and (max-width: 640px) {
  .popup .popup-wrapper .popup-container {
    max-height: 70vh;
    padding-right: 15px;
  }
}
.popup .popup-wrapper .popup-container h2 {
  font-size: 2.4em;
  border-bottom: #bbb solid 1px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .popup .popup-wrapper .popup-container h2 {
    font-size: 2em;
  }
}

[class|='space'] {
  display: block;
  clear: both;
}

.space10 {
  height: 10px;
}

.space15 {
  height: 15px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space35 {
  height: 35px;
}

.space40 {
  height: 40px;
}

.space50 {
  height: 50px;
}

.space60 {
  height: 60px;
}

.space70 {
  height: 70px;
}

.space80 {
  height: 80px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.clear {
  clear: both;
  height: 1px;
}

a[data-popup],
a[data-menu-href] {
  cursor: pointer;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.loader-wrapper .loader {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.loader-wrapper .loader:after {
  content: ' ';
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #d72500;
  border-color: #d72500 transparent #d72500 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.container {
  width: 1380px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
  /*
  @media screen and (max-width: $md) {
      padding-left: 40px;
      padding-right: 40px;
  }
  @media screen and (max-width: $xs) {
      padding-left: 15px;
      padding-right: 15px;
  */
}
@media screen and (max-width: 1380px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 380px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.right-btn {
  text-align: right;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .btn-group {
    display: block;
    text-align: center;
  }
}
.btn-group .btn {
  margin: 0 15px;
}
@media screen and (max-width: 640px) {
  .btn-group .btn {
    margin: 0 0 15px 0;
  }
}

.btn {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 13px 15px;
  height: 50px;
  text-decoration: none;
  font-size: 2em;
  font-family: 'Lato', sans-serif;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  line-height: normal;
}
.btn.btn-disabled {
  pointer-events: none;
  cursor: default;
}
.btn.btn-white {
  background-color: #fff;
  color: #000;
}
.btn.btn-white:hover {
  color: #fff;
}
.btn.btn-white:hover span:before,
.btn.btn-white:hover span:after {
  background-color: #fff;
}
.btn.btn-white span:before,
.btn.btn-white span:after {
  background-color: #000;
}
.btn.btn-border {
  border: #fff solid 2px;
  background-color: transparent;
}
.btn.btn-border.btn-border-black {
  border: #000 solid 2px;
  color: #000;
}
.btn.btn-sm {
  font-size: 1.6em;
}
.btn.btn-icon-left span {
  margin-left: 0;
  margin-right: 47px;
}
.btn.btn-icon-left span:after {
  right: auto;
  left: -1px;
  transform: rotate(-45deg);
}
.btn:hover {
  /*background-color: $companyRed;*/
}
.btn:hover:after {
  width: 100%;
}
.btn:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #d72500;
  z-index: 0;
  width: 0;
  transition: width 0.5s;
}
@media only screen and (max-width: 1024px) {
  .btn:after {
    display: none;
  }
}
.btn strong {
  position: relative;
  z-index: 1;
}
.btn span {
  display: block;
  position: relative;
  z-index: 1;
  margin-left: 47px;
  width: 35px;
  height: 6px;
  align-self: flex-end;
  margin-bottom: 2px;
}
.btn span:before,
.btn span:after {
  content: '';
  background-color: #fff;
  display: block;
  height: 1px;
  position: absolute;
  transition: background-color 0.8s;
}
.btn span:before {
  width: 100%;
  right: 0;
  bottom: 0;
}
.btn span:after {
  width: 7px;
  transform: rotate(45deg);
  right: -1px;
  bottom: 2px;
}

.main-title-container .main-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 75px;
}
@media screen and (max-width: 640px) {
  .main-title-container .main-title {
    display: block;
    margin-bottom: 45px;
  }
}
.main-title-container .main-title.main-title-white {
  color: #fff;
}
.main-title-container .main-title h2 {
  font-family: 'Lato', sans-serif;
  font-size: 6em;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .main-title-container .main-title h2 {
    font-size: 3.7em;
  }
}
.main-title-container .main-title h2 span {
  font-size: 16px;
  font-weight: 500;
  margin-left: 30px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 640px) {
  .main-title-container .main-title h2 span {
    font-size: 13px;
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
.main-title-container .main-title-caption {
  margin-bottom: 60px;
  font-size: 2em;
}
@media screen and (max-width: 640px) {
  .main-title-container .main-title-caption {
    margin-bottom: 45px;
    font-size: 1.7em;
  }
}

.sub-title {
  font-family: 'Lato', sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .sub-title {
    margin-bottom: 35px;
  }
}
.sub-title.sub-title-white {
  color: #fff;
}
.sub-title.sub-title-white:after {
  background-color: #fff;
}
.sub-title:after {
  content: '';
  display: block;
  background-color: #000;
  width: 120px;
  height: 1px;
  margin-left: 15px;
}
.sub-title h3 {
  font-size: 3em;
}
@media screen and (max-width: 640px) {
  .sub-title h3 {
    font-size: 2.5em;
  }
}

.pmark-popup {
  padding: 50px 40px;
}
@media screen and (max-width: 640px) {
  .pmark-popup {
    padding: 15px;
  }
}
.pmark-popup h3 {
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
}
.pmark-popup p {
  margin-bottom: 50px;
}
.pmark-popup .pmark-logo {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .pmark-popup .pmark-logo {
    display: block;
  }
}
.pmark-popup .pmark-logo > div:first-child {
  margin-right: 50px;
}
@media screen and (max-width: 640px) {
  .pmark-popup .pmark-logo > div:first-child {
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.pmark-popup .pmark-logo p {
  margin-bottom: 0;
}
.pmark-popup .pmark-logo p:first-of-type {
  margin-bottom: 10px;
}

.top-bar {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  transition: all 0.2s;
  padding-right: 160px;
}
.top-bar .logo {
  float: left;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
@media screen and (max-width: 640px) {
  .top-bar .logo {
    padding-left: 15px;
  }
}
.top-bar .logo img {
  width: 185px;
  transition: all 0.2s;
}
@media screen and (max-width: 640px) {
  .top-bar .logo img {
    width: 140px;
  }
}
.top-bar .menu {
  float: right;
  display: flex;
  align-items: center;
  height: 100%;
}
.top-bar .menu .top-menu {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-bar .menu .top-menu {
    display: none;
  }
}
.top-bar .menu .top-menu a {
  font-size: 2em;
  font-weight: normal;
  margin-left: 30px;
  color: #000;
}

.menu-icon-container {
  width: 80px;
  text-align: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.3s;
}
.menu-icon-container .menu-icon {
  width: 40px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.menu-icon-container .menu-icon.opened:before {
  transform: rotate(45deg);
  background-color: #fff;
  top: 14px;
}
.menu-icon-container .menu-icon.opened:after {
  transform: rotate(-45deg);
  background-color: #fff;
  top: 14px;
}
.menu-icon-container .menu-icon:before,
.menu-icon-container .menu-icon:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s;
}
.menu-icon-container .menu-icon:after {
  top: 12px;
}

.fixed-nav {
  background-color: #d72500;
  color: #fff;
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  height: 100vh;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.5s;
  transform: translateX(50vw);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fixed-nav {
    width: 80vw;
    transform: translateX(80vw);
  }
}
@media screen and (max-width: 640px) {
  .fixed-nav {
    align-items: flex-start;
    width: 100vw;
    transform: translateX(100vw);
    padding-top: 90px;
  }
}
@media screen and (max-width: 380px) {
  .fixed-nav {
    padding-top: 60px;
  }
}
.fixed-nav .fn-menu {
  display: flex;
  padding: 30px;
  max-height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu {
    padding: 15px;
  }
}
.fixed-nav .fn-menu a {
  color: #fff;
}
.fixed-nav .fn-menu .fn-menu-title {
  border-right: #fff solid 3px;
  padding-right: 30px;
  margin-right: 40px;
  font-size: 2em;
}
@media screen and (max-width: 640px) {
  .fixed-nav .fn-menu .fn-menu-title {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu .fn-menu-title {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.fixed-nav .fn-menu .fn-menu-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu .fn-menu-list ul {
    margin-bottom: 40px;
  }
}
.fixed-nav .fn-menu .fn-menu-list ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .fixed-nav .fn-menu .fn-menu-list ul li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu .fn-menu-list ul li {
    margin-bottom: 5px;
  }
}
.fixed-nav .fn-menu .fn-menu-list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fixed-nav .fn-menu .fn-menu-list ul li.sitemap {
    margin-bottom: 0;
  }
}
.fixed-nav .fn-menu .fn-menu-list ul li .contact {
  display: inline-block;
  border: #fff solid 2px;
  padding: 0 30px;
  margin-top: 5px;
}
.fixed-nav .fn-menu .fn-menu-list .fn-menu-top {
  font-size: 3em;
}
@media screen and (max-width: 1024px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-menu-top {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 640px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-menu-top {
    font-size: 2em;
  }
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-menu-top {
    font-size: 1.8em;
  }
}
.fixed-nav .fn-menu .fn-menu-list .fn-menu-bottom {
  font-size: 2em;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-menu-bottom {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 380px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-menu-bottom {
    font-size: 1.6em;
  }
}
.fixed-nav .fn-menu .fn-menu-list .fn-social {
  font-size: 3em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-social {
    font-size: 2em;
  }
}
.fixed-nav .fn-menu .fn-menu-list .fn-social a {
  margin-right: 25px;
}
@media screen and (max-width: 640px) {
  .fixed-nav .fn-menu .fn-menu-list .fn-social a {
    margin-right: 10px;
  }
}

.fixed-menu {
  display: none;
  width: 80px;
  max-width: 80px;
  position: fixed;
  z-index: 11;
  top: 90px;
  bottom: 0;
  right: 0;
  left: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 50px;
  padding-bottom: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .fixed-menu {
    background: transparent;
  }
}
@media screen and (max-width: 640px) {
  .fixed-menu {
    padding-top: 30px;
  }
}
.fixed-menu.dark {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1024px) {
  .fixed-menu.dark {
    background: transparent;
  }
}
.fixed-menu.dark .fixed-menu-container .menu-icon:before,
.fixed-menu.dark .fixed-menu-container .menu-icon:after {
  background-color: #ffffff;
}
.fixed-menu .fixed-menu-container {
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .fixed-menu .fixed-menu-container {
    padding-left: 0;
    padding-right: 40px;
  }
}
@media screen and (max-width: 640px) {
  .fixed-menu .fixed-menu-container {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-menu .fixed-menu-container .social-icons {
    display: none;
  }
}
.fixed-menu .fixed-menu-container .social-icons ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.fixed-menu .fixed-menu-container .social-icons ul.font-icon li {
  margin-bottom: 20px;
  font-size: 1.4em;
}
.fixed-menu .fixed-menu-container .social-icons ul.font-icon li a {
  border-width: 2px;
  border-style: solid;
}
.fixed-menu .fixed-menu-container .social-icons ul.font-icon li a:hover {
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}
.fixed-menu .fixed-menu-container .social-icons ul li {
  margin-bottom: 40px;
}
.fixed-menu .fixed-menu-container .social-icons ul li:last-child {
  margin-bottom: 0;
}
.fixed-menu .fixed-menu-container .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  transition: all 0.5s;
}
.fixed-menu .fixed-menu-container .social-icons ul li a img {
  width: 30px;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.facebook {
  border-color: #3b5998;
  color: #3b5998;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.facebook:hover {
  background-color: #3b5998;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.twitter {
  border-color: #1da1f2;
  color: #1da1f2;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.twitter:hover {
  background-color: #1da1f2;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.instagram {
  border-color: #f77737;
  color: #f77737;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.instagram:hover {
  background-color: #f77737;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.email {
  border-color: #d72500;
  color: #d72500;
}
.fixed-menu .fixed-menu-container .social-icons ul li a.email:hover {
  background-color: #d72500;
}

footer {
  background: #25260a;
  background: linear-gradient(99deg, #25260a 0%, #0a2517 29%, #260a1c 100%);
  padding: 100px 0 40px 0;
  position: relative;
  z-index: 9;
  color: #fff;
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 35px 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 80px;
  }
}
footer .footer-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  footer .footer-sp {
    display: none;
  }
}
footer .footer-sp a {
  margin: 0 20px;
}
footer .footer-sp a img {
  width: 25px;
}
footer .footer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  footer .footer {
    display: none;
  }
}
footer .footer .footer-left {
  margin-right: 200px;
}
@media screen and (max-width: 1280px) {
  footer .footer .footer-left {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer .footer-left {
    margin-right: 50px;
  }
}
footer .footer .footer-left .footer-logo {
  /* margin-bottom: 15px; */
  margin-bottom: 70px;
}
footer .footer .footer-left .footer-address {
  font-size: 1.2em;
  line-height: 1.7;
}
footer .footer .footer-right {
  font-family: 'Lato', sans-serif;
}
footer .footer .footer-right a {
  color: #fff;
  text-transform: uppercase;
}
footer .footer .footer-right .top-menu {
  margin-bottom: 40px;
}
footer .footer .footer-right .top-menu Ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer .footer-right .top-menu Ul a {
  display: block;
}
footer .footer .footer-right .top-menu > ul {
  display: flex;
}
footer .footer .footer-right .top-menu > ul > li {
  margin-right: 60px;
}
footer .footer .footer-right .top-menu > ul > li:last-child {
  margin-right: 0;
}
footer .footer .footer-right .top-menu > ul > li a {
  font-size: 1.6em;
  font-weight: 500;
}
footer .footer .footer-right .top-menu > ul > li ul {
  margin-top: 10px;
}
footer .footer .footer-right .top-menu > ul > li ul li {
  margin-bottom: 5px;
}
footer .footer .footer-right .top-menu > ul > li ul li a {
  font-size: 12px;
  color: #bbbbbb;
  padding-left: 22px;
  position: relative;
}
footer .footer .footer-right .top-menu > ul > li ul li a:before {
  content: '';
  display: block;
  background-color: #fff;
  height: 1px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer .footer .footer-right .bottom-menu {
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
footer .footer .footer-right .bottom-menu a {
  display: inline-block;
}
footer .footer .footer-right .bottom-menu .footer-contact-menu {
  font-size: 1.6em;
  font-weight: 500;
  border: #fff solid 1px;
  padding: 8px 32px;
  margin-right: 50px;
}
footer .footer .footer-right .bottom-menu .sitemap a {
  font-size: 12px;
  margin-right: 30px;
  padding-right: 30px;
  position: relative;
  color: #fffefe;
}
footer .footer .footer-right .bottom-menu .sitemap a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #fff;
}
footer .footer .footer-right .bottom-menu .sitemap a:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer .footer .footer-right .bottom-menu .sitemap a:last-child:after {
  display: none;
}
footer .copyright {
  font-size: 1.2em;
  text-align: center;
  color: #bbbbbb;
}

.about-section .main-title-container .main-title h2 span,
.recruit-section .main-title-container .main-title h2 span,
.company-section .main-title-container .main-title h2 span {
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .about-section .main-title-container .main-title h2 span,
  .recruit-section .main-title-container .main-title h2 span,
  .company-section .main-title-container .main-title h2 span {
    margin-left: 0;
  }
}

.home-section {
  position: relative;
  z-index: 9;
  padding: 200px 0;
}
@media screen and (max-width: 640px) {
  .home-section {
    padding: 80px 0;
  }
}

.bg {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/bg.png');
  background-size: cover;
}
.bg img {
  width: 100%;
}

.bnr {
  background: #f2f2f2;
  height: 100vh;
  position: relative;
  margin-top: -90px;
}
.bnr .bnr-container {
  height: 100%;
  padding: 100px 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 640px) {
  .bnr .bnr-container {
    padding: 30px;
  }
}
.bnr .bnr-container h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .bnr .bnr-container h2 {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 640px) {
  .bnr .bnr-container h2 img {
    max-width: 230px;
  }
}
.bnr .bnr-container h3 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 2em;
}
@media screen and (max-width: 640px) {
  .bnr .bnr-container h3 {
    font-size: 1.8em;
  }
}
.bnr .scroll-down {
  position: absolute;
  left: 40px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  z-index: 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
  font-size: 1.6em;
}
@media screen and (max-width: 768px) {
  .bnr .scroll-down {
    display: none;
  }
}
.bnr .scroll-down.scrolled {
  opacity: 0;
  visibility: hidden;
}
.bnr .scroll-down span {
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.bnr .scroll-down .scroll-down-bar {
  height: 100px;
  width: 1px;
  background-color: #bbbbbb;
  position: relative;
  margin-top: 12px;
  overflow: hidden;
}
.bnr .scroll-down .scroll-down-bar:before {
  content: '';
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: scroll 2s infinite;
}

.about-section {
  padding-top: 200px;
  padding-bottom: 180px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 640px) {
  .about-section {
    padding: 80px 0;
  }
}
.about-section .about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .about-section .about-wrapper {
    display: block;
  }
}
.about-section .about-wrapper .about-left {
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .about-section .about-wrapper .about-left {
    float: none;
  }
}
.about-section .about-wrapper .about-left .about-logo {
  float: right;
}
@media screen and (max-width: 768px) {
  .about-section .about-wrapper .about-left .about-logo {
    float: none;
  }
}
@media screen and (max-width: 640px) {
  .about-section .about-wrapper .about-left .about-logo img {
    transform: translate(0, 0);
  }
}
.about-section .about-wrapper .about-right {
  padding-top: 30px;
  position: relative;
  min-width: 560px;
}
@media screen and (max-width: 768px) {
  .about-section .about-wrapper .about-right {
    min-width: auto;
    padding-top: 0;
  }
}
.about-section .about-wrapper .about-right p {
  font-size: 2em;
  line-height: 1.8;
  margin-bottom: 130px;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .about-section .about-wrapper .about-right p {
    margin-bottom: 35px;
    font-size: 1.7em;
  }
}

.service-section {
  background-color: rgba(236, 236, 236, 0.7);
  padding-top: 215px;
  padding-bottom: 200px;
}
@media screen and (max-width: 640px) {
  .service-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.service-section .services {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .service-section .services {
    margin-top: 50px;
  }
}
.service-section .services .service {
  position: relative;
  margin-right: 0;
  margin-bottom: 210px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service {
    margin-right: 40px;
    background-color: #fff;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service {
    margin-right: 28px;
    padding-bottom: 50px;
    margin-bottom: 80px;
  }
}
.service-section .services .service:before,
.service-section .services .service:after {
  content: '';
  display: block;
  height: 1px;
  clear: both;
}
.service-section .services .service:nth-of-type(2n + 1) {
  margin-left: calc((100% - 1350px) / 2);
}
@media screen and (max-width: 1380px) {
  .service-section .services .service:nth-of-type(2n + 1) {
    margin-left: 50px;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 1) {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.service-section .services .service:nth-of-type(2n + 1) .service-box {
  float: left;
  padding-right: 245px;
  padding-left: 50px;
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service:nth-of-type(2n + 1) .service-box {
    float: none;
    margin-left: 0;
  }
}
.service-section .services .service:nth-of-type(2n + 1) .service-cover {
  left: 540px;
  right: -15px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service:nth-of-type(2n + 1) .service-cover {
    margin-left: 80px;
    margin-right: -60px;
  }
}
@media screen and (max-width: 768px) {
  .service-section .services .service:nth-of-type(2n + 1) .service-cover {
    margin-left: 60px;
    margin-right: -50px;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 1) .service-cover {
    margin-left: 45px;
    margin-right: -40px;
  }
}
.service-section .services .service:nth-of-type(2n + 1) .service-circle {
  left: -30px;
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 1) .service-circle {
    left: -15px;
  }
}
.service-section .services .service:nth-of-type(2n + 2) {
  margin-right: calc((100% - 1350px) / 2);
}
@media screen and (max-width: 1380px) {
  .service-section .services .service:nth-of-type(2n + 2) {
    margin-right: 50px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 2) {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.service-section .services .service:nth-of-type(2n + 2) .service-box {
  float: right;
  padding-left: 245px;
  padding-right: 50px;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-box {
    float: none;
    margin-right: 0;
  }
}
.service-section .services .service:nth-of-type(2n + 2) .service-cover {
  right: 540px;
  left: -15px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-cover {
    margin-right: 80px;
    margin-left: -60px;
  }
}
@media screen and (max-width: 768px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-cover {
    margin-right: 60px;
    margin-left: -50px;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-cover {
    margin-right: 45px;
    margin-left: -40px;
  }
}
.service-section .services .service:nth-of-type(2n + 2) .service-circle {
  right: -30px;
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-circle {
    right: -15px;
  }
}
.service-section .services .service:nth-of-type(2n + 2) .service-circle-white {
  left: auto;
  right: -30px;
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-circle-white {
    right: 0;
  }
}
.service-section .services .service:nth-of-type(2n + 2) .service-circle-white:before {
  left: auto;
  right: -5px;
}
@media screen and (max-width: 640px) {
  .service-section .services .service:nth-of-type(2n + 2) .service-circle-white:before {
    right: -20px;
  }
}
.service-section .services .service:last-of-type {
  margin-bottom: 0;
}
.service-section .services .service.service-creative .service-cover {
  background-image: url('../img/service-creative.png');
}
.service-section .services .service.service-system .service-cover {
  background-image: url('../img/service-system.png');
}
.service-section .services .service.service-marketing .service-cover {
  background-image: url('../img/service-marketing.png');
}
.service-section .services .service .service-circle {
  position: absolute;
  top: -100px;
  text-align: center;
  background-color: #000000;
  color: #fff;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-circle {
    width: 140px;
    height: 140px;
    top: -50px;
  }
}
.service-section .services .service .service-circle h3 {
  font-size: 3.6em;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-circle h3 {
    font-size: 2.5em;
  }
}
.service-section .services .service .service-circle h5 {
  font-size: 1.6em;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-circle h5 {
    font-size: 1.3em;
  }
}
.service-section .services .service .service-circle-white {
  position: absolute;
  overflow: hidden;
  width: 240px;
  height: 240px;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service .service-circle-white {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-circle-white {
    width: 150px;
    height: 150px;
  }
}
.service-section .services .service .service-circle-white:before {
  content: '';
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -103px;
  left: -33px;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-circle-white:before {
    top: -53px;
    left: -19px;
  }
}
.service-section .services .service .service-box {
  background-color: #fff;
  width: 700px;
  padding-top: 230px;
  padding-bottom: 50px;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service .service-box {
    background-color: transparent;
    position: static;
    width: auto;
    margin-top: 75px;
    padding: 0 30px !important;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-box {
    padding: 0 15px !important;
    margin-top: 35px;
  }
}
.service-section .services .service .service-box p {
  margin-bottom: 100px;
  font-size: 1.6em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-box p {
    margin-bottom: 0;
  }
}
.service-section .services .service .service-box .btn-container {
  text-align: right;
}
.service-section .services .service .service-cover {
  position: absolute;
  background-size: cover;
  background-position: center;
  bottom: auto;
  top: -40px;
  z-index: 1;
  height: 520px;
}
@media screen and (max-width: 1024px) {
  .service-section .services .service .service-cover {
    position: static;
    height: 400px;
    margin-top: 75px;
  }
}
@media screen and (max-width: 640px) {
  .service-section .services .service .service-cover {
    margin-top: 60px;
    height: 180px;
  }
}

.works-section {
  background: #23260a;
  background: linear-gradient(151deg, #23260a 0%, #0b2616 29%, #250b1c 100%);
}
.works-section.works-page-section {
  background: transparent;
}
.works-section .home-slide-side {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .works-section .home-slide-side {
    position: static;
    margin-top: 45px;
    text-align: right;
    margin-right: 15px;
  }
}
.works-section .home-slide-side .home-slide-control {
  margin-left: -10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .works-section .home-slide-side .home-slide-control {
    text-align: right;
    margin-right: -10px;
    margin-bottom: 25px;
  }
}
.works-section .home-slide-side .home-slide-control span {
  display: inline-block;
  cursor: pointer;
}
.works-section .home-slide-side .home-slide-control span:focus {
  outline: none;
}
.works-section .home-slide-side .home-slide-control span i {
  font-weight: bold;
  display: inline-block;
}
.works-section .home-slide-side .home-slide-control span i:before {
  font-size: 4em;
}
.works-section .home-slider-container {
  margin-left: calc((100% - 1280px) / 2);
  padding-left: 225px;
  position: relative;
  padding-bottom: 85px;
}
@media screen and (max-width: 1380px) {
  .works-section .home-slider-container {
    margin-left: 50px;
  }
}
@media screen and (max-width: 640px) {
  .works-section .home-slider-container {
    padding-left: 0;
    margin-left: 30px;
    padding-bottom: 0;
  }
}
.works-section .home-slider-container:after {
  content: '';
  display: block;
  clear: both;
}
.works-section .work-item {
  width: 370px;
}
@media screen and (max-width: 640px) {
  .works-section .work-item {
    width: 265px;
  }
}
.works-section .work-item .slide-item {
  display: block;
}
.works-section .work-item .slide-item:hover .slide-hover {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .works-section .work-item .slide-item:hover .slide-hover {
    display: none;
  }
}
.works-section .work-item .slide-thumb {
  height: 370px;
  width: 100%;
  padding: 35px;
  background-color: #fff;
  margin-bottom: 20px;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  .works-section .work-item .slide-thumb {
    height: 265px;
  }
}
.works-section .work-item .slide-thumb .slide-thumb-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-section .work-item .slide-thumb .slide-thumb-inner img {
  max-height: 100%;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
}
.works-section .work-item .slide-thumb .slide-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.works-section .work-item .slide-thumb .slide-hover .slide-hover-text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: justify;
}
.works-section .work-item .slide-thumb .slide-hover .slide-hover-text h4 {
  font-size: 2em;
  margin-bottom: 10px;
}
.works-section .work-item .slide-thumb .slide-hover .slide-hover-text h5 {
  font-size: 1.6em;
  font-weight: normal;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: #fff solid 1px;
}
.works-section .work-item .slide-thumb .slide-hover .slide-hover-text p {
  font-size: 1.6em;
  line-height: 1.8;
}
.works-section .work-item .slide-thumb .slide-hover:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  display: block;
  background: #010100;
  background: -moz-linear-gradient(45deg, #010100 0%, #0b2514 100%);
  background: -webkit-linear-gradient(45deg, #010100 0%, #0b2514 100%);
  background: linear-gradient(45deg, #010100 0%, #0b2514 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#010100", endColorstr="#0b2514",GradientType=1 );
}
.works-section .work-item .slide-caption {
  color: #fff;
}
.works-section .work-item .slide-caption h5 {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .works-section .work-item .slide-caption h5 {
    font-size: 1.7em;
  }
}
.works-section .work-item .slide-caption p {
  font-size: 1.6em;
  line-height: 1.8;
}

.news-section {
  background-color: rgba(236, 236, 236, 0.7);
}
.news-section .news-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 60px 0;
  font-size: 1.6em;
}
@media screen and (max-width: 640px) {
  .news-section .news-list {
    margin: 0 0 35px 0;
  }
}
.news-section .news-list li {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: #bbbbbb solid 1px;
}
@media screen and (max-width: 640px) {
  .news-section .news-list li {
    display: block;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
}
.news-section .news-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.news-section .news-list li .news-date {
  width: 225px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .news-section .news-list li .news-date {
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
  }
}
.news-section .news-list li .news-date .tag {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 7px;
  line-height: 16px;
  margin-right: 47px;
  margin-top: 6px;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .news-section .news-list li .news-date .tag {
    margin-right: 0;
    margin-top: 0;
    margin-left: 10px;
  }
}
.news-section .news-list li a {
  text-decoration: none;
  color: #000000;
  line-height: 1.8;
  cursor: default;
  pointer-events: none;
}
.recruit-section .recruit-bnr {
  text-align: center;
  background-color: #000;
  background-image: url('../img/dummy/reqruit.jpg');
  background-size: cover;
  background-position: center;
  padding: 85px 30px 60px 30px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .recruit-section .recruit-bnr {
    padding: 50px 20px;
    margin-bottom: 35px;
    text-align: left;
    background-image: url('../img/dummy/reqruit-sp.jpg');
  }
}
.recruit-section .recruit-bnr h3 {
  font-size: 3em;
  font-weight: 500;
  margin-bottom: 35px;
}
@media screen and (max-width: 640px) {
  .recruit-section .recruit-bnr h3 {
    font-size: 2.5em;
    text-align: center;
  }
}
.recruit-section .recruit-bnr p {
  font-size: 1.6em;
  line-height: 2;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .recruit-section .recruit-bnr p {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .company-section {
    padding-bottom: 300px;
  }
}
.company-section:before,
.company-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.company-section:before {
  background-size: contain;
  background-position: bottom right;
  background-image: url('../img/dummy/company.png');
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .company-section:before {
    background-image: url('../img/dummy/company-sp.png');
  }
}
@media screen and (max-width: 640px) {
  .company-section:before {
    background-position: bottom center;
    background-size: contain;
  }
}
.company-section:after {
  background-color: rgba(236, 236, 236, 0.7);
  z-index: 0;
}
.company-section .company-section-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}
.company-section .company-section-content p {
  margin-bottom: 200px;
  font-size: 2em;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .company-section .company-section-content p {
    font-size: 1.6em;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 640px) {
  .company-section .company-section-content .btn-container {
    text-align: center;
  }
}

.page-top {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page-top {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .page-top {
    margin-bottom: 75px;
  }
}
.page-top .page-cover {
  position: relative;
  background-image: url('../img/page-cover.jpg');
  background-position: center;
  background-size: cover;
}
.page-top .page-cover .page-cover-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.page-top .page-cover .page-cover-text {
  position: relative;
  z-index: 1;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .page-top .page-cover .page-cover-text {
    height: 180px;
  }
}
.page-top .page-cover .page-cover-text h1 {
  font-size: 8em;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}
@media screen and (max-width: 768px) {
  .page-top .page-cover .page-cover-text h1 {
    font-size: 3.7em;
    word-break: break-word;
  }
}
.page-top .page-cover .page-cover-text h5 {
  font-size: 1.6em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-top .page-cover .page-cover-text h5 {
    font-size: 1.3em;
  }
}
.page-top .breadcrumb {
  background-color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 1.6em;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
}
@media screen and (max-width: 640px) {
  .page-top .breadcrumb {
    display: none;
  }
}
.page-top .breadcrumb a {
  color: #000;
}
.page-top .breadcrumb span {
  margin: 0 10px;
}

.page-caption,
.page-caption-border {
  font-size: 2em;
}
@media screen and (max-width: 640px) {
  .page-caption,
  .page-caption-border {
    font-size: 1.7em;
  }
}
.page-caption h5,
.page-caption-border h5 {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-caption {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .page-caption {
    margin-bottom: 40px;
  }
}

.page-caption-border {
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: #bbbbbb solid 1px;
}
@media screen and (max-width: 640px) {
  .page-caption-border {
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
}

.boxed-content {
  background-color: #fff;
  padding: 80px;
}
@media screen and (max-width: 1024px) {
  .boxed-content {
    padding: 50px;
  }
}
@media screen and (max-width: 640px) {
  .boxed-content {
    padding: 50px 20px;
  }
}

.sitemap {
  display: flex;
}
@media screen and (max-width: 640px) {
  .sitemap {
    display: block;
  }
}
.sitemap ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
  flex: 1;
}
.sitemap ul a {
  font-size: 2em;
  text-transform: uppercase;
}
.sitemap ul > li {
  margin-bottom: 50px;
}
.sitemap ul > li a {
  font-weight: bold;
  color: #000;
}
.sitemap ul > li ul {
  margin-top: 20px;
  padding-left: 20px;
}
.sitemap ul > li ul li {
  margin-bottom: 10px;
}
.sitemap ul > li ul li a {
  font-weight: normal;
  color: #585858;
}

.contact-page .contact-form {
  width: 100%;
  margin-top: -40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form {
    margin-bottom: 40px;
  }
}
.contact-page .contact-form.contact-confirm tr.mail-address td {
  padding-bottom: 40px;
  border-bottom: #bbbbbb solid 1px;
}
.contact-page .contact-form tr {
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr {
    display: block;
  }
}
.contact-page .contact-form tr:last-child td {
  border-bottom: none;
}
.contact-page .contact-form tr.mail-address td {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-page .contact-form tr.mail-address-repeat td span {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr.mail-address-repeat td span {
    opacity: 1;
    visibility: visible;
  }
}
.contact-page .contact-form tr td {
  padding: 40px 0;
  border-bottom: #bbbbbb solid 1px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr td {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td {
    padding: 35px 0;
  }
}
.contact-page .contact-form tr td.contact-type label {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td.contact-type label {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr td:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.contact-page .contact-form tr td:first-child .form-title {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td:first-child .form-title {
    align-items: center;
  }
}
.contact-page .contact-form tr td:first-child .form-title h5 {
  font-size: 1.8em;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td:first-child .form-title h5 {
    font-size: 1.6em;
  }
}
.contact-page .contact-form tr td:first-child .form-title span {
  background-color: #000;
  color: #fff;
  font-size: 1.2em;
  display: inline-block;
  padding: 7px 8px;
  margin-right: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td:first-child .form-title span {
    margin-right: 15px;
  }
}
.contact-page .contact-form tr td:first-child .form-title .multiple-title h5 {
  margin-bottom: 40px;
}
.contact-page .contact-form tr td:first-child .form-title .multiple-title h5:last-child {
  margin-bottom: 0;
}
.contact-page .contact-form tr td:last-child {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr td:last-child {
    padding-left: 0;
  }
}
.contact-page .contact-form tr td:last-child label {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 40px;
  position: relative;
}
.contact-page .contact-form tr td:last-child label:last-of-type {
  margin-right: 0;
}
.contact-page .contact-form tr td:last-child label .radio-btn {
  background-color: blue;
  opacity: 0;
  position: absolute;
}
.contact-page .contact-form tr td:last-child label .radio-mark {
  border: #bbbbbb solid 1px;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  position: relative;
}
.contact-page .contact-form tr td:last-child label .radio-mark:before {
  content: '';
  background-color: #000;
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  opacity: 0;
}
.contact-page .contact-form tr td:last-child label .radio-btn:checked ~ .radio-mark:before {
  opacity: 1;
}
.contact-page .contact-form tr td input[type='text'],
.contact-page .contact-form tr td input[type='email'] {
  padding: 0 20px;
  height: 40px;
}
.contact-page .contact-form tr td input[type='text'],
.contact-page .contact-form tr td input[type='email'],
.contact-page .contact-form tr td textarea {
  border: #bbbbbb solid 1px;
  min-width: 300px;
  border-radius: 0;
}
.contact-page .contact-form tr td input[type='text']::placeholder,
.contact-page .contact-form tr td input[type='email']::placeholder,
.contact-page .contact-form tr td textarea::placeholder {
  color: #bbb;
}
.contact-page .contact-form tr td textarea {
  padding: 20px;
  display: block;
  width: 100%;
  text-align: left;
  height: 260px;
}
.contact-page .contact-form tr td .input-group input {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .contact-page .contact-form tr td .input-group input:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td .input-group input:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .contact-page .contact-form tr td .input-group input {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-form tr td .input-group input {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .contact-page .contact-form tr td .input-group input {
    margin-bottom: 20px;
  }
}
.contact-page .contact-form tr td .input-single input {
  width: 100%;
}
.contact-page .contact-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-privacy {
    margin-bottom: 50px;
  }
}
.contact-page .contact-privacy label {
  display: inline-flex;
  margin-right: 20px;
  position: relative;
}
.contact-page .contact-privacy label:last-of-type {
  margin-right: 0;
}
.contact-page .contact-privacy label .radio-btn {
  opacity: 0;
  position: absolute;
}
.contact-page .contact-privacy label .radio-mark {
  border: #bbbbbb solid 1px;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  position: relative;
}
.contact-page .contact-privacy label .radio-mark:before {
  content: '';
  background-color: #000;
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  opacity: 0;
}
.contact-page .contact-privacy label .radio-btn:checked ~ .radio-mark:before {
  opacity: 1;
}
.contact-page .contact-privacy a {
  color: #000;
  font-size: 2em;
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-privacy a {
    font-size: 1.7em;
  }
}
.contact-page .contact-form-btn {
  text-align: center;
}
.contact-page .contact-form-btn .btn.inactive {
  background-color: #bbbbbb;
  cursor: default;
  pointer-events: none;
}
.contact-page .contact-response {
  text-align: center;
}
.contact-page .contact-response h2 {
  font-size: 3.6em;
  margin-bottom: 45px;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-response h2 {
    font-size: 2em;
    margin-bottom: 35px;
  }
}
.contact-page .contact-response p {
  font-size: 1.8em;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .contact-page .contact-response p {
    font-size: 1.7em;
    margin-bottom: 35px;
    text-align: left;
  }
}

.company-page h2 {
  font-size: 6em;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .company-page h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }
}
.company-page .company-profile {
  margin-top: -30px;
  margin-bottom: 170px;
}
@media screen and (max-width: 640px) {
  .company-page .company-profile {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}
.company-page .company-profile .profile-info {
  font-size: 2em;
  margin-top: -30px;
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info {
    display: block;
    font-size: 1.7em;
    margin-top: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info tbody {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info tbody tr {
    display: block;
  }
}
.company-page .company-profile .profile-info tbody tr td {
  vertical-align: top;
  padding: 30px 0;
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info tbody tr td {
    display: block;
    padding: 0 0;
  }
}
.company-page .company-profile .profile-info tbody tr td:first-child {
  padding-right: 90px;
  white-space: nowrap;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info tbody tr td:first-child {
    text-align: left;
    margin-bottom: 10px;
  }
}
.company-page .company-profile .profile-info tbody tr td:last-child {
  margin-bottom: 30px;
}
.company-page .company-profile .profile-info tbody tr td ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.company-page .company-profile .profile-info tbody tr td strong {
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .company-page .company-profile .profile-info tbody tr td strong {
    font-weight: bold;
  }
}
.company-page .company-profile .profile-info tbody tr td .pmark {
  display: inline-block;
  margin-bottom: 10px;
}
.company-page .access {
  background-color: #fff;
  padding: 100px 0 200px 0;
  margin-bottom: -200px;
}
@media screen and (max-width: 768px) {
  .company-page .access {
    margin-bottom: -80px;
  }
}
@media screen and (max-width: 640px) {
  .company-page .access {
    padding: 80px 0;
  }
}
.company-page .access .map {
  height: 450px;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .company-page .access .map {
    height: 350px;
    margin-bottom: 35px;
  }
}
.company-page .access .stations:after {
  content: '';
  display: block;
  clear: both;
}
.company-page .access .stations h5 {
  font-size: 2em;
  margin-bottom: 30px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .company-page .access .stations h5 {
    font-size: 1.7em;
    margin-bottom: 20px;
  }
}
.company-page .access .stations .station {
  float: left;
  padding-right: 50px;
  margin-right: 50px;
  border-right: #bbbbbb solid 1px;
}
@media screen and (max-width: 768px) {
  .company-page .access .stations .station {
    float: none;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    border-bottom: #bbbbbb solid 1px;
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
}
.company-page .access .stations .station:last-of-type {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .company-page .access .stations .station:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.company-page .access .stations .station table {
  font-size: 1.6em;
}
.company-page .access .stations .station table tr:last-child td {
  padding-bottom: 0;
}
.company-page .access .stations .station table tr td {
  padding-bottom: 20px;
}
.company-page .access .stations .station table tr td:first-child {
  padding-right: 30px;
  white-space: nowrap;
}
.company-page .access .stations .station table tr td strong {
  background-color: #bbbbbb;
  padding: 5px 10px;
  display: block;
  text-align: center;
  font-weight: 500;
}
.company-page .members {
  padding: 200px 0;
  margin-bottom: -200px;
}
@media screen and (max-width: 640px) {
  .company-page .members {
    padding: 80px 0;
    margin-bottom: -80px;
  }
}
.company-page .members ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.company-page .members ul li {
  display: flex;
}
@media screen and (max-width: 768px) {
  .company-page .members ul li {
    display: block;
  }
}
.company-page .members ul li:first-child div {
  border-top: #bbbbbb solid 1px;
}
.company-page .members ul li > div {
  padding: 40px 0;
  border-bottom: #bbbbbb solid 1px;
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div {
    padding: 35px 0;
  }
}
.company-page .members ul li > div.member-left {
  margin-right: 90px;
  font-size: 2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company-page .members ul li > div.member-left {
    border-bottom: none;
  }
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div.member-left {
    margin-right: 0;
    font-size: 1.7em;
    padding-bottom: 20px;
  }
}
.company-page .members ul li > div.member-right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company-page .members ul li > div.member-right {
    border-top: none;
    padding-top: 0;
  }
}
.company-page .members ul li > div.member-right.member-right-list > div {
  width: 50%;
  float: left;
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div.member-right.member-right-list > div:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div.member-right.member-right-list > div {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
}
.company-page .members ul li > div.member-right.member-right-list .member-right-clear {
  display: block;
  clear: both;
  height: 35px;
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div.member-right.member-right-list .member-right-clear {
    height: 1px;
  }
}
.company-page .members ul li > div.member-right strong {
  font-size: 2em;
  font-weight: normal;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .company-page .members ul li > div.member-right strong {
    margin-bottom: 0;
  }
}

.privacy-policy {
  font-size: 16px;
}
.privacy-policy .pp-caption-top {
  text-align: right;
}
.privacy-policy .pp-top {
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .privacy-policy .pp-top {
    font-size: 17px;
  }
}
.privacy-policy .pp-top p {
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .privacy-policy .pp-top p {
    font-size: 17px;
  }
}
.privacy-policy h5 {
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .privacy-policy h5 {
    font-size: 17px;
  }
}
.privacy-policy p {
  font-size: 16px;
}
.privacy-policy ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.privacy-policy ul.char1 > li {
  padding-left: 1em;
}
.privacy-policy ul.char2 > li {
  padding-left: 2em;
}
.privacy-policy ul.char3 > li {
  padding-left: 3em;
}
.privacy-policy ul.margin35 > li {
  margin-bottom: 35px;
}
.privacy-policy ul.margin35 > li:last-child {
  margin-bottom: 0;
}
.privacy-policy ul.margin15 > li {
  margin-bottom: 15px;
}
.privacy-policy ul.margin15 > li:last-child {
  margin-bottom: 0;
}
.privacy-policy ul li {
  position: relative;
}
.privacy-policy ul li span {
  position: absolute;
  left: 0;
}
.privacy-policy hr.lg {
  margin-top: 80px;
  margin-bottom: 80px;
  border-top: #bbbbbb solid 1px;
}
@media screen and (max-width: 640px) {
  .privacy-policy hr.lg {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
.privacy-policy h3 {
  font-size: 30px;
}
@media screen and (max-width: 640px) {
  .privacy-policy h3 {
    font-size: 20px;
  }
}
.privacy-policy table {
  border-collapse: collapse;
}
@media screen and (max-width: 640px) {
  .privacy-policy table {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .privacy-policy table tr {
    display: block;
  }
}
.privacy-policy table td {
  padding: 10px 30px;
  border: #000 solid 1px;
}
@media screen and (max-width: 640px) {
  .privacy-policy table td {
    display: block;
  }
}
.privacy-policy table td:first-child {
  background-color: #bbbbba;
}
@media screen and (max-width: 640px) {
  .privacy-policy table td:first-child {
    font-weight: bold;
  }
}
@media screen and (max-width: 640px) {
  .privacy-policy .space40 {
    height: 30px;
  }
}
@media screen and (max-width: 640px) {
  .privacy-policy .space50 {
    height: 40px;
  }
}
@media screen and (max-width: 640px) {
  .privacy-policy .space35 {
    height: 15px;
  }
}

.works-page h2 {
  font-size: 6em;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .works-page h2 {
    font-size: 5em;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 380px) {
  .works-page h2 {
    font-size: 3.6em;
  }
}
.works-page .works-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
@media screen and (max-width: 1024px) {
  .works-page .works-container {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 640px) {
  .works-page .works-container {
    margin: 0;
  }
}
.works-page .works-container .work-item {
  margin: 0 25px;
  width: calc(33.33% - 50px);
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .works-page .works-container .work-item {
    margin: 0 15px;
    width: calc(33.33% - 30px);
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .works-page .works-container .work-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .works-page .works-container .work-item {
    width: 100%;
    margin: 0 0 35px 0;
  }
}
.works-page .works-container .work-item .slide-caption {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .works-page .works-container .work-item .slide-thumb {
    height: 310px;
  }
}

.work-detail {
  position: relative;
}
.work-detail .wd-left {
  width: calc(50% + 50px);
  padding-right: 50px;
  min-height: 725px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .work-detail .wd-left {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .work-detail .wd-left .wd-btn-container {
    text-align: center;
  }
}
.work-detail .wd-left .wd-gallery {
  width: 47%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .work-detail .wd-left .wd-gallery {
    position: static;
    width: 60%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .wd-gallery {
    width: 100%;
  }
}
.work-detail .wd-left .wd-gallery .wd-thumb {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-detail .wd-left .wd-gallery .wd-thumb img {
  max-height: 100%;
}
.work-detail .wd-left .wd-gallery .gallery-top {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .wd-gallery .gallery-top {
    margin-bottom: 15px;
  }
}
.work-detail .wd-left .wd-gallery .gallery-top .wd-thumb {
  padding: 45px;
  height: 600px;
}
@media screen and (max-width: 1024px) {
  .work-detail .wd-left .wd-gallery .gallery-top .wd-thumb {
    height: 450px;
  }
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .wd-gallery .gallery-top .wd-thumb {
    height: 350px;
  }
}
.work-detail .wd-left .wd-gallery .gallery-thumbs .swiper-slide-thumb-active .wd-thumb:after {
  display: block;
}
.work-detail .wd-left .wd-gallery .gallery-thumbs .wd-thumb {
  padding: 10px;
  height: 95px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .wd-gallery .gallery-thumbs .wd-thumb {
    height: 70px;
  }
}
.work-detail .wd-left .wd-gallery .gallery-thumbs .wd-thumb:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
.work-detail .wd-left .tags-wrapper {
  margin: -1px -5px;
}
.work-detail .wd-left .tags-wrapper span {
  margin: 1px 5px;
  display: inline-block;
  line-height: 1.5;
}
.work-detail .wd-left .tags-wrapper.tags {
  font-size: 1.6em;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .tags-wrapper.tags {
    margin-bottom: 20px;
  }
}
.work-detail .wd-left .tags-wrapper.tags span {
  border: #000 solid 1px;
  background-color: #fff;
  padding: 2px 10px;
  margin: 5px;
}
.work-detail .wd-left .tags-wrapper.types {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .tags-wrapper.types {
    font-size: 1.7em;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .tags-wrapper.types span {
    display: block;
  }
}
.work-detail .wd-left .tags-wrapper.duties {
  font-size: 1.6em;
  font-weight: 500;
  line-height: normal;
}
.work-detail .wd-left .tags-wrapper.duties span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.3;
}
.work-detail .wd-left .tags-wrapper.duties span:last-child:after {
  display: none;
}
.work-detail .wd-left .tags-wrapper.duties span:after {
  content: '';
  height: 16px;
  width: 2px;
  background-color: #bbb;
  display: inline-block;
  margin-left: 10px;
}
.work-detail .wd-left h1 {
  font-size: 6em;
  margin-bottom: 25px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left h1 {
    font-size: 3.4em;
    margin-bottom: 20px;
  }
}
.work-detail .wd-left .wd-text {
  font-size: 1.6em;
  line-height: 2;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .work-detail .wd-left .wd-text {
    margin-top: 30px;
  }
}
.work-detail .wd-left .wd-text .visit {
  margin-top: 40px;
}
.work-detail .wd-left .wd-text .visit a {
  color: #000;
  border-bottom: #000 solid 1px;
  padding-bottom: 5px;
}
.work-detail .wd-left .wd-text .visit a:hover {
  border-bottom: #d72500 solid 1px;
}

/*# sourceMappingURL=style.css.map */

/* 2301118追加 */
.company-page .company-profile .profile-info tbody tr td ul.area {
  margin-bottom: 2rem;
}
.area-map {
  list-style: none;
  font-size: 2em;
  padding: 0;
}
.about-section .about-wrapper .about-right p.about-textarea {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 0;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .about-section .about-wrapper .about-right p.about-textarea {
    font-size: 13px;
  }
  .main-title-container .main-title h2 span {
    margin-top: 0;
    line-height: 0;
  }
}
.main-title-container .main-title {
  display: block;
}

.about-section .about-wrapper .about-right p {
  text-align: center;
  font-size: 2em;
  line-height: 1.8;
  margin-bottom: 65px;
}
@media screen and (max-width: 640px) {
  .about-section .about-wrapper .about-right p{
    margin-bottom: 35px;
    font-size: 1.7em;
  }
}

.main-title-container .main-title div {
  font-family: 'Lato', sans-serif;
  font-size: 6em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .main-title-container .main-title div {
    font-size: 3.7em;
  }
}
.about-section{
  padding: 110px 0;
}
.service-section {
  padding: 160px 0;
}
@media screen and (max-width: 640px) {
  .about-section{
    padding: 80px 0;
  }
  .service-section {
    padding: 100px 0;
  }
}
.company-page .access {
  padding: 100px 0 0 0;
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .company-page .access {
    padding: 80px 0;
  }
}
.company-page .access .line {
  width: 100%;
  height: 1%;
  border-top: #bbbbbb solid 1px;
  margin-top: 7em;
  margin-bottom: 5em;
}
.footer-mt0 {
  margin-top: 0;
}

.company-page .access .map {
  margin-bottom: 0;
}
.stations {
  margin-top: 60px;
}
.access-area {
  padding-bottom: 150px;
}
@media screen and (max-width: 640px) {
  .access-area {
    padding-bottom: 50px;
  }
}
.top-bar .logo img {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .company-page .access .stations .station {
    border: 0;
    margin-bottom: 20px;
  }
}
body.scrolled .top-bar .logo img,
.top-bar .logo img {
  margin-top: 5px;
}
.last-pb {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) { 
  .last-pb {
  padding-bottom: 60px;
  }
}
.paddingZero {
  padding-bottom: 0;
}
a.mail-color {
color: #000;
}
a.mail-color:hover {
  text-decoration: underline;
}