@charset "utf-8";
/* CSS Document */

/* =========================================================
   ミッフィーzakkaフェスタ
   ========================================================= */

/* -------------------------
   Base
------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}


/* -------------------------
   Content
------------------------- */
.content {
  width: 940px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  padding: 0 0 40px;
}


/* -------------------------
   PC / SP image
------------------------- */
.pc-show {
  display: block;
}

.sp-show {
  display: none;
}


/* -------------------------
   Main title
------------------------- */
.ttl {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.ttl img {
  display: block;
  width: 100%;
}


/* -------------------------
   Copy
------------------------- */
.copy {
	margin: 32px 0 24px;
	color: #EA0140;
	font-size: 22px;
	line-height: 1.7;
	text-align: center;
	font-weight: 700;
}


/* -------------------------
   Navigation buttons
------------------------- */
.navi-list {
  display: flex;
  gap: 10px;
  margin: 0 0 18px;
}

.navi {
  flex: 1;
}

.navi a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 8px 10px;
	border-radius: 6px;
	background: #EA0140;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.4em;
	text-align: center;
	transition: opacity 0.2s ease;
}

.navi a:hover {
	opacity: 0.7;
}


/* -------------------------
   Information area
------------------------- */
.map-body {
  margin-top: 0;
}


/* Section heading */
.super-head {
	margin: 0;
	padding: 8px 10px;
	border-left: 3px solid #07539b;
	background: #e9eef1;
	color: #004b91;
	font-weight: 700;
}

.map-body > .head {
	margin: 10px 0 5px;
	color: #004b91;
	font-weight: 700;
}

.txt {
	margin: 0 0 8px;
}

.caption {
	margin: 0;
	color: #555;
	font-size: 0.8em;
	line-height: 1.55;
}


/* -------------------------
   Map
------------------------- */
.map {
  margin: 14px 0 25px;
  text-align: center;
}

.map img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}


/* -------------------------
   Note box
------------------------- */
.note {
  margin: 0 0 28px;
  padding: 14px 12px;
  border: 1px solid #8caed0;
  background: #fff;
}

.note .head {
	margin: 0 0 8px;
	color: #004b91;
	font-weight: 700;
}

.note .caption {
	margin: 0;
	font-size: 0.8em;
	line-height: 1.55;
}


/* -------------------------
   Product sales description
------------------------- */
.spt30 {
  margin-top: 30px !important;
}

.txt-red {
  color: #f00000;
}

.s-size {
	font-size: 0.8em;
}


/* -------------------------
   Product items
------------------------- */
.shop-item {
  margin-top: 35px;
}

.shop-item .item {
  display: flex;
  align-items: top;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid #d7d7d7;
}

.shop-item .item:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.shop-item .photo {
	flex: 0 0 250px;
	text-align: center;
}

.shop-item .photo img {
	display: block;
	height: auto;
	margin: 0 auto;
	width: 100%;
}

.shop-item .txt-body {
  flex: 1;
  min-width: 0;
}

.shop-item .date {
	margin: 0 0 10px;
	padding: 5px 10px;
	background: #f36b00;
	color: #fff;
	font-weight: 700;
}

.shop-item .txt-body > .txt {
	margin-bottom: 8px;
}

.shop-item .txt-body > .txt strong {
  font-weight: 700;
}


/* -------------------------
   Sold out
------------------------- */
.soldout {
  margin: 10px 0 0;
  text-align: center;
}

.soldout span {
	display: inline-block;
	padding: 4px 12px;
	background: #e60012;
	color: #fff;
	font-size: 0.8em;
	font-weight: 700;
}


/* -------------------------
   Bottom copyright / notice
------------------------- */
.end-caption {
  margin-top: 10px;
  padding-top: 5px;
}

.end-caption > p:first-child {
  margin: 0 0 10px;
  text-align: left;
}

.end-caption > p:first-child img {
	width: 50%;
	max-width: 100%;
}

.end-caption .caption {
	font-size: 0.8em;
	line-height: 1.55;
	color: #555;
}

.spt20 {
  margin-top: 20px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media screen and (max-width: 481px) {

  body {
    font-size: 13px;
  }

  .content {
    width: 100%;
    max-width: none;
    padding: 0 15px 30px;
  }

  .pc-show {
    display: none !important;
  }

  .sp-show {
    display: block !important;
  }


  /* Copy */
  .copy {
    margin: 22px 0 18px;
    font-size: 13px;
    line-height: 1.7;
  }


  /* Navigation */
  .navi-list {
    gap: 8px;
    margin-bottom: 15px;
  }

  .navi a {
    min-height: 48px;
    padding: 7px 5px;
    font-size: 10px;
  }


  /* Information */
  .super-head {
    padding: 7px 8px;
    font-size: 12px;
  }

  .map-body > .head {
    font-size: 12px;
  }

  .txt {
    font-size: 11px;
  }

  .caption {
    font-size: 9px;
  }


  /* Map */
  .map {
    margin: 12px 0 20px;
  }


  /* Note */
  .note {
    padding: 12px 9px;
    margin-bottom: 22px;
  }

  .note .head {
    font-size: 10px;
  }

  .note .caption {
    font-size: 8px;
  }


  /* Product */
  .shop-item {
    margin-top: 25px;
  }

  .shop-item .item {
    gap: 10px;
    padding: 15px 0;
  }

  .shop-item .photo {
    flex: 0 0 120px;
    width: 120px;
  }

  .shop-item .photo img {
    width: 120px;
  }

  .shop-item .date {
    margin-bottom: 7px;
    padding: 4px 7px;
    font-size: 9px;
  }

  .shop-item .txt-body > .txt {
    font-size: 9px;
    line-height: 1.6;
  }

  .s-size {
    font-size: 8px;
  }


  /* Bottom */
  .end-caption .caption {
    font-size: 7px;
  }

  .end-caption > p:first-child img {
    width: 160px;
  }
}
