@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap');

html { font-size: 62.5%;}

body {
  position: relative;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
}

@media (max-width:575px){
  body {
    font-size: 1.3rem;
  }
}

/* common */
a {
  color: #2895d6;
  text-decoration: none;
}

a:hover,
a:active {
  color: #31b2ff;
  text-decoration: none;
}

a.disabled {
  pointer-events: none;
  color: #999;
  display: block;
}

section {
  padding: 20px;
}

.inner {
  max-width: 1024px;
  margin: 0 auto;
}

.anchor {
  padding-top: 60px; /* header height */
  margin-top: -60px;
}



/*  */
.button {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 340px;
  height: 51px;
  line-height: 45px;
  border-radius: 45px;
  font-weight: 500;
  color: #fff;
  border: 3px solid #444;
  background: #444;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
}

@media (max-width:575px){
  .button {
    margin: 0 auto;
    width: 100%;
    transition: 0.1s ease;
  }
}

@media (min-width:576px){
  .button:hover {
    text-decoration: none;
    color: #fff;
    border: 3px solid #444;
    background-color: rgba(68, 68, 68, 0.7);
  }
}

@media (max-width:575px){
  .button:active {
    text-decoration: none;
    color: #fff;
    border: 3px solid #444;
    background-color: rgba(68, 68, 68, 0.7);
  }
}

.button-signup {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}
@media (min-width:576px){
  .button-signup:hover {
    text-decoration: none;
    border: 3px solid var(--red);
    background-color: #f25665;
    color: #fff;
  }
}
@media (max-width:575px){
  .button-signup:active {
    text-decoration: none;
    border: 3px solid var(--red);
    background-color: rgba(220, 53, 69, 0.7);
    color: #fff;
  }
}


/* index back */
.more {
  display: inline-block;
  padding: 1.0em 2.0em;
  background: #fff;
  border: 1px solid #00b5da;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00b5da;
  transition: 0.2s;
  box-shadow: 0 2px 0 #00b5da;
}

@media (max-width:575px){
  .more {
    display: block;
    font-size: 1.3rem;
  }
}

@media (min-width:576px){
  .more:hover {
    text-decoration: none;
    color: #444;
    border-color: #00b5da;
    box-shadow: none;
    background: rgba(10, 223, 226, 0.05);
  }
}

@media (max-width:575px){
  .more:link,
  .more:visited {
    color: #00b5da;
  }
  .more:active {
    text-decoration: none;
    color: #444;
    border-color: #00b5da;
    box-shadow: none;
    background: rgba(10, 223, 226, 0.05);
  }
}


/* header */
header {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #eee;
}

header h1.logo {
  margin-bottom: 0;
  padding: 15px;
}

@media (max-width:575px){
  header h1.logo {
    padding: 10px 15px;
  }
}

header h1.logo a img {
  width: 180px;
  height: auto;
}


@media (max-width: 575px){
  header h1.logo a img {
    width: 140px;
    height: auto;
  }
}


/* hero */
.hero {
  position: relative;
  width: 100%;
  max-height: 370px;
  z-index: 0;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/main_back.png) center center repeat-x;
  background-size: auto 100%;
  animation: scroll-back 30s linear infinite;
}

.slide-inner h2 {
  margin: 0;
}

@keyframes scroll-back {
  from { background-position: 0 0; }
  to { background-position: -1400px 0; } 
}


/* headline */
.headline {
  text-align: center;
}

.headline p {
  font-size: 2.4rem;
  font-weight: 600;
}

@media (max-width:767px){
  .headline p {
    font-size: 1.6rem;
  }
}

@media (max-width:575px){
  .headline p {
    font-size: 1.3rem;
  }
}

.headline p span {
  color: #eb309b;
  font-size: 120%;
}

.headline p:last-child span {
  color: #494949;
  border-bottom: 1px solid #494949;
}

/* grafes */
.grafes {
  background: url(../img/back.jpg) left top repeat;
}

.grafes + .register {
  margin-top: -60px;
}

@media (max-width:575px){
  .grafes + .register {
    margin-top: -30px;
  }
}

.heading {
  padding: 30px 0;
}

@media (max-width:1024px){
  .heading {
    padding: 15px 0;
  }
}

@media (max-width:575px){
  .heading {
    padding: 0;
  }
}

.heading h4 {
  display: block;
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width:575px){
  .heading h4 {
    text-align: center;
    font-size: 2.0rem;
  }
}

.heading ul li + li {
  margin-top: 0.5em;
}


h3.day-tit {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  background: #ff0060;
  border-radius: 10px;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (max-width:575px){
  h3.day-tit {
    font-size: 1.6rem;
  }
}



/* sale-item */
.sale-item {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

@media (max-width:767px){
  .sale-item {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

@media (max-width:575px){
  .sale-item {
    margin-bottom: 30px;
  }
}

.sale-item a {
  text-decoration: none;
}

.sale-item a figure,
.sale-item figure {
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.sale-item figure img,
.sale-item a figure img {
  height: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition :all 0.25s ease-in-out;
  width: 100%;
  vertical-align: bottom;
  /*border: 1px solid #ddd;*/
}

@media (min-width: 576px){
  .sale-item a:hover > figure img {
    transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    opacity: 0.8;
  }
}

@media (max-width: 575px){
  .sale-item a:active > figure img {
    opacity: 0.8;
  }
}

@media (min-width:992px){
  .sale-item figure img,
  .sale-item a figure img {
    max-height: 300px;
    width: auto;
  }
}
@media (max-width:991px){
  .sale-item figure img,
  .sale-item a figure img {
    max-height: 220px;
    width: auto;
  }
}
@media (max-width:575px){
  .sale-item figure img,
  .sale-item a figure img {
    max-height: 140px;
    width: auto;
  }
}

.sale-item a dl {
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
}

.sale-item_price {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0;
  color: #7d7d7d;
}

.sale-item_price .before {
  color: #444;
  text-decoration: line-through;
}

.sale-item_price .after {
  color: #ff0000;
  font-weight: bold;
}

.sale-item_name,
.sale-item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sale-item_name {
  margin-bottom: 0;
}

@media (max-width:767px){
  .sale-item_name {
    font-size: 1.4rem;
  }
}

.sale-item_title {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.sale-item button {
  padding: 0.2em 1.5em;
  font-size: 1.5rem;
  color: #dc4141;
  border: 1px solid #dc4141;
  border-radius: 18px;
  transition: 0.3s;
  background: #fff;
}

@media (max-width:860px){
  .sale-item button {
    font-size: 1.2rem;
    padding: 0.2em 0.75em;
    border-radius: 12px;
  }
}

@media (max-width:575px){
  .sale-item button {
    font-size: 1.0rem;
    padding: 0.5em;
    border-radius: 6px;
  }
}

.sale-item button:hover {
  color: #fff;
  background: #dc4141;
}

/* off */
.item-off h3.day-tit {
  background: #01b5da;
}

.item-off a {
  pointer-events: none;
  color: #999;
  display: block;
}

.item-off button {
  pointer-events: none;
  color: #aaa;
  border: 1px solid #aaa;
}

.item-off a img {
  filter: grayscale(100%);
}

/* off-end */
.item-off-end h3.day-tit {
  background: #727272;
}

.item-off a {
  pointer-events: none;
  color: #999;
  display: block;
}

.item-off button {
  pointer-events: none;
  color: #aaa;
  border: 1px solid #aaa;
}

.item-off a img {
  filter: grayscale(100%);
}



/* register */
.register {
  background: url(../img/obi.jpg) left center repeat-x;
  
}

/* navi */
.navi {
  background: #f2f2f2;
}


/* Footer */
footer {
  padding: 15px;
  background: #00b5da;
  color: #fff;
}

footer p {
  font-size: 1.3rem;
}

address {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

#page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  margin: 0;
  padding: 0;
  z-index: 97;
}


#page-top a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
  background: rgba(10, 223, 226, 0.76);
  border-radius: 50%;
  color: #fff;
  transition: 0.2s ease;
}

#page-top a:hover {
  background: #0adfe2;
}

