@charset "UTF-8";
/*************共通項目など*************/
/* Windows 用 Medium 指定の游ゴシック */
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
body {
  /* ゴシック体指定 */
  font-optical-sizing: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  color: #2B2726;
  margin: 0 auto;
  background-color: #EFEFEF;
  line-height: 1.5;
}

a {
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

ol, ul {
  list-style: none;
}

a:after, a:before {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.f_font{
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@media screen  and (max-width: 1920px) {
  .clickpoint{
    width: 51px;
    height: 62px;
  }
  .hamburger{
    display: none;
  }

  .main_text{
    p{
      font-size: 17px;
    }
    h1{
      font-size: 38px;
      span{
        font-size: 47px;
      }
    }
  }

  .logo img {
    width: 219px;
    height: 54px;
  }
  
}

@media screen and (max-width: 1440px) {
  .menu {
    width: 30%;
  }
  .clickpoint {
    width: 36px;
    height: 44px;
  }

  .record img{
    width: 249px;
    height: 249px;
  }

  
}

@media screen and (max-width: 768px) {
  .clickpoint{
    width: 27px;
    height: 33px;
  }
  .record img{
    width: 188px;
    height: 188px;
  }

  .logo img {
    width: 174px;
    height: 43px;
  }
  .main_text{
    p{
      font-size: 14px;
    }

    h1{
      font-size: 30px;
      span{
        font-size: 37px;
      }
    }
  }
}

@media screen and (max-width: 425px) {
  .clickpoint{
    width: 15px;
    height: 18px;
  }

  .record img{
    width: 110px;
    height: 110px;
  }


}


/*  共通項目 > デバイス別出し分け
------------------------*/
.sp {
  display: none;
}

.pc_tab {
  display: block;
}

.s_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp, .pc_tab {
    display: block;
  }
  .pc {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .s_sp {
    display: block;
  }
  .pc_tab, .pc {
    display: none;
  }
}




/*************TOPページ*************/



header {
  position: fixed;
  width: 100%;
  height: 67px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  justify-content: center;
}

.record img {
  margin-left: -10%;
  margin-top: 11%;
}


.logo_cont{
  display: flex;
  align-items: center;
}


.menu {
width: 50%;
margin-right: 3%;
color: #0096F1;
font-size: 14px;
justify-self: right;

ul{
  list-style-type: none;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

}

/* スマホ向け（768px以下）でメニューは非表示＆右スライドで表示 */
@media screen and (max-width: 1024px) {

  .hamburger {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0096F1;
    border-radius: 3px;
    transition: 0.4s;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%; /* 最初は画面外に隠す */
    width: 30%;
    height: 100%;
    background-color: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 60px 40px;
    margin-right: 0;

    ul{
      list-style-type: none;
      display: block;
      align-items: center;
    }
  }

  .menu.active {
    right: 0; /* スライドイン */
  }

  .overlay{
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
  }

  .overlay.active{
    display: block;
  }

  .menu ul {
    list-style: none;
    padding: 0;
  }
  .menu li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px){
  .menu{
    width: 70%;
  }
}

.main_text {
  display: block;
  padding:  100px 0 30px;
  text-align: center;

  h1 {
    color: #0096F1;
    margin-bottom: 20px;
    font-weight: 900;
  }
}

.main_video {
  position: relative;
  width: 80%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  /* justify-self: center; は親がGridコンテナでなければ効果がありません */
}

.main_video .main-image { 
  display: block; 
  width: 100%;
  height: auto; 
  border-radius: 20px;
} 

.maker{
  display: flex;
  list-style-type: none;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 1440px;
  justify-self: center;
  
  p{
    font-size: 13px;
    padding: 10px;
  }

  .icon {
    justify-self: center;
    flex-direction: column; 
    height: 80px;
    display: flex;
    margin: 5px;
    margin-top: 10px;
    p {
      padding: 0.2em 0.5em;
      width: fit-content;
      font-size: 10px;
      background-color: #CDD2D5;
      text-align: center;
      border-radius: 8px;
      margin-inline: auto;
    }
    img {
      margin-top: 5px;
      width: 58px;
      height: 58px;
    }
  }
}

 
footer{
  margin-top: 50px;
  margin-bottom: 20px;
  p{
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
}

/*************クリックポイント*************/

.clickpoint {
  position: absolute;
  cursor: pointer;
  display: inline-block;
}


.tooltip {
  position: absolute;
  bottom: 120%; /* アイコンの上に表示 */
  left: 50%;
  transform: translateX(-50%);
  background-color: #0096F1;
  color: #fff;
  padding: 20px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  width: 200px;
  line-height: 1.5;

  h2{
    font-size: 20px;
    color: #FCF02C;
    padding-bottom: 12px;
    line-height: 1;
  }
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0096F1;
}

.tooltip.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-5px);
}



#clickNeko{
  top: 37%;
  left: 43%;
 }

 #shooting{
  top: 65%;
  left: 6%;
 }



/*************アニメーション*************/


/* レコード */
.record img {
  animation: rotate 6s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* クリックポイント */
.clickpoint{
  animation: fuwafuwa 2s infinite;
  
}

/* @keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
 
} */


/* ハンバーガー → ✖ のアニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}
