@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;
      a{
        color: #0096F1;
      }
    }
    h1{
      font-size: 38px;
      span{
        font-size: 47px;
      }
    }
  }

  .logo img {
    width: 219px;
    height: 54px;
  }
  
}





/*  共通項目 > デバイス別出し分け
------------------------*/
.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;
}


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;
  }


  .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;
  }

}

@media screen and (max-width: 768px){
}

.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;
  }
}


#clickNeko{
  top: 37%;
  left: 43%;
 }


@media screen and (max-width: 768px) {

#clickNeko{
  top: 29%;
  left: 35%;
 }
}

@media screen and (max-width: 425px) {

#clickNeko{
  top: 16%;
  left: 25%;
 }
}