@import url("https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:300,600,300italic,600italic");

/* ============================================
   CSS Variables & Reset
   ============================================ */
   :root {
    /* 基本 */
    --bg-color: #ffffff;
    --text-color: #111111;

    /* 反転 */
    --bg-color-invert: #111111;
    --text-color-invert: #ffffff;

    --accent-color: #bf9d5a;
    --secondary-accent-color: #2e95f0;
    --border-color: #111111;
    --secondary-border-color: #cccccc;

    --font-size-kv: 60px;
    --font-size-kv-mobile: 40px;
    --font-size-page-title: 48px;
    --font-size-page-title-mobile: 36px;
    --font-size-section-title: 32px;
    --font-size-section-title-mobile: 24px;
    --font-size-item-title: 24px;
    --font-size-item-title-mobile: 20px;
    --font-size-table-title: 24px;
    --font-size-table-title-mobile: 20px;
    --font-size-catch: 20px;
    --font-size-catch-mobile: 16px;
    --font-size-body: 16px;
    --font-size-body-small: 14px;
    --font-size-body-mobile: 14px;
    --font-size-body-small-mobile: 12px;
    --font-size-footer-body: 12px;
    --font-size-footer-body-mobile: 10px;
  }


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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

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

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}
body {
  -ms-overflow-style: scrollbar;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, input, select, textarea {
    color: var(--text-color);
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
  }
  @media screen and (max-width: 1024px) {
    body, input, select, textarea {
      font-size: 13px;
    }
  }

  a {
    -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    color: var(--text-color);
    text-decoration: none;
  }
  a:hover {
    border-bottom-color: transparent;
    color: var(--text-color) !important;
  }
  a.special:not(.button) {
    text-decoration: none;
    border-bottom: 0;
    display: block;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 36px 0;
    text-transform: uppercase;
  }
  a.special:not(.button):before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
  a.special:not(.button):before {
    -moz-transition: background-color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100%;
    border: solid 2px rgba(255, 255, 255, 0.125);
    content: "\f105";
    display: inline-block;
    font-size: 23px;
    height: 36px;
    line-height: 32px;
    margin-right: 15px;
    text-align: center;
    text-indent: 3px;
    vertical-align: middle;
    width: 36px;
  }
  a.special:not(.button):hover:before {
    background-color: rgba(255, 255, 255, 0.025);
  }
  a.special:not(.button):active:before {
    background-color: rgba(255, 255, 255, 0.075);
  }

  strong, b {
    color: var(--text-color);
    font-weight: 600;
  }

  em, i {
    font-style: italic;
  }

  p {
    margin: 0 0 36px 0;
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-family: Raleway, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 18px 0;
    text-transform: uppercase;
  }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
  }
  h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-weight: 200;
  }
  h1.section--title, h2.section--title, h3.section--title, h4.section--title, h5.section--title, h6.section--title {
    padding-bottom: 18px;
    border-bottom: solid 2px rgba(255, 255, 255, 0.125);
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 14px;
  }

  @media screen and (max-width: 736px) {
    h2 {
      font-size: 22px;
    }
    h3 {
      font-size: 16px;
    }
  }
  sub {
    font-size: 14px;
    position: relative;
    top: 9px;
  }

  sup {
    font-size: 14px;
    position: relative;
    top: -9px;
  }

  blockquote {
    border-left: solid 4px rgba(255, 255, 255, 0.125);
    font-style: italic;
    margin: 0 0 36px 0;
    padding: 9px 0 9px 36px;
  }

  code {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 5px;
    border: solid 2px rgba(255, 255, 255, 0.125);
    font-family: "Courier New", monospace;
    font-size: 16px;
    margin: 0 5px;
    padding: 5px 12px;
  }

  pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 16px;
    margin: 0 0 36px 0;
  }
  pre code {
    display: block;
    line-height: 32px;
    padding: 18px 27px;
    overflow-x: auto;
  }

  hr {
    border: 0;
    border-bottom: solid 2px rgba(255, 255, 255, 0.125);
    margin: 45px 0;
  }
  hr.section--title {
    margin: 72px 0;
  }

  .align-left {
    text-align: left;
  }

  .align-center {
    text-align: center;
  }

  .align-right {
    text-align: right;
  }

  /* Row */
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  /* ============================================
     Display Utilities (Responsive)
     ============================================ */
  /* デスクトップのみ表示 */
  .desktop-only {
    display: block;
  }

  /* スマートフォンのみ表示 */
  .mobile-only {
    display: none;
  }

  @media screen and (max-width: 1024px) {
    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: block !important;
    }

    /* flexコンテナ用 */
    .mobile-only-flex {
      display: flex !important;
    }

    /* インライン要素用 */
    .mobile-only-inline {
      display: inline !important;
    }

    /* インラインブロック要素用 */
    .mobile-only-inline-block {
      display: inline-block !important;
    }
  }

