@charset "UTF-8";
/* CSS Document */
html {
  font-family: capirera, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  background-color: #fff;
}
body {
  font-family: capirera, sans-serif;
  color: #333333; /* RGB */
  font-weight: 400;
  font-style: normal;
  font-size: 1.4em;
  text-align: center;
}
@media screen and (min-width:768px){
  body {
    display: flex;
  }
}
section h2 {
  font-family: capirera, sans-serif;
  font-weight: 700;
  font-style: normal;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
a {
  text-decoration: none;
  color: #333333;
}

@media(max-width:479px) {
  .sp-none {
    display: none;
  }
}
@media(min-width:480px) {
  .br-sp {
    display: none;
  }
  .pc-none{
    display: none;
  }
}


.fadeUpTrigger{
  opacity: 0;
}
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
    
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ローディング画面 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 50%;
}
@media(min-width:960px){
  .loading__logo {
    width: 30%;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

/* ---------- header ---------- */
.header {
  background-color: #FFF;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header__title {
  width: 50px;
}
.header__title img {
  display: block;
  width: 200%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  opacity: 0.95;
  padding-top: 100px;
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.nav-items__item {
  text-align: left;
  margin-left: 20%;
}
.nav-items__item a {
  font-size: 2rem;
  color: #333333;
  line-height: 5rem;
}

@media screen and (min-width:768px){
  .header {
    display: none;
  }
}

/* ---------- ハンバーガー ---------- */
.header__hamburger {
  width: 45px;
  height: 100%;
}
.hamburger {
  background-color: #fff;
  border-color: transparent;
  z-index: 9999;
  width: 60px;
  padding: 0 20px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background-color: #1D2731;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 5px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
}
@media screen and (min-width:768px){
  .header__hamburger {
    display: none;
  }
}

/* ---------- header-pc ---------- */
.right-box {
  display: none;
}
@media screen and (min-width:768px){
  .right-box {
    display: block;
    width: 140px;
    height: calc(100vh - 30px);
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 30px;
    border-left: 1px solid #333;
    box-sizing: border-box;
  }
  .header-pc {
    width: 100%;
  }
  .header-pc-logo {
    width: 100%;
  }
  .header-pc-logo img {
    width: 100%;
    padding-bottom: 40px;
  }
  .pc-nav {
    list-style: none;
    text-align: left;
  }
  .pc-nav-menu {
    font-size: 1.8rem;
    padding-bottom: 20px;
  }
  .pc-nav-menu-2 {
    font-size: 1.4rem;
    padding-top: 20px;
  }

}
