@charset "UTF-8";

/*=======================================

  こちらにLPページの共通cssを記述してください。

  =======================================*/
/*font*/
.original-header,
.original-footer {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
}

/*******************************
ヘッダー
*******************************/
header #h_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 60px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

header img.logo {
  max-width: 320px;
  padding: 20px 0;
}

header h1 {
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  text-align: right;
  width: calc(100% - 320px - 20px);
  /* logo - margin10x2 */
  padding: 0 10px;
}

header h1 span {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  header #h_wrapper {
    flex-direction: column;
    height: auto;
  }

  header h1 {
    width: 100%;
    font-size: 15px;
    text-align: center;
    padding: 0 0 20px;
  }

  /* header h1 span {
    display: block;
  } */
  header img.logo {
    max-width: 234px;
  }
}

/*******************************
フッター
*******************************/
#footer {
  position: static;
  min-height: 100px;
}

#footer .content .free {
  width: 100%;
  background-color: #000000;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

footer {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

footer small {
  font-size: 100%;
}

/*for Android copyrightマークの色*/
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}

footer a:link,
footer a:active,
footer a:visited,
footer a:hover {
  color: #fff !important;
}

@media only screen and (max-width: 767px) {
  #footer {
    /* position: absolute;
    bottom: 0; */
  }

  footer {
    /* min-height: 170px; */
    text-align: center;
  }
}

/*** footer の高さが増える場合、この数値も増やす ***/
#main .space {
  /* padding-bottom: 170px; */
}

@media only screen and (max-width: 767px) {
  /* #main .space {
    padding-bottom: 100px;
  } */
}

/*デザイン*/
.original-footer {
  padding: 40px 10px 32px;
  background: var(--black);
}

.original-footer_inner {
  max-width: 1160px;
  width: 100%;
  margin: auto;
}

.original-footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer_link-item {
  position: relative;
  padding: 5px 0;
}

.footer_link-item:not(:last-child)::after {
  content: "｜";
  margin: 0 10px;
  color: var(--white);
}

.footer_link-item a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer-copyright {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .original-footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .original-footer_links {
    justify-content: flex-start;
  }

  .footer-copyright {
    margin-top: 0;
    text-align: right;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer_link-item a:hover {
    opacity: 0.7;
  }
}
