/*	Breakpoint
-------------------------------*/
/*	Color
-------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
body {
  margin: 0;
}

body img {
  width: 100%;
}

body .d-n {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.6;
}

/* lp ハンバーガーメニュー ドロワー修正 */
.header__inner {
  position: relative;
}

.hamburger {
  position: absolute;
  z-index: 999999;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
  width: 30px;
  height: 16px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  display: inline-block;
  height: 2px;
  transition: transform 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
  background-color: #000;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
  background-color: #000;
}

.hamburger span:nth-child(3) {
  top: 16px;
  background-color: #000;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer {
  visibility: hidden !important;
  display: none !important;
}

.drawer.is-active {
  visibility: visible !important;
  display: block !important;
}

/* lp ハンバーガー */
.u-mobile {
  display: none;
}
@media (max-width: 960px) {
  .u-mobile {
    display: block;
  }
}

/* lp top */
.homeMain {
  margin-block-start: 90px !important;
}
@media (max-width: 768px) {
  .homeMain {
    margin-block-start: 80px !important;
  }
}
@media (max-width: 700px) {
  .homeMain {
    margin-block-start: 70px !important;
  }
}
@media (max-width: 600px) {
  .homeMain {
    margin-block-start: 50px !important;
  }
}

/* lp アコーディオン修正 */
.accordion-head:after, .accordion-head:before {
  display: none !important;
}
.accordion-head {
  border-end-end-radius: 0 !important;
  border-end-start-radius: 0 !important;
}




/*# sourceMappingURL=style.css.map */