/* fonts */
/* size */
/* line-height */
/* brand color */
/* text */
/* border */
/* bg */
/* =======================================
   Reset + Base (SCSS)
   ======================================= */
/* Box sizing & margin/padding reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body defaults */
body {
  color: #1c1c1c;
  font-family: "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove image border and max out width */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Tables: collapse borders */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form elements: font inheritance */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Button: remove default */
button {
  cursor: pointer;
}

/* Strong/bold normalization */
strong {
  font-weight: bold;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page__main {
  flex: 1;
}
.page__header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.bold {
  font-weight: bold;
}

.mainTitle {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.mainTitle--en {
  position: relative;
  font-size: 28px;
  padding-right: 10px;
}
@media (min-width: 1280px) {
  .mainTitle--en {
    font-size: 44px;
    padding-right: 16px;
  }
}
.mainTitle--en::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background-color: #1c1c1c;
}
.mainTitle--jp {
  padding-left: 10px;
  font-size: 16px;
}
@media (min-width: 1280px) {
  .mainTitle--jp {
    font-size: 18px;
    padding-left: 16px;
  }
}

.newsList {
  margin-bottom: 24px;
}
.newsList__link {
  display: block;
  padding: 16px 16px;
  border-bottom: 1px solid #ddd;
}
.newsList__link:hover {
  transition: 0.2s;
  background-color: rgba(0, 0, 0, 0.05);
}
.newsList__item--date {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 100%;
  color: #666;
}
.newsList__item--title {
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
}

.iconLink {
  display: flex;
  align-items: center;
  color: #1c1c1c;
  font-size: 14px;
  line-height: 100%;
  font-weight: bold;
}
.iconLink:hover {
  text-decoration: underline;
}
.iconLink__img {
  width: 24px;
  height: 24px;
}
.iconLink--go {
  justify-content: flex-end;
}
.iconLink--go > span {
  margin-left: 8px;
}
.iconLink--back {
  justify-content: flex-start;
}
.iconLink--back > span {
  margin-right: 8px;
}
.iconLink--external {
  font-size: 16px;
  color: #00b4b6;
}

.footer {
  padding: 20px;
  color: #fff;
  background-color: #1c1c1c;
}
@media (min-width: 1280px) {
  .footer {
    padding: 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
  }
}
.footer__logos {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .footer__logos {
    margin-bottom: 0;
  }
}
.footer__logo {
  position: relative;
  font-size: 24px;
  display: flex;
  align-items: center;
  padding: 8px 28px;
}
@media (min-width: 1280px) {
  .footer__logo {
    padding: 24px 40px 24px 0;
  }
}
.footer__logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background-color: #fff;
}
.footer__logo--img {
  width: 100px;
}
@media (min-width: 1280px) {
  .footer__logo--img {
    width: 120px;
  }
}
.footer__text {
  padding: 13px 25px;
  font-size: 14px;
}
@media (min-width: 1280px) {
  .footer__text {
    padding-left: 40px;
    font-size: 18px;
  }
}

.footer__links :not(:last-child) {
  margin-right: 40px;
}

.footer__link {
  font-size: 14px;
  line-height: 180%;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 1280px) {
  .footer__link {
    font-size: 16px;
  }
}

.copyright {
  display: flex;
  justify-content: center;
  font-size: 12px;
  line-height: 180%;
}
@media (min-width: 1280px) {
  .copyright {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    padding: 0 80px 20px 0;
  }
}

.page__header {
  display: none;
}

.top {
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f6f6;
  background-repeat: repeat-x;
  background-size: auto 500px;
  background-position: top center;
  background-image: url("/assets/img/background-wave.svg");
}
@media (min-width: 1280px) {
  .top {
    padding: 0;
    background-size: auto 880px;
  }
}

.top__logo--black {
  display: none;
}
@media (min-width: 1280px) {
  .top__logo--black {
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    width: 187px;
  }
}
.top__logo--gray {
  display: none;
}
@media (min-width: 1280px) {
  .top__logo--gray {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 343px;
  }
}
.top__logo--nordot {
  width: 140px;
  margin-bottom: 36px;
}
@media (min-width: 1280px) {
  .top__logo--nordot {
    width: 240px;
    margin-bottom: 126px;
  }
}

.top__content {
  margin-bottom: 80px;
  width: 100%;
}
@media (min-width: 1280px) {
  .top__content {
    width: 900px;
  }
}
.top__content--message {
  padding-top: 91px;
}
@media (min-width: 1280px) {
  .top__content--message {
    padding-top: 128px;
  }
}

.top__message {
  margin-bottom: 30px;
}
@media (min-width: 1280px) {
  .top__message {
    margin-bottom: 209px;
    padding-left: 40px;
    border-left: 2px solid #1c1c1c;
  }
}
.top__message__title {
  margin-bottom: 20px;
  font-size: 27px;
  font-weight: bold;
  line-height: 160%;
}
@media (min-width: 1280px) {
  .top__message__title {
    margin-bottom: 40px;
    font-size: 56px;
    line-height: 160%;
  }
}
.top__message__description {
  font-size: 14px;
  line-height: 180%;
}
@media (min-width: 1280px) {
  .top__message__description {
    font-size: 18px;
    line-height: 200%;
  }
}

@media (min-width: 1280px) {
  .service__content {
    display: flex;
    justify-content: space-between;
  }
}
.service__content--nordot, .service__content--new {
  width: 100%;
}
@media (min-width: 1280px) {
  .service__content--nordot, .service__content--new {
    width: 430px;
  }
}
.service__content--nordot {
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .service__content--nordot {
    margin-bottom: 0;
  }
}
.service__content--link {
  display: block;
  border-radius: 16px;
  background-color: #fff;
}
.service__content--link:hover {
  transition: 0.2s;
  background-color: rgba(0, 0, 0, 0.05);
}

.service__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
}

.service__description {
  padding: 24px;
}
.service__description--title {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
  font-weight: bold;
}
@media (min-width: 1280px) {
  .service__description--title {
    font-size: 20px;
  }
}
.service__description--text {
  font-size: 14px;
  line-height: 150%;
}
@media (min-width: 1280px) {
  .service__description--text {
    font-size: 16px;
  }
}