@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: #4c202e;
  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: #4c202e;
  transition: all 0.3s 0s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  opacity: .7;
}
ul,ol,li {
  list-style: none;
}
#container {
  position: relative;
  border-top: 2vw solid #f1bbc0;
  border-right: 2vw solid #f1bbc0;
  border-left: 2vw solid #f1bbc0;
}
#container:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url(images/bg_neba.png);
  background-size: 100vw auto;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 9;
  mix-blend-mode: multiply;
}
.fadeIn {
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animateElement {
  opacity: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.animated {
 transform: translateZ(0);
  -webkit-transform: translateZ(0);
  animation-name: example;
  animation-duration: .8s;
  position: relative;
  display: block;
  opacity: 1 !important;
}
@keyframes example {
  from {
    opacity: 0;
    top: 100px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

/* header */
header {
  position: relative;
}
.logo {
  position: relative;
  padding: 2em 0 1em;
  max-width: calc(1100px + 56px);
  margin: 0 auto;
  font-size: 12px;
  font-size: 1.2rem;
  z-index: 999;
}
.logo img {
  margin: 0 1em 0 0;
}
.backtop {
  position: absolute;
  top: -2vw;
  right: 28px;
  z-index: 999;
}
.backtop a {
  background-color: #fff;
  padding: 1em 1em;
  display: block;
  border-radius: 0 0 3px 3px;
  width: 185px;
  text-align: center;
}
.backtop a:hover {
  opacity: 1;
  background-color: #e75a6d;
  color: #fff;
}
header {
  padding: 0 2em;
  background-image: url(images/header_bg.png);
  background-size: 100% 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.main {
  position: relative;
  z-index: 7;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 2em 0 0;
}
h1 {
  margin: .5em 0 1.5em;
}
.main.submain {
  padding: 0 0 1em;
}

/* update */
.top_update {
  position: relative;
  z-index: 9999;
  padding: 2em;
  margin: 0 auto;
  text-align: center;
}
.top_update dl {
  max-width: 1100px;
  margin: 1em auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_update span {
  font-size: 26px;
  font-size: 2.6rem;
  margin-right: 14px;
}
.top_update dt {
  display: flex;
  align-items: center;
}
.top_update dt:after {
  content: "";
  display: inline-block;
  background-image: linear-gradient(-0deg, transparent 49%, #4c202e 49%, #4c202e 51%, transparent 51%, transparent);
  width: 2em;
  height: 2em;
  vertical-align: middle;
  margin: 0 1em;
  transform: rotate(-45deg);
}
.top_update dt img {
  margin: 0 1em 0 0;
}
.top_update dd {
  line-height: 2;
}

/* topic_path */
.topic_path {
  padding: 0 2em;
  position: relative;
  z-index: 9999;
}
.topic_path ul {
  max-width: 1100px;
  padding: 1em 0;
  margin: 0 auto;
  display: flex;
}
.topic_path li {
  position: relative;
  padding: 0 2em 0 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.topic_path li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 1em;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.topic_path li:last-child:after {
  display: none;
}

/* article */
article {
  position: relative;
  padding: 0 2em;
}
article>div {
  text-align: center;
  z-index: 9999;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
article:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  display: block;
  border-top: 50px solid transparent;
  border-left: 50vw solid #fff;
  z-index: 8;
}
article:after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  display: block;
  border-top: 50px solid transparent;
  border-right: 50vw solid #fff;
  z-index: 8;
}
article.subtsushin:before {
  top: -75px;
}
article.subtsushin:after {
  top: -75px;
}
section {
  position: relative;
  z-index: 9999;
}
section div {
  background-image: url(images/bg_box.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 5em 2em;
  max-width: 860px;
  margin: 0 auto 5em;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
}
section h3 {
  padding: 0 0 1em;
}
.tsushinWrap>div {
  font-size: 18px;
  font-size: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  padding: 3em;
  border: 3px solid #ffced2;
  line-height: 2;
  background-color: rgba(255, 255, 255, .6);
  position: relative;
}
.tsushinWrap>div img {
  max-width: 100%;
  height: auto;
  vertical-align: -2px;
}
.tsushinWrap>div strong {
  font-size: 120%;
  font-weight: bold;
}
.tsushinWrap h2 {
  background-color: #ffced2;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  padding: .5em 2em .3em;
}
.tsushinWrap h2 span {
  background-color: #fff;
  border-radius: 5px;
  padding: .3em 1em;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  margin-left: 1em;
}
.subtsushin {
  margin-top: 2em;
}

/* backnumber */
aside {
  position: relative;
  z-index: 999;
}
aside>div {
  max-width: 1100px;
  margin: 0 auto 120px;
  text-align: center;
  background-color: #ffced2;
  padding: 2em;
  border-radius: 0 0 10px 10px
}
aside h2 {
  background-color: #ffced2;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  padding: 0 2em;
}
.backnumber_link a {
  background-color: #fff;
  border-radius: 3px;
  padding: .5em 1em;
  background-size: cover;
  display: inline-block;
}


/* shop_listWrap */
.shop_listWrap {
  position: relative;
  z-index: 9999;
  text-align: center;
  max-width: calc(1100px + 4em);
  padding: 0 2em;
  margin: 0 auto;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  z-index: 999;
  padding-bottom: 3em;
}
.shop_listWrap ul {
  margin: 1em 0;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shop_listWrap li {
  margin: 0 0 15px 0;
  width: 24%;
  display: flex;
}
.shop_listWrap li a {
  border-radius: 5px;
  color: #fff;
  background-image : url(images/bg_btn.png);
  border-radius : 3px;
  padding: 1em;
  background-size: cover;
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.shop_listWrap .link_dealer a {
  background-image: none;
  color: #4c202e;
  position: relative;
}
.shop_list a br {
  display: none;
}

/* pagetop */
#pagetop {
  position: absolute;
  bottom: 70px;
  right: 70px;
}
#pagetop a {
  position: relative;
  display: block;
  width: 50px;
  height: 70px;
  margin: 0 auto;
}
#pagetop a::before,
#pagetop a::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#pagetop a::before {
  width: 1px;
  height: 70px;
  background: #fff;
}
#pagetop a::after {
  width: 29px;
  height: 29px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
}

/* footer */
footer {
  background-color: #333333;
  padding: 0 2em;
  color: #fff;
  position: relative;
  z-index: 999;
}
footer a {
  color: #fff;
}
.nattou {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.footer_contents {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6em 0 3em;
}
.footer_contact {
  margin: 3em 0 0;
}
.footer_contact dt {
  margin: 0 0 5em 0;
  text-align: center;
}
.footer_contact dd {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_contact dd p {
  display: inline-block;
  vertical-align: middle;
}
.footer_contact dd a:after {
  content: "";
  display: inline-block;
  background-image: linear-gradient(-0deg, transparent 49%, #ccc 49%, #ccc 51%, transparent 51%, transparent);
  width: 2em;
  height: 2em;
  vertical-align: middle;
  margin: 0 1em;
}
.footer_contact dd p:last-child a:after {
  display: none;
}
.btn {
  border-radius: 3px;
  color: #fff;
  background-image: url(images/bg_btn.png);
  display: block;
  padding: 1em;
  background-size: cover;
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 264px;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
}
.btn:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.copy {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 2em 8em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .logo img {
    display: block;
    margin: 0 0 0.5em;
  }
  .nattougohan img {
    width: 50px;
    height: auto;
  }
  .main {
    padding: 1em 0 0;
  }
  .header_img img {
    width: 50vw;
    height: auto;
  }
  .border_line img {
    width: 50vw;
    height: auto;
  }
  .top_update {
    padding: 2em 0;
  }
  .top_update dl {
    display: block;
  }
  .top_update dt {
  justify-content: center;
  }
  .top_update dt:after {
    display: none;
  }
  .top_update span {
    font-size: 20px;
    font-size: 2.0rem;
  }
  .tsushinWrap>div {
    padding: 2em;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
  }
  .tsushinWrap>div p br {
    display: none;
  }
  article>div {
    margin: 0 auto;
  }
  section div {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
    padding: 4em 3em;
  }
  .shop_list a br {
    display: block;
  }
  .shop_listWrap li {
    width: 48%;
  }
  .footer_listWrap li {
    width: 49%;
  }
  .footer_listWrap li:nth-child(10) {
    margin-left: 0;
    margin-right: 0;
  }
  .footer_listWrap .link_dealer {
    width: 100%;
  }
  #pagetop {
    position: static;
  }
  .listWrap h2 {
    letter-spacing: 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .event_contents p br {
    display: none;
  }
  .footer_contact dd a:after {
    display: none;
  }
  .footer_contact dd {
    display: block;
    text-align: center;
  }
  .footer_contact dd p {
    display: block;
    border-bottom: 1px solid #999;
    padding: 0.5em;
  }
  .footer_contact dd p:last-child {
    border: 0;
  }
  .copy {
    padding: 0 1em 2em;
    text-align: left;
  }
  .backtop {
    right: 0;
  }
  .animatedsp {
   transform: translateZ(0);
    -webkit-transform: translateZ(0);
    animation-name: example2;
    animation-duration: .8s;
    position: relative;
    display: block;
    opacity: 1 !important;
  }
  @keyframes example2 {
    from {
      opacity: 0;
      top: 0;
    }
    to {
      opacity: 1;
      top: 0;
    }
  }
  aside>div {
    margin: 0 auto 3em;
  }
}