@charset "UTF-8";
:root {
  --white: #ffffff;
  --white-eb: #ebebeb;
  --white-4e: #e4e4e4;
  --black: #000000;
  --gray-dark: #1d1d1d;
  --gray: #212121;
  --gray-light: #323232;
  --lightgray-dark: #4f4f4f;
  --lightgray: #787878;
  --lightgray-light: #919191;
  --main-color: #1964fb;
  --main-color-light: #75c3ff;
  --ac-color: #fff34a;
  --ff-default: "Avenir", "Helvetica Neue", "Helvetica", "Arial",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック";
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック";
}

html {
  height: 100%;
  width: 100%;
  background: #1964fb;
  background: linear-gradient(180deg, #b5d6ed, #1964fb);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b5d6ed", endColorstr="#1964fb",GradientType=0 );
}

body {
  min-width: 100%;
  min-height: 100%;
  font-size: 16px;
  overflow: hidden;
  font-family: var(--ff-default, "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック");
  letter-spacing: 0.2em;
  background-size: cover;
  position: relative;
}
body:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1964fb; /*保険用*/
  background: linear-gradient(180deg, #b5d6ed, #1964fb);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b5d6ed", endColorstr="#1964fb",GradientType=0 );
  z-index: -1;
}

.patua-one-regular {
  font-family: "Patua One", serif;
  font-weight: 400;
  font-style: normal;
}

.head_wrap {
  text-align: center;
  padding: 30px 0;
  background: var(--white, #fff);
}
.head_wrap h2 {
  color: var(--main-color);
  font-size: 64px;
}
.head_wrap span {
  color: var(--black);
  font-size: 24px;
}

ul {
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

a {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .head_wrap {
    padding: 15px 0;
  }
  .head_wrap h2 {
    font-size: 32px;
  }
  .head_wrap span {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */