@charset "utf-8";
/*共通*/
body{
  background: linear-gradient(to bottom, #d2ecfa 0%, #d2ecfa 5%, #bad785 5%, #bad785 100%)
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
li {
  list-style-type: none;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
.accordion a {
  padding: 0;
}
section {
  margin: 0;
}

/*ハンバーガーメニュー追記*/

.navInner h2.no_open a{
  color: #333;
  display: block;
  width: 100%;
}
.navInner h2.no_open::before, .navInner h2.no_open::after {
  content: none;
}
.navWrap.panel-active{
  overflow-y: auto;
}
@media screen and (max-width: 1199px) {
  .navInner li a{
    padding: 15px 15px 15px 0 !important;
  }
  .navInner h2{
    padding-right: 15px;
  }
  .navInner .accordion i {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(50%);
      font-size: 14px;
      margin-top: -7px;
  }
  .navInner h2::before {
        top: 60%;
  }
  .navInner h2::after {
        top: 60%;
  }

}




/* PC
-------------------------------------------------- */
/*ベース*/
.content_wrap {
  padding: 30px;
}
.sec_end {
  padding: 30px
}
.content_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  text-align: center;
  gap: 10px;
}
.content_ttl i.icon_style1{
  max-width: 84px;
  width: 100%;
  text-align: center;
  padding-left: 30px;
  padding-right: 36px;
}
.content_ttl i.icon_style2{
  max-width: 81px;
  width: 100%;
  text-align: center;
  padding-left: 30px;
  padding-right: 39px;
}
.content_ttl i.icon_style3{
  max-width: 123px;
  width: 100%;
  text-align: center;
  padding-left: 17px;
  padding-right: 10px;
}
.content_ttl i.icon_style4{
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.content_ttl span {
  width: 100%;
  font-size: 38px;
  text-align: left;
  display: block;
  color: #95D3E1;
  font-weight: bold;
}
.content_ttl span span {
  font-size: 18px;
  text-align: left;
  display: block;
  color: #5D4B3C;
  font-weight: bold;
}
.scroll-box {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  overflow-y: scroll;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.mv_content {
  position: relative;
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.info_content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.content {
  max-width: 600px;
  margin-right: auto;
  background-color: #fff;
}
/*コンテンツ内容*/
/*ニュース*/
.news_list {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.news_item {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  background-color: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease-in-out;
}
.news_item::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left_black.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 33;
  width: 21px;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateX(-10px) translateY(-50%);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.news_item:hover {
  transform: translateY(2px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.news_item:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.news_tag {
  max-width: 120px;
  width: 100%;
  font-size: 12px;
  color: #FFF;
  text-align: center;
  background-color: #B50004;
  border-radius: 5px;
  padding: 5px 0;
  margin-bottom: 10px;
}
.news_text {
  font-size: 14px;
  color: #050505;
}
.news_text span {
  font-size: 14px;
  color: #B50004;
}
/*メインビジュアル*/
h1 {
  width: 100%;
}
/**/
.btn_area {
  padding: 30px;
}
.btn_area a {
  display: block;
  max-width: 540px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease-in-out;
  margin: auto;
}
.btn_area a::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 33;
  width: 21px;
  top: 50%;
  right: 3%;
  /* transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateX(-10px) translateY(-50%); */
  transform: translateX(-10px) translateY(-50%);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn_area a:hover {
  transform: translateY(2px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.btn_area a:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.btn_area a.item {
  background-color: #cc0000;
  margin-bottom: 30px;
}
.btn_area a.shop {
  background-color: #405BD0;
}
/*キャンペーン*/
.campaign_img {
  margin-bottom: 30px;
}
.campaign_ttl {
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
  color: #5D4B3C;
}
.campaign_text {
  font-size: 14px;
  text-align: left;
  margin-bottom: 30px;
  color: #5D4B3C;
}
.campaign_text a {
  color: #405BD0;
}
.campaign_detail {
  margin-bottom: 30px;
}
.campaign_detail span {
  font-size: 12px;
  text-align: left;
  display: block;
  line-height: 1.7;
  color: #5D4B3C;
}
.campaign_apply {
  border: 6px solid #94D3E1;
  padding: 20px;
}
.apply_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  color: #5D4B3C;
}
.apply_text span {
  font-size: 14px;
  text-align: left;
  display: block;
  line-height: 1.7;
  color: #5D4B3C;
}
.apply_text span a {
  color: #405BD0;
}
/*商品*/
.item_ttl {
  font-size: 20px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: #E7BEDB;
  padding: 30px 0;
  margin-bottom: 30px;
  color: #5D4B3C;
}
.item_detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  text-align: left;
  color: #5D4B3C;
  background-color: #FFFFCC;
  padding: 10px;
  margin-bottom: 30px;
}
.item_detail i {
  max-width: 15px;
  display: flex;
  align-items: center;
  margin: 0;
}
.item_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 60px;
}
.item_list .item_listitem {
  width: calc(100% / 2 - 15px);
}
#Bonobono_Masturi,
#Bonobono_Darts,
#Bonobono_Flower,
#Bonobono_Heart,
#Bonobono_Face{
  margin-top: -30px;
  padding-top: 30px;
}
.item_list.col1 .item_listitem {
  width: 100%;
}
.item_name {
  font-size: 14px;
  text-align: left;
  margin-bottom: 25px;
  color: #5D4B3C;
}
.item_price {
  font-size: 14px;
  color: #D33E53;
  margin-bottom: 30px;
}
.digital_btn {
  position: relative;
  padding: 20px 0;
  background-color: #000;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease-in-out;
}
.digital_btn::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 33;
  width: 21px;
  top: 50%;
  right: 3%;
  /* transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateX(-10px) translateY(-50%); */
  transform: translateX(-10px) translateY(-50%);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.digital_btn:hover {
  transform: translateY(2px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.digital_btn:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.product_btn {
  position: relative;
  padding: 20px 0;
  background-color: #CC0000;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  margin-bottom: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease-in-out;
}
.product_btn::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 33;
  width: 21px;
  top: 50%;
  right: 3%;
  /* transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateX(-10px) translateY(-50%); */
  transform: translateX(-10px) translateY(-50%);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#DartsFlight .product_btn {
  margin-bottom: 0;
}
.product_btn:hover {
  transform: translateY(2px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.product_btn:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.shop_btn {
  position: relative;
  padding: 20px 0;
  background-color: #405BD0;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  margin-top: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease-in-out;
}
.shop_btn::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 33;
  width: 21px;
  top: 50%;
  right: 3%;
  /* transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateX(-10px) translateY(-50%); */
  transform: translateX(-10px) translateY(-50%);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.shop_btn:hover {
  transform: translateY(2px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.shop_btn:hover::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
#masturi .item_ttl {
  background-color: #E7BEDB;
}
#normal .item_ttl {
  background-color: #F1AC66;
}
#shop .item_ttl {
  background-color: #95D3E1;
}
#shop .item_list {
  margin-bottom: 0;
}
#DartsFlight .item_list {
  margin-bottom: 0;
}
#DartsliveCard .item_img {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 30px;
}
#DartsFlight .item_img {
  width: 100%;
  margin: 0 auto 30px;
}
/*イベント*/
.event_ttl {
  font-size: 20px;
  color: #5D4B3C;
  margin-bottom: 30px;
}
.event_text {
  font-size: 14px;
  color: #5D4B3C;
}
.event_img {
  max-width: 142px;
  width: 100%;
  margin: 70px auto;
}
#Event .shop_btn {
  background-color: #405BD0;
}
@media screen and (min-width:1200px) {}
/* SP
-------------------------------------------------- */
@media screen and (max-width:1199px) {
  /*ベース*/
  .scroll-box {
    display: block;
  }
  .info_content {
    width: 100%;
  }
  .content {
    margin: 0 auto;
  }
  .content_wrap {
    padding: 30px 20px;
  }
  .sec_end {
    padding: 30px 20px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  /*メインビジュアル*/
  .mv_content {
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
  }
  /*ニュース*/
  .news_list {
    max-width: 540px;
    width: 100%;
    margin: 30px auto 0;
    padding: 30px 0;
  }
  .btn_area {
    padding: 20px 20px;
  }
	.btn_area a.item{
		margin-bottom: 20px;
	}
  /*商品*/
  .item_detail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
    text-align: left;
    color: #5D4B3C;
    background-color: #FFFFCC;
    padding: 10px;
    margin-bottom: 30px;
  }
  .item_detail i {
    max-width: 15px;
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  .content_ttl {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    font-family: "heisei-maru-gothic-std", sans-serif;
  }
  .content_ttl i {
    max-width: 150px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 30px;
  }
  .content_ttl i img {
    max-width: 150px;
  }
  .content_ttl span {
    width: 100%;
    font-size: 34px;
    text-align: center;
  }
  .content_ttl span span {
    font-size: 18px;
    text-align: center;
  }
  .item_list {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-bottom: 60px;
  }
  .item_list .item_listitem {
    width: 100%;
  }
  #Event .shop_btn {
    background-color: #050505;
  }
}


/*MVサイズ調整*/
.mv_wrap{
  position: fixed;
  max-width: 600px;
  width: 100%;
  height: 100%;
  bottom: 45px;
  box-sizing: border-box;
  padding-top: 100px;
}
.mv_copyright {
  position: absolute;
  max-width: 240px;
  width: 100%;
  margin-top: 2vh;
}
.mv_logos {
  position: absolute;
  max-width: clamp(320px, 30.37vw, 540px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.mv_logos .bonobono_logo {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.mv_logos .c_cross {
  display: block;
  width: 10%;
  margin: 0 auto;
}
.mv_logos .hive_logo {
  display: block;
  width: 30%;
  margin: 0 auto;
}
.mv_characters {
  position: absolute;
  bottom: 0vh;
  right: -1.5vw;
  max-width: 436px;
  aspect-ratio: 436 / 577;
}
.mv_characters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-height:950px){
  .mv_characters {
    width: min(100vw, calc(55vh * (436 / 577)), 436px);
  }
}


.background {
    position: fixed;
    background-image: url(https://gigaplus.makeshop.jp/dartshive/special/bonobono_collabo/img/pc_mv_new.png), linear-gradient(to bottom, #d2ecfa 50%, #bad785 50%);
    background-size: cover;
    aspect-ratio: 1920 / 1080;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-color: #bad785;
    z-index: -1;
    /* background-image: url(../img/pc_bg.jpg); */
    /* background-position: center -30vh; */
    /* top: 0; */
    /* left: 0; */
}

@media screen and (min-width:3800px){
  .background{
    position: fixed;
    background-image: url(https://gigaplus.makeshop.jp/dartshive/special/bonobono_collabo/img/pc.png), linear-gradient(to bottom, #d2ecfa 50%, #bad785 50%);
    background-size: cover;
    aspect-ratio: 1920 / 1080;
    background-position: 85%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-color: #bad785;
    z-index: -1;
  }
  .mv_characters{
  right: -0.5vw;
  }
}



@media screen and (max-width: 3840px) and (max-height:600px) {
    .background{
      background-position: center 75%;
    }
}
/*2560px*/
@media screen and (max-width: 2560px) and (max-height:800px) {
    .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
    }
}
/*1960px*/
@media screen and (max-width: 1960px) and (max-height: 800px) {
    .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
    }
}

/*1880px*/
@media screen and (max-width: 1880px) {
    .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
    }
}
/*1700px*/
@media screen and (max-width: 1700px) {
    .mv_characters {
        width: min(100vw, calc(45vh * (436 / 577)), 436px);
    }
}
/*1600px*/
@media screen and (max-width: 1600px) {
    .mv_characters {
        width: min(100vw, calc(45vh * (436 / 577)), 436px);
    }
}
@media screen and (max-width: 1600px) and (max-height:900px) {
  .mv_characters {
      width: min(100vw, calc(45vh * (436 / 577)), 436px);
  }
}
@media screen and (max-width: 1600px) and (max-height:500px) {
  .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
  }
}

/*1440px*/
@media screen and (max-width: 1440px) {
    .mv_characters {
        width: min(100vw, calc(45vh * (436 / 577)), 436px);
    }
}
@media screen and (max-width: 1440px) and (max-height:800px) {
  .mv_characters {
      width: min(100vw, calc(50vh * (436 / 577)), 436px);
  }
}
@media screen and (max-width: 1440px) and (max-height:550px) {
  .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
  }
}

/*1360px*/
@media screen and (max-width: 1360px) {
  .mv_characters {
      width: min(100vw, calc(45vh * (436 / 577)), 436px);
  }
}
@media screen and (max-width:1360px) and (max-height:800px) {
  .mv_characters {
      width: min(100vw, calc(49vh * (436 / 577)), 436px);
  }
}
@media screen and (max-width: 1360px) and (max-height:600px) {
    .background{
      background-position: center 75%;
    }
}
@media screen and (max-width:1360px) and (max-height:550px) {
  .mv_characters {
      width: min(100vw, calc(55vh * (436 / 577)), 436px);
  }
}

/*1280px*/
@media screen and (max-width: 1280px) {
  .mv_characters {
      width: min(100vw, calc(45vh * (436 / 577)), 436px);
  }
}
@media screen and (max-width: 1280px) and (max-height:600px) {
  .mv_characters {
    width: min(100vw,calc(60vh * (436 / 577)),436px);
  }
}
@media screen and (max-width:1280px) and (max-height:550px) {
  .mv_characters {
    width: min(100vw, calc(60vh * (436 / 577)), 436px);
  }
}


/*1199px以下*/
@media screen and (max-width:1199px) {
  .mv_wrap{
    position: relative;
    bottom: 0;
    padding-top: 0;
  }
  .background {
    position: fixed;
    background-image: url(https://gigaplus.makeshop.jp/dartshive/special/bonobono_collabo/img/tablet_mv.png), linear-gradient(to bottom, #d2ecfa 50%, #bad785 50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -7vh;
  }
  .mv_copyright {
    display: block;
    position: relative;
    top: 10px;
    left: 0;
    margin-top: 0;
  }
  .mv_logos {
    position: relative;
    display: block;
    max-width: 100%;
    top: 20px;
    margin: 0 auto;
  }
  .mv_logos .bonobono_logo{
    width: 65%;
  }
  .mv_logos .c_cross {
    margin: 10px auto;
  }
  .mv_characters {
    position: relative;
    width: 55%;
    margin-left: auto;
    margin-top: 12vh;
    left: 0;
  }
}
.landscape_w{
  display: none;
}

 @media screen and (max-width:1180px) and (orientation: landscape) {
  .background {
    position: absolute;
    padding-bottom: 40vh;
    background-position: center 0vh;
    margin-top: -20vh;
  }
  .landscape_w {
      display: block;
  }
}
/*1024px*/
@media screen and (max-width:1024px) {
.background {
      background-size: contain;
      background-position: center -10vh;
  }
}
@media screen and (max-width:1024px) and (max-height:1080px) {
  .background {
      background-size: cover;
      background-position: center -10vh;
  }
}

/*820px*/
@media screen and (max-width:820px) {
  .background {
      background-image: url(https://gigaplus.makeshop.jp/dartshive/special/bonobono_collabo/img/tablet_mv.png), linear-gradient(to bottom, #d2ecfa 30%, #bad785 30%);
      background-size: contain;
      background-position: center 0vh;
  }
  .mv_characters{
    bottom: 0;
  }
}
@media screen and (max-width:820px) and (max-height:860px) {
  .background {
      background-size: cover;
      background-position: center 0vh;
  }
}
/*768px*/
@media screen and (max-width:768px) {
.background {
      background-size: contain;
      background-position: center 0vh;
  }
}
@media screen and (max-width:768px) and (max-height:810px) {
  .background {
      background-size: cover;
      background-position: center 0vh;
  }
}


/*630px*/
@media screen and (max-width:630px) {
  .background{
    position: absolute;
    background-image: url(https://gigaplus.makeshop.jp/dartshive/special/bonobono_collabo/img/sp_mv.png), linear-gradient(to bottom, #d2ecfa 30%, #bad785 30%);
    background-size: contain;
    background-position: center -7vh;
    background-color: #bad785;
  }

  .mv_characters{
    margin-top: 5vh;
  }
}
@media screen and (max-width:630px) and (max-height:840px) {
  .background {
      background-size: cover;
      background-position: center 0vh;
  }
}

@media screen and (max-width:500px) {
  .background{
    background-size: contain;
    background-position: center 0vh;
  }
}

@media screen and (max-width:430px) {
  .background{
    background-position: center 0vh;
  }
  .news_list {
    max-width: 540px;
    width: 100%;
    margin: 10px auto 0;
    padding: 30px 0;
  }
}
@media screen and (max-width:380px) {
  .background {
    background-position: center 0vh;
  }
  .news_list {
    margin: 30px auto 0;
  }
}


