@charset "UTF-8";
/* --------------------------------
	レスポンシブ
-------------------------------- */
/* --------------------------------
	変数
-------------------------------- */
/* --------------------------------
	基本
-------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: m-plus-rounded-1p, sans-serif;
  font-weight: 500;
  color: #4a4a5f;
  background-color: #fff0f6;
  line-height: 1.7;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .02em;
}

p, span, ul, li, .bento-shops {
  font-family: m-plus-rounded-1p, sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc {
  display: block;
}

@media (max-width: 577px) {
  .pc {
    display: none;
  }
}

.lg {
  display: none !important;
}

@media (max-width: 993px) {
  .lg {
    display: block !important;
  }
}

.sp {
  display: none;
}

@media (max-width: 577px) {
  .sp {
    display: block;
  }
}

.Main__wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: transparent;
  overflow: hidden;
}

@media (max-width: 577px) {
  .Main__wrap {
    max-width: 100%;
  }
}

.oshitabi__footer__button {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.oshitabi__footer__button a {
  display: block;
  border: 3px solid #000;
  background-color: #fff;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border-radius: 20px;
  position: relative;
  text-decoration: none;
  color: #000;
}

.oshitabi__footer__button a:hover {
  color: black;
}

.step-badge {
  width: 100px;
  height: auto;
  display: block;
}

.btn-common {
  position: relative;
}

.btn-common.coming-soon {
  pointer-events: none;
}

.btn-common.coming-soon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  border-radius: 9px;
}

.btn-common.coming-soon:after {
  content: "\0043\006f\006d\0069\006e\0067\0020\0053\006f\006f\006e";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 900;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-family: m-plus-rounded-1p, sans-serif;
  line-height: 2.5rem;
}

@media (max-width: 577px) {
  .btn-common.coming-soon:after {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* --------------------------------
	背景アニメーション
	（淡いピンクのグリッド + 幾何学シェイプが斜め右上へ流れる）
-------------------------------- */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, #fff3f8 0%, #ffe9f1 50%, #f1e8ff 100%);
  overflow: hidden;
}

.bg-animation::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgSlide 40s linear infinite;
  pointer-events: none;
}

.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-shapes .shape {
  position: absolute;
  top: 0;
  display: inline-block;
  opacity: .55;
  animation: floatUpRight 30s linear infinite;
  will-change: transform;
}

.bg-shapes .shape-inner {
  display: inline-block;
  will-change: transform;
}

.bg-shapes .shape-inner.shape--circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.bg-shapes .shape-inner.shape--circle-o {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.bg-shapes .shape-inner.shape--square {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.bg-shapes .shape-inner.shape--triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid currentColor;
  background: transparent;
}

.bg-shapes .shape-inner.shape--triangle-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 17px solid currentColor;
  background: transparent;
}

.bg-shapes .shape-inner.shape--bolt {
  width: 6px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 45%, 60% 45%, 100% 100%, 0 55%, 40% 55%, 0 0);
}

@keyframes bgSlide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, -40px);
  }
}

@keyframes floatUpRight {
  0% {
    transform: translate(-10vw, 110vh) rotate(0deg);
  }
  100% {
    transform: translate(110vw, -20vh) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------
	CONTENTS 一覧
-------------------------------- */
.content_list {
  position: relative;
  padding: 5rem 1.6rem 3rem;
}

@media (max-width: 577px) {
  .content_list {
    padding-bottom: 1rem;
  }
}

.content_list .content-list__tit {
  text-align: center;
  margin: 0 auto 3rem;
  width: 35%;
}

@media (max-width: 769px) {
  .content_list .content-list__tit {
    width: 50%;
  }
}

@media (max-width: 577px) {
  .content_list .content-list__tit {
    width: 90%;
    margin-bottom: 2rem;
  }
}

.contents-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

@media (max-width: 993px) {
  .contents-menu {
    width: 52%;
    display: block;
  }
}

@media (max-width: 769px) {
  .contents-menu {
    width: 66%;
  }
}

@media (max-width: 577px) {
  .contents-menu {
    width: 100%;
  }
}

@media (max-width: 993px) {
  .contents-menu.pc {
    display: none;
  }
}

.contents-menu__item {
  width: calc(50% - .6rem);
}

@media (max-width: 993px) {
  .contents-menu__item {
    width: 100%;
  }
}

.contents-menu__item a {
  display: block;
  position: relative;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}

.contents-menu__item a img {
  display: block;
  width: 100%;
  height: auto;
}

.contents-menu__item a:hover {
  transition-duration: .2s;
}

/* --------------------------------
	コンテンツセクション共通
-------------------------------- */
.content-section {
  position: relative;
  margin: 4rem auto 0;
  padding: 0 1.2rem;
  max-width: 560px;
}

.content-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 5rem 1.4rem 2rem;
  margin-top: 7rem;
  margin-bottom: 10rem;
}

@media (max-width: 577px) {
  .content-card {
    margin: 7rem 0 5rem;
  }
}

@media (max-width: 420px) {
  .content-card {
    margin: 3rem 0 5rem;
  }
}

.content-head {
  position: absolute;
  top: -7rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 600px;
  text-align: center;
  z-index: 3;
}

@media (max-width: 577px) {
  .content-head {
    width: 100%;
    top: -5rem;
  }
}

@media (max-width: 420px) {
  .content-head {
    top: -3rem;
  }
}

#content04 .content-head {
  top: -3.75rem;
}

@media (max-width: 577px) {
  #content04 .content-head {
    top: -2.75rem;
  }
}

@media (max-width: 420px) {
  #content04 .content-head {
    top: -1rem;
  }
}

@media (max-width: 577px) {
  #content04 .content-card {
    margin-top: 5.5rem;
  }
}

@media (max-width: 420px) {
  #content04 .content-card {
    margin-top: 3.5rem;
  }
}

@media (max-width: 420px) {
  #content05 {
    margin-top: 0;
  }
}

#content05 .content-head {
  top: -6rem;
}

@media (max-width: 577px) {
  #content05 .content-head {
    top: -4.5rem;
  }
}

@media (max-width: 420px) {
  #content05 .content-head {
    top: -2rem;
  }
}

@media (max-width: 577px) {
  #content05 .content-card {
    margin-top: 5.5rem;
  }
}

@media (max-width: 420px) {
  #content05 .content-card {
    margin-top: 0;
  }
}

.content-section--c01 .content-card {
  border: 3px solid #ffd94a;
  box-shadow: 0.4rem 0.4rem 0 #ffd94a;
}

.content-section--c01 .content-card::before,
.content-section--c01 .content-card::after {
  background: #ffd94a;
}

.content-section--c02 .content-card {
  border: 3px solid #fe80cd;
  box-shadow: 0.4rem 0.4rem 0 #fe80cd;
}

.content-section--c02 .content-card::before,
.content-section--c02 .content-card::after {
  background: #fe80cd;
}

.content-section--c03 .content-card {
  border: 3px solid #00B8F5;
  box-shadow: 0.4rem 0.4rem 0 #00B8F5;
  margin-bottom: 3rem;
}

@media (max-width: 577px) {
  .content-section--c03 .content-card {
    margin-bottom: 0rem;
  }
}

.content-section--c03 .content-card::before,
.content-section--c03 .content-card::after {
  background: #00B8F5;
}

@media (max-width: 420px) {
  .content-section--c04 {
    margin-top: 0;
  }
}

.content-section--c04 .content-card {
  border: 3px solid #9e90e8;
  box-shadow: 0.4rem 0.4rem 0 #9e90e8;
  margin-bottom: 8.5rem;
}

@media (max-width: 577px) {
  .content-section--c04 .content-card {
    margin-bottom: 6.5rem;
  }
}

@media (max-width: 420px) {
  .content-section--c04 .content-card {
    margin-bottom: 4rem;
  }
}

.content-section--c04 .content-card::before,
.content-section--c04 .content-card::after {
  background: #9e90e8;
}

.content-section--c05 .content-card {
  border: 3px solid #ff7aac;
  box-shadow: 0.4rem 0.4rem 0 #ff7aac;
}

.content-section--c05 .content-card::before,
.content-section--c05 .content-card::after {
  background: #ff7aac;
}

.content_first-view {
  margin-top: 90px;
}

@media (max-width: 769px) {
  .content_first-view {
    margin-top: 66px;
  }
}

/* 本文・キャラ紹介リスト */
.lead-txt {
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 1.4rem;
}

@media (max-width: 769px) {
  .lead-txt {
    text-align: left;
  }
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem .8rem;
}

@media (max-width: 577px) {
  .member-list {
    justify-content: start;
  }
}

.member-list li {
  width: calc((100% - 1.6rem) / 3);
  text-align: center;
}

@media (max-width: 577px) {
  .member-list li {
    width: calc((100% - .8rem) / 2);
  }
}

.member-list .member-name {
  display: block;
  font-size: .85rem;
  margin-top: .4rem;
}

.member-list__tit {
  text-align: center;
  color: #ff6fa3;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: .8rem;
}

/* 前半/後半 バッジ + 日付 */
.period-block {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 0;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.period-block:last-of-type {
  border-bottom: 1px solid #eee;
}

.period-badge {
  display: inline-block;
  background: #dce7f9;
  color: #5e7ca8;
  font-size: .85rem;
  font-weight: bold;
  border-radius: 20px;
  padding: .3rem .9rem;
  line-height: 1;
}

.period-date {
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 577px) {
  .period-date {
    display: block;
  }
}

.period-topics {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  width: 100%;
  padding-left: 0;
  margin-top: .4rem;
}

.period-topics .topics-label {
  display: inline-block;
  background: #fff;
  border: 1px solid #00B8F5;
  color: #00B8F5;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
  flex-shrink: 0;
}

.period-topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .85rem;
}

.period-topics ul li {
  line-height: 1.5;
  text-indent: -.75rem;
  padding-left: .75rem;
}

/* メインCTAボタン（青い下地に▶） */
.main-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: solid 2px #00B8F5;
  color: #00B8F5;
  font-weight: bold;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin: 1.6rem auto 0;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.4;
  box-shadow: 0 0.35rem 0 #00B8F5;
}

@media (max-width: 577px) {
  .main-btn {
    font-size: 1rem;
    padding: .5rem 1rem;
  }
}

.main-btn .main-btn__icon {
  flex-shrink: 0;
  color: #00B8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.main-btn .main-btn__icon:hover {
  color: #00B8F5;
}

@media (max-width: 577px) {
  .main-btn .main-btn__icon {
    font-size: 2rem;
  }
}

.main-btn:hover {
  box-shadow: none;
  transition-duration: .2s;
  color: #00B8F5;
}

/* 注意書き（小さい字） */
.notice {
  font-size: .75rem;
  line-height: 1.7;
  margin: 1.2rem 0 0;
}

.notice p {
  margin: 0 0 .3rem;
  text-indent: -.75rem;
  padding-left: .75rem;
}

.notice .notice--red {
  color: #F243C7;
}

.notice a {
  color: #00B8F5;
  text-decoration: underline;
}

/* --------------------------------
	アコーディオン 注意事項
-------------------------------- */
.accordion {
  margin-top: 1.6rem;
  border: 2px solid #00B8F5;
  border-radius: 10px;
  background: #EFF7FF;
  overflow: hidden;
}

.accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  cursor: pointer;
  color: #00B8F5;
  font-weight: bold;
  font-size: 1rem;
  background: #EFF7FF;
}

.accordion__head .accordion__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00B8F5;
  position: relative;
  flex-shrink: 0;
}

.accordion__head .accordion__icon::before, .accordion__head .accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s;
}

.accordion__head .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__body {
  display: none;
  padding: 0 1rem 1rem;
  font-size: .82rem;
  line-height: 1.75;
}

.accordion__body h4 {
  font-size: .9rem;
  color: black;
  font-weight: bold;
  border-left: 3px solid #00B8F5;
  padding-left: .5rem;
  margin: .8rem 0 .4rem;
}

.accordion__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 .8rem;
}

.accordion__body ul li {
  padding-left: 1.4em;
  text-indent: -1.4em;
  margin-bottom: .4rem;
}

.accordion__body ol {
  padding-left: 1.4em;
  margin: 0 0 .8rem;
}

.accordion__body ol li {
  margin-bottom: .4rem;
}

.accordion__body a {
  color: #00B8F5;
}

.accordion.is-open .accordion__head .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion.is-open .accordion__body {
  display: block;
}

/* --------------------------------
	02 SNSキャンペーン用
-------------------------------- */
.campaign-period {
  text-align: center;
  background: linear-gradient(180deg, #bf95eb 0%, #85bcf6 100%);
  color: #fff;
  border-radius: 30px;
  padding: .8rem 1rem;
  margin: 1.2rem 0;
  font-weight: bold;
}

.campaign-period .campaign-period__label {
  display: block;
  font-size: .85rem;
}

.campaign-period .campaign-period__date {
  display: block;
  font-size: 1.05rem;
  margin-top: .3rem;
}

#content02 .member-list {
  flex-wrap: nowrap;
}

@media (max-width: 577px) {
  #content02 .member-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 577px) {
  #content02 .member-list li {
    width: calc((100% / 3 - .8rem));
  }
}

.bento-list {
  background: #fff;
  border: 2px solid #cfeaf5;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

.bento-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #e0e0e0;
}

.bento-item:last-child {
  border-bottom: none;
}

@media (max-width: 420px) {
  .bento-item {
    display: block;
  }
}

.bento-item .bento-item__txt {
  flex: 1;
}

.bento-item .bento-item__txt a {
  text-decoration: none;
}

.bento-item .bento-item__txt a:hover {
  opacity: .7;
}

.bento-item .bento-item__txt .ambassador {
  display: block;
  font-size: .8rem;
  font-weight: bold;
  border-left: 3px solid #00B8F5;
  padding-left: .4rem;
  margin-bottom: .3rem;
}

.bento-item .bento-item__txt .ambassador-name {
  display: block;
  font-size: .9rem;
  font-weight: bold;
}

.bento-item .bento-item__txt .bento-name {
  font-size: .9rem;
  margin-bottom: .2rem;
  color: black;
}

.bento-item .bento-item__txt .bento-name i {
  color: #00B8F5;
}

.bento-item .bento-item__txt .bento-price {
  font-size: 1.1rem;
  font-weight: bold;
}

.bento-item .bento-item__txt .bento-price .tax {
  font-size: .7rem;
  font-weight: normal;
}

.bento-item .bento-item__txt .bento-shops {
  margin-top: .5rem;
  font-size: .8rem;
}

.bento-item .bento-item__txt .bento-shops .shop-label {
  display: block;
  font-weight: bold;
}

.bento-item .bento-item__img {
  width: 120px;
  flex-shrink: 0;
}

.bento-item .bento-item__img img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 420px) {
  .bento-item .bento-item__img {
    width: 100%;
    margin-top: .5rem;
  }
}

/* STEP 参加方法 */
.step-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.step-list > li {
  display: flex;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: .9rem;
  line-height: 1.6;
}

.step-list > li:last-child {
  border-bottom: none;
}

.step-list .step-txt {
  flex: 1;
}

.step-list .step-txt p {
  margin: 0 0 .2rem;
}

.step-list .step-txt .step-note {
  font-size: .75rem;
  color: #F243C7;
  text-indent: -.75rem;
  padding-left: .75rem;
}

.post-note {
  text-align: center;
  font-size: .8rem;
  color: #F243C7;
  margin-top: 1rem;
  text-indent: -.75rem;
  padding-left: .75rem;
}

/* --------------------------------
	03 乗車特典
-------------------------------- */
.benefit-label {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #bf95eb 0%, #85bcf6 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: .55rem 1.4rem;
  font-size: .95rem;
  max-width: 260px;
  margin: 1.6rem auto 1rem;
  letter-spacing: .05em;
}

.benefit-tit {
  font-size: .95rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 577px) {
  .benefit-tit {
    text-align: left;
  }
}

.goods-visual {
  text-align: center;
  margin: 1rem 0;
}

.goods-visual .goods-visual__img {
  display: inline-block;
  width: 80%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  background: #e9e9e9;
  color: #999;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.goods-visual .goods-name {
  display: block;
  margin-top: .6rem;
  font-size: .9rem;
  font-weight: bold;
}

.goods-visual .goods-note {
  display: block;
  text-align: center;
  color: #F243C7;
  font-size: .75rem;
  margin-top: .3rem;
}

.info-row {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.info-row .info-row__label {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  display: block;
}

.info-row .info-row__content {
  flex: 1;
  font-size: .9rem;
  line-height: 1.6;
  font-size: 1.15rem;
}

@media (max-width: 577px) {
  .info-row .info-row__content {
    font-size: 1rem;
  }
}

.info-row .info-row__content .notice span {
  text-indent: -.75rem;
  padding-left: .75rem;
  display: block;
}

.list-decimal {
  list-style-type: decimal;
}

.shop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-list li {
  margin-bottom: .4rem;
}

.shop-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 2px solid #00B8F5;
  border-radius: 8px;
  padding: .6rem .8rem;
  color: black;
  text-decoration: none;
  font-size: .9rem;
  font-weight: bold;
}

.shop-list a::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00B8F5;
  font-size: .8rem;
}

.wallpaper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.wallpaper-grid .wallpaper-item {
  text-align: center;
}

.wallpaper-grid .wallpaper-item .wallpaper-img {
  aspect-ratio: 1 / 1;
  background: #e9e9e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: .8rem;
  margin-bottom: .4rem;
}

.wallpaper-grid .wallpaper-item .wallpaper-label {
  display: inline-block;
  background: #cfeaf5;
  color: #3a7ca5;
  font-size: .75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: .3rem;
}

.wallpaper-grid .wallpaper-item .wallpaper-date {
  font-size: .8rem;
  line-height: 1.4;
}

/* --------------------------------
	04 グッズ受注販売
-------------------------------- */
.goods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.goods-grid .goods-item {
  text-align: center;
}

.goods-grid .goods-item .goods-img {
  aspect-ratio: 1 / 1;
  background: #e9e9e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: .85rem;
  margin-bottom: .5rem;
}

.goods-grid .goods-item .goods-name {
  display: block;
  font-size: .9rem;
  font-weight: bold;
  line-height: 1.4;
}

.goods-grid .goods-item .goods-price {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: .3rem;
}

.goods-grid .goods-item .goods-price .tax {
  font-size: .7rem;
  font-weight: normal;
}

.goods-grid .goods-item .goods-size {
  font-size: .75rem;
  text-align: left;
  margin-top: .5rem;
  background: #f7f7f7;
  padding: .4rem .6rem;
  border-radius: 4px;
  line-height: 1.5;
}

.goods-grid .goods-item .goods-size .goods-size__label {
  font-weight: bold;
}

.sale-period {
  text-align: center;
  margin: 1.2rem 0;
}

.sale-period .sale-period__label {
  display: inline-block;
  background: linear-gradient(180deg, #bf95eb 0%, #85bcf6 100%);
  color: #fff;
  border-radius: 30px;
  padding: .55rem 1.6rem;
  font-size: .95rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.sale-period .sale-period__date {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: .5rem;
}

.sale-method-tit {
  text-align: center;
  margin: 2rem 0 .5rem;
}

.sale-method-tit .sale-method-tit__label {
  display: inline-block;
  background: linear-gradient(180deg, #bf95eb 0%, #85bcf6 100%);
  color: #fff;
  border-radius: 30px;
  padding: .55rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .08em;
}

@media (max-width: 577px) {
  .sale-method-tit .sale-method-tit__label {
    margin-bottom: .5rem;
  }
}

@media (max-width: 577px) {
  .period-block .sale-method-tit {
    text-align: left;
  }
}

/* --------------------------------
	05 駅連動
-------------------------------- */
.station-list-img {
  margin: 1.2rem auto;
  text-align: center;
  max-width: 420px;
}

.station-list-img img {
  display: block;
  width: 100%;
  height: auto;
}

.ar-info {
  text-align: center;
  font-size: .95rem;
  line-height: 1.8;
  margin: 1.5rem 0 1rem;
}

.ar-extra {
  text-align: center;
  margin: 1rem 0;
}

.ar-extra .ar-extra__label {
  display: inline-block;
  width: 100px;
  height: auto;
}

/* --------------------------------
	フッター
-------------------------------- */
.site-footer {
  padding: 3rem 1.2rem 2rem;
  text-align: center;
  position: relative;
  margin-top: 3rem;
}

.site-footer .copy-small {
  font-size: .7rem;
  color: #666;
  margin-bottom: 1rem;
}

.site-footer .brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 1rem 0 1.6rem;
  flex-wrap: wrap;
}

.site-footer .brand-logos img {
  max-height: 45px;
}

.site-footer .footer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 360px;
  margin: 1rem auto;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 30px;
  padding: .7rem 1.4rem;
  color: #4a4a5f;
  text-decoration: none;
  font-weight: bold;
  font-size: .95rem;
}

.site-footer .breadcrumb {
  font-size: .75rem;
  color: #666;
  margin: 1.6rem 0 2rem;
  text-align: left;
}

.site-footer .breadcrumb a {
  color: #666;
  text-decoration: none;
}

.site-footer .x-link {
  display: block;
  max-width: 320px;
  margin: 1.6rem auto;
  text-align: center;
}

.site-footer .x-link .x-link__label {
  display: block;
  font-size: .9rem;
  margin-bottom: .5rem;
}

.site-footer .x-link a {
  display: block;
  background: #111;
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: .95rem;
}

.site-footer .footer-top {
  text-align: center;
  margin: 1.6rem 0;
}

.site-footer .footer-top a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #999;
  font-size: .8rem;
  text-decoration: none;
  font-weight: bold;
}

.site-footer .footer-top a i {
  font-size: 1.4rem;
  margin-bottom: .2rem;
}

.site-footer .footer-notes {
  font-size: .7rem;
  text-align: left;
  color: #666;
  margin: 2rem auto;
  line-height: 1.7;
  max-width: 500px;
}

.site-footer .footer-notes p {
  margin: 0 0 .4rem;
}

.site-footer .footer-notes a {
  color: #00B8F5;
}

.site-footer .jr-logo {
  text-align: center;
  background: #f2f2f2;
  padding: 1.2rem 0;
  margin: 2rem -1.2rem -2rem;
}

.site-footer .jr-logo img {
  max-width: 60px;
}

/* --------------------------------
	ページトップボタン
-------------------------------- */
.page-top_btn {
  position: fixed;
  right: 12px;
  bottom: 20px;
  z-index: 100;
  display: none;
}

.page-top_btn.is-visible {
  display: block;
}

.page-top_btn a {
  display: block;
  text-decoration: none;
}

.page-top_btn button {
  border: none;
  background: #ff6fa3;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* --------------------------------
	anime 表示時アニメーション
-------------------------------- */
.anime {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.anime.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.content_footer {
  background-color: white;
}

.content_footer .link-bnr_list {
  padding: 5rem 0 0;
  margin: auto;
  justify-content: center;
}

@media (max-width: 993px) {
  .content_footer .link-bnr_list {
    width: 80%;
    justify-content: start;
  }
}

@media (max-width: 577px) {
  .content_footer .link-bnr_list {
    width: 100%;
  }
}

.content_footer .link-bnr_list__item__img {
  border: solid 1px #e6e5e5;
}

.footer-pankuzu, footer {
  background-color: white;
}

.footer-pankuzu {
  padding-top: 11rem;
}

.footer-pankuzu .pankuzu {
  padding: 10px 0;
  margin: 0 auto;
}
