@charset "utf-8";
/* CSS Document */
.only_pc {
  display: block;
}

.only_sp {
  display: none !important;
}

.emphasis {
  font-size: 1.2em;
}

.emphasis_b {
  font-size: 1.4em;
}
/*カラー*/
body {
    --clr-main-color :#01c5f8;
    --clr-main-dark-color :#0f86e6;
    --clr-sub-color :#ffac43;
    --clr-hover-color :#f56500;
    --clr-1-color :#009944;
    --clr-2-color :#0075c2;
}

/*共通*/
.g-container .content-wrapper {
  position: relative;
  overflow: hidden;
}

.content-wrapper img {
  max-width: 100%;
  display: block;
}
.content-wrapper > * {
  box-sizing: border-box;
}
.content-wrapper-inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  font-size: 15.6px;
}

.content-wrapper-inner-main {
  width: 90%;
  max-width: 960px;
  background-color: #ffffff;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 20px;
  height: 500px;
  position: relative;
}

.content-wrapper-inner h1,
.content-wrapper-inner h2,
.content-wrapper-inner h3 {
  font-style: normal;
}
.content-wrapper-inner h2 span{
	font-size: 14px;
    line-height: 30px;
    display: block;
}

.inline_c {
  display: inline-block;
}

/*テキストカラー*/
.f-c-w {
  color: #ffffff;
}
.f-s {
  text-shadow: var(--clr-main-dark-color) 1px 0 10px;
}
/*メイン*/
.main_img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-main-color);
}

.main_img_inner {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto;
}
.main_img img {
  width: 100%;
}

/* 店舗別 */
.shop_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 3em;
}
.shop_carditem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 10px;
}

.shop_carditem {
  gap: 0px;
  border-radius: 10px;
  overflow: hidden;
  min-width: 200px;
  background: #fff;
  filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.1));
}

.carditem_1 {
	border: 3px solid var(--clr-1-color);
    border-top: 15px solid var(--clr-1-color);
}
.carditem_2 {
	border: 3px solid var(--clr-2-color);
    border-top: 15px solid var(--clr-2-color);
}

.carditem_img {
  line-height: 0;
}
.carditem_img img{
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.shop_carditem h2 {
  font-size: 200%;
  font-weight: bold;
  padding: 0 20px 0;
  margin: 0.5em 0 0;
  text-align: center;
  line-height: 1.3;
  color: #48494e;
}
.shop_carditem h2 span {font-size: 15px}

.shop_carditem p {
  padding: 0 20px 0;
  margin: 0;
  color: #7d7d7d;
  text-align: center;
}

.shop_carditem p span{
  color: #c70000;
  font-weight: bold;
  text-align: center;
  display: block;
}
	
.carditem_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  background: #48494e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100vh;
  margin: 10px 20px 20px 20px;
  transition: all .3s;
}
.carditem_btn::before{
  content: '';
  width: 15px;
  height: 15px;
  background: #fff;
  clip-path: polygon(0 0,0 100%,60% 50%);
}
.carditem_btn:hover {
  opacity: 0.8;
}

/*セクション*/


.sec_odd {}
.sec_even {background-color: #ffffff80;}



.coupon_content {
  margin-top: 5vw !important;
}

.sale_img_01 {
  width: 60%;
  max-width: 100px !important;
  display: block;
  position: absolute;
  top: 40px;
  right: 0;
}

.sale_img_02 {
  width: 60%;
  max-width: 80px !important;
  display: block;
  position: absolute;
  top: 50px;
  left: 20px;
}

.sale_img_03 {
  width: 60%;
  max-width: 100px !important;
  display: block;
  position: absolute;
  top: 10px;
  right: 60px;
}

.sec_content {
  width: 96%;
  max-width: 960px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  animation-fill-mode: forwards;
  margin-bottom: 1em;
}

.sec_btn {
	display: flex;
    gap: 10px;
    flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
	margin: 0 20px;
}

.sec_btn span{
	color: #c70000;
	font-weight: bold;
	font-size: 1.2em;
}

.sec_btn .btn_1, .sec_btn .btn_2 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /*height: 5em;*/
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  /*margin: 0;*/
  padding: 16px;
  transition: all .3s;
}

.btn_soon {background: #888888 !important}

.btn_1 {background: var(--clr-1-color);}
.btn_2 {background: var(--clr-2-color);}

.sec_btn .btn_1::before, .sec_btn .btn_2::before{
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0,0 100%,60% 50%);
}

.btn_soon:hover {opacity: 1!important;}

.btn_1:hover, .btn_2:hover {
  opacity: 0.8;
}

.sale_period{	
color: #FFFFFF!important;
font-size: 16px!important;
display: block;
width: 100%;
margin: 0 auto;
text-align: center;
}	

#sec1 h2, #sec4 h2 {
  font-size: 2.4em;
  text-align: center;
  z-index: 1;
  margin: 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 10px #ffffff, -2px 2px 10px #ffffff,
    2px -2px 10px #ffffff, -2px -2px 10px #ffffff;
  position: relative;
  font-weight: 800;
}

#sec2 h2, #sec3 h2 {
  font-size: 2.4em;
  text-align: left;
  z-index: 1;
  position: relative;
  margin: 0 0 0px 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px #ffffff, -2px 2px 10px #ffffff,
    2px -2px 10px #ffffff, -2px -2px 10px #ffffff;
  font-weight: 800;
}

.h_cap {
  font-size: 0.8em;
  text-align: left;
}

.sec_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
}

.cp_icon {
  width: 100px;
  height: 100px;
}

.headline {
  font-size: 1.4em;
  text-align: center;
  font-weight: 800;
  font-style: normal;
  z-index: 1;
  position: relative;
  display: block;
  margin: 1em auto 1.5em;
  line-height: 1.5;
}

.headline .line{
background: linear-gradient(transparent 35%, #fff799 35%);
border-radius: 5px;
}

.present_content,
.event_content {
  margin: 0;
}

.present_content ul,
.event_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
}

.present_content ul li {
  display: block;
  width: calc(25% - 20px);
  max-width: 306px;
  margin: 10px auto;
}

.present_content ul li img,
.event_content ul li img {
  width: 100%;
}

.event_content ul li {
  display: block;
  width: calc(100% / 3 - 20px);
  margin: 10px auto;
}

.date {
  font-size: 1.8em;
  text-align: center;
  display: block;
  margin: 0 auto 10px;
  line-height: 1.5;
  font-weight: 800;
}

ul.event_btns {
  margin: 30px auto 15px;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
}

ul.event_btns li {
  width: calc(100% / 3 - 20px);
  box-sizing: border-box;
}
ul.event_btns li img {
  width: 100%;
}

ul.event_btns_txt {
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
  text-align: center;
}

ul.event_btns_txt li {
  width: calc(100% / 3 - 20px);
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1.5em;
}

ul.event_btns_txt li a {
  color: #ffffff !important;
}

.slider {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 1rem;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.slider-img {
  margin: 0 5px;
}
.slider-img img {
  height: auto;
  width: 100%;
}

.wheel_lineup {
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
}

.next-arrow {
  right: 0;
  cursor: pointer;
}

.slide-arrow {
  position: absolute;
  top: 46%;
  margin-top: -15px;
  z-index: 1;
}
.slide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}

.slide-dots li button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li.slick-active button::before {
  background-image: url(/PC/ja/asset/img/nw/feature/open_sale/dot_active.png);
}
.slide-dots li button::before {
  background-image: url(/PC/ja/asset/img/nw/feature/open_sale/dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 13.5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 13.5px;
}

.cpbtn,
a.cpbtn,
button.cpbtn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin: 10px auto;
}

.btn,
a.btn {
  color: #fff;
  background-color: var(--clr-sub-color);;
}
.btn:hover,
a.btn:hover {
  color: #fff;
  background: var(--clr-hover-color);;
}
.event_note {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.5em 1em;
  background-color: #e10003;
  color: #ffffff;
  margin: 20px auto;
  font-size: 14px;
  text-shadow: none;
}

.sale_title{
text-align: center!important;
}

.i-l{
display: inline-block;
}

.main_img_full {
  background-image: url("/PC/ja/asset/img/nw/feature/open_sale/2609/main_pc.webp");
  background-size: cover;
  background-position: center;
  height: 500px;
background-repeat: no-repeat;
  padding-top:0;
}

.sale_122 .main_img_full {
  width: 100%;
  height: auto;
  aspect-ratio: 2000 / 560;
	
  background-image: url("/PC/ja/asset/img/nw/feature/open_sale/2609/main_122_pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top:0;
}

.static .shop-promo-banners{margin: 3em 0!important}

@media screen and (max-width: 1300px) {
.main_img_full {
  height: 400px;
}
}

@media screen and (max-width: 1060px) {
.shop_carditem h2 {
    font-size: 1.25em;
}
	
#sec1 h2, #sec2 h2, #sec3 h2, #sec4 h2 {
    font-size: 2em;
}
	
.date {font-size: 1.3em}
	
.sec_day {
    font-size: 1.2em !important;
    line-height: 2 !important;
}	
	
.headline {font-size: 1.1em}
}
@media screen and (max-width: 960px) {
	
  .sale_img_01 {
    max-width: 80px !important;
    display: block;
    position: absolute;
    top: -10px;
    right: 0;
  }

  .sale_img_02 {
    max-width: 60px !important;
    display: block;
    position: absolute;
    top: 10px;
    left: 20px;
  }

  .sale_img_03 {
    max-width: 80px !important;
    display: block;
    position: absolute;
    top: -10px;
    right: 50px;
    z-index: -1;
  }
}
@media screen and (max-width: 830px) {
  .only_pc {
    display: none !important;
  }

  .only_sp {
    display: block !important;
  }	
	
.main_img_full {
  height: 360px;
}
	
section#sec1 {
  padding: 10px 3vw;
}
.sec_btn .btn_1, .sec_btn .btn_2 {
  font-size: 1.3em;
}
}
@media screen and (max-width: 768px) {
	

	
.main_img_full {
  height: 300px;
}	
	
.shop_container {
	display: flex;
    gap: 20px;
    flex-direction: column;
	}	
	
.shop_carditem {
  padding-bottom: 1em;
}
	
.shop_carditem h2 {
    font-size: 160%;
}
	
.shop_carditem p {
    text-align: center;
}
	
.shop_carditem p span{
  display: block;
}
	
.sec_btn .btn_1, .sec_btn .btn_2 {
  display: flex;
  justify-content: center;
  align-items: center;
/*height: 4em;*/
/*font-size: 110%;*/
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  margin: 0;
  transition: all .3s;
}
	
.sec_btn .btn_1::before, .sec_btn .btn_2::before{
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0,0 100%,60% 50%);
}	
	

}
@media screen and (max-width: 600px) {
  .sec_content {
    padding: 10px;
    width: 100%;
  }

  .headline {
    font-size: 1em;
  }
  .emphasis {
    font-size: 1.3em;
  }
  .emphasis_b {
    font-size: 1.4em;
  }
  .cpbtn,
  a.cpbtn,
  button.cpbtn {
    font-size: 1.3rem;
    padding: 0.7em 0;
  }
  .cp_icon {
    width: 70px;
    height: 70px;
  }
	
.shop_container {
	display: flex;
    gap: 20px;
    flex-direction: column;
	}
	
.sec_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  flex-direction: column;
}
	
  #sec1 h2, #sec4 h2{
    font-size: 1.5em;
    margin: 0 0 10px 0;
  }

  #sec2 h2, #sec3 h2 {
    font-size: 1.6em;
    text-align: center;
    z-index: 1;
    position: relative;
    margin: 0 0 10px 0;
    line-height: 1.2;
  }

  .date {
    font-size: 1.2em;
    text-align: center;
    display: block;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  .sale_img_01 {
    max-width: 60px !important;
    display: block;
    position: absolute;
    top: -20px;
    right: 0;
  }

  .sale_img_02 {
    max-width: 40px !important;
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
  }

  .sale_img_03 {
    max-width: 60px !important;
    display: block;
    position: absolute;
    top: -10px;
    right: 50px;
    z-index: -1;
  }	
	
.main_img_full {
  background-image: url("/PC/ja/asset/img/nw/feature/open_sale/2609/main_sp.webp");
  height: 0;
 padding-top: 80%;
}
	
.sale_122 .main_img_full {
  height: auto;
  aspect-ratio: 1000 / 560;
	
  background-image: url("/PC/ja/asset/img/nw/feature/open_sale/2609/main_122_sp.webp");
}	

.static .shop-promo-banners > ul > li {	
	width: 100%!important;
}	
}

/*20260225加筆*/

.sale_note{
color: #48494e!important;
font-size: 16px!important;
}

.anniv-section {
  width: 100%;
  padding: 20px 0;
}

.anniv-section + .anniv-section {
  margin: 10px 0;
}

.anniv-section--blue {background-color: #e7f6ff}

.section_band {
    width: 96%;
    max-width: 960px;
    margin: 0 auto 0.5em;
    padding: 0.5em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    border-radius: 5px;
    min-height: 65px;
}

.section_band--blue { background: #0056a6; }
.section_band--red  { background: #e60012; }

.section_band::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 20px solid #e60012;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 0;
  }	
	
  .section_band--blue::after {
  border-top: 20px solid #0056a6;
  }

.section_band h2,
#sec1 .section_band h2,
#sec2 .section_band h2,
#sec3 .section_band h2,
#sec4 .section_band h2 {
  margin: 0 !important;
  padding: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem) !important;
  line-height: 1.25;
  font-weight: 800;
  text-align: center !important;
  text-shadow: none !important;
}

.anniv-section .sec_content,
.anniv-section__body {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 20px 0;
  box-sizing: border-box;
}

.anniv-section__img img{
	width: 80%;
	margin: 0 auto;
}

/* -------------------------
   WEBチラシ
   ------------------------- */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.flyer-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 0 0 18px;
  border-top-width: 10px;
}

.flyer-card__title {
  margin: 0;
  padding: 12px 16px 0;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  color: #333;
}

.flyer-card img {padding: 0 1em}

.flyer-card .sec_btn { margin: auto 16px 0; }
.flyer-card .sec_btn .btn_1,
.flyer-card .sec_btn .btn_2 {
  font-size: 1.05rem;
  padding: 12px 16px;
}

.benefit-heading {
  width: 96%;
  max-width: 960px;
  margin: 20px auto 0;
  box-sizing: border-box;
}

.benefit-period {
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 6px auto 8px;
  padding: 5px 30px 5px 35px;
  box-sizing: border-box;
  background: #fff100;
  color: #111;
  font-size: clamp(.95rem, 2.2vw, 1.25rem);
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.benefit-period strong { color: #e60012; }

.anniv-section .headline {
  margin: 0;
  padding: 0;
  text-shadow: none;
}

.benefit-grid {
  width: min(100%, 600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  align-items: stretch;
}

.benefit-grid > * { min-width: 0; }


.benefit-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 10px 10px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d7d7d7;
}

.benefit-card__title {
  margin: 0 -10px 8px;
  padding: 5px 8px;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  font-size: clamp(.88rem, 2vw, 1.12rem);
  line-height: 1.15;
  font-weight: 900 !important;
  color: #e60012;
}

.benefit-card__title span {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e60012;
  color: #fff;
  font-size: .95rem;
}

.benefit-card--02 .benefit-card__title {
  color: #0056a6;
}
.benefit-card--02 .benefit-card__title span {
  background: #0056a6;
}

.benefit-card--03 .benefit-card__title {
  color: #ef6c00;
}
.benefit-card--03 .benefit-card__title span {
  background: #ef6c00;
}

.benefit-card__visual {
  flex: 1 1 auto;
  min-height: 95px;
  border: 2px dashed #c7c7c7;
  background: #f6f6f6;
  color: #999;
  font-size: 12px;
  font-weight: 700;
}

.benefit-card__lead {
  margin: 7px 0 0;
  font-size: .83rem;
  line-height: 1.25;
  text-align: center;
}

.benefit-card__lead strong {
  color: #e60012;
  font-size: 1.08em;
}

/* -------------------------
   店舗詳細
   ------------------------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-grid .carditem_1 {
    border-top: 8px solid var(--clr-1-color);
}
.store-grid .carditem_2 {
    border-top: 8px solid var(--clr-2-color);
}

.store-card {
  min-width: 0;
  padding: 10px 10px 14px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.store-card span{
    display: block;
    font-size: 13px;
    text-align: center;
    padding-top: 1em;
}

.store-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  color: #333;
}


.store-card__btn {
  min-height: 42px;
  margin: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.exhibition-headline {
  margin-bottom: 10px !important;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.exhibition-grid > * { min-width: 0; }

.exhibition-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d6cae8;
  background: #fff;
}

.exhibition-card__shop {
  margin: 0;
  padding: 6px 5px;
  background: #6940a5;
  color: #fff;
  font-size: clamp(.72rem, 1.6vw, 1rem);
  line-height: 1.15;
  font-weight: 800 !important;
  text-align: center;
}

.exhibition-card__date {
  min-height: 34px;
  margin: 0;
  padding: 7px 4px 4px;
  box-sizing: border-box;
  color: #2f2147;
  font-size: clamp(.68rem, 1.5vw, .94rem);
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.exhibition-card__date small {
  font-size: .7em;
  margin-left: 1px;
}

.exhibition-card__visual {
  flex: 1 1 auto;
  min-height: 105px;
  margin: 0 6px;
  border: 2px dashed #c8c8c8;
  background: #f4f4f4;
  color: #999;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.exhibition-card__btn {
  margin: 7px 6px 6px;
  padding: 6px 3px;
  border-radius: 999px;
  background: #54228b;
  color: #fff !important;
  font-size: clamp(.62rem, 1.35vw, .83rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.campaign-grid > * {
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
}

.campaign-card {
  border: 0;
  background: #aaa;
  color: #fff !important;
  font-size: clamp(.7rem, 1.5vw, .95rem);
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity .2s ease;
}

.campaign-card:hover { opacity: .82; }

/* -------------------------
   Responsive
   ------------------------- */
@media screen and (max-width: 768px) {
  .anniv-section { padding: 10px; }

  .section_band {
    width: 100%;
    min-height: 70px;
    padding: 7px 14px;
	margin-bottom: 2em;
    position: relative;
    color: #fff;
    font-weight: bold;
  }

  .anniv-section .sec_content,
  .anniv-section__body {
    width: 100%;
    padding: 0;
  }
	
  .anniv-section__img img{
	  width: 100%;
	  margin: 0 auto;
	}
	
  .content-wrapper-inner h2 span{
	font-size: 13px;
    line-height: 21px;
    display: block;
    font-weight: 100;
    padding-top: 5px;
}

  .flyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .store-card { padding: 8px; }
  .store-card h3 { font-size: 1.25rem; }
	
  .store-card img {
	  width: 50%;
	  margin: 0 auto;}

  .benefit-grid {
    width: min(100%, 540px);
    gap: 8px;
  }

  .exhibition-grid,
  .campaign-grid {
    gap: 6px;
  }

}

@media screen and (max-width: 600px) {
  .anniv-section + .anniv-section { padding-top: 30px; }

  .section_band h2,
  #sec1 .section_band h2,
  #sec2 .section_band h2,
  #sec3 .section_band h2,
  #sec4 .section_band h2 {
    font-size: 1.35rem !important;
  }

  .flyer-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .benefit-heading {
    width: 100%;
  }

  .benefit-period {
    margin-top: 5px;
    margin-bottom: 7px;
    padding: 5px 18px 5px 14px;
    font-size: 1.1rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .benefit-card {
    padding: 0 6px 7px;
  }

  .benefit-card__title {
    margin: 0 -6px 6px;
    padding: 4px 5px;
    min-height: 29px;
    font-size: .74rem;
  }

  .benefit-card__title span {
    width: 21px;
    height: 21px;
    font-size: .78rem;
  }

  .benefit-card__visual {
    min-height: 72px;
    font-size: 10px;
  }

  .benefit-card__lead {
    font-size: .7rem;
  }

  .exhibition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .exhibition-card__shop {
    padding: 5px 2px;
    font-size: .62rem;
  }

  .exhibition-card__date {
    min-height: 31px;
    padding: 5px 2px 3px;
    font-size: .55rem;
  }

  .exhibition-card__visual {
    min-height: 78px;
    margin: 0 3px;
    border-width: 1px;
    font-size: 8px;
  }

  .exhibition-card__btn {
    margin: 5px 3px 4px;
    padding: 5px 1px;
    font-size: .52rem;
  }

  .character-dummy--exhibition {
    min-height: 0;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .campaign-card{
    min-height: 82px;
  }

  .campaign-card {
    font-size: .58rem;
  }
}

@media screen and (max-width: 390px) {
  .anniv-section .sec_content,
  .anniv-section__body {
    padding: 0;
  }

  .exhibition-grid,
  .campaign-grid {
    gap: 10px;
  }
}

/* =========================================================
   sale_122 
   ========================================================= */

.sale_122 .sale122-support-message {
  width: 100%;
  padding: 34px 20px 38px;
  box-sizing: border-box;
  background: #fff;
}

.sale_122 .sale122-support-message__inner {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.sale_122 .sale122-support-message h2 {
  display: inline-block;
  margin: 0 auto 22px;
  padding: 0 28px 8px;
  border-bottom: 1px solid #444;
  color: #333;
  font-size: clamp(1.3rem, 2.2vw, 1.25rem);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  text-shadow: none;
}

.sale_122 .sale122-support-message p {
  margin: 0;
  font-size: clamp(.95rem, 1.55vw, 1rem);
  line-height: 1.9;
  font-weight: 400;
}

.sale_122 .sale122-support-message__sign {
  margin-top: 2px !important;
}

@media screen and (max-width: 1300px) {
  .sale_122 .main_img_full {
    height: 340px;
  }
}

@media screen and (max-width: 830px) {
  .sale_122 .main_img_full {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .sale_122 .main_img_full {
    height: 260px;
  }

  .sale_122 .sale122-support-message {
    padding: 28px 18px 32px;
  }

  .sale_122 .sale122-support-message h2 {
    margin-bottom: 18px;
    padding: 0 18px 7px;
  }
}

@media screen and (max-width: 600px) {
  .sale_122 .main_img_full {
    height: 0;
    padding-top: 68%;
  }

  .sale_122 .sale122-support-message {
    padding: 24px 14px 28px;
  }

  .sale_122 .sale122-support-message__inner {
    width: 100%;
  }

  .sale_122 .sale122-support-message h2 {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 0 10px 6px;
    font-size: 1.15rem;
  }

  .sale_122 .sale122-support-message p {
    font-size: .88rem;
    line-height: 1.8;
  }
}

/* WEBチラシ：単一カード */
.sale-flyer-note {
  margin: 0 0 18px;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.sale_122 .sale122-flyer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  box-sizing: border-box;
  border: 4px solid var(--clr-2-color);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .08);
}

.sale_122 .sale122-flyer-card__image {
  min-width: 0;
}

.sale_122 .sale122-flyer-card__image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sale_122 .sale122-flyer-card__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.sale_122 .sale122-flyer-card__period {
  margin: 0 0 14px;
  color: #333;
  font-size: clamp(.9rem, 1.7vw, 1.05rem);
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.sale_122 .sale122-flyer-card__period strong {
  color: #c70000;
  font-weight: 900;
}

.sale_122 .sale122-action-btn {
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--clr-2-color);
  color: #fff !important;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: opacity .2s ease;
}

.sale_122 .sale122-action-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid #fff;
}

.sale_122 .sale122-action-btn:hover {
  opacity: .82;
}

.sale_122 .sale122-flyer-card__shop {
  margin: 34px 0 14px;
  color: #222;
  font-size: clamp(1.7rem, 4vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

/* キャンペーン詳細 */
.sale_122 .sale122-campaign-section {
  margin-top: 24px;
}

.sale_122 .sale122-campaign-body {
  padding-top: 28px;
  padding-bottom: 24px;
}

.sale_122 .sale122-campaign-lead {
  margin: 0 auto 28px;
  text-align: center;
}

.sale_122 .sale122-campaign-lead p {
  margin: 0 0 4px;
  color: #222;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
}

.sale_122 .sale122-campaign-lead h3 {
  margin: 0;
  color: #222;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
}

.sale_122 .sale122-campaign-lead h3 span {
  color: #D00003;
  font-weight: 900;
  font-size: 1.25em;
}

.sale_122 .sale122-detail-panel {
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid #888;
  border-radius: 7px;
  background: #fff;
}

.sale_122 .sale122-detail-panel:last-child {
  margin-bottom: 0;
}

.sale_122 .sale122-detail-panel__title {
  margin: 0;
  padding: 14px 18px;
  background: #d9d9d9;
  color: #222;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.sale_122 .sale122-detail-panel__title span {
  font-size: .8em;
  font-weight: 500;
}

.sale_122 .sale122-maker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 28px 9%;
}

.sale_122 .cp_maker {
    list-style: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 820px;
    padding-top: 20px;
}

.sale_122 .cp_maker li {
  font-weight: bold;
  display: block;
  margin: 0;
  padding: 0.25rem !important;
  box-sizing: border-box;
  border-radius: 5px;
  width: calc(80% / 3 - 20px);
  text-align: center;
}

.cp_mk_logo {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.cp_mk_j {
  text-align: center;
  font-size: 12px;
}

.sale_122 .sale122-detail-copy {
  padding: 28px 24px 30px;
  color: #333;
  text-align: center;
}

.sale_122 .sale122-detail-copy > p:first-child {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1rem);
  line-height: 1.9;
  font-weight: 500;
}

.sale122-detail-copy p span {
	font-weight: bold;
    color: #D00003;
}

.sale_122 .sale122-detail {
  list-style-type: disc;
  font-size: 13px;
  padding: 1em;
  padding: 0 0 0 1.5em;
  text-align: left;
}

.sale_122 .sale122-detail li {
	margin-bottom: 0.5em;
}

.sale_122 .sale122-detail span {
	font-weight: bold;
    color: #D00003;
}

.sale_122 .sale122-discount-heading {
  margin: 24px 0 10px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  font-weight: 700;
}

.sale_122 .sale122-discount-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: #333;
  font-size: clamp(.92rem, 1.8vw, 1.12rem);
  line-height: 1.8;
}

.sale_122 .sale122-discount-list span {
  position: relative;
  padding: 0 18px;
}

.sale_122 .sale122-discount-list span + span::before {
  content: "|";
  position: absolute;
  left: -2px;
  color: #555;
  font-weight: 400;
}

.sale_122 .sale122-discount-list strong {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .sale-flyer-note {
    margin-bottom: 14px;
    font-size: 12px;
    text-align: left;
  }

  .sale_122 .sale122-flyer-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    border-width: 3px;
  }

  .sale_122 .sale122-flyer-card__image img {
    width: min(100%, 560px);
  }

  .sale_122 .sale122-flyer-card__period {
    margin-bottom: 10px;
  }

  .sale_122 .sale122-action-btn {
    min-height: 52px;
  }

  .sale_122 .sale122-flyer-card__shop {
    margin: 24px 0 12px;
  }

  .sale_122 .sale122-campaign-body {
    padding-top: 0;
  }

  .sale_122 .sale122-maker-grid {
    gap: 12px;
    padding: 20px 14px;
  }

  .sale_122 .sale122-maker {
    min-height: 52px;
    padding: 8px 6px;
  }

  .sale_122 .sale122-detail-copy {
    padding: 22px 14px 24px;
  }
}

@media screen and (max-width: 600px) {
  .sale_122 .sale122-flyer-section,
  .sale_122 .sale122-campaign-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sale_122 .sale122-flyer-section .anniv-section__body,
  .sale_122 .sale122-campaign-section .anniv-section__body {
    padding-left: 0;
    padding-right: 0;
  }

  .sale_122 .sale122-flyer-card {
    padding: 12px;
  }

  .sale_122 .sale122-flyer-card__period {
    font-size: .9rem;
  }

  .sale_122 .sale122-flyer-card__shop {
    font-size: 1.8rem;
  }

  .sale_122 .sale122-campaign-lead {
    margin-bottom: 20px;
  }

  .sale_122 .sale122-campaign-lead p {
    font-size: 1.2rem;
  }

  .sale_122 .sale122-campaign-lead h3 {
    font-size: 1.35rem;
  }

  .sale_122 .sale122-detail-panel__title {
    padding: 11px 8px;
    font-size: 1.05rem;
  }

  .sale_122 .sale122-maker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 16px 8px;
  }

  .sale_122 .sale122-maker {
    min-height: 46px;
    padding: 6px 4px;
    font-size: .78rem;
  }

  .sale_122 .sale122-maker--michelin {
    border-width: 4px;
  }

  .sale_122 .sale122-detail-copy > p:first-child {
    font-size: .9rem;
    line-height: 1.8;
  }

  .sale_122 .sale122-discount-heading {
    margin-top: 18px;
    font-size: .95rem;
  }

  .sale_122 .sale122-discount-list {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    font-size: .9rem;
  }

  .sale_122 .sale122-discount-list span {
    padding: 4px 8px;
    border-bottom: 1px solid #ddd;
  }

  .sale_122 .sale122-discount-list span:last-child {
    border-bottom: 0;
  }

  .sale_122 .sale122-discount-list span + span::before {
    display: none;
  }
}
