@charset "UTF-8";
/* Drawer */
.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
}

nav.nav {
  width: 300px;
  height: 100vh;
  background-color: #FFF;
  right: -300px;
  top: 0;
  position: fixed;
  padding: 20px 0;
  transition: all 200ms ease-in-out;
  z-index: 199;
}

nav.nav ul {
  border: none;
  padding: 0;
  height: 100vh;
  overflow-y: scroll;
  width: 100%;
}

.toggle {
  position: absolute;
  right: 100%;
  width: 50px;
  height: 50px;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

span.toggler,
span.toggler:before,
span.toggler:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #313131;
  position: absolute;
  pointer-events: none;
}

span.toggler:before {
  bottom: 9px;
}

span.toggler:after {
  top: 9px;
}

span.deleteclass {
  background-color: transparent;
}

span.deleteclass::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #FFF;
}

span.deleteclass::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #FFF;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo a {
  text-decoration: none;
  color: #888;
  font-size: 2rem;
}

.nav ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  padding: 10px 20px;
  display: block;
  color: #313131;
  font-size: 1rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.nav ul li a:hover {
  background-color: #f1f1f1;
}

.pc {
  display: none;
}

/* Show Nav */
.show-nav .nav {
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

/*--Common--*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1rem;
  vertical-align: baseline;
  background: transparent;
  letter-spacing: 0.1rem;
}

*, :after, :before {
  box-sizing: border-box;
  position: relative;
}

body {
  font-family: "YakuHanJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

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

img {
  vertical-align: bottom;
  width: auto;
  max-width: 100%;
}

.Flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.Card_Icon_12 {
  width: 100%;
}

.Card_Icon_6 {
  width: 50%;
}

.Card_Icon_4 {
  width: 33.33%;
}

.Card_Icon_3 {
  width: 25%;
}

._font12 {
  margin: 0.5rem 0 0 0;
  font-size: 0.95rem;
}

.Title {
  font-size: 1.3rem;
}

.Title2 {
  font-size: 1.15rem;
}

.bold {
  font-weight: bold;
}

ul#Breadcrumb {
  width: 90%;
  margin: 0 auto 1rem auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
ul#Breadcrumb li {
  font-size: 0.6rem;
  margin-right: 0.5rem;
}
ul#Breadcrumb li:after {
  content: ">";
  width: auto;
}
ul#Breadcrumb li:last-child:after {
  display: none;
}

/*MENU*/
#Menu nav ol, #Menu nav ul {
  list-style: none;
}
#Menu nav ul.Menu_List {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #efefef;
  color: #fff;
  padding: 0.1rem 0;
  z-index: 10;
  display: flex;
}
#Menu nav li {
  width: 20%;
  text-align: center;
  font-size: 0.6rem;
}
#Menu nav li a {
  padding: 1rem 0;
  display: block;
}

footer {
  border-top: solid 1px #000;
  padding: 3rem 0 5rem 0;
}
footer #footer {
  padding: 0 5%;
}
footer #footer .Footer_Main .Logo {
  font-size: 1.3rem;
  letter-spacing: -0.05rem;
}
footer #footer .Footer_Main .Logo2 {
  font-size: 0.8rem;
}
footer #footer .Footer_Main ul.Footer_Menu {
  padding: 1rem 0;
  list-style: none;
}
footer #footer .Footer_Main ul.Footer_Menu li {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}
footer #footer .Footer_info ._info_Wrap {
  margin-bottom: 1rem;
}
footer #footer .Footer_info ._info_Wrap ._info {
  font-size: 0.7rem;
}
footer #footer .Footer_info ._info_Wrap .copyright {
  margin-top: 3rem;
  font-size: 0.7rem;
}

/*----------------*/
/*    タブレット    */
/*----------------*/
@media screen and (min-width: 768px) {
  footer #footer {
    display: flex;
    justify-content: space-between;
  }
  footer #footer .Footer_info {
    text-align: right;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .Flex {
    display: flex;
  }
}
/*----------------*/
/*    PCサイズ    */
/*----------------*/
@media screen and (min-width: 1024px) {
  #Menu nav ul.Menu_List {
    top: 0;
    bottom: initial;
    right: 5%;
    left: initial;
    width: initial;
    background: initial;
  }
  #Menu nav ul.Menu_List li {
    width: auto;
    margin: 0 0 0 2rem;
    font-size: 0.9rem;
    font-weight: bold;
  }
}/*# sourceMappingURL=common.css.map */