@charset "UTF-8";
/* Scss Document */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* Scss Document */
/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 16px;
  font-line-height: 1.6;
  font-family: "Noto+Sans+JP", sans-serif;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover {
  opacity: 0.75;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* Attributes & states
 * *********************************** */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes
 * *********************************** */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

/*variable
********************************************/
/*mixin
********************************************/
/*pxサイズ*/
/*560以上*/
/*960以上*/
body {
  background-color: #FFF;
  color: #535353;
}
body a, body a:hover, body a:visited {
  color: #535353;
}

.wrap {
  width: 100%;
  margin: 2rem auto;
  position: relative;
}
@media (min-width: 960px) {
  .wrap {
    width: 960px;
  }
}

.sp-menu {
  margin-left: auto;
}
.sp-menu #open {
  font-size: 32px;
  line-height: 64px;
  cursor: pointer;
}
.sp-menu #open .hide {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}
.overlay.show li {
  opacity: 1;
  transform: none;
}
.overlay.show li:nth-child(1) {
  transition-delay: 0.1s;
}
.overlay.show li:nth-child(2) {
  transition-delay: 0.4s;
}
.overlay.show li:nth-child(3) {
  transition-delay: 0.6s;
}
.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
}
.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.overlay ul li {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
}

header {
  display: flex;
}
header h1 {
  margin-left: 2rem;
  padding: 2rem 0 2rem 3rem;
  background: url(../images/logo_S.png) no-repeat left;
  background-size: 2.5rem;
}
header .sp-menu {
  padding-right: 2rem;
}

footer {
  width: 100%;
}
footer.topf {
  position: absolute;
  bottom: 0;
}
footer p {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

main {
  position: relative;
}
main.top {
  z-index: -1;
  box-sizing: border-box;
  min-height: 100vh;
  margin-top: -5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.top p {
  width: 50%;
}
main section h2 {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  border-bottom: #1A547C solid 1px;
  line-height: 2;
}
main section h3, main section p, main section ul {
  width: 80%;
  margin: auto;
}
main section h3 {
  margin-top: 3.7rem;
  position: relative;
}
main section h3:before {
  position: absolute;
  left: -10px;
  width: 4px;
  height: 21px;
  content: "";
  border-radius: 1px;
  background: #386474;
}
main section p, main section ul {
  margin-top: 1.3rem;
}/*# sourceMappingURL=template.css.map */