@charset "utf-8";
/* CSS Document */
html {
  padding: 0;
  margin: 0;
}
a {
	color: #00878f;
}
p {
  margin: 0;
  padding: 0;
}
img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  max-width: max-content;
}
body {
	position: relative;
	z-index: 1;
	background-image: url(../../assets/img/bg.png);
	background-attachment: fixed;
	background-size: 100%;
/*
	font-family: "source-han-sans-vf", sans-serif;
	font-variation-settings: "wght" 600;
*/
/*
	font-family: "m-plus-1p", sans-serif;
	font-weight: 500;
	font-style: normal;
*/
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 600;
	font-style: normal;
	
	background-color: #FFF22C;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 既存のbodyにスクロールバーのバグ防止を追記 */
body {
  /* 【追記】降ってきた画像が右端からはみ出て横スクロールバーが出るのを防ぐ */
  overflow-x: hidden; 
}

/* 降る要素のベーススタイル */
.falling-item {
  position: fixed;
  top: -50px; /* 画面の上外からスタート */
  pointer-events: none; /* マウスホバーなどの邪魔をしない */
  z-index: 0; /* 必要に応じてボタン等（z-index: 1以上）の後ろに回す */
  animation: fall linear forwards;
　　z-index: -1;
}

/* 降るアニメーション（平成レトロ風に少しカクつかせるなら、ここもあえてstepsを使えます） */
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1; /* 出現時にふわっと表示 */
  }
  90% {
    opacity: 1;
  }
  100% {
    /* 画面の一番下（105vh）まで落ちたら消える */
    transform: translateY(105vh) rotate(360deg);
    opacity: 0;
  }
}
#wrapper {
	/* overflow: hidden; */
	position: relative;
}
.header_bg {
	position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    margin: 0 auto;
}
#contentsWrapper {
	position: relative;
}
.monster1 {
	position: absolute;
    right: 0;
    top: 5%;
    width: 100%;
	max-width: 450px;
}
.monster2 {
	position: absolute;
    left: 0;
    top: 21%;
    width: 100%;
	max-width: 450px;
	z-index: 3;
}
.monster3 {
	position: absolute;
    right: 0;
    top: 45%;
    width: 100%;
	max-width: 450px;
	z-index: 4;
}
#minions_logo {
  position: fixed;
  left: 0;
  top: 50px;
  width: calc((100% - 1000px) / 2);
  z-index: 997;
}
#minions_logo a {
  width: 80%;
  max-width: max-content;
  display: block;
  margin: auto;
  text-align: center;
}
#minions_logo a:hover {
  animation: shake 0.3s ease-in-out;
}
#minions_logo img {
  width: 100%;
  max-width: max-content;
}
#fixed_nav {
  position: fixed;
  right: 0;
  top: 50px;
  width: calc((100% - 1000px) / 2);
  z-index: 9999;
}
#minions_logo, #fixed_nav {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#minions_logo.show, #fixed_nav.show {
  animation: popIn 0.6s ease forwards;
  pointer-events: auto;
}
#minions_logo.hide, #fixed_nav.hide {
  animation: popOut 0.4s ease forwards;
  pointer-events: none;
}
@keyframes popIn {
  0% {
    transform: scale(0.5) rotate(-10deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.1) rotate(3deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes popOut {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  60% {
    transform: scale(1.1) rotate(3deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.5) rotate(-10deg);
    opacity: 0;
  }
}
.fix_list {
  width: 80%;
  margin: auto;
  max-width: 100px;
  display: block;
  flex-wrap: wrap;
  justify-content: center;
}
.fix_list li a {
	display: block;
	position: relative;
	text-align: left;
	border-radius: 100%;
	margin-bottom: 5px;
}
.fix_list li a:hover {
  animation: shake 0.3s ease-in-out;
}
.fix_list li a img {
  width: 100%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fix_list li a img {
  transition: transform .3s ease, filter .3s ease;
}

.fix_list li a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.fix_list li a:active img {
  transform: scale(0.95);
}

/* nav */
#header_aria {
  position: relative;
  height: 100px;
  box-sizing: border-box;
  padding: 0 40px;
  width: 100%;
  margin: auto;
  z-index: 999;
}
#header_aria .logo_box {
  position: absolute;
  left: 10px;
  top: 60px;
}
#header_aria ul.shop_icon_list {
  display: flex;
}
#header_aria ul.shop_icon_list li {
  margin-right: 5px;
}
#header_aria ul.shop_icon_list li img {
  width: 50px;
}

/* ハンバーガー */
.nav_box {
  display: none;
}
#humBox_wrap {
  width: 60px;
  position: absolute;
  right: 20px;
  top: 5px;
}
#humBox {
  position: relative;
  height: 60px;
  width: 60px;
  z-index: 9999;
  cursor: pointer;
}
#humBox span {
  width: 40px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.4s;
}
#header_aria .nav_box nav {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: -100vh;
  margin: auto;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  overflow: hidden;
  opacity: 0;
  background-image: url(../../assets/img/bg.png);
  background-size: 40%;
}
#header_aria .nav_box nav ul {
  padding: 100px;
}
#header_aria .nav_box nav ul li a {
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
#header_aria a:hover {
  opacity: 0.3;
  transition: 0.5s;
}
#header_aria .nav_box nav .logo img {
  width: 150px;
  margin: -20px auto 10px;
}
#header_aria .nav_box nav.open {
  top: 0;
  opacity: 1;
}
#header_aria .nav_box nav.open ul {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
#header_aria .nav_box nav.open ul li a {
  color: #4C230A;
  font-weight: bold;
}
.fv {
  width: 1000px;
  position: relative;
  display: block;
  text-align: center;
  margin:30px auto 0;
  z-index: 2;
}
.fv img {
  width: 100%;
  max-width: 100%;  
}

/* Utility */
.sp_br{
	display: none;
}
.pc736 {
	display: block;
}
.sp736 {
	display: none;
}
.mt0 {
    margin-top: 0!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mt40 {
	margin-top: 40px!important;
}
.mt60 {
	margin-top: 60px!important;
}
.mb0 {
	margin-bottom: 0!important;
}
.mb10 {
	margin-bottom: 10px!important;
}
.mb20 {
	margin-bottom: 20px!important;
}
.mb40 {
	margin-bottom: 40px!important;
}
.mb60 {
	margin-bottom: 60px!important;
}
.mb80 {
	margin-bottom: 80px!important;
}
.mb100 {
	margin-bottom: 100px!important;
}
.center {
	text-align: center;
}
.pcOnly {
	display: block;
}
.spOnly {
	display: none;
}

/* -----TOP--------------------------------------------- */
.contents {
    max-width:800px;
    width:100%;
    position: relative;
    z-index: 2;
    text-align: center;
    margin:auto; 
}
.info {
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
	padding: 20px;
	box-sizing: border-box;
}
.info1 {
    margin: 80px auto 0;
}
.info1_day {
	width: 100%;
    max-width: 750px;
    text-align: center;
    margin: 0 auto 30px;
}
.info2 {
    position: relative;
    z-index:2;
}
.info2_img {
    position: absolute;
    z-index: 8;
    right:0;
}
.youtube {
	/*
    max-width: 730px;
    width: 100%;
    background: #fff;
	*/
    box-sizing: border-box;
    margin: 60px auto 40px;
	position: relative;
}
.youtube::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform: rotate(-3deg);
	z-index: 0;
}
.youtube iframe {
	width: 100%;
	height: 100%;
	z-index: 1;
	aspect-ratio: 16 / 9;
	height: auto;
	display: block;
	border: none;
	border: 3px solid #000;
	position: relative;
}
.button_b {
    width: 60px;
    height: 60px;
    display: flex;        
    justify-content: center; 
    align-items: center; 
    border: 2px solid #52cbf5;
    background: #f1feff;
    border-radius: 99px;
    box-sizing: border-box;
}
.button_b img {
    width: 30px;
    height: auto;
    display: block;
}
.button_img img {
    width:60px;
}
.info2_flex {
    width:90%;
    display:flex;
    margin:0 auto;
    justify-content: space-between;
}
.info2_button img {
    width:150px;
}
.info2_flex_button {
    display:flex;
    gap:10px;
    align-items: center;
}
.info2_flex_button a:hover {
    opacity: 0.5;
}
.info2_button img:hover  {
    opacity: 0.5;
}
.youtube_text {
    width:90%;
    margin:20px auto 0;
    font-weight: bold;
    text-align: left;
}
.info2_img {
    position: absolute;
    top: -56px;
    right: 39px;
}
.info2_img img {
    width:150px;
}
.info2_img1 {
    position: absolute;
    top:50px;
    left:-90px;
    z-index: 11;
}
.info2_img1 img {
    width:120px;
}
.info2_img2 {
    position: absolute;
    top: 173px;
    right: -13px;
    z-index: 12;
}
.info2_img2 img {
    width:90px;
}
.info2_img3 {
    position: absolute;
    bottom: 80px;
    left:-110px;
    z-index: 12;
}
.info2_img3 img {
    width:70px;
}
.info2-2_img {
    margin:40px -130px 0 0;
}
.info2-2_img img {
    max-width:720px;
    width:100%;
}
.info2-2 {
    position: relative;
}
.info2-2_img1 {
    position: absolute;
    top: 30px;
    left:0px;
    z-index: 12;
}
.info2-2_img1 img {
    width:120px;
}

.info3 {
    margin: 0 auto;
	max-width: 685px;
}
.info3_flex,
.sns_flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
	justify-content: center;
    margin-bottom: 50px;
}
.sns_flex {
	margin-bottom: 100px;
}
.info3_flex a,
.sns_flex a {
    width: 50%;
}
.info3_flex a img,
.sns_flex a img {
	width: 95%;
	margin-bottom: 20px;
	transition: transform .3s ease, filter .3s ease;
}
.info3_flex a:hover img,
.sns_flex a:hover img {
	transform: scale(1.05) translateY(-5px);
	filter: brightness(1.15);
}
.info3_flex a:active img,
.sns_flex a:active img {
	transform: scale(0.98) translateY(0);
	filter: brightness(0.9);
}
.info4_button a {
	transition: transform .3s ease, filter .3s ease;
}
.info4_button a:hover {
	transform: scale(1.05);
	filter: brightness(1.15) drop-shadow(0px 7px 0px #000);
}
.info4_button a:active {
	transform: scale(0.98);
	filter: brightness(0.9) drop-shadow(0px 7px 0px #000);
}
.shoplist_button a img {
  width: 95%;
  transition: transform .3s ease, filter .3s ease;
}
.shoplist_button a:hover img {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.15);
}
.shoplist_button a:active img {
  transform: scale(0.98) translateY(0);
  filter: brightness(0.9);
}
.button_bottom {
   position: relative;
   top:100px;
   box-sizing: content-box;
}
.info4 {
	max-width: 780px;
	margin: 0 auto 100px;
}
.info5 {
	max-width: 640px;
	margin: 100px auto 140px;
}
.info4_button {
    display: flex;
    gap: 10px;
    margin: 0 auto 100px;
    justify-content: center;
    text-align: center;
}
.info4_button a {
    background: #86DECD;
    border:#000 5px solid;
    border-radius: 50px;
    display:block;
    filter: drop-shadow(0px 7px 0px #000);
	padding: 15px 40px;
}
.info4_button a img {
    width:70%;
}
.info4_button a.info4_button_w {
    background: #fff;
}
.shoplist_title,
.sns_title,
.daiichi_title,
.daini_title,
.campaign_title,
.event_title,
.shoplist_title,
.goodslist_title,
.goods2_title {
    width: 100%;
	max-width: 450px;
    margin: 100px auto 40px;
    text-align: center;
}
.sns_title {
	max-width: 404px;
}
.daiichi_title,
.daini_title {
	max-width: 140px;
}
.event_title {
	max-width: 600px;
}
.shoplist_title {
	max-width: 169px;
}
.goods2_title {
	max-width: 310px;
}
.haifukikan_title,
.haifukikan_title2,
.sns1_title,
.sns2_title,
.sns3_title,
.sns4_title,
.sns5_title,
.event1_title,
.goods3_title {
    width: 100%;
	max-width: 261px;
	margin: 20px 0;
	text-align: left;
}
.haifukikan_title {
	max-width: 130px;
}
.haifukikan_title2 {
	max-width: 275px;
}
.sns2_title {
	max-width: 131px;
}
.sns3_title {
	max-width: 137px;
}
.sns4_title {
	max-width: 137px;
}
.sns5_title {
	max-width: 138px;
}
.event1_title {
	max-width: 208px;
}
.goods3_title {
	max-width: 430px;
}
.campaign_detail {
	margin: 0 0 40px;
}
.shoplist_button {
    width: 100%;
	max-width: 350px;
    margin: 100px auto 20px;
    text-align: center;
}
.footer_area .shoplist_title {
	margin: 100px auto 20px;
}
.shoplist_text_wrap {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}
/*
.shoplist_text_wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	border-radius: 10px;
	transform: rotate(-3deg);
	z-index: 0;
}
*/
.shoplist_text {
	position: relative;
	background: #fff;
	border: 3px solid #000;
	border-radius: 10px;
	padding: 40px 50px;
	z-index: 1;
	line-height: 1.8;
    letter-spacing: .05em;
	font-family: "m-plus-1p", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.haifukikan_text p {
	text-align: left!important;
}
.shoplist_text p.indent,
.sns_subtext p.indent,
.goods2_info p.indent {
	padding-left: 1em;
	text-indent: -1em;
}
.attention {
	line-height: 1.8;
	margin: 0 auto;
	font-size: 90%;
	display: inline-block;
	text-align: left;
}
.attention_wrap {
	text-align: center;
}
span.attention {
	font-size: 16px;
	color: red;
}
span.small {
	font-size: 80%;
}
.footer_area .shoplist_text {
	margin: 0 auto 60px;
	padding: 20px 40px;
}
.sns_text {
    max-width:600px;
    width:100%;
    text-align: center;
    margin: 0 auto 50px;
}
.sns_text img {
    width:100%;
}
.sns_img_title {
    display:block;
    max-width:400px;
    width:100%;
    margin: 0 auto 10px;
}
.sns_img_title2 {
    margin: 30px auto 10px;
}
.campaign_info {
    border: #000 solid 3px;
    background: #fff;
    margin: 40px auto 100px;
    border-radius: 10px;
    padding: 60px 30px;
    box-sizing: border-box;
    text-align: center;
}
.campaign_info p {
    font-size: 20px;
	margin-bottom: 20px;
}
.campaign_info2 {
    border: #000 solid 3px;
    background: #fff;
    margin: 40px auto 60px;
    border-radius: 10px;
    padding: 40px 50px;
    box-sizing: border-box;
    text-align: center;
}
.campaign_info2 p {
    font-size: 16px;
	line-height: 2.2;
	text-align: left;
}
.goods2_info {
	max-width: 800px;
    border: #000 solid 3px;
    background: #fff;
    margin: 40px auto 100px;
    border-radius: 10px;
    padding: 60px 30px;
    box-sizing: border-box;
    text-align: left;
}
.goods2_info p {
    font-size: 18px;
	margin-bottom: 20px;
}
.campaign_detail {
	line-height: 2.2;
}
.sns_info {
    border: #000 solid 3px;
    background: #fff;
    margin: 40px auto 60px;
    border-radius: 10px;
    padding: 40px 50px;
    box-sizing: border-box;
    text-align: center;
}
.sns_info p {
    font-size: 20px;
	text-align: left;
}
.event_info {
    border: #000 solid 3px;
    background: #fff;
    margin: 40px auto 60px;
    border-radius: 10px;
    padding: 40px 50px;
    box-sizing: border-box;
    text-align: center;
}
.event_info p {
    font-size: 20px;
	text-align: left;
}
.event_info table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0 auto;
}
.event_info th,
.event_info td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    font-size: 16px;
}
.event_info th {
    background-color: #000;
    color: white;
    text-align: center;
}
.event_info td span {
    font-size: 14px;
}
span.red {
    color: red;
}
span.highlight {
	position: relative;
	display: inline-block;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.3;
	color: #000;
	padding: 0;
	background: #FFF22C;
	z-index: 2;
}
/*
span.highlight::before{
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	color: transparent;
	-webkit-text-stroke: 11px #fff;
	z-index: -2;
}
span.highlight::after{
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	color: transparent;
	-webkit-text-stroke: 7px #000;
	z-index: -1;
}
*/
.sns_flex {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
    gap: 20px;
}
.sns_flex > div > img {
	max-width: 350px;
}
.sns_button {
	position: relative;
	display: inline-block;
}
.sns_button img {
	display: block;
	width: 100%;
}
.asterisk {
    display:block;
    margin: 0 auto;
    text-align: center;
}
.pc {
    display:block!important;
}
.sp {
    display:none!important;
}

/* ------------------------goods--------------------- */
.goods_flex {
  display: flex;
  margin: 0 auto 100px;
  max-width: 940px;
  width:100%;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.goods_box_ba {
	width: 31%;
	display: flex;
	flex-direction: column;
	border: 3px solid #000;
	border-radius: 10px;
	background: #fff;
}
.goods_box {
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 25px 0 10px;
	box-sizing: border-box;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	line-height: 1.8;
}
.goods_day {
  text-align: center;
  margin: 50px auto 30px;
  width: 100%;
}
.goods_day img {
  width: 100%;
}
.goods_title {
	color: #000;
	font-size: 22px;
	line-height: 120%;
	padding: 0px 2%;
	margin: 10px auto 0;
	text-align: center;
	font-family: "m-plus-1p", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.goods_kinds {
	font-size: 18px;
	color: #000;
	padding: 0px 2%;
	text-align: center;
	font-family: "m-plus-1p", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.goods_price {
	color: #ff281d;
	font-size: 22px;
	text-align: center;
	font-family: "m-plus-1p", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.goods_price_img {
	display: block;
	width: 85%;
	margin: 25px auto;
/*
	border: 2px #000 solid;
*/
}
.goods3_img {
	border: 2px solid #000;
	margin-bottom: 10px;
}

/* ------------------------shoplist--------------------- */
#shop_Aria {
  margin-bottom: 100px;
    position: relative;
    z-index: 2;
}
#shop_Aria ul.shop_aria_list {
  max-width:820px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px auto 30px;
  background: #fff;
  border-radius: 10px;
  border:#000 solid 3px; 
}
#shop_Aria ul.shop_aria_list li {
  position: relative;
  font-weight: bold;
}
#shop_Aria ul.shop_aria_list li:not(:last-of-type)::before {
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  background: #40210f;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#shop_Aria ul.shop_aria_list li span {
  display: block;
  padding: 30px 25px;
  cursor: pointer;
  color: #000;
  font-size: 18px;
}
#shop_Aria ul.shop_aria_list li.active span {
  color: #00878f;
}
#shop_Aria ul.shop_list {
  max-width: 900px;
  width:100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
  gap: 20px;
  margin: auto;
}
#shop_Aria ul.shop_list li {
  width: calc(90% / 2);
}
#shop_Aria ul.shop_list li .shop_list_box {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  height: 100%;
  box-sizing: border-box;
  border:#000 solid 3px;
}
#shop_Aria ul.shop_list li .shop_list_box .shop_ttl {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: #000;
  padding-bottom:3px;
  margin-bottom:10px;
  border-bottom:1px solid #333;
}
#shop_Aria ul.shop_list li .shop_list_box .shop_text {
  font-size: 16px;
  width: 100%;
  text-align: left;
  color: #000;
}
#shop_Aria ul.shop_list li .button_shop {
  bottom: auto;
  right: auto;
  line-height: 50px;
  font-size: 14px;
  transition: 0.4s;
  margin-top: 15px;
  width: 100%;
}
#shop_Aria ul.shop_list li .button_shop a {
	display: block;
	color: #fff;
	position: relative;
	background: #00878f;
	text-align: center;
	border-radius: 10px;
	border: 3px solid #000;
	font-size: 17px;
}
.shop_list_box .shop_text span {
  display: block;
}
#shop_Aria ul.shop_list li .button_shop a:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.info1_shop {
  font-size: 13px;
  margin-bottom: 0;
}
.xbutton {
    display:block;
    width:500px;
    background: #F8BF00;
    text-align: center;
    margin:20px auto 0;
    padding:20px;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    border:#fff solid 3px;
    border-radius: 99px;
}
.xuny {
    background: #F0555B;
}
.xbutton:hover {
    opacity: 0.5;
}

/* -----footer--------------------------------------------- */
footer {
	font-size: 12px;
	font-weight: bolder;
	padding: 40px 20px 30px;
	text-align: center;
	position: relative;
	margin-top: 0px;
	z-index: 33;
	background-color: #000;
}
.footer_bg {
	position: absolute;
    left: 0;
    top: 1px;
    width: 100vw;
    margin: 0 auto;
	transform: translateY(-100%);
}
footer ul {
  max-width: 1000px;
  margin: 0 auto;
}
.footer_link_list li {
  width: calc(50% - 10px);
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.footer_link_list li a {
  display: flex;
  justify-content: center;
  background: #fff url(../img/bnrList02_tab_icon.svg) no-repeat bottom 10px right 10px / 15px;
}
.footer_link_list li a:hover {
  opacity: 0.5;
}
.footer_link_list li a img {
  transition: 0.2s;
}
.footer_link_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.disney_copy {
  max-width: 490px;
  margin: 0 auto 10px;
}
.footer_flex img {
  width: 100%;
}
.copy {
  text-align: center;
  margin: 44px auto 0;
}
.copy span {
  font-size: 14px;
  display: block;
}
.app_title {
    font-size: 24px;
}
.appLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    gap: 5px;
}
.appLink li a {
    display: block;
    aspect-ratio: 3 / 1;
    width: 30vw;
    max-width: 200px;
}
.appLink li img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 2000px) {
  #fixed_nav {
    position: fixed;
    right: 0;
    width: calc((100% - 1000px) / 2);
  }
  .fix_list {
    max-width: 250px;
  }
  .fix_list li {
    width: 88%;
  }
}

@media screen and (max-width: 1400px) {
	#minions_logo {
		width: calc((100% - 800px) / 2);
	}
	#fixed_nav {
		width: calc((100% - 900px) / 2);
	}
	.fix_list {
		max-width: 250px;
	}
	.fix_list li {
		width: 88%;
	}
}

@media screen and (max-width: 1380px) {
	.monster1,
	.monster2,
	.monster3 {
		width: clamp(280px, 28vw, 450px);
	}
}

@media screen and (max-width: 1200px) {
	#minions_logo {
		display: none;
	}
	#fixed_nav {
		display: none;
	}
	#header_aria {
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
	}
	.nav_box {
		display: block;
	}
	#humBox_wrap {
		width: 60px;
		position: absolute;
		right: 20px;
		top: 5px;
	}
	#humBox {
		position: relative;
		height: 60px;
		width: 60px;
		z-index: 9999;
		cursor: pointer;
	}
	#humBox span {
		width: 40px;
		height: 3px;
		background: #fff;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		transition: 0.4s;
	}
	#humBox span::before {
		content: "";
		width: 100%;
		height: 3px;
		background: #fff;
		position: absolute;
		bottom: 12px;
		transition: 0.4s;
	}
	#humBox span::after {
		content: "";
		width: 100%;
		height: 3px;
		background: #fff;
		position: absolute;
		top: 12px;
		transition: 0.4s;
	}
	#glNav_nav {
		display: none;
		transition: all 0.3s ease;
	}
	#glNav_nav.open {
		display: block;
	}
	#humBox.active span {
		background: transparent;
	}
	#humBox.active span::before {
		transform: rotate(45deg);
		bottom: 0;
		background: #4C230A;
	}
	#humBox.active span::after {
		transform: rotate(-45deg);
		top: 0;
		background: #4C230A;
	}
	body.menu-open {
		background-color: pink;
	}
	#header_aria .logo_box {
		top: 25px;
	}
	.fv {
		margin: 0 auto;
		padding: 120px 20px 20px;
		box-sizing: border-box;
	}
	.info {
		margin: 25px auto 0;
	}
	.monster2 {
		top: 25%;
	}
}

@media screen and (max-width: 1000px) {
	.fv {
		margin: 0;
		width: 100%;
		padding: 125px 20px 20px;
	}
	.info {
		margin: 0 auto;
	}
	.monster3 {
		top: 49%;
	}
	.goods_box_ba {
		width: 45%;
	}
}

@media screen and (max-width: 930px) {
	.monster1,
	.monster2,
	.monster3 {
		width: clamp(140px, 26vw, 450px);
	}
}

@media screen and (max-width: 800px) {
	.contents_inner {
		padding: 10px;	
	}
}

@media screen and (max-width: 768px) {
	#humBox_wrap {
		width: 40px;
		right: 20px;
		top: 15px;
	}
	#humBox {
		position: relative;
		height: 40px;
		width: 40px;
	}
	#humBox span {
		width: 25px;
		height: 2px;
	}
	#humBox span::before {
		height: 2px;
		bottom: 9px;
	}
	#humBox span::after {
		height: 2px;
		top: 9px;
	}
	#humBox {
		position: relative;
		height: 40px;
		width: 40px;
	}
	#header_aria {
		height: 70px;
	}
	#header_aria .nav_box nav ul {
		padding: 100px 0;
	}
    .goods_day {
		text-align: center;
		margin: 20px auto 30px;
		width: 100%;
	}
    .goods_day img {
		width: 100%;
	}
    .xbutton {
		width: 80%; 
		font-size: 16px;
	}
    .app_title {
		font-size: 18px;
	}
    .fv {
		margin: 0;
		width: 100%;
		padding: 90px 20px 20px;
	}
    .info1 {
		margin: 10px auto 0;
	}
    .info1_day {
		width: 95%;
		margin:0 auto;
	}
/*
    .youtube {
		max-width: 90%;
		width: 100%;
		background: #fff;
		border: 3px solid #000;
		border-radius: 10px 10px 34px 34px;
		filter: drop-shadow(0px 10px 0px #000);
		padding: 20px 0 30px;
		box-sizing: border-box;
		margin: 50px auto 0;
	}
    .youtube iframe {
		max-width: 90%;
		width: 100%;
		height: 100%;
	}
*/
    .info2_img {
		position: absolute;
		top: -57px;
		right: 32px;
	}
    .info2_img img {
		width: 80px;
	}
    .info2_img1,.info2_img2{
		display:none;
	}
    .info2_img3 {
		position: absolute;
		bottom: -42px;
		left: 3px;
	}
    .info2_flex {
		width: 90%;
	}
    .info2_button {
		display:block;
		text-align: left;
    }
    .info2_button img {
		width: 100px;
	}
    .info2_flex_button {
		gap: 5px;
	}
    .button_b {
		width: 40px;
		height: 40px;
	}
    .button_img img {
		width: 40px;
	}
    .button_b img {
		width: 20px;  
	}
    .youtube_text {
		width: 90%;
		margin: 10px auto 0;
		font-size: 13px;
	}
    .info2-2_img1 {
		display:none;
	}
    .info2-2_img {
		margin: 20px auto 0;
	}
    .button_bottom {
		position: relative;
		top: 40px;
		box-sizing: content-box;
	}
    .info3 {
		margin: 20px 0 0;
	}
    .info3_flex {
		width: 95%;
		margin:0 auto 150px;
	}
    .info3_flex {
		width: 95%;
		margin: 0 auto 50px;
	}
/*
    .info4_button {
		display: block;
		gap: 10px;
		margin: 0 auto 100px;
	}
    .info4_button {
		width: 90%;
		max-width: 400px;
		display: block;
		margin: 0 auto 30px;
    }
    .info4_button a {
		border: #000 3px solid;
		display: block;
		filter: drop-shadow(0px 7px 0px #000);
		margin-bottom:20px;
	}
*/
	.info4_button {
		width: 60%;
	}
	.info4_button a img {
		width: 60%;
	}
	.shoplist_title {
		width: 70%;
		margin: 40px auto 0;
	}
	.shoplist_text {
		max-width: 70%;
		width: 100%;
		margin: 0 auto;
	}
	.shoplist_text p {
	   font-size: 14px;
	}
	.sns_info {
		width: 90%;
		border: #000 solid 3px;
		background: #fff;
		margin: 20px auto 0;
		border-radius: 10px;
		padding: 30px;
		box-sizing: border-box;
		text-align: left;
	}
	.sns_info p {
		font-size: 14px;
		line-height: 180%;
		display: block;
		margin-bottom: 20px;
	}
	.campaign_info {
		width: 90%;
		border: #000 solid 3px;
		background: #fff;
		margin: 20px auto 100px;
		border-radius: 10px;
		padding: 30px;
		box-sizing: border-box;
		text-align: left;
	}
	.campaign_info2 {
		width: 90%;
	}
	.campaign_info p {
		font-size: 14px;
		line-height: 180%;
		display: block;
		margin-bottom: 20px;
	}
	.event_info {
		width: 90%;
		border: #000 solid 3px;
		background: #fff;
		margin: 20px auto 0;
		border-radius: 10px;
		padding: 30px;
		box-sizing: border-box;
		text-align: left;
	}
	.sns_text {
		max-width: 600px;
		width: 100%;
		margin: 0 auto 20px;
	}
    .sns_img_title {
		display: block;
		max-width: 60%;
		width: 100%;
		margin: 20px auto 10px;
	}
    
    #shop_Aria ul.shop_aria_list {
        max-width: 90%;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        margin: 30px auto 10px;
    }
    #shop_Aria ul.shop_aria_list li span {
		display: block;
		padding: 0px 10px 0px 10px;
		font-size: 16px;
	}
    #shop_Aria ul.shop_list {
		max-width: 100%;
		width: 100%;
		padding-bottom: 10px;
		gap: 10px;
		margin: auto;
	}
    #shop_Aria ul.shop_list li .shop_list_box .shop_ttl {
		font-size: 16px;
		line-height: 1.5;
	}
    .asterisk {
		width:90%;
		display:block;
		margin: 0 auto;
		text-align: center;
	}
	#header_aria .logo_box {
        top: 10px;
    }
	.haifukikan_title img,
	.haifukikan_title2 img,
	.sns1_title img,
	.sns2_title img,
	.sns3_title img,
	.sns4_title img,
	.sns5_title img,
	.event1_title img,
	.goods3_title img {
		width: 75%;
	}
	.shoplist_title img,
	.sns_title img,
	.daiichi_title img,
	.daini_title img,
	.campaign_title img,
	.event_title img,
	.shoplist_title img,
	.goodslist_title img {
		width: 85%;
	}
	.shoplist_title,
	.sns_title,
	.daiichi_title,
	.daini_title,
	.campaign_title,
	.event_title,
	.shoplist_title,
	.goodslist_title {
		margin: 50px auto 40px;
	}
	.info3_flex,
	.sns_flex {
		margin-bottom: 0;
	}
	.shoplist_button {
		margin: 20px auto;
	}
}

@media screen and (max-width: 700px) {
	.youtube {
		margin: 20px auto;
	}
	.info1_day {
		width: 100%;
		margin: 0 auto 50px;
	}
	.info4 {
		margin: 0 auto 80px;
	}
	.info3_flex {
		width: 80%;
	}
	.monster3 {
        top: 51%;
    }
	.info5 {
		margin: 50px auto 140px;
	}
	.goods_box_ba {
		width: 85%;
	}
}

@media screen and (max-width: 600px) {
    .monster3 {
        top: 49%;
    }
}

@media screen and (max-width: 480px) {
	.info1_day {
		margin: 0 auto 40px;
	}
    .monster2 {
        top: 24%;
		z-index: 2;
    }
	.monster3 {
        top: 46%;
		z-index: 2;
    }
    .info3_flex {
        width: 95%;
    }
    .info5 {
        margin: 30px auto 100px;
    }
	.shoplist_button a img {
		width: 70%;
	}
	.goods_flex {
		padding: 10px;
    	box-sizing: border-box;
	}
	.shoplist_text {
        width: 100%;
		max-width: 100%;
        box-sizing: border-box;
	}
    .goods_box_ba {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .youtube {
        margin: 30px auto;
    }
	.info {
		padding: 10px;
	}
	.info4 {
        margin: 0 auto 50px;
    }
    .info4_button a {
        border: #000 2px solid;
		filter: drop-shadow(0px 4px 0px #000);
    }
    .info4_button a img {
        width: 70%;
    }
    .monster1 {
        top: 16%;
    }
	.shoplist_text {
		padding: 30px;
	}
}

@media screen and (max-width: 360px) {
    .info4_button {
        width: 70%;
    }
	.info4_button a img {
        width: 80%;
    }
}

@media screen and (min-width: 1880px) {
    .monster1,
    .monster2,
    .monster3 {
        max-width: 600px;
    }
    .fix_list {
        max-width: 300px;
    }
}


/* マウスストーカー */
#crayonCanvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  background: transparent;
}

.retro-pop {
  /* 初期状態：消しておく */
  opacity: 0;
  transform: scale(0);
}
/* 画面に入ったらこのクラスがJSでついて表示される */
.retro-pop.is-active {
  animation: retro-pop-in 0.4s steps(5, end) forwards;
}
@keyframes retro-pop-in {
  0% {
	opacity: 0;
	transform: scale(0);
  }
  70% {
	opacity: 1;
	transform: scale(1.15);
  }
  100% {
	opacity: 1;
	transform: scale(1);
  }
}




