@charset "UTF-8";
/* foundation */
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, p, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th,
section, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  font-size: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: bottom;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
section, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, nav {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
ul,
li {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

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

a:focus {
  outline: none;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  /*min-height: 1px;*/
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

svg {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: black;
  font-size: 14px;
  font-feature-settings: "palt" 1;
  background-color: white;
}
@media (max-width: 1025px) {
  body {
    font-size: 12px;
  }
}

/* tips */
.teaser {
  position: relative;
  display: block;
  width: 100dvw;
  height: 100dvh;
}
.teaser h1 {
  position: absolute;
  display: block;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  max-width: 780px;
  width: 54%;
}
@media (max-width: 500px) {
  .teaser h1 {
    width: 80%;
  }
}
.teaser small {
  position: absolute;
  display: block;
  letter-spacing: 0.5px;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, 0);
}/*# sourceMappingURL=app.css.map */