@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:300|Playfair+Display:400,700&display=swap");
@keyframes scroll_arrow {
  0% {
    height: 0;
    bottom: 30px;
  }
  30% {
    height: 30px;
    bottom: 0;
  }
  60% {
    height: 30px;
    bottom: 0;
  }
  80% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
  font-family: "Noto Serif JP", Roboto, Arial, sans-serif;
  color: #000;
}

a {
  color: inherit;
  text-decoration: inherit;
}

body {
  margin: 0;
}

svg {
  width: 0;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.page {
  display: block;
  background-image: url("../images/background.jpg");
}
.page__text-container {
  position: relative;
  max-width: calc(100% - 40px);
  margin: -50px auto 50px;
}
@media (min-width: 480px) {
  .page__text-container {
    max-width: calc(100% - 60px);
  }
}
@media (min-width: 720px) {
  .page__text-container {
    max-width: calc(100% - 100px);
  }
}
@media (min-width: 1025px) {
  .page__text-container {
    max-width: calc(100% - 200px);
    margin: -250px auto 180px;
  }
}
@media (min-width: 1200px) {
  .page__text-container {
    max-width: calc(100% - 300px);
  }
}
@media (min-width: 1500px) {
  .page__text-container {
    max-width: 1200px;
  }
}
@media (min-width: 1025px) {
  .page__text-container--small-padding {
    margin: -250px auto 100px;
  }
}
.page__title {
  margin: 0 0 50px;
}
@media (min-width: 1025px) {
  .page__title {
    margin: 0 0 100px;
  }
}

.intro {
  position: relative;
  background-image: linear-gradient(to bottom, #18307f, #121e5d);
}
.intro__overlay {
  background: url("../images/merged.png");
  background-repeat: repeat-x;
  background-size: cover;
}
.intro__scrolldown {
  position: absolute;
  writing-mode: vertical-lr;
  right: 20px;
  top: 50%;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.2px;
  padding-bottom: 40px;
  transform: translateX(100%);
}
@media (min-width: 480px) {
  .intro__scrolldown {
    right: 30px;
  }
}
@media (min-width: 1025px) {
  .intro__scrolldown {
    right: 100px;
  }
}
.intro__scrollwrap {
  overflow: hidden;
  position: absolute;
  animation: scroll_arrow 2s linear infinite;
}
.intro__scrollimg {
  margin-left: -2px;
}
.intro__city {
  width: 100%;
  display: block;
}
.intro__hero {
  margin: 0 20px 20px;
  padding-top: 150px;
}
@media (min-width: 1025px) {
  .intro__hero {
    width: 620px;
    padding-top: 240px;
    margin: 0 auto 75px;
  }
}

.header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin: 0 20px;
  padding: 20px 0;
  width: calc(100% - 40px);
  z-index: 2;
}
@media (min-width: 480px) {
  .header {
    padding: 20px 0;
    margin: 0 30px;
    width: calc(100% - 60px);
  }
}
@media (min-width: 1025px) {
  .header {
    padding: 0 0;
    margin: 0 100px;
    width: calc(100% - 200px);
  }
}
.header__logo {
  width: 200px;
}
@media (min-width: 1025px) {
  .header__logo {
    width: auto;
  }
}
.header--fixed {
  position: fixed;
  background-color: rgba(21, 36, 109, 0.84);
  width: 100%;
  margin: 0;
  padding: 20px;
}
@media (min-width: 480px) {
  .header--fixed {
    padding: 20px 30px;
  }
}
@media (min-width: 1025px) {
  .header--fixed {
    padding: 0 100px;
  }
}
.header--fixed .header__logo {
  width: 200px;
}
.header--slide-up {
  transition: transform 0.2s ease-in;
  transform: translateY(-100%);
}
.header--slide-down {
  transition: transform 0.2s ease-in;
  transform: translateY(0);
}

.navigation {
  display: none;
}
@media (min-width: 1025px) {
  .navigation {
    display: block;
  }
}
.navigation__wrapper {
  display: flex;
  margin: 0;
  padding: 0;
}
.navigation__item {
  position: relative;
  color: #fff;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 1.4px;
  padding: 30px 0;
}
.navigation__link--active::after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 15px;
  content: "";
  border: 2px solid #fff;
  transform: translateX(-50%);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 200px;
  height: 100vh;
  background-color: #edf4fd;
  box-shadow: -20px black;
  z-index: 3;
  padding: 60px 35px 35px;
  transition: transform 0.25s ease-out 0s;
}
@media (min-width: 480px) {
  .mobile-nav {
    padding: 90px 35px 35px;
  }
}
@media (min-width: 1025px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav--shown {
  transform: translateX(0);
}
.mobile-nav__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__close {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-transform: none;
  width: auto;
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 8px;
  font-size: 40px;
  width: 30px;
  height: 30px;
}
@media (min-width: 480px) {
  .mobile-nav__close {
    font-size: 60px;
  }
}
.mobile-nav__close::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #000;
  transform: rotate(45deg);
}
.mobile-nav__close::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #000;
  transform: rotate(-45deg);
}
.mobile-nav__item {
  margin: 7px 0;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.8px;
  transform: translateX(150%);
  transition: transform 0.25s ease-in-out 0.25s;
}
.mobile-nav--shown .mobile-nav__item {
  transform: translateX(0);
}

.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #333;
  z-index: 2;
  transition: opacity 0.25s ease-out 0s;
}
.overlay--shown {
  visibility: visible;
  opacity: 0.5;
}

.hamburger {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-transform: none;
  width: auto;
  height: auto;
  cursor: pointer;
  width: 30px;
  height: 30px;
  outline: none;
  position: relative;
  border: 0;
}
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger__stroke {
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-top: 7px;
}
.hamburger__stroke:first-child {
  margin-top: 0;
}

.hero__big {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.11;
  letter-spacing: 2.72px;
  text-align: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 1025px) {
  .hero__big {
    font-size: 68px;
  }
}
.hero__big--one {
  transition: opacity 0.5s ease-in 0.5s, transform 0.5s ease-in 0.5s;
}
.hero__big--two {
  transition: opacity 0.5s ease-in 1.5s, transform 0.5s ease-in 1.5s;
}
.hero__big--three {
  transition: opacity 0.5s ease-in 2.5s, transform 0.5s ease-in 2.5s;
}
.hero__small {
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.8px;
  margin-bottom: 25px;
  opacity: 0;
}
@media (min-width: 1025px) {
  .hero__small {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.hero__small--one {
  transition: opacity 0.5s ease-in 1s;
}
.hero__small--two {
  transition: opacity 0.5s ease-in 2s;
}
.hero__small--three {
  transition: opacity 0.5s ease-in 3s;
}
.hero__text {
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 2.19;
  letter-spacing: 1.6px;
  margin: 0 0 60px;
  transition: opacity 0.5s ease-in 3s;
  opacity: 0;
}
@media (min-width: 1025px) {
  .hero__text {
    font-size: 16px;
  }
}
.hero__highlight {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 2.6px;
  padding: 0 0 10px;
  transition: opacity 0.5s ease-in 4.5s, transform 0.5s ease-in 4.5s;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 1025px) {
  .hero__highlight {
    font-size: 23px;
  }
}
.hero__highlight-wrap {
  position: relative;
  width: fit-content;
  margin: auto;
}
.hero__highlight-wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0%;
  border-bottom: 1px solid #fff;
  transition: width 1s ease-in 3.5s;
}
.hero.animated .hero__big--one {
  opacity: 1;
  transform: translateY(0);
}
.hero.animated .hero__big--two {
  opacity: 1;
  transform: translateY(0);
}
.hero.animated .hero__big--three {
  opacity: 1;
  transform: translateY(0);
}
.hero.animated .hero__small--one {
  opacity: 1;
}
.hero.animated .hero__small--two {
  opacity: 1;
}
.hero.animated .hero__small--three {
  opacity: 1;
}
.hero.animated .hero__text {
  opacity: 1;
}
.hero.animated .hero__highlight-wrap::after {
  width: 100%;
}
.hero.animated .hero__highlight-wrap .hero__highlight {
  opacity: 1;
  transform: translateY(0);
}

.fullwidth {
  width: 100%;
}

.text-container {
  background-color: #fff;
  padding: 30px 40px;
}
@media (min-width: 1025px) {
  .text-container {
    padding: 100px 150px;
  }
}
.text-container__service {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 1025px) {
  .text-container__service {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.text-container__service.animated .service--one {
  opacity: 1;
  transform: translateY(0);
}
.text-container__service.animated .service--two {
  opacity: 1;
  transform: translateY(0);
}
.text-container__service.animated .service--three {
  opacity: 1;
  transform: translateY(0);
}
.text-container__staff {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 720px) {
  .text-container__staff {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}
.text-container__staff.animated .staff--one {
  opacity: 1;
  transform: translateY(0);
}
.text-container__staff.animated .staff--two {
  opacity: 1;
  transform: translateY(0);
}
.text-container__staff.animated .staff--three {
  opacity: 1;
  transform: translateY(0);
}
.text-container__table {
  margin-bottom: 100px;
}
.text-container__customer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 480px) {
  .text-container__customer {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}
@media (min-width: 720px) {
  .text-container__customer {
    margin-bottom: 80px;
  }
}
.text-container__customer.animated .customer--one {
  opacity: 1;
}
.text-container__customer.animated .customer--two {
  opacity: 1;
}
.text-container__customer.animated .customer--three {
  opacity: 1;
}
.text-container__customer.animated .customer--four {
  opacity: 1;
}
.text-container__title {
  margin: 0 0 25px;
}
@media (min-width: 1025px) {
  .text-container__title {
    margin: 0 0 95px;
  }
}

.title {
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.54;
  letter-spacing: 1.56px;
  text-align: center;
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (min-width: 480px) {
  .title {
    font-size: 22px;
  }
}
@media (min-width: 1025px) {
  .title {
    font-size: 26px;
  }
}
.title.animated {
  opacity: 1;
}

.english-title {
  color: #15246d;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  text-decoration: underline;
  position: absolute;
  right: 10px;
  writing-mode: vertical-lr;
}
@media (min-width: 1025px) {
  .english-title {
    right: 75px;
  }
}

.paragraph {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 2.4px;
  margin-bottom: 40px;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 480px) {
  .paragraph {
    font-size: 14px;
  }
}
@media (min-width: 1025px) {
  .paragraph {
    font-size: 16px;
  }
}
.paragraph--big {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: 2.16px;
}
@media (min-width: 480px) {
  .paragraph--big {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .paragraph--big {
    font-size: 36px;
  }
}
.paragraph--right {
  text-align: right;
}
.paragraph.animated {
  opacity: 1;
  transform: translateY(0);
}

.service {
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 1025px) {
  .service {
    max-width: 30%;
  }
}
.service--one {
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.service--two {
  transition: opacity 0.5s ease-in 0.5s, transform 0.5s ease-in 0.5s;
}
.service--three {
  transition: opacity 0.5s ease-in 1s, transform 0.5s ease-in 1s;
}
.service:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .service:not(:last-child) {
    margin-bottom: 0;
  }
}
.service__logo {
  margin-bottom: 30px;
}
.service__title {
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 2px;
  color: #15246d;
  text-align: center;
}
.service__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: 1.6px;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 2px;
  text-align: center;
  color: #15246d;
  padding: 0 0 10px;
  margin: 0;
  transition: opacity 0.5s ease-in 0.5s, transform 0.5s ease-in 0.5s;
  opacity: 0;
  transform: translateY(20px);
}
.subtitle__wrap {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0 auto 40px;
}
@media (min-width: 1025px) {
  .subtitle__wrap {
    margin: 0 auto 80px;
  }
}
.subtitle__wrap::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0%;
  border-bottom: 1px solid #15246d;
  transition: width 0.5s ease-in;
}
.subtitle__wrap.animated::after {
  width: 100%;
}
.subtitle__wrap.animated .subtitle {
  opacity: 1;
  transform: translateY(0);
}

.table {
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
  opacity: 0;
  transform: translateY(20px);
}
.table__row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 25px 0;
}
.table__row:nth-child(even) {
  background-color: #edf4fd;
}
.table__col {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
}
@media (min-width: 1025px) {
  .table__col--space-right {
    margin-right: 140px;
  }
}
.table__col--big {
  width: 66%;
}
.table__img {
  width: 240px;
}
.table.animated {
  opacity: 1;
  transform: translateY(0);
}

.small-table__head {
  text-align: right;
  padding-right: 20px;
}

.staff {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 720px) {
  .staff {
    max-width: 30%;
  }
}
.staff--one {
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.staff--two {
  transition: opacity 0.5s ease-in 0.5s, transform 0.5s ease-in 0.5s;
}
.staff--three {
  transition: opacity 0.5s ease-in 1s, transform 0.5s ease-in 1s;
}
.staff:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .staff:not(:last-child) {
    margin-bottom: 0;
  }
}
.staff__img {
  margin-bottom: 40px;
}
.staff__name {
  color: #15246d;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 2px;
  text-align: center;
}
.staff__name-romaji {
  color: #15246d;
  font-size: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 3.33;
  letter-spacing: 1.2px;
  text-align: center;
}
.staff__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: 1.6px;
  text-align: center;
}

.customer {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
}
@media (min-width: 480px) {
  .customer {
    margin-right: 20px;
  }
}
@media (min-width: 720px) {
  .customer {
    width: 22%;
  }
}
.customer:last-child {
  margin-right: 0;
}
.customer--one {
  transition: opacity 0.5s ease-in;
}
.customer--two {
  transition: opacity 0.5s ease-in 0.5s;
}
.customer--three {
  transition: opacity 0.5s ease-in 1s;
}
.customer--four {
  transition: opacity 0.5s ease-in 1.5s;
}

.andmore {
  text-align: center;
}

.map {
  width: 100%;
  height: 600px;
}

.footer {
  padding: 70px 30px 30px;
  background-color: #15246d;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logo {
  margin-bottom: 80px;
}
.footer__sns {
  margin-bottom: 70px;
}
.footer__copyright {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.33;
  letter-spacing: 1.2px;
  text-align: center;
}

.sns {
  margin-right: 40px;
}
.sns:last-child {
  margin-right: 0;
}/*# sourceMappingURL=main.css.map */