@charset "UTF-8";
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.sp-only {
  display: none;
}

/*------------------------------header------------------------------*/
header {
  background: #000;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header .h-inner {
  display: flex;
  justify-content: space-between;
}
header .header_logo {
  padding: 18px 0;
  height: 70px;
  width: auto;
}
header .header_logo img {
  width: auto;
  height: 100%;
}
header .h-btn {
  background: linear-gradient(90deg, #C731C5 40%, #6E4DF1);
  color: #fff;
  font-size: 1.2rem;
  line-height: 70px;
  height: 70px;
  padding: 0 30px;
  opacity: 1;
  transition: 300ms;
}
header .h-btn span {
  margin-left: 0.5em;
}
header .h-btn:hover {
  opacity: 0.8;
}

/*------------------------------main------------------------------*/
main {
  padding: 70px 15px 0;
}

/*------------------------------sub-p-section------------------------------*/
.sub-p-section {
  padding-top: 90px;
}
.sub-p-section h2 {
  display: flex;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 48px;
}
.sub-p-section h2::before {
  content: "";
  background: url(../images/logo_2.svg) no-repeat center/contain;
  width: 14rem;
  margin-right: 0.86vw;
}
.sub-p-section h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: bold;
}
.sub-p-section h4 {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 1em;
}
.sub-p-section p {
  font-size: 1rem;
  font-weight: normal;
  text-align: justify;
}
.sub-p-section ul li {
  margin-left: 1em;
  text-indent: -0.5em;
  padding-left: 1em;
  text-align: justify;
  font-size: 1rem;
  font-weight: normal;
}
.sub-p-section ul li::before {
  content: "・";
}

/*------------------------------shotori------------------------------*/
.shotori--item {
  display: flex;
}
.shotori--item + dl {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #000;
}
.shotori--item > dt {
  width: 300px;
  min-width: 300px;
  background: #e1e1e1;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shotori--item > dd {
  padding: 8px 16px;
}
.shotori--item > dt, .shotori--item > dd {
  font-size: 1rem;
  font-weight: normal;
}
.shotori--item p, .shotori--item ul li, .shotori--item dl dt, .shotori--item dl dd {
  font-size: 1rem;
}
.shotori--item dl {
  display: flex;
}
.shotori--item dl dt::after {
  content: ":";
}
.shotori--item ol, .shotori--item .ttl {
  margin-top: 1em;
}
.shotori--item .disc-none li {
  padding-left: 0;
  text-indent: -1em;
}
.shotori--item .disc-none li::before {
  display: none;
}

/*------------------------------contact------------------------------*/
.contact .mail-box {
  background: #eee;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.contact .mail-box a {
  font-size: 1rem;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
  /*------------------------------header------------------------------*/
  header .h-inner {
    justify-content: center;
  }
  header .header_logo {
    margin-left: 0;
    padding: 20px 0;
  }
  header .h-btn {
    display: none;
  }
  /*------------------------------sub-p-section------------------------------*/
  .sub-p-section {
    padding-top: 60px;
  }
  .sub-p-section h2 {
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    line-height: 1.25;
  }
  .sub-p-section h2::before {
    height: 1.2em;
    margin-bottom: 8px;
  }
  .sub-p-section ul li {
    margin-left: 0.5em;
  }
  /*------------------------------shotori------------------------------*/
  .shotori--item {
    flex-direction: column;
  }
  .shotori--item > dt {
    width: 100%;
    padding: 12px 0;
  }
  .shotori--item > dd {
    display: inline-block;
    margin: 0 auto;
  }
}/*# sourceMappingURL=sub.css.map */