@charset "UTF-8";
/* CSS Document */
html {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  background-color: #fff;
}
body {
  color: #333333; /* RGB */
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: normal;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  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);
  }
}
/* 左から */
.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  /* 右から */
  .fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeRightAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(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: 998;
}
.header__inner {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header-logo img {
  width: 40vw;
  object-fit: cover;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fcfcfc;
  opacity: 0.95;
  padding-top: 100px;
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.nav-items__item {
  text-align: left;
  margin-left: 30%;
}
.nav-items__item a {
  font-size: 2rem;
  line-height: 5rem;
}
.nav-items__item img {
  width: 40px;
}
@media(min-width:960px){
  .header {
    height: 100px;
  }
  .header__inner {
    padding: 0 60px;
  }
  .header-logo img {
    width: 20vw;
  }
  .header__nav {
    height: auto;
    width: auto;
    padding: 25px 60px;
    transform: translateX(0);
  }
  .header__nav ul {
    display: flex;
    gap: 4vw;
  }
  .nav-items__item {
    margin-left: 0;
  }
  .nav-items__item a {
    font-size: 2.4rem;
  }
  .nav-items__item img {
    width: 50px;
    padding-top: 1rem;
  }
}

/* ---------- ハンバーガー ---------- */
.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: #333333;
  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(min-width:960px){
  .header__hamburger {
    display: none;
  }
}

/* ---------- footer ---------- */
.footer {
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}
.footer p {
  font-size: 1.2rem;
}
.footer-logo {
  width: 89%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.footer-logo a {
  height: 2.4rem;
}
.footer-logo1 img{
  width: 40vw;
  text-align: left;
}
.footer-logo2 img {
  width: 40px;
  height: auto;
  object-fit: cover;
  padding-right: 40px;
}

/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5vw;
  bottom: 5vw;
  height: 50px;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  padding: 0 0 0 30px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 25px;
  border-top: solid 1px;
  transform: rotate(40deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

@media(min-width:960px){
  .footer {
    padding-top: 60px;
  }
  .footer-logo {
    width: 86%;
  }
  .footer-logo1 img {
    width: 25vw;
  }
  .footer-logo2 img {
    width: 50px;
  }
}