@charset "UTF-8";
/*
================================================================
----------------------------------------------------------------

 Agnis CSS Layout

----------------------------------------------------------------
 *
 *
 *
================================================================
*/
/*
================================================================
 ノーマライズ
================================================================
*/
/* ---------------------------------------------------------- */
/* compass/reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ---------------------------------------------------------- */
/*
================================================================
 チェック用要素
================================================================
*/
#agnis-layout-viewsize {
  position: fixed;
  z-index: -9999;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

/*
================================================================
 ベースレイアウト
================================================================
*/
html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.6;
}
@media print {
  html {
    font-size: 9pt;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.display-area {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.scroll-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.scroll-content.scroll-content--horizontal {
  width: auto;
  height: 100%;
}

/*
================================================================
 端末ごとの表示変更
================================================================
*/
@media all and (max-width: 1200px) {
  .mb-hide,
  .pc-only {
    /* タブレット、スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .sp-hide,
  .tb-only {
    /* スマートフォン時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 1201px) {
  .pc-hide,
  .mb-only,
  .tb-only {
    /* PC時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .sp-only {
    /* PC、タブレット時非表示 */
    display: none !important;
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .tb-hide {
    /* タブレット時非表示 */
    display: none !important;
  }
}
/*
================================================================
 コンテナ
================================================================
*/
.container {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 0;
  width: 90%;
  width: calc(100% - 20px);
  max-width: 1200px;
}

@media all and (min-width: 481px) {
  .container {
    width: calc(100% - 40px);
  }
}
@media all and (min-width: 768px) {
  .container {
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 961px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media all and (min-width: 1201px) {
  .container {
    width: calc(100% - 120px);
  }
}
@media all and (min-width: 1601px) {
  .container {
    width: calc(100% - 140px);
  }
}
/*
================================================================
 文字装飾
================================================================
*/
.text-justify {
  text-align: justify !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/* Scss Document */
