@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}



/* ここからサイトCSS */




.header_img{
    width:50px
}
.header_inner{
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;

}

.header_inner>a {
  display: inline-block;
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 9999;
}

.header_site_menu{
  color: #000000;
  background-color: #77008f;
  position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
}
.header_site_menu.is-show{
  display: block;
  z-index: 20;
}

header{
  position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #fffc42;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.toggle_menu_button{
  display: block;
  width: 44px;
  height: 34px;
  background-image: url(./1x/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

.toggle_menu_button{
  display: block;
  width: 44px;
  height: 34px;
  background-image: url(./1x/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

.top_img{
    display: flex;
    justify-content: center;
}
.business_text{
    background-color: rgb(255, 0, 119);
    height: 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 25px;
    font-family: serif;
    padding-bottom: 5px;
}
.theme_text{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}
.sub_text_list{
  font-size: medium;
text-align: center;

}
.sub_text li{
  margin-top: 20px;
}

.sub_text{
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.spray img{
  position: absolute;
  right: -20px;
  top: 20px;
  width: 20%;
}
h2{
  position: relative;
}
/* .scroll-infinity{
  display: flex;
  overflow: scroll;
  overflow-y:hidden ;
  
}
.scroll-infinity img{
  width: 40%;
} */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity_wrap {
    display: flex;
    overflow: hidden;
  }
  .scroll-infinity_list {
    display: flex;
    list-style: none;
    padding: 0
  }
  .scroll-infinity_list--left {
    animation: infinity-scroll-left 10s infinite linear 0.5s both;
  }
  .scroll-infinity_item {
    width: calc(200vw / 6);
  }
  .scroll-infinity_item>img {
    width: 100%;
  }
  



h3{
  font-size: 30px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
    margin-bottom: 50px;
}
.item_list{
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  margin: 0 20px 50px;
}
dt{
  font-size: 11px;
  text-align: left;
}
.price{
  font-size: 11px;
  text-align: left;
margin-top: 10px;
}
h4{
  font-size: 30px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
    margin-bottom: 50px;
}
.redbull_text{
  font-size: 20px;
}
.youtube_link{
display: flex;
justify-content: space-around;
text-align: center;
}
.kikonasi{
  background-color: rgb(209, 214, 223);
  padding:1px 10px 50px;
}
.footer_nav_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin: 10px;
}
.footer_nav{
  margin-right: 100px;
  margin-top: 20px;
  position: relative;
} 
.footer_nav_text{
  color: grey;
  margin-top: 10px;
}
.tel img{
position: absolute;
  right: -80px;
  top: -80px;
  width: 20%;
}
.sns_link{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 220px;
}
hr{
  height: 5px;
  background-color:rgb(209, 214, 223);
  width: 10000px;
}
.footer_text_bottom{
  display: flex;
  justify-content: space-around;
  margin: 0px 150px;
  color: grey;
  
}
.copyright{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}


/* ここからハンバーガーメニュー */

.hamburger_menu li {
  margin: 30px 0;
  border: 1px solid #ccc;
  }
  .title {
  position: relative;
  padding: 15px 50px;
  cursor: pointer;
  color: #ffffff;
  }
  /*＋アイコン*/
.title::before,
.title::after{
position: absolute;
content:'';
width: 15px;
height: 2px;
background-color: #666;
transition: all .2s ease;
}

.title::before{
top:48%;
left: 15px;
transform: rotate(0deg);
}

.title::after{
top:48%;
left: 15px;
transform: rotate(90deg);
}

/*closeというクラスがついたら×に変化*/
.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

.box {
display: none;/*はじめは非表示*/
margin: 0 20px 20px;
padding: 20px;
background: #f4f4f4;
line-height: 30px;
}

/* ここからラインアニメーション */

/* svg{
  width: 300px;
}

.line{
  stroke-dasharray: 12000;
  stroke-dashoffset: 12000;
  animation: line 2s both;
}
@keyframes line{
  100%{
    stroke-dashoffset: 0;
  }
} */





/* ここからトップへボタン */

html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 80px;
  width: 80px;
  position: fixed;
  left: 30px;
  bottom: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* .pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
} */



/* ここからログインの瞬間の企業ロゴ */

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}




body {
  text-align : center
}

:root {
  --animate-duration: 3s;
}


/* ここからスプレーアニメ */

.spray-gimmick1 {
  transition: opacity 3s; /* opacity要素(不透明度)の変更を3秒間かけて行う */
}