*,
*::before,
*::after {
  box-sizing: border-box;
}

.l-content {
  margin: 0 auto !important;
}

/* footer
--------------------------------------------- */
.l-footer {
  padding: 2.5rem 0 0.625rem !important;
}

.l-footer__logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 0.625rem;
  object-fit: contain;
}

.l-footer__nav a {
  border-right: none;
}

.l-footer__nav li:first-child a {
  border-left: none;
}

/* front
--------------------------------------------- */
@media screen and (max-width: 768px) {
  .f-overview__wrap {
    flex-direction: column-reverse;
  }
}

.f-overview__map {
  max-width: 344px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .f-overview__map {
    display: block;
    margin: 0 auto;
  }
}

.f-overview__tbl th {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  white-space: nowrap;
}

.f-overview__tbl td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.f-image__box {
  height: 400px;
}

@media screen and (max-width: 768px) {
  .f-image__box {
    height: 280px;
  }
}

.f-trading__list li {
  margin: 0.25rem 1rem;
}

/* section
--------------------------------------------- */
.section-title h2 {
  position: relative;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

.section-title p {
  position: relative;
}


.section-title p::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.section-title p em {
  position: relative;
  z-index: 1;
  padding-right: 1.25rem;
  background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}

.c-cta__note {
  width: fit-content;
  margin: 0 auto;
}

/* works
--------------------------------------------- */
.p-worksTitleArea {
  align-items: center;
  display: flex;
  margin: 0;
  min-height: 11em;
  overflow: hidden;
  padding: 1.5em 0;
  position: relative;
  width: 100%
}

@media screen and (min-width: 600px) {
  .p-worksTitleArea {
    min-height: 240px;
    padding: 1em 0;
  }
}

.p-worksTitleArea .p-worksTitleArea__body {
  color: #FFFFFF;
  position: relative;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
  width: 100%;
  margin: 0;
  z-index: 3;
}

/* mask
--------------------------------------------- */
.mask-bg {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: fit-content;
  color: transparent;
  transition: color 0ms 450ms;
}

.mask-bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  background: #000000;
  transform: translate(0, 100%);
}

.mask-bg.is-animated {
  color: #000000;
}

.mask-bg.is-animated::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%)
  }

  40%,
  60% {
    transform: translate(0, 0%)
  }

  100% {
    transform: translate(0, -100%)
  }
}