@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-U1Ug.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v28/-F62fjtqLzI2JPCgQBnw7HFowA.otf) format('opentype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-size: 16px;
  background-color: #f5f5f7;
  font-family: 'Noto Sans JP', sans-serif;
}
a {
  font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3 {
  font-family: 'Roboto', sans-serif;
  color: #152337;
}
p {
  margin-bottom: 2rem;
  color: #152337;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  line-height: 130%;
}
h2 {
  font-size: 2rem;
  line-height: 130%;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
ul {
  margin-left: 28px;
}
li::marker {
  color: #004fa3;
}
.content {
  padding: 0px 10px 0px 10px ;
  width: 100%;
}
.separator {
  border-bottom: 1px solid #c0c0c0;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
}
@media screen and (min-width: 1300px) {
  html,
  body {
    font-size: 20px;
  }
  h1 {
    font-size: 3.5rem;
  }
  .content {
    width: 800px;
  }
}
.banner {
  border: 1px solid #c0c0c0;
  box-shadow: 0px 0px 3px #c0c0c0;
  height: 380px;
  margin: auto auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
}
.banner--logo {
  z-index: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.banner--text {
  z-index: 1;
  position: relative;
  text-align: center;
}
.banner--text h1 {
  margin-bottom: 0px;
  color: #004fa3;
}
.banner--logo-img {
  height: 120px;
}
@media screen and (min-width: 1300px) {
  .banner {
    width: 1300px;
    flex-direction: row;
  }
  .banner--logo {
    left: 0px;
    right: initial;
  }
  .banner--logo-img {
    height: 150px;
  }
  .banner--text {
    display: inline-block;
    width: 800px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
}
@media screen and (min-width: 1300px) {
  .header {
    flex-direction: column-reverse;
    align-items: flex-end;
    width: 1300px;
    margin: auto;
  }
}
.language--item {
  text-decoration: none;
  margin-left: 10px;
}
.navigation-wrap {
  height: 100%;
  z-index: 1;
}
.navigation {
  display: flex;
  justify-content: center;
  opacity: 0;
  top: 0px;
  bottom: 0px;
  left: 100%;
  right: 0px;
  position: fixed;
  flex-direction: column;
  background-color: rgba(245, 245, 245, 0.95);
  transition: all 0.2s;
}
.navigation--item.m-toggle {
  position: relative;
  padding-right: 30px;
}
.navigation.m-shown {
  left: 27%;
  opacity: 1;
}
.navigation--item.m-toggle.m-active .navigation-arrow--left {
  transform: rotate(-40deg);
  background-color: white;
}
.navigation--item.m-toggle.m-active .navigation-arrow--right {
  transform: rotate(40deg);
  background-color: white;
}
.navigation--item {
  transition: background-color 0.2s;
  background-color: #cfdeea;
  color: #171905;
  border-bottom: 1px solid #cccccc;
  border-radius: 8px 8px 0px 0px;
  padding: 10px;
  text-decoration: none;
  margin-left: 3px;
  font-size: 0.9rem;
}
.navigation--item.m-active {
  background-color: #004fa3;
  color: white;
}
.navigation--sub {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
}
.navigation-arrow--left {
  /* positioning */
  position: absolute;
  left: 55px;
  top: 24px;
  /* drawning */
  display: inline-block;
  background-color: black;
  border-radius: 10px;
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  /* animation */
  transition: transform 0.2s;
}
.navigation-arrow--right {
  /* positioning */
  position: absolute;
  left: 55px;
  top: 18px;
  /* drawning */
  display: inline-block;
  background-color: black;
  border-radius: 10px;
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
  /* animation */
  transition: transform 0.2s;
}
@media screen and (min-width: 1300px) {
  .navigation--sub {
    display: none;
  }
  .navigation--item.m-toggle {
    display: none;
  }
  .navigation-wrap {
    position: static;
    background-color: transparent;
    height: initial;
  }
  .navigation {
    opacity: initial;
    text-align: right;
    margin-top: 35px;
    margin-bottom: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: row;
    position: static;
    background: none;
  }
  .navigation.m-sub {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 15px;
    padding-left: 0px;
    box-sizing: content-box;
    margin-top: 0px;
    justify-content: flex-start;
    flex-basis: auto;
  }
  .navigation--item:hover {
    background-color: #004fa3;
    color: white;
  }
  .navigation--item.m-sub {
    padding-top: 5px;
    PADDING-BOTTOM: 5PX;
    BORDER-BOTTOM: NONE;
    width: 250px;
  }
}
.page {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
@media only screen and (min-width: 1300px) {
  .page {
    width: 1300px;
    margin: 0px auto;
  }
  .page.m-two-columns {
    display: flex;
  }
}
.slideshow {
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.slideshow--frame {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slideshow--item {
  position: absolute;
  max-width: 1300px;
  top: -275px;
}
.footer {
  width: 100%;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  margin-top: 50px;
}
@media screen and (min-width: 1300px) {
  .footer {
    width: 1300px;
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.gallery--item {
  transition: border 0.2s;
  max-width: 250px;
  max-height: 200px;
  height: auto;
  padding: 10px;
  border: 1px solid transparent;
}
.gallery--item:hover {
  border: 1px solid #004fa3;
}
.contact {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}
.contact--address {
  padding-bottom: 30px;
}
.contact--persons {
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
}
.contact--line {
  margin-bottom: 0px;
}
