@charset "utf-8";

body {
  font-family:serif;
}

/* a:hover {
  opacity: .6;
  -webkit-transition: .3s;
  transition: .3s;
} */

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

/* views */
.spView,
.spViewInb,
.tbView {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .tbView {
    display: block !important;
  }
}

@media only screen and (max-width: 750px) {
  .spView {
    display: block !important;
  }
  .spViewInb {
    display: inline-block !important;
  }
  .pcView {
    display: none !important;
  }
}

a {
  word-wrap: break-word;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width:768px) {
  .inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

figure {
  position: relative;
}

picture {
  position: relative;
}

/* ------------------------------------------
フェードインアニメーション
--------------------------------------------*/
.fadeIn {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  -webkit-transform: translatey(50px);
          transform: translatey(50px);
}
.fadeIn.animated {
  opacity: 1;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
}