@charset "UTF-8";
:root {
  --c-white01: #ffffff;
  --c-black01: #000000;
  --c-black02: #111111;
  --c-black03: #272a33;
  --c-gray01: #424242;
  --c-gray02: #636363;
  --c-gray03: #a1a1a1;
  --c-gray04: #fafafa;
  --c-gray05: #d9d9d9;
  --c-blue01: #073190;
  --c-kaisha-app: #fccb00;
  --c-lalapay: #c5337a;
  --c-maekyu: #182950;
  --site-base-container: 1200px;
  --tran-opacity-a: opacity 0.15s ease-out 0s;
  --header-height: 92px;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 47px;
  }
}

/* noto-sans-jp-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v56-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v56-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v56-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cantarell-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Cantarell";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/cantarell-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html,
body {
  font-size: 16px;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

h6 {
  margin: 0;
}

* {
  color: var(--c-black01);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif !important;
  letter-spacing: 0.01em;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: var(--c-black02);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
  outline: none;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

main {
  display: block;
}

button {
  border: none;
  background: none;
  padding: 0;
}
button:focus {
  outline: none;
}

.page-anchor {
  display: block;
  width: 0;
  height: 0;
  color: transparent;
  background: none;
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(var(--header-height));
  opacity: 0;
  position: absolute;
  z-index: -1;
  visibility: hidden;
}

.font-en {
  font-family: "Cantarell", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", sans-serif !important;
}

@media screen and (max-width: 575px) {
  .sm-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .lg-none {
    display: none;
  }
}

.md-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-block {
    display: block;
  }
}

.kiraboshi-tech-main {
  margin-top: var(--header-height);
}

.totop-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  pointer-events: none;
  background-color: var(--c-blue01);
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  border: 1px solid var(--c-white01);
  z-index: 9999;
  cursor: pointer;
}
.totop-wrap .totop {
  position: relative;
  width: 100%;
  height: 100%;
}
.totop-wrap .totop::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px var(--c-white01);
  border-right: solid 2px var(--c-white01);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  margin-top: 3px;
}

.totop-wrap.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.kiraboshi-tech-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 0 40px;
  border-bottom: 2px solid var(--c-gray01);
  background-color: var(--c-white01);
}
@media screen and (max-width: 991px) {
  .kiraboshi-tech-header-wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .kiraboshi-tech-header-wrap {
    padding: 0 17px;
    border-bottom: 1px solid var(--c-gray01);
  }
}

.kiraboshi-tech-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--header-height);
}

.kiraboshi-tech-header__inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 240px;
}
@media screen and (max-width: 991px) {
  .header-logo {
    width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 140px;
  }
}
.header-logo > a {
  display: block;
  width: 100%;
}
.header-logo > a > img {
  display: block;
  width: 100%;
  height: auto;
}

.header-hamb {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-hamb {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--c-black02);
    border-radius: 100px;
  }
}
.header-hamb__line {
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: var(--c-black02);
}

@media screen and (max-width: 767px) {
  .g-nav {
    position: fixed;
    -webkit-box-shadow: 0px 0px 10px -5px #b0b0b0;
            box-shadow: 0px 0px 10px -5px #b0b0b0;
    width: 100%;
    max-width: 300px;
    min-height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--c-white01);
    padding: 30px 40px;
    z-index: 9999;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
}
.g-nav.open {
  display: block;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .g-nav__inner {
    margin-left: auto;
  }
}

.g-nav-closebtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .g-nav-closebtn {
    display: block;
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-black02);
    border-radius: 999px;
    margin-left: auto;
  }
  .g-nav-closebtn::before, .g-nav-closebtn::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    background-color: var(--c-black02);
    top: 50%;
    left: 50%;
  }
  .g-nav-closebtn::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .g-nav-closebtn::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.g-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .g-nav-list {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .g-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
  }
}
.g-nav-list__li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .g-nav-list__li {
    width: 100%;
    display: grid;
    grid-template-rows: auto 0fr;
    -webkit-transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
  }
}
.g-nav-list__li.open {
  grid-template-rows: auto 1fr;
}
.g-nav-list__li.open .icon-plus::before {
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
.g-nav-list__li.open .icon-plus::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.g-nav-list__li:hover .gnav-list__child-list {
  opacity: 1;
  visibility: visible;
}
.g-nav-list__li .gnav-list__child-list {
  position: absolute;
  top: calc(100% + 20px);
  bottom: auto;
  left: 50%;
  background-color: var(--c-white01);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid var(--c-gray04);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px -5px #b0b0b0;
          box-shadow: 0px 0px 10px -5px #b0b0b0;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .g-nav-list__li .gnav-list__child-list {
    overflow: hidden;
    position: static;
    -webkit-transform: none;
            transform: none;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
.g-nav-list__li .gnav-list__child-list > li {
  border-bottom: 1px solid #e9e9e9;
}
.g-nav-list__li .gnav-list__child-list > li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .g-nav-list__li .gnav-list__child-list > li:last-child {
    border-bottom: 1px solid #e9e9e9;
  }
}
.g-nav-list__li .gnav-list__child-list > li > a {
  color: var(--c-black02);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  display: block;
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .g-nav-list__li .gnav-list__child-list > li > a {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .g-nav-list__li .gnav-list__child-list > li > a.arrow-right {
    position: relative;
  }
  .g-nav-list__li .gnav-list__child-list > li > a.arrow-right::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 1px var(--c-gray02);
    border-right: solid 1px var(--c-gray02);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -5px;
  }
}
.g-nav-list__li > a {
  color: var(--c-black02);
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 991px) {
  .g-nav-list__li > a {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 767px) {
  .g-nav-list__li > a {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--c-gray03);
    padding: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .g-nav-list__li > a.arrow-right {
    position: relative;
  }
  .g-nav-list__li > a.arrow-right::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 1px var(--c-gray02);
    border-right: solid 1px var(--c-gray02);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 767px) {
  .g-nav-list__li > a.icon-plus {
    position: relative;
  }
  .g-nav-list__li > a.icon-plus::before, .g-nav-list__li > a.icon-plus::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    background-color: var(--c-gray02);
    top: 50%;
    right: 2px;
    -webkit-transition: -webkit-transform 0.15s ease-in;
    transition: -webkit-transform 0.15s ease-in;
    transition: transform 0.15s ease-in;
    transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
  }
  .g-nav-list__li > a.icon-plus::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.kiraboshi-tech-footer {
  width: 100%;
  background-color: var(--c-maekyu);
}
.kiraboshi-tech-footer__inner {
  width: 100%;
  max-width: var(--site-base-container);
  margin: 0 auto;
  padding: 80px 60px 0;
}
@media screen and (max-width: 767px) {
  .kiraboshi-tech-footer__inner {
    padding: 50px 30px;
  }
}

.footer-flex-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1199px) {
  .footer-flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-flex-wrap::after {
  content: "";
  position: absolute;
  background-origin: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--c-white01);
  bottom: 1px;
  left: calc((100vw - 100%) / 2 * -1);
}

.footer-logo {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    width: 100%;
    max-width: 280px;
  }
}
.footer-logo > a {
  width: 100%;
}
.footer-logo > a > img {
  width: 100%;
  height: auto;
}

.footer-list-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 991px) {
  .footer-list-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-left: 10px;
  }
}

.footer-list__li {
  padding-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .footer-list__li {
    padding-bottom: 10px;
  }
}
.footer-list__li:last-child {
  padding-bottom: 0;
}
.footer-list__li > a {
  color: var(--c-white01);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-transition: var(--tran-opacity-a);
  transition: var(--tran-opacity-a);
}
.footer-list__li > a:hover, .footer-list__li > a:focus {
  opacity: 0.75;
}

.footer-copy-right {
  padding: 20px 20px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .footer-copy-right {
    padding: 15px 0 0;
  }
}

.footer-copy-right__text {
  color: var(--c-white01);
  font-size: 14px;
  font-weight: 400;
}
.footer-copy-right__text .copyright-year {
  color: var(--c-white01);
  font-size: 14px;
  font-weight: 400;
  padding-right: 0.5em;
}