@charset "utf-8";
/* ===========================================
 * ROOT
 * ======================================== */
:root {
  --font-fm-main: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ===========================================
 * COMMON
 * ======================================== */
body {
  background-color: #FBF9F9;
}
main {
  width: 100%;
}
.container {
  width: min(100%, 750px);
  margin-inline: auto;
}

/* ===========================================
 * PC・SP
 * ======================================== */
.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
}

/* ===========================================
 * LINK
 * ======================================== */
.textlink {
  text-decoration: underline;
  color: inherit;
  transition: 0.3s;
}
.textlink:hover {
  text-decoration: none;
}

/* ===========================================
 * HEADER
 * ======================================== */
.header__wrap {
  width: min(100%, 750px);
  margin-inline: auto;
}
.header__inner {
  margin-inline: auto;
}
.header__img {
  display: block;
}

/* ===========================================
 * FOOTER
 * ======================================== */
.footer__wrap {
  width: min(100%, 750px);
  padding-bottom: 70px;
  margin-inline: auto;
  padding-block: 10px;
  background: #FFFFFF;
}
.footer__inner {
  padding-inline: 18px;
}
.footer__copyright {
  width: fit-content;
  margin-inline: auto;
  font-family: "Hiragino Sans";
  font-size: 12px;
  font-weight: 300;
  line-height: 1.0;
  color: #111111;
  display: block;
}

/* ===========================================
 * TOTOP
 * ======================================== */
#totop {
  width: 36px;
  height: 36px;
  aspect-ratio: 1 / 1;
  border-radius: 5.5px;
  border: 1.5px solid #FFFFFF;
  background: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 110px;
}
#totop::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin-block: 1em auto;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  position: absolute;
  z-index: 11;
  right: 0.8em;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}