@charset "utf-8";
*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  height: 100dvh;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #231815;
  line-height: 1.8;
	font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.txt-Mincho {
  font-family: "ZenOldMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}
.txt-Mincho-900 {
  font-weight: 900;
}
.txt-Mincho-700 {
  font-weight: 700;
}
.txt-Mincho-500 {
  font-weight: 500;
}
.txt-Mincho-400 {
  font-weight: 400;
}
.txt-Mincho-300 {
  font-weight: 300;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
h1 {
  position: relative;
  display: inline-block;
  font-size: 18px;
	font-weight: normal;
  color: #325093;
  padding: .5em 1em;
  margin: 0 0 2em;
}
h1::before, h1::after {
  position: absolute;
  content: '';
  top: calc(50% - 15px);
  height: 30px;
  border-left: #325093 solid 2px;
}
h1::before {
  left: 0;
  transform: rotate(-30deg);
}
h1::after {
  right: 0;
  transform: rotate(30deg);
}
.logo-L {
  max-width: 200px;
}
header {
  padding: 2em 0 4em;
}
.msg {
  font-size: 30px;
}
footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto 2em;
}
@media screen and (max-width: 480px) {
  .msg {
    font-size: 22px;
  }
  h1 {
    font-size: 14px;
  }
  .logo-L {
    max-width: 100px;
  }
}