@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.5;
}

article {
  overflow: hidden;
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.scrollanime {
  transition: all ease 1s;
}

.opacity {
  opacity: 0;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.opacity {
  opacity: 1;
}
.fadeIn.updown {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.downup {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.slide-right {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.slide-left {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.scaleup {
  opacity: 1;
  transform: scale(1);
}

.eachTextAnime {
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: opacity ease .3s .5s;
}
.eachTextAnime span {
  transform: translateY(100%);
  display: inline-block;
  position: relative;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  transform: translateY(0);
  transition: all ease-out 1s;
}

.wrap01 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.wrap-r {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: auto;
  margin-left: 0;
}

a {
  transition: all ease .3s;
}
a:hover {
  opacity: 0.7;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 77px;
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
}
.header__logo {
  margin-right: auto;
  margin-left: 0;
  width: 150px;
}
.header__logo__a {
  display: block;
}
@media screen and (max-width: 960px) {
  .header__nav {
    transform: rotateY(0) translateY(-100%);
    visibility: hidden;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    background-color: #999;
    color: #fff;
    z-index: -1;
    transition: all ease .5s;
  }
  .header__nav.active {
    visibility: visible;
    transform: scaleY(1) translateY(0);
  }
}
.header__nav__lists {
  display: flex;
  column-gap: 15px;
}
@media screen and (max-width: 960px) {
  .header__nav__lists {
    flex-direction: column;
  }
}

.menu_toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu_toggle__line {
  background-color: aqua;
  display: block;
  width: 100%;
  height: 2px;
  transform-origin: center;
  transition: all ease .5s;
}
.menu_toggle__line--1.active {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.menu_toggle__line--2.active {
  opacity: 0;
}
.menu_toggle__line--3.active {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.copy {
  background-color: #333;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
