@charset "UTF-8";
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/*------------------------------------------------------------
  変数設定
  ------------------------------------------------------------*/
/*------------------------------------------------------------
	サイト基礎
  ------------------------------------------------------------*/
body {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
body a {
  transition: 0.3s;
  color: #000;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
  opacity: 0.8 !important;
}
body img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
body .inner {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}
body .inner-xl {
  max-width: 1600px;
  margin: 0 auto;
}
body .inner-l {
  max-width: 1200px;
  margin: 0 auto;
}
body .inner-m {
  max-width: 1000px;
  margin: 0 auto;
}
body .inner-s {
  max-width: 800px;
  margin: 0 auto;
}
body .telLink {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
body .telLink :root .selector,
body .telLink _:-ms-fullscreen {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  body .telLink {
    pointer-events: auto;
    letter-spacing: 0.02em;
  }
}
body .readTxt {
  line-height: 1.8;
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
  body .readTxt {
    font-size: 1rem;
  }
}
body section {
  position: relative;
}
body .pcNone {
  display: none;
}
@media screen and (max-width: 991px) {
  body .pcNone {
    display: block;
  }
}
body .lmBlock { /* 1366px */
  display: none !important;
}
@media screen and (max-width: 1366px) {
  body .lmBlock {
    display: block !important;
  }
}
@media screen and (max-width: 1366px) {
  body .lmNone {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  body .tbNone {
    display: none !important;
  }
}
body .tbBlock {
  display: none !important;
}
@media screen and (max-width: 991px) {
  body .tbBlock {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  body .spNone {
    display: none;
  }
}

.preload * {
  transition: none !important;
}

.wrap {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/*------------------------------------------------------------
	ヘッダー
  ------------------------------------------------------------*/
header#header .rightFixedBox {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header#header .rightFixedBox {
    bottom: inherit;
    top: 1rem;
    width: 375px;
    justify-content: center;
    flex-direction: row;
    left: 0;
    margin: auto;
    right: 0;
    padding: 0 1rem;
  }
}
header#header .rightFixedBox.scrolldown {
  bottom: 7rem;
}
@media screen and (max-width: 991px) {
  header#header .rightFixedBox.scrolldown {
    bottom: inherit;
  }
  header#header .rightFixedBox.scrolldown::before {
    content: "";
    display: block;
    background: rgba(255, 255, 255, 0.7);
    width: 100vw;
    position: absolute;
    top: -1rem;
    left: 0rem;
    height: 47px;
    z-index: -1;
  }
}

/*------------------------------------------------------------
	フッター
  ------------------------------------------------------------*/
.footer {
  text-align: center;
  background: #19325a;
  padding-top: 9rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .footer {
    padding-top: 7rem;
    padding-bottom: 1.5rem;
  }
}
.footer .inner > a {
  display: block;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .footer .inner > a {
    margin-bottom: 2rem;
  }
}
.footer .inner > a img {
  width: 165px;
}
@media screen and (max-width: 991px) {
  .footer .inner > a img {
    width: 114px;
  }
}
.footer .inner .copy {
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .footer .inner .copy {
    font-size: 0.9rem;
  }
}

/*-- page top --*/
#go_pagetop {
  position: fixed;
  right: 1.7rem;
  z-index: 9998;
}
@media screen and (max-width: 991px) {
  #go_pagetop {
    right: 1rem;
  }
}
#go_pagetop a img {
  width: 15px;
  margin-bottom: -7rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  #go_pagetop a img {
    width: 9px;
    margin-bottom: -0.5rem;
  }
}
#go_pagetop a img:hover {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  #go_pagetop a img:hover {
    margin-bottom: -0.5rem;
  }
}

/*------------------------------------------------------------
	共通
  ------------------------------------------------------------*/
.-center {
  text-align: center;
}

.-flex {
  display: flex;
  flex-wrap: wrap;
}

.-white {
  color: #fff;
}

.-bold {
  font-weight: bold;
}

.-medium {
  font-weight: 500;
}

.-mincho {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}/*# sourceMappingURL=base.css.map */