@charset "UTF-8";

/* ----------------------------------------------------------------
  Base
----------------------------------------------------------------- */
body {
  min-width: 950px;
}

ol {
  list-style-type: none;
}

/* .str-contents
----------------------------------------------- */
.str-contents {
  width: auto;
  margin: 0;
  padding: 0;
}

/* .clearfix
----------------------------------------------- */
.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}
.clearfix:after {
  clear: both;
}

/* ----------------------------------------------------------------
  Wrapper
----------------------------------------------------------------- */
.area_wrapper {
  margin: 0;
  padding: 0;
  position: relative;
}
.area_wrapper > :last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
  Contents
----------------------------------------------------------------- */
/* .area_contents
----------------------------------------------- */
.area_contents {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.area_contents img {
  vertical-align: bottom;
}

.area_contents em, .area_contents b {
  font-style: normal;
  font-weight: bold;
}
.area_contents strong {
  font-weight: bold;
}

.area_contents a {
  color: #2967b4;
  text-decoration: underline;
}
.area_contents a:hover,
.area_contents a:active,
.area_contents a:focus {
  text-decoration: none;
}

/* .area_section
----------------------------------------------- */
.area_section {
  margin: 0;
  padding: 0 0 30px;
}
.area_section_inner {
  width: 950px;
  margin: 0 auto;
  padding: 0;
}
.area_section > :last-child,
.area_section_inner > :last-child {
  margin-bottom: 0 !important;
}

/* ----------------------------------------------------------------
  .area_mainvisual
----------------------------------------------------------------- */
.area_mainvisual {
  text-align: center;
  margin: 0 0 30px;
  padding: 0;
}
.area_mainvisual_inner {
  width: 950px;
  margin: 0 auto;
  position: relative;
}
.area_mainvisual > :last-child,
.area_mainvisual_inner > :last-child {
  margin-bottom: 0;
}
.area_mainvisual .title {
  margin: 0;
  display: block;
}

/* ----------------------------------------------------------------
  .topicPath
----------------------------------------------------------------- */
/* .area_topicPath
----------------------------------------------- */
.area_topicPath {
  font-size: 12px;
  margin: 0 auto;
  padding: 0;
}

/* .topicPath
----------------------------------------------- */
.topicPath {
  padding: 10px 0;
}
.topicPath a {
  color: #00c;
}

/* ----------------------------------------------------------------
  List
----------------------------------------------------------------- */
/* .list_normal
----------------------------------------------- */
.list_normal {
  margin: 0 0 10px;
}
.list_normal > li {
  margin: 0 0 5px;
}
.list_normal > li > :last-child,
.list_normal > li:last-child {
  margin-bottom: 0;
}

/* .list_notice
----------------------------------------------- */
.list_notice {
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.list_notice > li {
  width: 100%;
  margin: 0 0 5px;
  display: table;
}
.list_notice > li:last-child {
  margin-bottom: 0;
}
.list_notice > li .mark,
.list_notice > li .note {
  display: table-cell;
}
.list_notice > li .mark {
  width: 1em;
  white-space: nowrap;
  padding: 0 3px 0 0;
}

/* ----------------------------------------------------------------
  Links
----------------------------------------------------------------- */
/* .link_opacity
----------------------------------------------- */
.link_opacity {
  opacity: 1;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}
.link_opacity:hover,
.link_opacity:active,
.link_opacity:focus {
  opacity: .8;
}

/* ----------------------------------------------------------------
  Overwrite
----------------------------------------------------------------- */
/* .hdg-lv2-01
----------------------------------------------- */
.hdg-lv2-01 {
  margin-bottom: 20px;
}

/* .hdg-lv3-01
----------------------------------------------- */
.hdg-lv3-01 {
  background: none;
  color: #333;
}

/* .couponBox01
----------------------------------------------- */
.couponBox01 {
  margin: 0 auto 20px;
}
.couponBox01 .note {
  text-align: center;
  padding: 0 100px 15px;
}

/* .coupon
----------------------------------------------- */
.coupon_ttl{
  width: 220px;
  margin: 0 auto;
  position:relative;
  font-size:14px;
  line-height:1;
  padding:8px;
  background:#c10606;
  text-align: center;
  font-weight: bold;
}
.coupon_ttl:before{
  content:" ";
  position:absolute;
  top:0px;
  left:-15px;
  width:0;
  height:0;
  border-width:15px 0 15px 15px;
  border-style:solid;
  border-color:#c10606;
  border-left-color:transparent;
}
.coupon_ttl:after{
  content:" ";
  position:absolute;
  top:0px;
  right:-15px;
  width:0;
  height:0;
  border-width:15px 15px 15px 0;
  border-style:solid;
  border-color:#c10606;
  border-right-color:transparent;
}
.coupon_type{
  color:#FFF;
}
.couponName {
  font-weight: bold;
}

/* .dateTable01
----------------------------------------------- */
.dateTable01 {
  width: 100%;
}

/* クーポンコードコピー
----------------------------------------------- */

.prg-copyCode{
  width: 410px;
  margin: 0 auto 10px;
}

/* snackbar */
#snackbar {
  visibility: hidden;
  position: fixed;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  z-index: 100;
  bottom: 120px;
  left: 50%;
  width: 410px;
  transform: translateX(-50%);
  box-shadow: 0 3px 9px rgb(0 0 0 / 25%);
  padding: 6px 0;
  text-align: center;
  border-radius: 5px;
}
#snackbar.show{
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 120px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 120px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 120px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 120px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
