body{
  width: 100vw;
  font-family: "Noto Sans JP","Montserrat","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
span.line1{
  position: absolute;
  width: 5px;
  height: 100%;
  left: 48px;
  z-index: 1;
  background-color: #FFFFFF;
}
span.line2{
  position: absolute;
  width: 5px;
  height: 100%;
  right: 48px;
  z-index: 1;
  background-color: #FFFFFF;
}
a {
  text-decoration: none;
  color: #050000;
}
.jump{
  position: absolute;
  height: 120px;
  bottom: 0;
  margin-bottom: 0;
}
/* ヘッダー */
header{
  width: 100vw;
  height: 120px;
  background: #FFFFFFD9 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 10px #0000001A;
  position: fixed;
  display: flex;
  z-index: 10;
}
header>div{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content:space-between;
  margin-left: 160px;
  margin-right: 160px;
}
header p{
  font-size: 56px;
  width: 168px;
  height: 81px;
  margin-top: 27px;
  font: normal normal normal 56px/81px DotGothic16;
}
header p a{
  color: #BD1800;
}
header ul{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header li{
  display: flex;
  justify-content: center;
  font-size: 32px;
  width: 154px;
  height: 51px;
  margin-top: 50px;
  color: #050000;
  font: normal normal normal 32px/46px Noto Sans CJK JP;
}
span.nav_line{
  content: "";
  height: 51px;
  width: 1px;
  margin-top: 50px;
  background-color: #707070;
}
.hamburger_menu{
  display: none;
  width: 60px;
  height: 40px;
  margin-top: 48px;
  cursor: pointer;

}
/* メインビジュアル */
.mv{
  width: 100%;
  height: 1032px;
  background-color: #050000;
  display: flex;
  justify-content: center;
  position: relative;
}
.mv_back{
  height: 100%;
  width: 100%;
  position: absolute;
}
.mv>div{
  width: 100%;
  margin-left: 160px;
  margin-right: 160px;
  display: flex;
  align-items: center;
  justify-content: end;
  z-index: 1;
}
.mv_img{
  height: 814px;
  object-fit: contain;
  position: absolute;
  left: 160px;
  bottom: 0;
}

.mv h1{
  color: #F3F2EB;
  font: normal normal normal 120px/174px DotGothic16;
  letter-spacing: 0px;
  text-shadow: 0px 10px 10px #00000029;
  opacity: 1;
  z-index: 1;
}

/* About --------------------------------------------------------------------------------------------------------------*/
.about{
  width: 100%;
  height: 1080px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.about_back1{
position: absolute;
width: 100%;
height: 840px;
margin: auto;
top: 0;
bottom: 0;
}
.about_back2{
  display: none;
}
.about_back3{
  display: none;
}
.about .line1{
  position: absolute;
  width: 5px;
  height: 841px;
  left: 48px;
  top: 120px;
  z-index: 1;
  background-color: #FFFFFF;
}
.about .line2{
  position: absolute;
  width: 5px;
  height: 841px;
  right: 48px;
  top: 120px;
  z-index: 1;
  background-color: #FFFFFF;
}
.about h2{
  margin-top: 40px;
  color: #050000;
  font: normal normal bold 80px/116px Noto Sans CJK JP;
  border: #050000;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about h2::after, .about h2::before{
  content: "";
  display: block;
  width: 237px;
  height: 2px;
  background-color: #050000;
}
h2::before{
  position: relative;
  top: 8px;
}
.about>div{
  margin-left: 160px;
  margin-right: 160px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.about>div>div{
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_name{
  font: normal normal bold 56px/81px Noto Sans CJK JP;
  letter-spacing: 0px;
  color: #FFFFFF;
  margin-bottom: 80px;
}
.about_introduction {
  width: 536px;
  text-align: center;
  font: normal normal normal 24px/48px Noto Sans CJK JP;
  letter-spacing: 1.54px;
  color: #FFFFFF;
  opacity: 1;
  margin-bottom: 0;
}
.about>div img{
  width: 50%;
  object-fit: cover;
}
/* Activity --------------------------------------------------------------------------------------------------------------*/
.activity{
  width: 100%;
  height: 1080px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #050000;
}
.activity h2{
  margin-top: 40px;
  color: #FFFFFF;
  font: normal normal bold 80px/116px Noto Sans CJK JP;
  border: #FFFFFF;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.activity h2::after, .activity h2::before{
  content: "";
  display: block;
  width: 300px;
  height: 2px;
  background-color: #FFFFFF;
}
.activity>div{
  margin-left: 160px;
  margin-right: 160px;
  display: flex;
}
.activity>div>div{
  width: 20%;
  position: relative;
}
.activity img{
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.mask {
	width: 100%;
	height: 100%;
	position:	absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background: #BD1800 0% 0% no-repeat padding-box;
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.caption{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: normal normal bold 32px/60px Noto Sans CJK JP;
  letter-spacing: 1.02px;
  color: #FFFFFF;
}
.caption img{
  margin-top: 48px;
  width: 125px;
  height: 125px;
}

/* Goods --------------------------------------------------------------------------------------------------------------*/
.goods{
  width: 100%;
  height: 1600px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #BD1800;
}
.goods h2{
  margin-top: 40px;
  color: #FFFFFF;
  font: normal normal bold 80px/116px Noto Sans CJK JP;
  border: #FFFFFF;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.goods h2::after, .goods h2::before{
  content: "";
  display: block;
  width: 249px;
  height: 2px;
  background-color: #FFFFFF;
}
.goods>div{
  margin-left: 160px;
  margin-right: 160px;
  height: 1184px;
  background-color: #FFFFFF;
  z-index: 1;
}
.goods>div>div{
  display: flex;
  overflow-x: scroll;
  width: 98%;
}
.goods>div>div::-webkit-scrollbar {
  display: none;
}
.goods>div>div div{
  width: 440px;
  height: 600px;
  margin: 68px 0 0 32px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 10px #00000029;
  border: 1px solid #707070;
  border-radius: 20px;
  opacity: 1;
  flex-shrink: 0;
}
.goods>div>div img{
  width: 440px;
  height: 440px;
  object-fit: contain;
}
.goods_name{
  text-align: center;
  font: normal normal bold 40px/48px Noto Sans CJK JP;
  letter-spacing: 0px;
  color: #BD1800;
  opacity: 1;
  margin-top: 20px;
  margin-bottom: 0;
}
.goods_price{
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
  font: normal normal bold 40px/48px Noto Sans CJK JP;
  letter-spacing: 0px;
  color: #050000;
  opacity: 1;
}
.goods>div>img{
  margin-top: 40px;
  margin-right: 56px;
  width: 120px;
  height: 21px;
  margin-left: auto;
  display: flex;
}
.goods>div>p{
  text-align: end;
  font: normal normal bold 40px/48px Noto Sans CJK JP;
  letter-spacing: 0px;
  color: #BD1800;
  opacity: 1;
  margin-right: 62.5px;
  margin-bottom: 60px;
}
.goods button{
  border: none;
  background: transparent;
  display: flex;
  margin: auto;
}
.goods button>div{
  width: 800px;
  height: 200px;
  background: #BD1800 0% 0% no-repeat padding-box;
  box-shadow: 5px 10px 10px #00000029;
  text-align: center;
  font: normal normal bold 40px/48px Noto Sans CJK JP;
  letter-spacing: 1.28px;
  color: #FFFFFF;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goods button>div>div{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 765px;
  height: 168px;
  border: 5px solid #FFFFFF;
  z-index: 1;
}
/* Contact --------------------------------------------------------------------------------------------------------------*/
.contact{
  width: 100%;
  height: 840px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #050000;
}
.contact h2{
  margin-top: 40px;
  color: #FFFFFF;
  font: normal normal bold 80px/116px Noto Sans CJK JP;
  border: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2::after, .contact h2::before{
  content: "";
  display: block;
  width: 308px;
  height: 2px;
  background-color: #FFFFFF;
}
.contact div{
  margin: auto;
}
.contact button{
  border: none;
  background: transparent;
  display: flex;
}
.contact button>div{
  width: 800px;
  height: 200px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 5px 10px 10px #00000029;
  text-align: center;
  font: normal normal bold 40px/48px Noto Sans CJK JP;
  letter-spacing: 1.28px;
  color: #050000;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact button>div>div{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 765px;
  height: 168px;
  border: 5px solid #050000;
  z-index: 1;
}
/* Link --------------------------------------------------------------------------------------------------------------*/
.link{
  width: 100%;
  height: 840px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #FFFFFF;
}
.link h2{
  margin-top: 40px;
  color: #050000;
  font: normal normal bold 80px/116px Noto Sans CJK JP;
  border: #050000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.link h2::after, .link h2::before{
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background-color: #050000;
}
.link span.line1,.link span.line2{
  background-color: #050000;
}
.link div{
  display: flex;
  margin: auto;
}
.link_icon2{
  margin-left: 100px;
  margin-right: 100px;
}
/* footer ---------------------------------------------------------------------*/
footer{
  height: 360px;
  background-color: #BD1800;
}
footer>div{
  margin-left: 160px;
  margin-right: 160px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer>div>div{
  display: flex;
  justify-content: space-between;
}
footer>div>div p{
  font: normal normal normal 56px/81px DotGothic16;
  letter-spacing: 0px;
  opacity: 1;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
footer>div>div p a{
  color: #FFFFFF;
}
footer ul{
  list-style: none;
  height: 280px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
footer li{
  text-align: left;
  font: normal normal bold 32px/46px Noto Sans CJK JP;
  letter-spacing: 0px;
  opacity: 1;
}
footer li a{
  color: #FFFFFF;
}
footer>div>p{
  font: normal normal normal 16px/24px Noto Sans CJK JP;
  letter-spacing: 0.26px;
  color: #FFFFFF;
  opacity: 1;
  margin-bottom: 16px;
  text-align: center;
}

/* モーダル */
.modal-body{
  position: relative;
}
.cross_i{
  width: 42.4px;
  height: 42.4px;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;

}
.modal_menu{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal_menu p{
  margin-top: 40px;
  margin-bottom: 76px;

}
.modal_menu p a{
  font: normal normal normal 56px/81px DotGothic16;
  letter-spacing: 0px;
  color: #BD1800;
  opacity: 1;
}
.modal_menu ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.modal_menu li{
  list-style: none;
  margin-bottom: 24px;
}
.modal_menu li a{
  font: normal normal normal 32px/46px Noto Sans CJK JP;
  letter-spacing: 0px;
  color: #050000;
  opacity: 1;
}