@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #2c2c2c; /* RGB */
  font-family: "toppan-bunkyu-gothic-pr6n", serif;;
  font-weight: normal;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;;
  font-weight: 900;
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
a {
  text-decoration: none;
}
@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);
  }
}

/* ---------- header ---------- */
.header {
  background-color: #EE7828;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header__title {
  width: 50px;
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #ee7828;
  opacity: 0.95;
  padding-top: 100px;
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
.nav-items__item a {
  font-family: Impact;
  font-size: 2.4rem;
  color: #fff;
  line-height: 5rem;
}
.header-border {
  color: #fff;
  display: inline-block;
  width: 50%;
  height: 3px;
  margin-top: 20px;
}
.sns-box {
  margin-top: 10px;
}
.snsbtniti {
  display: flex;
  justify-content: center;
  gap: 5%;
  list-style: none;
}
.snsbtniti li img {
  width: 30px;
}

@media(min-width:982px){
  .header {
    height: 160px;
    max-width: 780px;
    border-radius: 0 0 0 100px;
  }
  .header__inner {
    padding: 0 100px;
  }
  .header__title {
    width: 200px;
  }
  .header__title a {
    position: fixed;
    width: 180px;
    top: 12px;
    left: 12px;
  }
  .header__nav {
    height: auto;
    width: auto;
    padding: 60px 50px 0;
    transform: translateX(0);
  }
  .header__nav ul {
    display: flex;
    gap: 70px;
  }
  .sns-box {
    display: none;
  }
  .header-border {
    display: none;
  }
}
/* ---------- ハンバーガー ---------- */
.header__hamburger {
  width: 45px;
  height: 100%;
}
.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 6px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -11px;
  transform: rotate(-45deg);
}
@media(min-width:982px){
  .header__hamburger {
    display: none;
  }
}

/* ---------- footer ---------- */
.footer {
  height: 110px;
  padding: 10px 0;
  background-color: #EE7828;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}
.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo img {
  width: 50px;
}
.footer-logo h1{
  font-family: Impact;
  font-size: 1.8rem;
  color: #fff;
  text-align: left;
  line-height: 5rem;
  display: inline-block;
}
.snsbtnni {
  display: flex;
  justify-content: center;
  gap: 5%;
  list-style: none;
}
.snsbtnni li img {
  width: 20px;
}
.footer-menu {
  display: none;
}
.footer p {
  font-size: 1.2rem;
  color: #fff;
}
/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  color: #fff;
  padding: 0 0 0 30px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

@media(min-width:769px){
  .footer {
    height: 240px;
    padding: 20px 0 10px;
  }
  .footer-logo img {
    width: 80px;
    height: 80px;
  }
  .footer-logo h1 {
    font-size: 3.6rem;
    margin: 15px;
  }
  .snsbtnni {
    padding-bottom: 20px;
  }
  .snsbtnni li img {
    width: 30px;
  }
  .footer-menu {
    font-family: Impact;
    font-size: 3rem;
    color: #fff;
    list-style-type: none;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 5%;
  }
  .footer-menu__item {
    padding: 0 30px;
    text-decoration: none;
  }
  .footer-menu__item a {
    color: #fff;
  }
  #page-top {
    right: 40px;
    bottom: 40px;
  }
  #page-top {
    right: 30px;
    font-size: 150%;
  }
}
