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

/*-----------------
common
-----------------*/
*, *:before, *:after {margin:0;padding:0;box-sizing:border-box;border:0;outline:0}
html {font-size: 62.5%;}
body {line-height: 1.75;font-size: 14px;font-size: 1.4rem;color: #3f3331;font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;}
img {max-width: 100%;height: auto;vertical-align: middle;}
a{text-decoration: none;color: #3f3331;transition: all 0.3s 0s;}
a:hover, a:focus {text-decoration: none;outline: none;opacity: .7;-ms-filter: "alpha(opacity=70)";filter: alpha(opacity=70);}
ul,ol,li {list-style: none;}

body {
  background: #fff;
  animation: contentsfadeIn 1s ease 0s 1 normal;
  -webkit-animation: contentsfadeIn 1s ease 0s 1 normal;
}
@keyframes contentsfadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes contentsfadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
::selection {background: #fbe6e3;}

/* header */
#container {
  background-image: url(images/bg.png);
  background-attachment: fixed;
  background-color: #fff;
  background-color: #fff;
  background-image:
    radial-gradient(#fdddd5 20%, transparent 20%),
    radial-gradient(#fdddd5 20%, transparent 20%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
header{
}
.logo {
  background-color: #fff;
  padding: 0 2em;
}
.logo div {
  max-width: 1100px;
  position: relative;
  line-height: 40px;
  margin: 0 auto;
  padding: 1em 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.logo img {
  margin: 0 1em 0;
}
.backtop {
  position: absolute;
  top: 1em;
  right: 0;
}
.backtop a {
  background-color: #e4004f;
  color: #fff;
  padding: 0 15px;
  display: inline-block;
  border-radius: 40px;
}
.main_logo {
  text-align: center;
  padding: 0 2em 2em;
  max-width: calc(1200px + 4em);
  margin: 0 auto;
}

/* navi */
.nav_wrap {
    background-color: #e4004f;
    padding: 0 2em;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 20px;
}
.nav_wrap ul {
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav_wrap li {
  position: relative;
  width: 49%;
}
.nav_wrap li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  border-right: 1px solid #fff;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.nav_wrap li:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  border-right: 1px solid #fff;
  display: block;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.nav_wrap ul a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 1em 0.5em;
  background-color: #e4004f;
  font-size: 16px;
  font-size: 1.6rem;
}

/* news */
#news {
  background-color: #fff;
  padding: 3em 0;
  text-align: center;
}
#news p {
  padding: 1em 2em;
}

/* activity */
#activity {
  padding: 3em 2em;
  margin: 0 auto;
  text-align: center;
  background-color: #ffd4ca;
}
#activity dl {
  max-width: 980px;
  margin: 0 auto 2em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#activity dt {
  width: 30%;
}
#activity dd h2 {
  margin: 2em 0 1em;
}
#activity dd {
  text-align: left;
  margin: 0 0 0 1%;
  width: 69%;
}

/* event */
#event {
  padding: 0 3em;
}
#event div {
  background-color: #ed7755;
  max-width: 980px;
  margin: 2em auto 4em;
  padding: 3em 2em;
  text-align: center;
  border-radius: 30px;
}
#event h2 {
  margin: 0 0 1em;
}
#event h3 {
  line-height: 1.3;
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  font-size: 30px;
  font-size: 3.0rem;
  display: inline-block;
  padding: 0.5em 80px;
}
#event h3 span {
  position: absolute;
  display: block;
  left: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 121px;
  height: 121px;
}
#event .event_txt {
  margin: 1em 0 0;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
}
.event {
  padding: 0 2em 4em;
  text-align: center;
}
#event div {
  max-width: 980px;
}

/* footer */
#pagetop {
  margin: -45px 0 0;
}
#pagetop a {
  background-color: #3f3331;
  display: block;
  width: 90px;
  height: 45px;
  border-radius: 45px 45px 0 0;
  margin: 0 auto;
  text-align: center;
  padding: 0.8em 0 0;
}
footer {
  padding: 0 2em;
  background-color: #3f3331;
  color: #fff;
}
.footer_contents {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 3em 0;
  align-items: center;
}
.footer_listWrap {
  align-self: center;
  width: 50%;
}
.footer_listWrap ul {
  margin: 1em 2em 0 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_listWrap li {
  margin: 0 0 15px 0;
  width: 32%;
}
.footer_listWrap p {
  font-size: 22px;
  font-size: 2.2rem;
}
.footer_listWrap a {
  color: #fff;
}
.footer_listWrap li.shop_search {
  display: none;
}
.footer_contact {
  width: 50%;
  border-left: 1px solid #eee;
  padding: 0 0 0 3%;
}
.footer_contact dt {
  margin: 0 0 1em 0;
  text-align: center;
}
.footer_contact dd {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_contact dd p {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2%;
  width: 49%;
}
.footer_contact dd a {
  background-color: #ed7755;
  padding: 1em;
  display: block;
  text-align: center;
  border-radius: 30px;
  color: #fff
}
.copy {
  background-color: #3f3331;
  color: #ccc;
  padding: 0 2em 2em;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 786px){
  .logo img {
    display: block;
    margin: 0;
  }
  .backtop {
    top: 0;
  }
  .backtop a {
    border-radius: 0 0 3px 3px;
  }
  .main_logo {
    display: block;
  }
  .main_logo h1 {
    width: auto;
  }
  .main_logo div {
    width: auto;
  }
  .footer_contents {
    display: block;
    padding: 3em 0 1em;
  }
  .footer_contact {
    width: 100%;
    padding: 2em 0 0 0;
    border-left: 0;
    border-top: 1px solid #eee;
  }
  .footer_listWrap {
    text-align: center;
    width: auto;
  }
  .footer_listWrap ul {
    text-align: left;
    margin: 1em 0;
  }
  .footer_listWrap a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .footer_contact dd a {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .copy {
    text-align: left;
  }
  #activity {
    padding: 2em 1em 3em;
  }
  #activity dt {
      width: 100%;
  }
  #activity dd {
    margin: 0;
    width: 100%;
  }
  #activity dd h2 {
      text-align: center;
  }
  #event h3 {
    font-size: 20px;
    font-size: 2.0rem;
  }
  #event .event_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 0 1em 1em;
  }
  .main_logo {
    margin: 0.5em 0 0;
  }
  .backtop {
    line-height: 40px;
  }
  .logo {
    padding: 4em 14px 0.5em;
    line-height: 1.5;
  }
  .nav_wrap ul {
    display: block;
  }
  .nav_wrap li:first-child:before,
  .nav_wrap li:after {
    display: none;
  }
  #activity ul {
    display: block;
  }
  #activity li {
    width: auto;
  }
  footer {
    padding: 0 1em;
  }
  .footer_listWrap ul {
    margin: 0.5em 0 1em;
  }
  .footer_listWrap li {
    display: none;
  }
  .footer_listWrap li.shop_search {
    display: block;
    width: 100%;
  }
  .footer_listWrap a {
    background-color: #00adba;
    padding: 0.8em 0;
    display: block;
    text-align: center;
    border-radius: 3px;
  }
  .footer_contact dd p {
    width: 100%;
  }
}

#event03>div {
  max-width: 980px;
  margin: 0 auto;
  background-color: #fff5d9;
  padding: 0 2em 4em;
}
#event03 .event03_01 {
  margin: 0 -2em;
}
#event03 .event03_02 {
  margin-top: -6vw;
}
#event03 .event03_txt {
  margin: 3em 0;
  font-size: 16px;
  font-size: 1.6rem;
}
#event03 .event03_03 {
  margin-bottom: 3em;
}
#event03 .event03_til {
  margin-top: 6em;
}
#event03 .event03_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#event03 .event03_flex p {
  margin: 3% 2% 0;
}
area {
  cursor: pointer;
}