/**
 * @Author: Your name
 * @Date:   2022-06-08 13:49:29
 * @Last Modified by:   Your name
 * @Last Modified time: 2023-07-10 19:33:51
 */
@charset "utf-8";

/* 共通 */

/* フォント */
body {font-family: "M PLUS 1p"; }
.pcNone{display: none;}
.spNone{display:inherit;}
@media (max-width: 480px) {
  body {overflow-x: hidden;}
  .spNone{display: none;}
	.pcNone{display:inherit;}
}

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
#header{
    /*fixedで上部固定*/
  position: fixed;
  height: 70px;
  width:100%;
    z-index: 999;/*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#fffdfd;
  color:#333;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #ecebeb;
}
@media (max-width: 480px) {
  #header{display: none;}
}
/* 上に上がる動き　*/

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

/* 下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* ロゴ&左Navi */
ul.header_left {
  list-style: none;
  width: 65%;
  display: flex;
  flex-direction: column;
}
ul.header_left > li {width: 100%;}
ul.header_left > li.header_logo {width: 60%;}
ul.header_left > li.header_logo > a > img {width: 100%;}
ul.header_left > li:last-child {margin-top: 0.1rem;}
ul.top_left {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
ul.top_left li a{
  /* font-size: 0.6rem; */
  font-size: clamp(4px, 0.9vw, 15px);
  text-decoration: none;
  color: #666;
  padding:0 10px;
  transition:all 0.3s;
}
ul.top_left li a.is_active {
  background-image: linear-gradient(transparent 50%, rgb(237, 237, 237) 0%)
}
ul.top_left li.current a,
ul.top_left li a:hover,
ul.top_left li a:active{
  color:#e6e3e3ee; 
}
/* //ロゴ&左Navi */
/* 右Navi */
nav.top_right ul{
  list-style: none;
  display: flex;
  margin-right: 2rem;
}
nav.top_right ul li a{
  font-size: 0.6rem;
  display: block;
  text-decoration: none;
  color: #666;
  padding:0 10px;
  transition:all 0.3s;
}
nav.top_right ul li.current a,
nav.top_right ul li a:hover,
nav.top_right ul li a:active{
  color:#e6e3e3ee; 
}
/* 右Navi */
/*========= //スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

/* SP Navi */

/* ロゴ */
.sp_header_logo {width: 75%; position:absolute; top: 30px; left: 55px; z-index: 4;}
.sp_header_logo > img{width: 100%}
.sp_header_logo > a >img{width: 100%}

/* ハンバーガー */
input#myInput[type="checkbox"] {
  display: none;
}

input#myInput[type="checkbox"]:checked ~ aside .aside-right {
  transform: translateX(0%);
}

input#myInput[type="checkbox"]:checked ~ label .bar {
  background-color: #fff;
}

input#myInput[type="checkbox"]:checked ~ label .top {
  -webkit-transform: translateY(0px) rotateZ(45deg);
  -moz-transform: translateY(0px) rotateZ(45deg);
  -ms-transform: translateY(0px) rotateZ(45deg);
  -o-transform: translateY(0px) rotateZ(45deg);
  transform: translateY(0px) rotateZ(45deg);
}

input#myInput[type="checkbox"]:checked ~ label .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

input#myInput[type="checkbox"]:checked ~ label .middle {
  width: 0;
}

label.sp_Label {
  top: 10px;
  display: inline-block;
  padding: 7px 10px;
  background-color: transparent;
  cursor: pointer;
  margin: 10px;
  z-index: 4;
  position: fixed;
}

.bar {
  display: block;
  background-color: #38618c;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  margin: 5px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
    width 0.4s ease-in;
}

.button {
  display: inline-block;
  background-image: none;
  border: none;
  background-color: transparent;
  padding-bottom: 7px;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: white;
  padding: 7px 50px;
  border: 2px solid white;
}

@media (min-width: 992px) {

  .aside-right {
    width: 100%;
  }
}
/* 迫り出しエリア */
.aside-section {
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 3;
}

.aside-right {
  width: 100%;
  right: 0;
  /* background-color: #38618c; */
  background-color: #e3e3e3;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 150px;
  text-align: left;
  padding-left: 50px;
}

.aside-content {
  margin-top: 150px;
  padding: 0 40px;
  position: relative;
  color: white;
  text-align: center;
}

.aside-list li {
  margin-bottom: 20px;
}

.aside-anchor::after, .aside-anchor2::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #ff5964;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
}
.aside-anchor::after {background-color: #eb611f;}
.aside-anchor2::after {background-color: #f8be2a;}

.aside-anchor::before, .aside-anchor2::before {
  border-radius: 3px;
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
  left: 0;
  height: 3px;
  z-index: 1;
  width: 50%;
  -webkit-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.aside-anchor:hover:before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.aside-anchor {
  padding-bottom: 7px;
  color: #a7a6a6;
  text-decoration: none;
  font-size: 0.8rem;
  position: relative;
  font-weight: 500;
}

.aside-anchor2 {
  padding-bottom: 7px;
  color: #a7a6a6;
  text-decoration: none;
  font-size: 0.8rem;
  position: relative;
  font-weight: 500;
}
/* //迫り出しエリア */
/* //SP Navi */

/* スクロールしたら「トップに戻る」ボタンが表示される */
.back-to-top {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 5%;
  color: #fff;
  padding: 2rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  z-index: 3;
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  background:rgba(51,51,51,0.9);
  border-radius: 50%;
  z-index: -1;
}
/* //スクロールしたら「トップに戻る」ボタンが表示される */


/*アコーディオン*/
.accordion_wrap {
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.toggle_title {
  cursor: pointer; 
  font-size: 0.8rem;
  padding: 0.2rem 0;
}
.toggle_title:after {
  content: '';
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url(../img/slider.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.toggle_title:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.toggle_ans {
  margin: 0;
  /* padding: 20px; */
  padding: 0.15rem 0;
  display: none;
}
/* //アコーディオン */



/* ソート */
.search_item {
	display: inline-block;
  font-size: 0.8rem;
	padding: 0.3rem;
	cursor: pointer;
  border-radius: 0.4rem;
  margin: 0.1rem 0.2rem;
  border: 1px solid #f6f6f6;
}
.search_item:hover {
	background-color: #f6f6f6;
}
.search_item.is-active {
	color: white;
	background-color: black;
}
.is-hide {
	display: none;
}
/* //ソート */

/*========= レイアウトのためのCSS ===============*/
/* ヘッダー下 タイトル */
h1.head_title{
  font-size:0.9rem;
  font-weight: 700;
  padding: 0.6rem;
}
ul.head_att {
  margin-left: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
}
ul.head_att > li{
  margin-bottom: 0.5rem;
  color: #9d9d9d;
}
ul.head_att > li:before{
	content:'※';
  margin-right: 0.1rem;
}
/* //ヘッダー下 タイトル */
h2{
  font-size:1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}

p{
  margin-top:20px;  
}

small{
  background:#333;
  color:#fff;
  display: block;
  text-align: center;
  padding:20px;
}


main {
      padding-top: 70px;
}
section{
  padding:30px;
}

section:nth-child(2n){
  /* background:#f3f3f3;  */
}

/* TOPページ */
  .hero_block {
    width: 100%;
    /* height: calc(100vw * 58.8%); */
    /* aspect-ratio: 600 / 353;
    background-image:url("../img/map2022_01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain; */
    height: auto;
  }
  img.hero_pic {
    width: 100%;
    object-fit: scale-down;
  }

  .top_info {
    width: 80%;
    margin: 3rem auto;
    background-color: #efeee9;
    padding: 2rem;
    box-sizing: border-box;
  }
  h3.top_info_title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif
  }
  p.top_info_tex {
    width: 80%;
    margin: 1.5rem auto 0 auto;
    line-height: 1.6rem;
  }
  @media (max-width: 480px) {
  	.top_info {
      width: 95%;
      margin: 1rem auto;
      padding: 0.8rem;
    }
    h3.top_info_title {
      font-size: 1.3rem;
    }
    p.top_info_tex {
      width: 95%;
      font-size: 0.8rem;
      margin: 0.6rem auto 0 auto;
      line-height: 1.3rem;
    }
  }
  ul.top_info_list {
    font-size: 0.9rem;
    line-height: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  ul.top_info_list > li{
    width: 32%;
    padding:1rem;
    margin-top: 2rem;
    box-sizing: border-box;
    border: 3px dotted #2c2c2c;
    border-radius: 10px;
  }
  @media (max-width: 480px) {
  	ul.top_info_list {
      font-size: 0.8em;
      line-height: 1.2rem;
      justify-content: space-around;
    }
    ul.top_info_list > li{
      width: 100%;
      padding:0.6rem;
      margin-top: 0.6rem;
    }
  }
  .top_shops {
    width: 80%;
    margin: 3rem auto;
    box-sizing: border-box;
  }
  ul.shop_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  @media (max-width: 480px) {
  	.top_shops {
      width: 95%;
      margin: 1rem auto;
      box-sizing: border-box;
    }
    ul.shop_list {
      width: 100%;
    }
  }
  :root {
    --noise-bg: url(data:image/png;base64,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);;
  }
  ul.shop_list > li{
    width: 32%;
    margin-right: 1%;
    margin-bottom: 1%;
    border-radius: 0px 0px 6px 6px; /* 左上、右上、右下、左下 */
    color: #000000;
    position: relative;
  }
  ul.shop_list > li:nth-of-type(3n){
    margin-right: 0;
  }
  @media (max-width: 480px) {
  	ul.shop_list > li{
      width: 100%;
      margin-right: 0;
      margin-bottom: 3%;
    }
  }


  li.shop_off {background-image: linear-gradient(0deg, rgba(65, 164, 253, 0.3), rgba(14, 244, 255, 0.3)), var(--noise-bg);}
  li.shop_art {background-image: linear-gradient(180deg, rgba(144, 245, 154, 0.3), rgba(4, 202, 255, 0.3)), var(--noise-bg);}
  li.shop_hea {background-image: linear-gradient(0deg, rgba(247, 93, 139, 0.3), rgba(254, 220, 64, 0.3)), var(--noise-bg);}
  li.shop_gan {background-image: linear-gradient(0deg, rgba(253, 146, 146, 0.3), rgba(209, 254, 212, 0.3)), var(--noise-bg);}
  li.shop_tok {background-image: linear-gradient(0deg, rgba(29, 163, 137, 0.3), rgba(247, 209, 55, 0.3) 90%), var(--noise-bg);}
  li.shop_off_shop {background-image: linear-gradient(180deg, rgba(196, 182, 197, 0.3), rgba(35, 117, 163, 0.3)), var(--noise-bg);}

  h4.shop_name {
    font-size:0.9rem;
    text-align: center;
    font-weight: 700;
    background: rgb(0, 145, 197);
    padding:0.8rem;
    box-sizing: border-box;
  }
  .shop_wrap {padding:0 0.8rem 0.8rem 0.8rem; box-sizing: border-box;}
  p.shop_place {font-size: 0.8rem;}
  p.shop_exp {font-size: 0.75rem; line-height: 1.2rem; margin-bottom: 2rem;}
  p.shop_exp > span::before {
    font-family: 'Material Icons';
    content: '\e047';
  }
  ul.shop_per {font-size: 0.8rem;}
  ul.shop_per li{padding-left: 1em; text-indent: -1em; font-size: 0.75rem; line-height: 1rem}
  ul.shop_per li::before {
    font-family: 'Material Icons';
    content: '\e838';
  }
  a.shop_link {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.3rem;
    padding: 0.4rem;
    /* color: #000;
    opacity: 0.6; */
    color: rgb(255, 0, 157);
    text-shadow: 1px 1px 1.5px #858585;
  }
/* //TOPページ */

/* 日程リスト */
ul.date_btn {
  width: 60%;
  margin: 1rem auto 2rem auto;
  display: flex;
  justify-content: space-between;
}
ul.date_btn li{
  width: 30%;
}
@media (max-width: 480px) {
  ul.date_btn {
    width: 60%;
    flex-wrap: wrap ;
    margin: 0 auto;
    justify-content:flex-start;
  }
  ul.date_btn li{
    width: 100%;
    margin-bottom: 1em;
  }
}
.arrow_btn {	display: inline-block;	position: relative;	width: 200px;	padding: 0.8em;	text-align: center;	text-decoration: none;	color: #1B1B1B;	background: #fff;	border-radius: 10px;	border:1px solid #1B1B1B;	transition: transform ease .3s;
}
.arrow_btn:hover { cursor: pointer; text-decoration: none;
}
.arrow_btn span {	display: inline-block;	text-decoration: none;	transition: transform ease .3s;
}
.arrow_btn:hover span{	cursor: pointer;	text-decoration: none;	transform: translateX(6px);
}
li.btn_active > .arrow_btn {color: #fff;	background: #c2c2c2; border:1px solid #c2c2c2;}

@media (max-width: 480px) {
  .arrow_btn {width: 100%;
  }
}
/* 商品一覧リスト */
/* ul.list {display: flex; justify-content:left ; flex-wrap: wrap;} */
ul.list {display: flex; flex-wrap: wrap; gap: 3% 4%; padding: 0; list-style: none;}
li.list_item_head {width: 96%; position: relative; z-index: 2; margin-right: 4%; margin-bottom: 3%;}
/* li.list_item {width: 22%; position: relative; z-index: 2; margin-right: 4%; margin-bottom: 3%;} */
li.list_item {width: calc(25% - 4%); position: relative; z-index: 2; margin-bottom: 5%;}
/* li.list_item:nth-of-type(4n){margin-right: 0;} */
@media (max-width: 480px) {
  ul.list {justify-content:space-between; flex-wrap: wrap;}
  li.list_item {width: 46%; margin-right: 0; margin-bottom: 3%;}
}
img.item_main_image {
  max-width: 100%;
  height: auto;
}
/* li.list_item[data-group^="a"] {border: 1px solid red;} */
li.list_item[data-group^="a"] ::before,
li.list_item[data-group^="b"] ::before,
li.list_item[data-group^="c"] ::before
{
  position:absolute;
  content: 1"";
  top: 0.3rem;
  right: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  z-index: 3;
}
li.list_item[data-group^="a"] ::before {
  background-color: #004b97;
}
li.list_item[data-group^="b"] ::before {
  background-color: #609921;
}
li.list_item[data-group^="c"] ::before {
  background-color: #cbb4a1;
}
p.item_title, p.item_subtitle, p.item_color, p.item_price {margin: 0.6rem 0 0 0.3rem; padding: 0; line-height: 0.81rem;}
p.item_title {font-size: 0.7rem; color: #979696;}
p.item_subtitle{font-size: 0.8rem; color: #000; line-height: 1.2rem}
p.item_price {font-size: 0.7rem; color: #161616;}
p.item_color{font-size: 0.7rem; color: #161616;}

/* カテゴリーカラー */
:root {
  /* OFFICIAL T-SHIRTS (出演者名入り)  */
  --off-t-name-color: #c75233;
  /* OFFICIAL T-SHIRTS */
  --off-t-color: #c78933;

  /* ウクライナ人道支援 */
  --off-t-uk-color: #d6ceaa;

  /* FIELD OF HEAVEN */
  --stage-heaven-color: #2e1437;

    /* BLANKEY JET CITY × THEE MICHELLE GUN ELEPHANT × FUJI ROCK FESTIVAL */
  --stage-bjtme-color: #c900ae;


  /* フジロック・コレクション */
  --stage-collection-color: #949b11;
  /* DAY DREAMING */
  --stage-daydream-color: #383845;
  /* FUJI ROCK STAR */
  --stage-frstar-color: #5e5e5e;
  /* SILENT BREEZ */
  --stage-silentbreeze-color: #cad1c3;
  /* GAN-BAN */
  --ganban-color: #be0001;
  /* OFFICIAL GOODS */
  --off-goods-color: #ff8006;
  /* フジロック’22 × GAN-BANグッズ */
  --off-goodsganban-color: #136c09;
  /* BEAMS */
  --colabo-beams-color: #2eb3a1;
  /* Columbia */
  --colabo-columbia-color: #7699b5;
  /* KEEN */
  --colabo-keen-color: #b3af6b;
  /* NGO VILLAGE */
  --ngo-village-color: #f07241;
  /* ATOMIC CAFE */
  --ngo-acf-color: #6d8b89;
  /* FUJIROCKERS */
  --ngo-fujirockers-color: #a5c3a7;
  /* Dog Run */
  --ngo-dogrun-color: #d5e0b5;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

h3.cat_names {width:fit-content;}
@media (max-width: 480px) {
  h3.cat_names {margin-top: 2rem; margin-bottom: 0.6rem;}
}
/* OFFICIAL T-SHIRTS (出演者名入り)  */
li[data-group="names"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--off-t-name-color) 10%);}
li[data-group="names"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--off-t-name-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* OFFICIAL T-SHIRTS */
li[data-group="oft"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--off-t-color) 10%);}
li[data-group="oft"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--off-t-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* ウクライナ人道支援 */
/* li[data-group="ukr"] > h3.cat_names {background: linear-gradient(180deg, transparent 80%, #005bbb 10%, #ffd500 10%);} */
li[data-group="ukr"] > h3.cat_names {
  background: linear-gradient(0deg, rgba(255,213,0,1) 0%, rgba(255,213,0,1) 10%, rgba(0,91,187,1) 10%, rgba(0,91,187,1) 20%, transparent 21%, transparent 100%);
}
li[data-group="ukr"] a::after{content: '　'; background: linear-gradient(180deg, #005bbb 0%, #005bbb 50%, #ffd500 50%, #ffd500 100%); position: absolute; right: 0.2rem; top: 0.2rem;}

/* FIELD OF HEAVEN OFFICIAL T-SHIRTS	 */
li[data-group="of_hvn"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-heaven-color) 10%);}
li[data-group="of_hvn"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-heaven-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* BLANKEY JET CITY × THEE MICHELLE GUN ELEPHANT × FUJI ROCK FESTIVAL	 */
li[data-group="of_bjtme"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-bjtme-color) 10%);}
li[data-group="of_bjtme"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-bjtme-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* フジロック・コレクション	 */
li[data-group="of_collection"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-collection-color) 10%);}
li[data-group="of_collection"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-collection-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* DAY DREAMING OFFICIAL T-SHIRTS	 */
li[data-group="of_daydreaming"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-daydream-color) 10%);}
li[data-group="of_daydreaming"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-daydream-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* FUJI ROCK STAR OFFICIAL T-SHIRTS	 */
li[data-group="of_frstar"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-frstar-color) 10%);}
li[data-group="of_frstar"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-frstar-color); position: absolute; right: 0.2rem; top: 0.2rem;}
.fujicolle_tex {font-size: 0.8rem; line-height: 1.4rem; margin: 0.4em 0;}

/* SILENT BREEZ OFFICIAL T-SHIRTS	 */
li[data-group="of_silentb"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--stage-silentbreeze-color) 10%);}
li[data-group="of_silentb"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--stage-silentbreeze-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* GAN-BAN	 */
li[data-group="ganban"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--ganban-color) 10%);}
li[data-group="ganban"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--ganban-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* OFFICIAL GOODS */
li[data-group="of_goods"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--off-goods-color) 10%);}
li[data-group="of_goods"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--off-goods-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* フジロック’22 × GAN-BAN GOODS */
li[data-group="of_goods_ganban"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--off-goodsganban-color) 10%);}
li[data-group="of_goods_ganban"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--off-goodsganban-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* BEAMS */
li[data-group="beams"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--colabo-beams-color) 10%);}
li[data-group="beams"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--colabo-beams-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* Columbia */
li[data-group="columbia"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--colabo-columbia-color) 10%);}
li[data-group="columbia"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--colabo-columbia-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* KEEN */
li[data-group="keen"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--colabo-keen-color) 10%);}
li[data-group="keen"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--colabo-keen-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* FUJIROCKERS */
li[data-group="fujirockersorg"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--ngo-fujirockers-color) 10%);}
li[data-group="fujirockersorg"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--ngo-fujirockers-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* NGO VILLAGE */
li[data-group="ngovillage"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--ngo-village-color) 10%);}
li[data-group="ngovillage"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--ngo-village-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* ATOMIC CAFÉ */
li[data-group="acf"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--ngo-acf-color) 10%);}
li[data-group="acf"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--ngo-acf-color); position: absolute; right: 0.2rem; top: 0.2rem;}


/* どん吉パーク */
li[data-group="donkichi"] > h3.cat_names {background: linear-gradient(transparent 90%, var(--ngo-dogrun-color) 10%);}
li[data-group="donkichi"] a::after{content: '\ef4a'; font-family: 'Material Icons'; color: var(--ngo-dogrun-color); position: absolute; right: 0.2rem; top: 0.2rem;}

/* //商品一覧リスト */

/* フォームボタン */
/* 共通 */
/* タイトル */
h3.search-box_label {
  font-size: 0.8rem;
  font-weight: 700;
}
/* 日にち */
ul.list_date {
  width: 40%;
  margin: 0.6rem auto 1rem auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  ul.list_date {
    width: 100%;
    margin: 0.6rem auto 1rem auto;
    font-size: 0.7rem;
  }
  ul.list_date li{
    width: 25%;
  }
}
ul.list_date input{
  margin-right: 0.3rem;
}
@media (max-width: 480px) {
  ul.list_date input{
    margin-right: 0;
  }
}
/* ステージ */
ul.list_stage {
  /* width: 100%; */
  width: 60%;
  margin: -1rem auto 1rem auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  ul.list_stage {
    width: 100%;
    margin: -1rem auto 0 auto;
    flex-wrap: wrap;
  }
  ul.list_stage li{
    width: 80%;
    margin: 0 auto 0.4rem auto;
    text-align: center;
  }
  ul.list_stage li:last-child{
    margin: 0 auto 0 auto;
  }
}
/* 日にち用ラジオボックスRADIO */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
  input[type=radio] {
    --active: #dbdcd0;
    --active-inner: #fff;
    --focus: 2px rgba(219, 220, 208, .3);
    --border: #f2e7e2;
    --border-hover: #ebe8aa;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
  input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: .5;
  }
}
/* //日にち用ラジオボックスRADIO */
/* ステージ用チェックボックスCHECKBOX */
ul.ks-cboxtags {
  list-style: none;
  padding: 20px;
}
ul.ks-cboxtags > li{
display: inline;
}
ul.ks-cboxtags > li > label{
  display: inline-block;
  background-color: rgba(255, 255, 255, .9);
  background-color: rgba(255, 255, 255, .9);
  border: 2px solid rgba(139, 139, 139, .3);
  color: #adadad;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s;
}

ul.ks-cboxtags > li > label {
  /* padding: 8px 12px; */
  padding: 4px 8px;
  cursor: pointer;
}

ul.ks-cboxtags > li > label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  content: "\f067";
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags > li > input[type="checkbox"]:checked + label::before {
  content: "\f00c";
  transform: rotate(-360deg);
  transition: transform .3s ease-in-out;
}

ul.ks-cboxtags > li > input[type="checkbox"]:checked + label {
  /* border: 2px solid #1bdbf8; */
  border: 2px solid #f9db79ae;
  /* background-color: #12bbd4; */
  background-color: #dcd78fd4;
  /* color: #fff; */
  color: #000;
  transition: all .2s;
}

ul.ks-cboxtags > li > input[type="checkbox"] {
display: absolute;
}
ul.ks-cboxtags > li > input[type="checkbox"] {
position: absolute;
opacity: 0;
}
ul.ks-cboxtags > li > input[type="checkbox"]:focus + label {
border: 2px solid #e9a1ff;
}
/* ステージ用チェックボックスCHECKBOX */
/* //フォームボタン */

/* アーティストグッズリスト */
h3.date_stage {
  /* width:fit-content; */
  /* font-size: 1.2rem; */
  font-weight: 700;
  text-align: center;
  /* padding: 0.4rem; */

  display: inline-block;
  position: relative;
  height: 60px;/*高さ*/
  line-height: 60px;/*高さ*/
  text-align: center;
  padding: 0 40px 0 18px;/*文字の左右の余白*/
  font-size: 1.2rem;/*文字サイズ*/
  box-sizing: border-box;
}
@media (max-width: 480px) {
  h3.date_stage {
    font-size: 1rem;
    padding: 0 30px 0 14px;/*文字の左右の余白*/
    height: 30px;/*高さ*/
    line-height: 30px;/*高さ*/
    margin-top: 2rem;
    margin-bottom: 0.6rem;
  }
}
.date_stage:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.date_stage:after {
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
@media (max-width: 480px) {
  .date_stage:after {
    border-width: 15px 15px 15px 0px;
  }
}
.green_s {
  background: #89CA5C;/*背景色*/
  color: #000;/*文字色*/
}
.white_s {
  background: #d3d1d1;/*背景色*/
  color: #000;/*文字色*/
}
.red_s {
  background: #E74D28;/*背景色*/
  color: #000;/*文字色*/
}
.rednight_s {
  background: #23882F;/*背景色*/
  color: #fff;/*文字色*/
}


h3.artist_name_b {
  width:fit-content;
  font-size: 1rem; 
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgb(228, 199, 13) 30%);
}
@media (max-width: 480px) {
  h3.artist_name_b {margin-top: 2rem; margin-bottom: 0.6rem;}
}
p.artist_name {
  font-size: 0.8rem; 
  color: #0b0b0b;
  margin: 0.6rem 0 0 0.3rem;
  padding: 0;
  line-height: 0.81rem;
}

/* //アーティストグッズリスト */

/* ヘブングッズリスト */
.arrow_box {
	position: relative;
	background: #88b7d5;
	border: 4px solid #c2e1f5;
  text-align: center;
  padding: 2rem;
  color: #ddf8c6;
  text-align: center;
  font-size: 34px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.arrow_box:after, .arrow_box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #88b7d5;
	border-width: 30px;
	margin-left: -30px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #c2e1f5;
	border-width: 36px;
	margin-left: -36px;
}
/* //ヘブングッズリスト */

/* フッター */
#footer {
  background-color: #191919;
  padding: 2rem;
  box-sizing: border-box;
}
p.foot_tex {
  color: #dcdcdc;
  text-align: center;
  line-height: 1.4rem;
  font-size: 0.6rem;
}
@media (max-width: 480px) {
  #footer {
    padding: 1rem;
  }
  p.foot_tex {
    line-height: 1rem;
    font-size: 0.5rem;
  }
}
/* //フッター */