@charset "UTF-8";
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

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;
}

img {
  max-width: 100%;
}

a:link,
a:visited {
  text-decoration: none;
  color: #000;
}

a:hover,
a:active {
  color: #449C4D;
  text-decoration: underline;
}

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

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

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

.m_b10 {
  margin-bottom: 1rem;
}

.m_b20 {
  margin-bottom: 2rem;
}

.m_b30 {
  margin-bottom: 3rem;
}

.m_b40 {
  margin-bottom: 4rem;
}

.m_b50 {
  margin-bottom: 5rem;
}

.m_tb20 {
  margin: 2rem 0;
}

.m_tb30 {
  margin: 3rem 0;
}

.m_tb40 {
  margin: 4rem 0;
}

.m_tb50 {
  margin: 5rem 0;
}

@media (max-width: 768px) {
  .m_b10 {
    margin-bottom: 0.75rem;
  }

  .m_b20 {
    margin-bottom: 1.5rem;
  }

  .m_b30 {
    margin-bottom: 2.2rem;
  }

  .m_b40 {
    margin-bottom: 3rem;
  }

  .m_b50 {
    margin-bottom: 3.75rem;
  }

  .m_tb20 {
    margin: 1.5rem 0;
  }

  .m_tb30 {
    margin: 2.2rem 0;
  }

  .m_tb40 {
    margin: 3rem 0;
  }

  .m_tb50 {
    margin: 3.75rem 0;
  }
}
@media (max-width: 480px) {
  .m_b10 {
    margin-bottom: 0.5rem;
  }

  .m_b20 {
    margin-bottom: 1rem;
  }

  .m_b30 {
    margin-bottom: 1.5rem;
  }

  .m_b40 {
    margin-bottom: 2rem;
  }

  .m_b50 {
    margin-bottom: 2.5rem;
  }

  .m_tb20 {
    margin: 1rem 0;
  }

  .m_tb30 {
    margin: 1.5rem 0;
  }

  .m_tb40 {
    margin: 2rem 0;
  }

  .m_tb50 {
    margin: 2.5rem 0;
  }
}
/* loading
   ========================================================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5000;
}

.loader {
  margin: -15px 0 0 -15px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.75s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* #wrapper,#contents
   ========================================================================== */
#wrapper {
  text-align: left;
}

#contents {
  overflow: hidden;
}

/* .breadcrumb
   ========================================================================== */
.breadcrumb {
  padding-left: 0;
  margin-left: 0;
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 3px;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #52b5ee;
  /*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}
