html{
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body{
  border: 1px solid lightgray;
  font-family: "M PLUS Rounded 1c";
  margin: 0;
  overflow: hidden;
  width: 100vw;
  -webkit-overflow-scrolling: touch;

}
main{
  display: inline-block;
  width: 88vw;
}
section{
  margin-top: 5em;
}
img{
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

/********** フッター部分 **********/
footer{
  background-color: black;
  height: 50px;
  color: #fff;
  margin-top: 10em;
}
footer img{
  height: 100%;
}
.copy_right{
  text-align: center;
  line-height: 50px;
}
/********************/

/********** ページTOP **********/
.top_wrapper{
  width: 100%;
  position: relative;
  height: 100vh;
}
.top_bg{
  margin: 0;
  overflow: hidden;
  background-size: cover;
}
.top_bg div{
  height: 100vh;
	background-position:center center;
	background-size: cover;
	display: flex;
	align-items: center;
  justify-content: center;
  
  background-image: url('../images/top1-min.jpeg');/* test */
}
.top_logo{
  animation-duration: 1.5s;
  width: 80%;
  height: auto;
  width: 300px;
  position: absolute;
  top: 3%;
  left: 3%;
  border: 3px solid black;
  background: rgba(255,255,255,.5);
  z-index: 4;
}
.top_heading{
  position: absolute;
  bottom: 15%;
  left: 3%;
  width: 450px;
  text-align: center;
  z-index: 4;
}
.top_heading div{
  background: white;
  color: black;
  font-size: 40px;
  letter-spacing: 5px;
  margin-bottom: 10px;
  padding: 2%;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
  transition-timing-function: cubic-bezier(.075,.82,.165,1);
  -webkit-transform-origin: left;
  transform-origin: left;
  transform: scaleX(0);
  font-family: 'M PLUS 1p', sans-serif;
}
.top_heading div:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
  transition-timing-function: cubic-bezier(.075,.82,.165,1);
  -webkit-transform-origin: right;
  transform-origin: right;
  transform: scaleX(1);
}
.text1{
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}
.text1::before{
  background: rgb(255, 101, 101);
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.text2{
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.text2::before{
  background: rgb(255, 223, 114);
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.top_heading.trigger div{
  transform: scaleX(1);
}
.top_heading.trigger div::before{
  transform: scaleX(0);
}
.top_scroll{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  z-index: 1;
}
.top_scroll span{
  display: block;
}
.top_scroll .bar{
  width: 2px;
  height: 3em;
  background: #fff;
  margin: 10px auto 0 auto;
}
/********************/

/********** 動画部分 **********/
.video iframe{
  width: 100%;
  /* height: 460px; */

  height: 500px;
}
/********************/

/********** 動画モーダル部分 **********/
body.modal_open{
  height: 100vh;
  overflow-y: hidden;
  /* position: fixed; */
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);;
    width: 80%;
}

.close_btn{
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
  transition: .5s;
}
.close_btn:hover{
  background: rgba(255, 255, 255, .3);
}
.close_btn_wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.close_btn span{
  width: 27px;
  height: 1px;
  background: #fff;
  display: block;
  margin: 8px auto;
}
.close_btn span:nth-of-type(1) {
  -webkit-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
.close_btn span:nth-of-type(2) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}

.thumbnail {
  display: block;
  position: relative;
  margin-top: 50px;
}
.thumbnail::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
}

.play_heading{
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  background: rgba(0, 0, 0, .5);
  font-size: 20px;
  padding: 10px;
  transition: .5s;
}
.play_btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
  transition: .5s;
  background: rgba(0, 0, 0, .5);
}
.play_btn:hover{
  background: rgba(255, 255, 255, .3);
}
.play_btn_wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.play_btn span{
  width: 16px;
  height: 1px;
  background: #fff;
  display: block;
  margin: 8px auto;
}
.play_btn span:nth-of-type(1) {
  -webkit-transform: translate(1px, 5px) rotate(31deg);
  transform: translate(1px, 5px) rotate(31deg);
}
.play_btn span:nth-of-type(2) {
  -webkit-transform: translateY(-5.6px) rotate(90deg);
  transform: translateX(-5.6px) rotate(90deg);
}
.play_btn span:nth-of-type(3) {
  -webkit-transform: translate(1px, -5px) rotate(-31deg);
  transform: translate(1px, -5px) rotate(-31deg);
}
/********************/

/********** セクションの見出し部分 **********/
.heading{
  position: relative;
}
.heading .bg{
  font-size: calc(9rem + ((1vw - 0.48em) * 5.2083));
  color: rgba(0, 0, 0, .1);
  font-weight:900;
  font-family: 'Open Sans', sans-serif;
  line-height: .8em
}
.heading .bg:after{
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(left, #f00, #fff);
  background:-webkit-gradient(linear, left top, right bottom, from(#FF6565), color-stop(0.8, #FFDF72),to(#fff));
	background:-moz-linear-gradient(left, #f00, #fff);
}
.heading .section{
  color: black;
  position: absolute;
  left: 1em;
  bottom: 5px;
  font-size: 3em;
  line-height: .8em;
  margin: 0;
}
/********************/

/********** セクションの説明文 **********/
.description{
  margin-top: 3em;
  padding: 0 8em;
}
.description ul{
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}
#contact .description{
  text-align: center;
}

/* マーカー装飾 */
span.red{
  /* background: linear-gradient(transparent 50%, rgba(255, 101, 101, .8) 50%); */

  background-image: linear-gradient(to right, rgba(255, 101, 101, .8) 50%, transparent 50%);
  background-image: -webkit-linear-gradient(left, rgba(255, 101, 101, .8) 50%, transparent 50%);

}
span.yellow{
  /* background: linear-gradient(transparent 50%, rgba(255, 223, 114, .8) 50%); */

  background-image: linear-gradient(to right, rgba(255, 223, 114, .8) 50%, transparent 50%);
  background-image: -webkit-linear-gradient(left, rgba(255, 223, 114, .8) 50%, transparent 50%);
}
span.orange{
  /* background: linear-gradient(transparent 50%, rgba(255, 194, 78, .8) 50%); */

  background-image: linear-gradient(to right, rgba(255, 194, 78, .8) 50%, transparent 50%);
  background-image: -webkit-linear-gradient(left, rgba(255, 194, 78, .8) 50%, transparent 50%);
}
span.marker{
  -webkit-transition: background-position .5s ease-out;
  transition: background-position .5s ease-out;
  background-position: 100% bottom;
  background-size: 200% 50%;
  background-repeat: no-repeat;
}
.marker.marker_scroll{
  background-position: 0% bottom;

}
/********************/

/********** つぶやき風 **********/
.bubble_msg{
  margin-top: 5em;
}
.message{
  font-size: 30px;
  text-align: center;
  color: black;
  margin-bottom: 2em;
}
.msg_img{
  margin-bottom: 6em;
}
.bubble{
  width: 30%;
  display: block;
}
.msg_red{
  margin-left: 5em;
}
.msg_yellow{
  margin: auto 5em auto auto;
}
.product_desc{
  margin-top: 5em;
}
.product_desc img{
  width: 50%;
  display: inline-block;
}
/********************/

/********** 購入ボタン **********/
.purchase_btn{
  position: relative; /*必要？*/
  border-radius: 5px;
  box-shadow: 0 0 5px gray;
  margin: 3em auto 0 auto;
  display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
  background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
  transition: .5s;
  width: 200px;
}
.purchase_btn:hover{
  opacity: .7;
}
.purchase_btn svg{
  height: 50px;
  width: 100%;
  fill: none;
  stroke-width: 5;
}
.purchase_btn .o2 {
  stroke: white;
  stroke-dasharray: 20 510;
  stroke-dashoffset: 20;
  transition: all 1s ease-in-out;
}
.purchase_btn:hover .o2 {
  stroke-dashoffset: -510;
}
.purchase_btn span {
  position: absolute;
  margin: auto 0;
  letter-spacing: 3px;
  color: #fff;
}
/********************/

/********** お問い合わせのSNSアイコン（共通） **********/
.sns_icon a{
  display: inline-block;
  color: #FFF;
  border-radius: 14px;
  position: relative;
  height: 120px;
  width: 120px;
  text-align: center;
  padding-top: 12px;
  box-sizing: border-box;
  font-size: 19px;
  overflow: hidden;
  text-decoration:none;
}
.sns_icon a:hover .fab {
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
.sns_icon a i.fab{
  font-size: 70px;
  position: relative;
  display:inline-block;
  position: relative;
  transition: .5s
}
.sns_icon{
  margin-top: 5em;
}
.sns_icon a i.fas{/**/
  font-size: 60px;
  padding-bottom: 10px;
}
/*******************/

/********** お問い合わせのInstagramアイコン **********/
.store_btn{
  background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
  margin-left: 6em;
}
/*******************/

/********** お問い合わせのInstagramアイコン **********/
.insta_btn {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  margin-left: 6em;
}
.insta_btn:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta_btn div {
  position: relative;
}
/*******************/

/********** お問い合わせのTwitterアイコン **********/
.twitter_btn{
  background: #1da1f3
}
/*******************/

/********** ナビゲーション部分 **********/
.side_bar{
  width: 12vw;
  min-width: 120px;
  height: 100vh;
  height: 100%;
  display: inline-block;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 5px black;
  background: #fff;
  padding-top: 2em;

}

/* ナビゲーションアイコン部分 */
.side_bar .side_btn{
  display: block;
  width: 80%;
  /* height: 50px; */
  text-align: center;
  margin: 30px auto 0 auto;
  cursor: pointer;
  text-decoration: none;
  color: #666;
  position: relative;
  padding: 10px 0;
}
.side_btn div{
  margin-top: 10px;
}
.side_btn svg{
  width: 2em;
  color: black;
}
.side_btn svg, .side_btn div{
  transition: .4s;
}
.side_btn:hover svg, .side_btn:hover{
  opacity: .7;
}

/* ナビゲーションアイコンのアニメーション */
.side_btn span{
  position: absolute;
  transition: transform .5s;
}
.side_btn span:nth-child(1), .side_btn span:nth-child(3){
  width: 100%;
  height: 1px;
  background: #262626;
  transform: scaleX(0);
}
.side_btn span:nth-child(1){
  top: 0;
  left: 0;
  transform-origin: right;
}
.side_btn:hover span:nth-child(1){
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .5s;
}
.side_btn span:nth-child(3){
  bottom: 0;
  left: 0;
  transform-origin: left;
}
.side_btn:hover span:nth-child(3){
  transform: scaleX(1);
  transform-origin: right;
  transition: transform .5s;
}
.side_btn span:nth-child(2), .side_btn span:nth-child(4){
  width: 1px;
  height: 100%;
  background: #262626;
}
.side_btn span:nth-child(2){
  top: 0;
  left: 0;
  transform-origin: bottom;
}
.side_btn:hover span:nth-child(2){
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s;
}
.side_btn span:nth-child(4){
  top: 0;
  right: 0;
  transform-origin: top;
}
.side_btn:hover span:nth-child(4){
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s;
}
/*********************/

/********** ナビゲーションのSNSアイコン（共通） **********/
.sns_icon_navi{
  margin-top: 50px;
  text-align: center;
}
.sns_icon_navi a{
  text-decoration: none;
}
.sns_icon_navi a svg{
  width: 2em;
  margin: 0 2px;
}
/*********************/

/********** フェードインアニメーション **********/
.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  -webkit-transform : translate(0, 50px);
  transition : all 1000ms;
  -webkit-transition : all 1000ms;
}
.fadein_multi img {
  opacity: 0;
  transform : translate(0, 50px);
  -webkit-transform : translate(0, 50px);
  transition : all 1000ms;
  -webkit-transition : all 1000ms;
}
.fadein_multi + .message {
  opacity: 0;
  transform : translate(0, 50px);
  -webkit-transform : translate(0, 50px);
  transition : all 1000ms;
  -webkit-transition : all 1000ms;
}
.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.fadein_multi .scrollin{
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.fadein_left{
  opacity: 0;
  transform : translate(-50px, 0);
  -webkit-transform : translate(-50px, 0);
  transition : all 1000ms;
  -webkit-transition : all 1000ms;
}
.fadein_right{
  opacity: 0;
  transform : translate(50px, 0);
  -webkit-transform : translate(50px, 0);
  transition : all 1000ms;
  -webkit-transition : all 1000ms;
}
.fadein_left.scrollin,
.fadein_right.scrollin
{
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.message.scrollin{
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/*********************/

/**** BTN No. 4 ****/
.custom-btn {
  padding: 10px 25px;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 500;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.btn-4 {
  width: 160px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-5{
  width: 205px;
}
.btn-4 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 12px;
}
.btn-4:before,
.btn-4:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #000;
  transition: all 0.3s ease;
}
.btn-4:before {
  height: 50%;
  width: 1px;
}
.btn-4:after {
  width: 20%;
  height: 1px;
}
.btn-4:hover:before {
  height: 100%;
}
.btn-4:hover:after {
  width: 100%;
}
.btn-4 span:before,
.btn-4 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #000;
  transition: all 0.3s ease;
}
.btn-4 span:before {
  width: 1px;
  height: 50%;
}
.btn-4 span:after {
  width: 20%;
  height: 1px;
}
.btn-4 span:hover:before {
  height: 100%;
}
.btn-4 span:hover:after {
  width: 100%;
}

/*****/
.center{
  text-align: center;
}
.mt-30{
  margin-top: 30px;
}
.m-50{
  margin-top: 50px;
  margin-bottom: 50px;
}