/* CSS Document */
/* -----------------------------------------------
   variable
----------------------------------------------- */
@media screen and (min-width: 1025px) {
  .none-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .none-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/* CSS Document */
/* -----------------------------------------------
   common
----------------------------------------------- */
* {
  font-family: "Jost", "M PLUS 1p", sans-serif;
  font-weight: 300;
  color: #707070;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  background: #FAFAFA;
}

h1 {
  font-size: 3.5em;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5em;
  }
}

a {
  color: #707070;
  transition-duration: 0.5s;
  text-decoration: underline;
}

a:hover {
  color: #006AB8;
  text-decoration: none;
}

button {
  padding: 7px 1.5em 4px;
  border-radius: 30px;
  border: 1px solid;
  background: rgba(0, 0, 0, 0);
  letter-spacing: 0.07em;
  transition-duration: 0.5s;
}

button:hover {
  border: 1px solid #006AB8;
  background: #006AB8;
  color: #F4F4F5;
}

.button {
  padding: 7px 1.5em 4px;
  border-radius: 30px;
  border: 1px solid;
  background: rgba(0, 0, 0, 0);
  letter-spacing: 0.07em;
  transition-duration: 0.5s;
  text-decoration: none;
}

.button:hover {
  border: 1px solid #006AB8;
  background: #006AB8;
  color: #F4F4F5;
}

main {
  max-width: 900px;
  margin: 16px auto 80px;
  padding: 0 20px;
  text-align: center;
}

img {
  width: 100%;
}

.txt-attention {
  color: #FF0000;
}

.side-l {
  position: fixed;
  writing-mode: vertical-rl;
  margin: auto;
  left: 1em;
  top: 0;
  bottom: 0;
  transform-origin: 10px 10px;
  text-align: center;
}

.side-r {
  position: fixed;
  writing-mode: vertical-rl;
  margin: auto;
  right: 1em;
  top: 0;
  bottom: 0;
  transform-origin: 10px 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #page-wraper > div, #page-wraper > section {
    padding-right: 20px;
    padding-left: 20px;
  }
}
body main section > * {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

body main section > .fade {
  opacity: 1;
  transform: translate(0, 0);
}

.animsition-loading {
  display: none;
}

.grecaptcha-badge {
  display: none;
}

/* -----------------------------------------------
   header
----------------------------------------------- */
header {
  display: flex;
  height: 100px;
}

header #change-head svg {
  position: fixed;
  top: 20px;
  left: 20px;
  fill: #006AB8;
  width: 160px;
  transition-duration: 0.5s;
  z-index: 30;
}

header #change-head svg:hover {
  transform: scale(1.05);
  transform-origin: left;
}

/* -----------------------------------------------
   grobal-nav
----------------------------------------------- */
nav ul {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: row-reverse;
  position: fixed;
  z-index: 30;
}

nav li {
  margin-left: 15%;
}

nav li a {
  text-align: center;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

nav li a:hover {
  text-decoration: none;
}

nav li a::before {
  content: "";
  position: absolute;
  width: 0;
  background: #006AB8;
  left: 45%;
  height: 1px;
  bottom: 0;
  transition: all 0.3s;
}

nav li a:hover:before {
  width: 100%;
  left: 0;
}

@media screen and (max-width: 767px) {
  nav ul {
    flex-direction: column-reverse;
    top: 120px;
    right: 0;
  }
  nav ul li {
    margin: 0;
  }
  .mean-container a.meanmenu-reveal {
    top: 60px;
    z-index: 30;
  }
  .mean-container a.meanmenu-reveal span {
    transition: 0.3s;
  }
  .mean-container a.meanmenu-reveal.meanclose ~ .mean-nav {
    opacity: 1;
  }
  .mean-container .mean-nav {
    transition: 0.7s;
    height: 0;
    opacity: 0;
  }
  .mean-container .mean-nav ul li {
    background: none;
  }
}
/* -----------------------------------------------
   cursor
----------------------------------------------- */
.cursor {
  width: 100px;
  height: 100px;
  transition: transform 0.2s;
  pointer-events: none;
  transform: scale(0);
  position: absolute;
  filter: blur(10px);
  z-index: 10;
}
.cursor.active {
  transform: scale(1);
}
.cursor span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.3;
  border-radius: 50%;
  position: absolute;
}

/* -----------------------------------------------
   breadcrumbs
----------------------------------------------- */
.breadcrumbs {
  overflow: scroll;
  white-space: nowrap;
  height: 25px;
  margin: -40px 20px 0;
}

.breadcrumbs img {
  width: 14px;
}

.breadcrumbs-list {
  display: flex;
  font-size: 80%;
}

.breadcrumbs-list a:hover span {
  color: #006AB8 !important;
}

.breadcrumbs span:last-child::after {
  display: none;
}

/* -----------------------------------------------
   footer
----------------------------------------------- */
footer .copyright {
  margin-top: 1rem;
  font-size: 0.5em;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
}/*# sourceMappingURL=common.css.map */