@charset "UTF-8";
/* ============================================ */
/* リセット（destyle.css） の追加設定
/* ============================================ */
/* ============================================ */
/* ベース スタイル
/* ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Prompt:wght@400;500;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  letter-spacing: 1.5px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: all 0.5s;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

svg {
  width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=reset],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

#main {
  padding: 120px 0px 0px;
}

.inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.fl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
}

html.bg-fixed, html.bg-fixed body {
  overflow: hidden !important;
}

.f-prompt {
  font-family: "Prompt", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.tb-link a {
  position: relative;
  display: block;
  font-size: 15px;
  background-color: #870000;
  padding: 12px 0px;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  border-radius: 50px;
  overflow: hidden;
}
.tb-link a span {
  position: relative;
  padding: 0px 25px 0px 0px;
  z-index: 1;
}
.tb-link a span::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0px;
  width: 15px;
  height: 15px;
  margin: auto;
  background-image: url(../img/icon_tb.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tb-link a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 0;
}
.tb-link a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 600px) {
  .tb-link a {
    font-size: 13px;
    padding: 10px 0px;
  }
}/*# sourceMappingURL=style.css.map */