@charset "UTF-8";
/* メデイアクエリ */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/* カラー */
/* 店舗カラー */
.nanakuma,
.cat-item-nanakuma {
  background-color: #f20017;
}

.iizuka,
.cat-item-iizuka {
  background-color: #249a51;
}

.kokura,
.cat-item-kokura {
  background-color: #ed5184;
}

.hamamachi,
.cat-item-hamamachi {
  background-color: #4686e6;
}

.happy-kokura,
.cat-item-happy-kokura {
  background-color: #ff8c42;
}

.maidreamin {
  background-color: #ffb414;
}

.shop--all {
  background-color: #333;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.025em;
  background-color: #fefefe;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* ハンバーガーメニュー */
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    z-index: 999;
  }
  header .nav--wrap {
    width: 100%;
    position: relative;
  }
  header .nav--wrap .burgerBtn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #333;
  }
  header .nav--wrap .burgerBtn .burgerArea {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .nav--wrap .burgerBtn .burgerArea span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    left: 17px;
    height: 2px;
    background-color: #fff;
    width: 50%;
  }
  header .nav--wrap .burgerBtn .burgerArea span:nth-of-type(1) {
    top: 20px;
  }
  header .nav--wrap .burgerBtn .burgerArea span:nth-of-type(2) {
    top: 28px;
  }
  header .nav--wrap .burgerBtn .burgerArea span:nth-of-type(3) {
    top: 36px;
  }
  header .nav--wrap .burgerBtn.active .burgerArea span:nth-of-type(1) {
    top: 24px;
    left: 17px;
    -webkit-transform: translateY(6px) rotate(-135deg);
            transform: translateY(6px) rotate(-135deg);
    width: 50%;
    background-color: #fff;
  }
  header .nav--wrap .burgerBtn.active .burgerArea span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav--wrap .burgerBtn.active .burgerArea span:nth-of-type(3) {
    top: 36px;
    left: 17px;
    -webkit-transform: translateY(-6px) rotate(135deg);
            transform: translateY(-6px) rotate(135deg);
    width: 50%;
    background-color: #fff;
  }
  header .nav--wrap .menuArea--sp {
    display: none;
    position: fixed;
    z-index: 998;
    top: 60px;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    margin: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  header .nav--wrap .menuArea--sp ul {
    display: block;
    width: 100%;
    padding: 40px 20px 20px;
    margin-right: 0;
  }
  header .nav--wrap .menuArea--sp ul li {
    padding: 20px 15px;
    border-bottom: 1px solid #fff;
    margin-right: 0;
  }
  header .nav--wrap .menuArea--sp ul li a {
    color: #fff;
    font-size: 1.4rem;
    position: relative;
  }
  header .nav--wrap .menuArea--sp ul li a img {
    display: inline-block;
    margin-right: 10px;
    width: 14px;
    height: auto;
    vertical-align: -3px;
  }
  header .nav--wrap .menuArea--sp ul li a::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  header .nav--wrap .menuArea--sp.active {
    display: block;
  }
}
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  -webkit-box-shadow: 0 2px 10px rgba(249, 248, 248, 0.8);
          box-shadow: 0 2px 10px rgba(249, 248, 248, 0.8);
}
@media screen and (max-width: 768px) {
  header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
header .inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .inner {
    height: 60px;
    background-color: #000;
  }
}
header .inner h1 {
  margin-right: 20px;
}
header .inner h1 a {
  display: block;
  width: 200px;
  height: 80px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  header .inner h1 a {
    width: 120px;
    height: 60px;
    padding-left: 20px;
  }
}
header .inner h1 a img {
  width: 112px;
}
@media screen and (max-width: 768px) {
  header .inner h1 a img {
    width: 96px;
  }
}
header .inner nav li:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  header .inner nav li:not(:last-child) {
    margin-right: 0;
  }
}
header .inner nav li a {
  display: block;
  text-decoration: none;
  color: #333;
}
header .inner nav li a img {
  width: auto;
  height: 25px;
  padding-bottom: 3px;
  margin: 0 auto;
}
header .inner nav li a:hover img {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header .inner nav li a:hover img {
    -webkit-transform: none;
            transform: none;
  }
}
header .inner nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-right: 20px;
}
header .inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
  margin-right: 60px;
}
header .inner nav .navBtn a {
  width: 180px;
  height: 40px;
  border-radius: 20px;
  background-color: #cc0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}
header .inner nav .navBtn a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
header .inner nav .navBtn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header .inner nav .navBtn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}
main .page--header {
  width: 100%;
}
main .page--header .page--title {
  width: 100%;
  min-height: 200px;
}
@media screen and (max-width: 768px) {
  main .page--header .page--title {
    min-height: 110px;
  }
}
main .page--header .page--title .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .page--header .page--title .inner {
    padding: 40px 20px 60px;
  }
}
main .page--header .page--title .inner h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .page--header .page--title .inner h2 {
    font-size: 2.6rem;
  }
}
main .page--header .page--title .inner h2 span {
  font-family: "Audiowide";
  display: block;
  font-size: 1.2rem;
}
main .page--header .page--title .inner .bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  main .page--header .page--title .inner .bread {
    bottom: 10px;
  }
}
main .page--header .page--title .inner .bread li {
  margin-right: 20px;
}
main .page--header .page--title .inner .bread li:last-child {
  color: #fff;
  font-size: 1.2rem;
}
main .page--header .page--title .inner .bread li:not(:last-child) a::after {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: -11px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main .page--header .page--title .inner .bread li a {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
}
main .page--header .page--title .inner .bread li a:hover {
  text-decoration: underline;
}

main .page--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  main .page--nav ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
  }
}
main .page--nav ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  main .page--nav ul li {
    width: calc((100% - 10px) / 3);
    margin-bottom: 10px;
  }
}
main .page--nav ul li a {
  display: block;
  padding: 10px 38px;
  outline: 1px solid #fff;
  outline-offset: -4px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .page--nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
    font-size: 1.2rem;
    line-height: 1.2;
    vertical-align: middle;
    height: 50px;
  }
}
main .page--nav ul li .maidreamin {
  outline: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  main .page--nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
main .page--nav.fixed {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  z-index: 1;
  top: 80px;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  main .page--nav.fixed {
    top: 60px;
    padding-bottom: 10px;
  }
}
main .page--nav.fixed ul {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

#etc--bnr {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #etc--bnr {
    margin-top: 20px;
  }
}
#etc--bnr .inner {
  width: 100%;
  max-width: 1120px;
  padding: 0% 20px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #etc--bnr .inner:first-child a img {
    width: 200%;
    max-width: 200%;
  }
}
@media screen and (max-width: 768px) {
  #etc--bnr .inner {
    margin-bottom: 20px;
  }
}
#etc--bnr .inner .banner {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
}
#etc--bnr .inner .banner a {
  display: block;
  overflow: hidden;
}
#etc--bnr .inner .banner a:hover img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #etc--bnr .inner .banner a:hover img {
    -webkit-transform: none;
            transform: none;
  }
}
#etc--bnr .inner:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #etc--bnr .inner:nth-of-type(2) {
    display: block;
  }
}
#etc--bnr .inner:nth-of-type(2) .banner {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 768px) {
  #etc--bnr .inner:nth-of-type(2) .banner {
    width: 100%;
    margin-bottom: 10px;
  }
}
#etc--bnr h4 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #etc--bnr h4 {
    font-size: 2rem;
    width: 100%;
  }
}
#etc--bnr h4 span {
  font-family: "Audiowide";
  display: block;
  font-size: 1rem;
}

footer {
  color: #fff;
  background-color: #000;
}
footer .inner {
  width: 100%;
  max-width: 1120px;
  margin: 120px auto 0;
  padding: 60px 20px 30px;
}
@media screen and (max-width: 768px) {
  footer .inner {
    margin-top: 60px;
  }
}
footer .inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .inner .wrap {
    display: block;
  }
}
footer .inner .wrap .address {
  width: 40%;
  margin-right: 40px;
}
footer .inner .wrap .footer--logo {
  width: 140px;
}
footer .inner .wrap .footer--logo a {
  display: block;
}
footer .inner .wrap .txt {
  margin-top: 20px;
}
footer .inner .wrap .txt span {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .inner .wrap .footer--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .inner .wrap .footer--nav ul li ul a {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 20px;
  position: relative;
}
footer .inner .wrap .footer--nav ul li ul a::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
footer .inner .wrap .footer--nav ul:not(:last-child) {
  margin-right: 40px;
}
footer .inner .wrap .footer--nav ul li {
  margin-top: 10px;
}
footer .inner .wrap .footer--nav ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
footer .inner .copyright {
  margin-top: 40px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .inner .copyright {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  footer .inner {
    padding: 40px 20px 20px;
  }
}
footer .inner .wrap .footer--nav.sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
footer .inner .wrap .footer--nav.sp ul li {
  width: calc((100% - 10px) / 2);
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
footer .inner .wrap .footer--nav.sp ul li a {
  display: block;
  font-size: 1.4rem;
  position: relative;
  padding-left: 5px;
}
footer .inner .wrap .footer--nav.sp ul li a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
footer .inner .wrap .footer--nav.sp ul li a img {
  display: inline-block;
  margin-right: 8px;
  width: 12px;
  height: auto;
  vertical-align: 0;
}
@media screen and (max-width: 768px) {
  footer .inner .wrap .address {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .wrap .address .footer--logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .wrap .address .txt {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .wrap .address .txt span {
    margin-bottom: 5px;
  }
}

/* css結合 */
/* TOP */
#top--prize,
#top--event,
#top--game {
  background-color: #f9f8f8;
}
#top--prize .inner,
#top--event .inner,
#top--game .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  #top--prize .inner,
  #top--event .inner,
  #top--game .inner {
    padding: 40px 20px;
  }
}
#top--prize .inner h2,
#top--event .inner h2,
#top--game .inner h2 {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top--prize .inner h2,
  #top--event .inner h2,
  #top--game .inner h2 {
    font-size: 2rem;
  }
}
#top--prize .inner h2 span,
#top--event .inner h2 span,
#top--game .inner h2 span {
  font-family: "Audiowide";
  display: inline-block;
  width: 100px;
  background-color: #333;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 2px 0;
  position: absolute;
  top: -12px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top--prize .inner h2 span,
  #top--event .inner h2 span,
  #top--game .inner h2 span {
    width: 60px;
  }
}
#top--prize .inner .wrap,
#top--event .inner .wrap,
#top--game .inner .wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap,
  #top--event .inner .wrap,
  #top--game .inner .wrap {
    margin-top: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#top--prize .inner .wrap .item,
#top--event .inner .wrap .item,
#top--game .inner .wrap .item {
  width: calc((100% - 80px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
#top--prize .inner .wrap .item:not(:nth-child(5n)),
#top--event .inner .wrap .item:not(:nth-child(5n)),
#top--game .inner .wrap .item:not(:nth-child(5n)) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item:not(:nth-child(5n)),
  #top--event .inner .wrap .item:not(:nth-child(5n)),
  #top--game .inner .wrap .item:not(:nth-child(5n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item,
  #top--event .inner .wrap .item,
  #top--game .inner .wrap .item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 80px;
  }
  #top--prize .inner .wrap .item:not(:nth-child(2n)),
  #top--event .inner .wrap .item:not(:nth-child(2n)),
  #top--game .inner .wrap .item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
#top--prize .inner .wrap .item ul.shop--name,
#top--event .inner .wrap .item ul.shop--name,
#top--game .inner .wrap .item ul.shop--name {
  position: absolute;
  top: -20px;
  right: 0;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item ul.shop--name,
  #top--event .inner .wrap .item ul.shop--name,
  #top--game .inner .wrap .item ul.shop--name {
    padding: 0;
    top: -24px;
  }
}
#top--prize .inner .wrap .item ul.shop--name li,
#top--event .inner .wrap .item ul.shop--name li,
#top--game .inner .wrap .item ul.shop--name li {
  height: 40px;
  padding: 0 10px;
  outline: 1px solid #fff;
  outline-offset: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item ul.shop--name li,
  #top--event .inner .wrap .item ul.shop--name li,
  #top--game .inner .wrap .item ul.shop--name li {
    font-size: 1rem;
    height: auto;
    padding: 2px 5px;
    outline: none;
    outline-offset: 0;
  }
}
#top--prize .inner .wrap .item ul.shop--name li:not(:last-child),
#top--event .inner .wrap .item ul.shop--name li:not(:last-child),
#top--game .inner .wrap .item ul.shop--name li:not(:last-child) {
  margin-right: 5px;
}
#top--prize .inner .wrap .item img,
#top--event .inner .wrap .item img,
#top--game .inner .wrap .item img {
  height: 362px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item img,
  #top--event .inner .wrap .item img,
  #top--game .inner .wrap .item img {
    height: 254px;
  }
}
#top--prize .inner .wrap .item h3,
#top--event .inner .wrap .item h3,
#top--game .inner .wrap .item h3 {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  text-align: justify;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item h3,
  #top--event .inner .wrap .item h3,
  #top--game .inner .wrap .item h3 {
    font-size: 1.6rem;
  }
}
#top--prize .inner .wrap .item p,
#top--event .inner .wrap .item p,
#top--game .inner .wrap .item p {
  color: #333;
  text-align: justify;
  margin: 10px 0 50px;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .wrap .item p,
  #top--event .inner .wrap .item p,
  #top--game .inner .wrap .item p {
    margin: 10px 0 20px;
  }
}
#top--prize .inner .wrap .item .date,
#top--event .inner .wrap .item .date,
#top--game .inner .wrap .item .date {
  font-family: "Noto Sans JP";
  margin-top: auto;
  width: 100%;
  color: #8c8c8c;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
}
#top--prize .inner .wrap .item .date::before,
#top--event .inner .wrap .item .date::before,
#top--game .inner .wrap .item .date::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  top: 25px;
  left: 0;
}
#top--prize .inner .wrap .item .date::after,
#top--event .inner .wrap .item .date::after,
#top--game .inner .wrap .item .date::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 23px;
  right: 0;
}
#top--prize .inner .btn,
#top--event .inner .btn,
#top--game .inner .btn {
  width: 240px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .btn,
  #top--event .inner .btn,
  #top--game .inner .btn {
    width: 80%;
    margin: 0 auto;
  }
}
#top--prize .inner .btn a,
#top--event .inner .btn a,
#top--game .inner .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .btn a,
  #top--event .inner .btn a,
  #top--game .inner .btn a {
    font-size: 1.4rem;
  }
}
#top--prize .inner .btn a::after,
#top--event .inner .btn a::after,
#top--game .inner .btn a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#top--prize .inner .btn a:hover,
#top--event .inner .btn a:hover,
#top--game .inner .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #top--prize .inner .btn a:hover,
  #top--event .inner .btn a:hover,
  #top--game .inner .btn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}

#top--prize .wrap,
#top--event .wrap {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  #top--prize .wrap,
  #top--event .wrap {
    margin-top: 40px !important;
  }
}

#top--event {
  background-color: transparent;
}

#top--game .inner .wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#top--game .inner .wrap .item h3 {
  text-align: left;
}
#top--game .inner .wrap .item img {
  height: 144px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top--game .inner .wrap .item img {
    height: 104px;
  }
}
#top--game .inner .wrap .item ul {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 !important;
  margin-bottom: 20px;
}
#top--game .inner .wrap .item ul li {
  margin-bottom: 5px;
}
#top--game .inner .wrap .item ul li .ico--shop {
  width: 56px;
  height: 56px;
  outline: 1px solid #fff;
  outline-offset: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

#top--game .parts--wrap,
#game .parts--wrap {
  margin-top: auto;
}

#top--shop .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
@media screen and (max-width: 768px) {
  #top--shop .inner {
    padding: 40px 20px 20px;
  }
}
#top--shop .inner h2 {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top--shop .inner h2 {
    font-size: 2rem;
  }
}
#top--shop .inner h2 span {
  font-family: "Audiowide";
  display: inline-block;
  width: 100px;
  background-color: #333;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 2px 0;
  position: absolute;
  top: -12px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top--shop .inner h2 span {
    width: 60px;
  }
}
#top--shop .inner .wrap {
  margin-top: 40px;
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
}
@media screen and (max-width: 768px) {
  #top--shop .inner .wrap {
    margin-top: 20px;
  }
}
#top--shop .inner ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  max-width: 1080px;
}
#top--shop .inner ul li {
  width: auto;
  position: relative;
}
#top--shop .inner ul li a {
  display: block;
  overflow: hidden;
}
#top--shop .inner ul li a span {
  font-family: "Audiowide";
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 4%;
  left: 4%;
}
@media screen and (max-width: 768px) {
  #top--shop .inner ul li a span {
    font-size: 1rem;
  }
}
#top--shop .inner ul li a:hover img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #top--shop .inner ul li a:hover img {
    -webkit-transform: none;
            transform: none;
  }
}
#top--shop .inner ul li:nth-child(-n+3) {
  grid-column: span 4;
}
#top--shop .inner ul li:nth-child(n+4) {
  grid-column: span 3;
}
#top--shop .inner ul li:nth-child(5) span {
  position: absolute;
  top: calc(96% - 20px) !important;
}
@media screen and (max-width: 768px) {
  #top--shop .inner ul li:nth-child(5) span {
    top: calc(96% - 32px) !important;
  }
}
#top--shop .inner ul li:nth-child(4) span {
  position: absolute;
  top: calc(96% - 20px) !important;
}
@media screen and (max-width: 768px) {
  #top--shop .inner ul li:nth-child(4) span {
    top: calc(96% - 8px) !important;
  }
}
#top--shop .inner ul li:nth-child(6) span, #top--shop .inner ul li:nth-child(7) span {
  position: absolute;
  top: calc(96% - 20px) !important;
}
#top--shop h3 {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #top--shop h3 {
    font-size: 2rem;
  }
}
#top--shop h3 span {
  font-family: "Audiowide";
  display: block;
  font-size: 1rem;
}

#top--shop .wrap.sp a {
  color: #333;
  display: block;
}
#top--shop .wrap.sp a ul li span {
  font-family: "Audiowide";
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 4%;
  left: 4%;
}
#top--shop .wrap.sp a ul li:nth-child(4) span {
  position: absolute;
  top: 78%;
}
#top--shop .wrap.sp a ul li:nth-child(5) span, #top--shop .wrap.sp a ul li:nth-child(6) span {
  position: absolute;
  top: 64%;
}

#top--bnr .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top--bnr .inner {
    display: block;
    padding: 0 20px;
  }
}
#top--bnr .inner .banner {
  width: calc((100% - 40px) / 2);
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
}
@media screen and (max-width: 768px) {
  #top--bnr .inner .banner {
    width: 100%;
    margin-bottom: 10px;
  }
}
#top--bnr .inner .banner a {
  display: block;
  overflow: hidden;
}
#top--bnr .inner .banner a:hover img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #top--bnr .inner .banner a:hover img {
    -webkit-transform: none;
            transform: none;
  }
}
#top--bnr .inner .banner h4 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #top--bnr .inner .banner h4 {
    font-size: 2rem;
    width: 100%;
  }
}
#top--bnr .inner .banner h4 span {
  font-family: "Audiowide";
  display: block;
  font-size: 1rem;
}

/* スライダー */
#mainSlider .slider {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
#mainSlider .thumbnail {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  #mainSlider .thumbnail {
    max-width: 90%;
  }
}
#mainSlider .thumbnail li:not(:last-child) {
  margin-right: 10px;
}
#mainSlider .thumbnail .slick-slide {
  opacity: 0.5;
}
#mainSlider .thumbnail .slick-current {
  opacity: 1;
}

#mainSlider .thumbnail .slick-arrow {
  content: "" !important;
}
#mainSlider .thumbnail .slick-arrow::before {
  content: "" !important;
  width: 16px !important;
  height: 16px !important;
  position: absolute;
  top: 0;
  left: 0;
}
#mainSlider .thumbnail .slick-prev {
  left: -10px;
}
#mainSlider .thumbnail .slick-prev::before {
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
}
#mainSlider .thumbnail .slick-next {
  right: -5px;
}
#mainSlider .thumbnail .slick-next::before {
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
}

/* 景品情報 */
main #prize .page--title {
  background: url(../images/prize-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#prize .page--nav ul,
#event .page--nav ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#prize .page--nav ul li,
#event .page--nav ul li {
  width: calc((100% - 15px) / 3);
  margin-bottom: 10px;
}
#prize .page--nav ul li:not(:nth-child(3n)),
#event .page--nav ul li:not(:nth-child(3n)) {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #prize .page--nav ul li,
  #event .page--nav ul li {
    width: calc((100% - 5px) / 2);
  }
  #prize .page--nav ul li:not(:nth-child(3n)),
  #event .page--nav ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  #prize .page--nav ul li:not(:nth-child(2n)),
  #event .page--nav ul li:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}
#prize .container,
#event .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #prize .container,
  #event .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
#prize .container .wrap,
#event .container .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap,
  #event .container .wrap {
    padding-top: 0;
  }
}
#prize .container .wrap .item,
#event .container .wrap .item {
  width: calc((100% - 60px) / 4);
  position: relative;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#prize .container .wrap .item:not(:nth-child(4n)),
#event .container .wrap .item:not(:nth-child(4n)) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item:not(:nth-child(4n)),
  #event .container .wrap .item:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item,
  #event .container .wrap .item {
    width: calc((100% - 10px) / 2);
  }
  #prize .container .wrap .item:not(:nth-child(2n)),
  #event .container .wrap .item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
#prize .container .wrap .item img,
#event .container .wrap .item img {
  height: 362px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item img,
  #event .container .wrap .item img {
    height: 254px;
  }
}
#prize .container .wrap .item h3,
#event .container .wrap .item h3 {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  text-align: justify;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item h3,
  #event .container .wrap .item h3 {
    font-size: 1.6rem;
  }
}
#prize .container .wrap .item p,
#event .container .wrap .item p {
  color: #333;
  text-align: justify;
  margin: 10px 0 50px;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item p,
  #event .container .wrap .item p {
    margin-bottom: 20px;
  }
}
#prize .container .wrap .item ul.prize_shop,
#prize .container .wrap .item ul.event_shop,
#prize .container .wrap .item ul.game_shop,
#event .container .wrap .item ul.prize_shop,
#event .container .wrap .item ul.event_shop,
#event .container .wrap .item ul.game_shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 5px;
  margin-bottom: 20px;
  position: absolute;
  top: -20px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item ul.prize_shop,
  #prize .container .wrap .item ul.event_shop,
  #prize .container .wrap .item ul.game_shop,
  #event .container .wrap .item ul.prize_shop,
  #event .container .wrap .item ul.event_shop,
  #event .container .wrap .item ul.game_shop {
    padding: 0;
    top: -24px;
  }
}
#prize .container .wrap .item ul.prize_shop li,
#prize .container .wrap .item ul.event_shop li,
#prize .container .wrap .item ul.game_shop li,
#event .container .wrap .item ul.prize_shop li,
#event .container .wrap .item ul.event_shop li,
#event .container .wrap .item ul.game_shop li {
  padding: 0 10px;
  height: 40px;
  outline: 1px solid #fff;
  outline-offset: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #prize .container .wrap .item ul.prize_shop li,
  #prize .container .wrap .item ul.event_shop li,
  #prize .container .wrap .item ul.game_shop li,
  #event .container .wrap .item ul.prize_shop li,
  #event .container .wrap .item ul.event_shop li,
  #event .container .wrap .item ul.game_shop li {
    font-size: 1rem;
    height: auto;
    padding: 2px 5px;
    outline: none;
    outline-offset: 0;
  }
}
#prize .container .wrap .item ul.prize_shop li:not(:last-child),
#prize .container .wrap .item ul.event_shop li:not(:last-child),
#prize .container .wrap .item ul.game_shop li:not(:last-child),
#event .container .wrap .item ul.prize_shop li:not(:last-child),
#event .container .wrap .item ul.event_shop li:not(:last-child),
#event .container .wrap .item ul.game_shop li:not(:last-child) {
  margin-right: 5px;
}
#prize .container .wrap .item .date,
#event .container .wrap .item .date {
  font-family: "Noto Sans JP";
  margin-top: auto;
  width: 100%;
  color: #8c8c8c;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
}
#prize .container .wrap .item .date::before,
#event .container .wrap .item .date::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  top: 25px;
  left: 0;
}
#prize .container .wrap .item .date::after,
#event .container .wrap .item .date::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 23px;
  right: 0;
}

#prize .container--single,
#event .container--single {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #prize .container--single,
  #event .container--single {
    display: block;
    padding-top: 30px;
  }
}
#prize .container--single .contents,
#event .container--single .contents {
  width: calc(100% - 350px);
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents,
  #event .container--single .contents {
    width: 100%;
  }
}
#prize .container--single .contents .page--nav,
#event .container--single .contents .page--nav {
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .page--nav,
  #event .container--single .contents .page--nav {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .page--nav ul,
  #event .container--single .contents .page--nav ul {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#prize .container--single .contents .page--nav ul li,
#event .container--single .contents .page--nav ul li {
  width: calc((100% - 15px) / 3);
  margin-bottom: 10px;
}
#prize .container--single .contents .page--nav ul li:not(:nth-child(3n)),
#event .container--single .contents .page--nav ul li:not(:nth-child(3n)) {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .page--nav ul li,
  #event .container--single .contents .page--nav ul li {
    width: calc((100% - 5px) / 2);
  }
  #prize .container--single .contents .page--nav ul li:not(:nth-child(3n)),
  #event .container--single .contents .page--nav ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  #prize .container--single .contents .page--nav ul li:not(:nth-child(2n)),
  #event .container--single .contents .page--nav ul li:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}
#prize .container--single .contents .page--nav ul li a,
#event .container--single .contents .page--nav ul li a {
  padding: 10px 0;
}
#prize .container--single .contents h3,
#event .container--single .contents h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents h3,
  #event .container--single .contents h3 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
#prize .container--single .contents h3 span,
#event .container--single .contents h3 span {
  display: block;
  color: #8c8c8c;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents h3 span,
  #event .container--single .contents h3 span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .wrap,
  #event .container--single .contents .wrap {
    margin-top: 20px;
  }
}
#prize .container--single .contents .wrap:not(:first-child),
#event .container--single .contents .wrap:not(:first-child) {
  margin-bottom: 20px;
}
#prize .container--single .contents .wrap h4,
#event .container--single .contents .wrap h4 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .wrap h4,
  #event .container--single .contents .wrap h4 {
    font-size: 1.6rem;
  }
}
#prize .container--single .contents .wrap h5,
#event .container--single .contents .wrap h5 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .contents .wrap h5,
  #event .container--single .contents .wrap h5 {
    font-size: 1.4rem;
  }
}
#prize .container--single .contents .wrap p a,
#event .container--single .contents .wrap p a {
  color: #333;
  text-decoration: underline;
}
#prize .container--single .contents .wrap img,
#event .container--single .contents .wrap img {
  margin: 10px 0 30px;
}
#prize .container--single .sidebar,
#event .container--single .sidebar {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .sidebar,
  #event .container--single .sidebar {
    width: 100%;
    margin: 80px 0 100px;
  }
}
#prize .container--single .sidebar .wrap,
#event .container--single .sidebar .wrap {
  margin-bottom: 40px;
}
#prize .container--single .sidebar .wrap .sidebar-ttl,
#event .container--single .sidebar .wrap .sidebar-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .sidebar .wrap .sidebar-ttl,
  #event .container--single .sidebar .wrap .sidebar-ttl {
    font-size: 2rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
#prize .container--single .sidebar .wrap ul li,
#event .container--single .sidebar .wrap ul li {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #prize .container--single .sidebar .wrap ul li,
  #event .container--single .sidebar .wrap ul li {
    margin-bottom: 20px;
  }
}
#prize .container--single .sidebar .wrap ul li span,
#event .container--single .sidebar .wrap ul li span {
  display: block;
  color: #949494;
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 1px solid #8c8c8c;
  margin-bottom: 10px;
}
#prize .container--single .sidebar .wrap ul li a,
#event .container--single .sidebar .wrap ul li a {
  display: inline-block;
  color: #333;
}
#prize .container--single .sidebar .wrap ul li a:hover,
#event .container--single .sidebar .wrap ul li a:hover {
  text-decoration: underline;
}
#prize .container--single .sidebar .wrap:last-child li,
#event .container--single .sidebar .wrap:last-child li {
  margin-bottom: 10px;
}

#prize .btn--more,
#event .btn--more,
#game .btn--more {
  width: 240px;
  margin: 40px auto 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #prize .btn--more,
  #event .btn--more,
  #game .btn--more {
    margin-top: 0;
  }
}
#prize .btn--more::after,
#event .btn--more::after,
#game .btn--more::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#prize .btn--more.btn--close::after,
#event .btn--more.btn--close::after,
#game .btn--more.btn--close::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border: none;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#prize .skip--page,
#event .skip--page {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #prize .skip--page,
  #event .skip--page {
    margin-top: 40px;
  }
}
#prize .skip--page a,
#event .skip--page a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #cc0000;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 768px) {
  #prize .skip--page a,
  #event .skip--page a {
    font-size: 1.2rem;
  }
}
#prize .skip--page .prev a,
#event .skip--page .prev a {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #prize .skip--page .prev a,
  #event .skip--page .prev a {
    padding-left: 15px;
  }
}
#prize .skip--page .prev a::before,
#event .skip--page .prev a::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #prize .skip--page .prev a::before,
  #event .skip--page .prev a::before {
    width: 10px;
    height: 10px;
  }
}
#prize .skip--page .next a,
#event .skip--page .next a {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #prize .skip--page .next a,
  #event .skip--page .next a {
    padding-right: 15px;
  }
}
#prize .skip--page .next a::after,
#event .skip--page .next a::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 7px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #prize .skip--page .next a::after,
  #event .skip--page .next a::after {
    width: 10px;
    height: 10px;
  }
}

#prize .sidebar ul li,
#event .sidebar ul li {
  color: #333;
  background-color: #fff;
}

/* イベント */
main #event .page--title {
  background: url(../images/event-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

/* 店舗案内 */
main #game .page--title {
  background: url(../images/game-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}
main #game .page--nav ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main #game .page--nav ul li {
  width: calc((100% - 15px) / 3);
  margin-bottom: 10px;
}
main #game .page--nav ul li:not(:nth-child(3n)) {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  main #game .page--nav ul li {
    width: calc((100% - 5px) / 2);
  }
  main #game .page--nav ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  main #game .page--nav ul li:not(:nth-child(2n)) {
    margin-right: 5px;
  }
}

#game .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
#game .container .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#game .container .wrap .item {
  width: calc((100% - 60px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 100px;
}
#game .container .wrap .item:not(:nth-child(4n)) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 60px;
  }
  #game .container .wrap .item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
#game .container .wrap .item img {
  height: 144px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item img {
    height: 104px;
  }
}
#game .container .wrap .item h3 {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item h3 {
    font-size: 1.6rem;
  }
}
#game .container .wrap .item p {
  color: #333;
  text-align: justify;
  margin: 10px 0 50px;
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item p {
    margin-bottom: 20px;
  }
}
#game .container .wrap .item ul.game_shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
#game .container .wrap .item ul.game_shop li {
  height: 40px;
  padding: 0 10px;
  outline: 1px solid #fff;
  outline-offset: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #game .container .wrap .item ul.game_shop li {
    font-size: 1rem;
    height: auto;
    padding: 2px 5px;
    outline: none;
    outline-offset: 0;
  }
}
#game .container .wrap .item ul.game_shop li:not(:last-child) {
  margin-right: 5px;
}
#game .container .wrap .item .date {
  margin-top: auto;
  width: 100%;
  color: #8c8c8c;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
}
#game .container .wrap .item .date::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  top: 25px;
  left: 0;
}
#game .container .wrap .item .date::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 23px;
  right: 0;
}

/* 中古遊技機器買取販売について */
#playequipment .page--title {
  background: url(../images/playequipment-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#playequipment .contents {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #playequipment .contents {
    padding: 40px 20px 40px;
  }
}
#playequipment .contents .summary h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .summary h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#playequipment .contents .summary h3::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  bottom: 0;
  left: 0;
}
#playequipment .contents .summary h3::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 53px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .summary h3::after {
    top: 37px;
  }
}
#playequipment .contents .summary figure {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #playequipment .contents .summary figure {
    width: 100%;
    margin-top: 20px;
  }
}
#playequipment .contents .item--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#playequipment .contents .item--wrap .item {
  width: calc((100% - 50px) / 2);
  margin-top: 80px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .item--wrap .item {
    width: calc((100% - 20px) / 2);
    margin-top: 40px;
    padding-bottom: 20px;
  }
}
#playequipment .contents .item--wrap .item::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  bottom: 0;
  left: 0;
}
#playequipment .contents .item--wrap .item::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: 0;
}
#playequipment .contents .item--wrap .item h4 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .item--wrap .item h4 {
    font-size: 1.6rem;
    padding-left: 10px;
  }
}
#playequipment .contents .btn {
  width: 420px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .btn {
    width: 80%;
    margin: 60px auto 0;
  }
}
#playequipment .contents .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 14px 0 14px 20px;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .btn a {
    font-size: 1.4rem;
  }
}
#playequipment .contents .btn a::before {
  display: inline-block;
  content: "";
  width: 26px;
  height: 18px;
  background: url(../images/ico-mail01.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 22px;
  left: 88px;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .btn a::before {
    width: 22px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-420%, -50%);
            transform: translate(-420%, -50%);
  }
}
#playequipment .contents .btn a::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 34px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #playequipment .contents .btn a::after {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
  }
}
#playequipment .contents .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #playequipment .contents .btn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}

/* 中古遊技機器買取販売について */
#property .page--title {
  background: url(../images/property-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#property .contents {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #property .contents {
    padding: 40px 20px 40px;
  }
}
#property .contents .summary h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #property .contents .summary h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#property .contents .summary h3::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  bottom: 0;
  left: 0;
}
#property .contents .summary h3::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 53px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #property .contents .summary h3::after {
    top: 37px;
  }
}
#property .contents .summary figure {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #property .contents .summary figure {
    width: 100%;
    margin-top: 20px;
  }
}
#property .contents .btn {
  width: 420px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #property .contents .btn {
    width: 80%;
    margin: 60px auto 0;
  }
}
#property .contents .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 14px 0 14px 20px;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  #property .contents .btn a {
    font-size: 1.4rem;
  }
}
#property .contents .btn a::before {
  display: inline-block;
  content: "";
  width: 26px;
  height: 18px;
  background: url(../images/ico-mail01.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 22px;
  left: 88px;
}
@media screen and (max-width: 768px) {
  #property .contents .btn a::before {
    width: 22px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-420%, -50%);
            transform: translate(-420%, -50%);
  }
}
#property .contents .btn a::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 34px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #property .contents .btn a::after {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
  }
}
#property .contents .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #property .contents .btn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}

#property .contents .guidance {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance {
    margin-top: 40px;
  }
}
#property .contents .guidance .guidance--wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap {
    margin-bottom: 40px;
  }
}
#property .contents .guidance .guidance--wrap h4 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap h4 {
    font-size: 1.8rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
#property .contents .guidance .guidance--wrap h4 span {
  color: #8c8c8c;
  font-size: 1.6rem;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap h4 span {
    display: block;
    font-size: 1.2rem;
    padding-left: 0;
    padding-top: 5px;
  }
}
#property .contents .guidance .guidance--wrap .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .wrap {
    display: block;
  }
}
#property .contents .guidance .guidance--wrap .wrap figure {
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .wrap figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#property .contents .guidance .guidance--wrap .wrap .txt--wrap {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .wrap .txt--wrap {
    width: 100%;
  }
}
#property .contents .guidance .guidance--wrap .wrap .txt--wrap h5 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .wrap .txt--wrap h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#property .contents .guidance .guidance--wrap .wrap .txt--wrap p span {
  color: #cc0000;
  font-weight: 500;
}
#property .contents .guidance .guidance--wrap .container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container {
    margin-top: 20px;
    display: block;
  }
}
#property .contents .guidance .guidance--wrap .container .item {
  width: calc((100% - 50px) / 2);
  padding: 40px;
  background-color: #f9f8f8;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
#property .contents .guidance .guidance--wrap .container .item h6 {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
  padding-left: 44px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item h6 {
    font-size: 1.8rem;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
#property .contents .guidance .guidance--wrap .container .item h6 span {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 30px;
  background-color: #333;
  border-radius: 5px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item h6 span {
    width: 20px;
    height: 20px;
    font-size: 1.4rem;
    line-height: 20px;
    top: 6px;
  }
}
#property .contents .guidance .guidance--wrap .container .item p {
  text-align: justify;
}
#property .contents .guidance .guidance--wrap .container .item .caption {
  margin: 20px 0 60px;
  color: #cc0000;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item .caption {
    margin-bottom: 40px;
  }
}
#property .contents .guidance .guidance--wrap .container .item .merit {
  margin-top: auto;
  font-weight: 500;
  padding: 35px 15px 15px 25px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item .merit {
    padding: 30px 14px 10px 20px;
  }
}
#property .contents .guidance .guidance--wrap .container .item .merit h7 {
  position: absolute;
  top: -20px;
  left: -15px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 30px 0 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #cc0000;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item .merit h7 {
    font-size: 1.4rem;
    height: 26px;
    line-height: 26px;
    top: -10px;
  }
}
#property .contents .guidance .guidance--wrap .container .item .merit h7::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #8e0000;
}
#property .contents .guidance .guidance--wrap .container .item .merit h7::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 18px 10px 18px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item .merit h7::after {
    border-width: 13px 6px 13px 0px;
  }
}
#property .contents .guidance .guidance--wrap .container .item .merit ul li {
  text-align: justify;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #property .contents .guidance .guidance--wrap .container .item .merit ul li {
    margin-bottom: 5px;
  }
}
#property .contents .guidance .guidance--wrap .container .item .merit ul li::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 8px;
  height: 18px;
  border-right: 3px solid #cc0000;
  border-bottom: 3px solid #cc0000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 店舗案内 */
main #shop .page--title {
  background: url(../images/shop-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}
main #shop .page--nav ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main #shop .page--nav ul li {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  main #shop .page--nav ul li {
    margin-right: 0;
  }
  main #shop .page--nav ul li:not(:nth-child(3n)) {
    margin-right: 5px;
  }
}

#shop .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
#shop .container .shop--list01:not(:last-child) {
  margin-bottom: 80px;
}
#shop .container .shop--list01 h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2;
  padding-left: 15px;
  border-left: 4px solid #000;
  border-bottom: 1px solid #9d9d9d;
  margin-bottom: 40px;
  position: relative;
}
#shop .container .shop--list01 h3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  bottom: 8px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
#shop .container .shop--list01 h3 span {
  display: inline-block;
  font-size: 1.6rem;
  vertical-align: 4px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 span {
    font-size: 1.2rem;
    padding-right: 10px;
  }
}
#shop .container .shop--list01 h3 .line--btn {
  border: 2px solid #00c400;
}
#shop .container .shop--list01 h3 .line--btn.x {
  border: 2px solid #000;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 .line--btn.x {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#shop .container .shop--list01 h3 .line--btn.x a img {
  padding: 5px;
  background-color: #000;
}
#shop .container .shop--list01 h3 .line--btn.x p {
  color: #000;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 .line--btn {
    bottom: 6px;
  }
}
#shop .container .shop--list01 h3 .line--btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#shop .container .shop--list01 h3 .line--btn a img {
  width: 30px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 .line--btn a img {
    width: 24px;
    height: 24px;
  }
}
#shop .container .shop--list01 h3 .line--btn a p {
  color: #00c400;
  font-size: 1.6rem;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 h3 .line--btn a p {
    font-size: 1.2rem;
  }
}
#shop .container .shop--list01 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper {
    display: block;
  }
}
#shop .container .shop--list01 .wrapper .wrap {
  width: calc(100% - 450px);
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper .wrap {
    width: 100%;
  }
}
#shop .container .shop--list01 .wrapper table {
  width: 50%;
  border: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper table {
    margin-top: 30px;
    width: 100%;
  }
}
#shop .container .shop--list01 .wrapper table tr th {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  width: 120px;
  padding: 10px;
  background-color: #f2f2f2;
  vertical-align: middle;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
#shop .container .shop--list01 .wrapper table tr td {
  line-height: 1.8;
  padding: 10px 15px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper table tr td {
    padding: 10px;
  }
}
#shop .container .shop--list01 .wrapper table tr td:not(.ico--map) a {
  color: #569cf3;
  position: relative;
}
#shop .container .shop--list01 .wrapper table tr td:not(.ico--map) a::after {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #569cf3;
  border-right: 1px solid #569cf3;
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#shop .container .shop--list01 .wrapper table tr td:not(.ico--map) a:hover {
  text-decoration: underline;
}
#shop .container .shop--list01 .wrapper table tr .ico--map {
  position: relative;
}
#shop .container .shop--list01 .wrapper table tr .ico--map a {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper table tr .ico--map a {
    right: 10px;
  }
}
#shop .container .shop--list01 .wrapper table tr .ico--map a img {
  width: 20px;
  height: auto;
}
#shop .container .shop--list01 .wrapper .twitter--wrap {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #shop .container .shop--list01 .wrapper .twitter--wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
}

#shop .container .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 {
    margin-top: 40px;
  }
}
#shop .container .wrapper .shop--list02:not(:last-child) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02:not(:last-child) {
    margin-right: 0;
  }
}
#shop .container .wrapper .shop--list02 h3 {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 h3 {
    font-size: 1.2rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
#shop .container .wrapper .shop--list02 h3 span {
  display: inline-block;
  text-indent: -0.5em;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 h3 span {
    font-size: 2rem;
  }
}
#shop .container .wrapper .shop--list02 h3::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  bottom: 0;
  left: 0;
}
#shop .container .wrapper .shop--list02 h3::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: 0;
}
#shop .container .wrapper .shop--list02 table {
  margin-top: 30px;
  width: 100%;
  border: 1px solid #d6d6d6;
}
#shop .container .wrapper .shop--list02 table tr th {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  width: 120px;
  padding: 10px 15px;
  background-color: #f2f2f2;
  vertical-align: middle;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
#shop .container .wrapper .shop--list02 table tr td {
  line-height: 1.8;
  padding: 10px 15px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 table tr td {
    padding: 10px;
  }
}
#shop .container .wrapper .shop--list02 table tr .ico--map {
  position: relative;
}
#shop .container .wrapper .shop--list02 table tr .ico--map a {
  display: block;
  position: absolute;
  top: 35px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 table tr .ico--map a {
    right: 10px;
  }
}
#shop .container .wrapper .shop--list02 table tr .ico--map a img {
  width: 20px;
  height: auto;
}
#shop .container .wrapper .shop--list02 .btn {
  width: 240px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 .btn {
    margin-top: 30px;
  }
}
#shop .container .wrapper .shop--list02 .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 20px;
}
#shop .container .wrapper .shop--list02 .btn a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#shop .container .wrapper .shop--list02 .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #shop .container .wrapper .shop--list02 .btn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}

/* 会社概要 */
#company .page--title {
  background: url(../images/company-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#company .contents {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #company .contents {
    padding: 40px 20px;
  }
}
#company .contents .wrap:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap:not(:last-child) {
    margin-bottom: 60px;
  }
}
#company .contents .wrap h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 2;
  padding-left: 15px;
  border-left: 4px solid #000;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#company .contents .wrap h3::before {
  display: inline-block;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background-color: #8c8c8c;
  position: absolute;
  bottom: 0;
  left: 0;
}
#company .contents .wrap h3::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../images/ico-border.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 53px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap h3::after {
    top: 37px;
  }
}
#company .contents .wrap table {
  margin-top: 30px;
  width: 100%;
  border: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap table {
    margin-bottom: 30px;
  }
}
#company .contents .wrap table tr {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap table tr:first-child th {
    border-top: none;
  }
}
#company .contents .wrap table tr th {
  font-weight: 500;
  text-align: left;
  width: 240px;
  padding: 10px 15px;
  background-color: #f2f2f2;
  vertical-align: middle;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap table tr th {
    display: block;
    width: 100%;
  }
}
#company .contents .wrap table tr td {
  line-height: 1.8;
  padding: 10px 15px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap table tr td {
    display: block;
    width: 100%;
    border: none;
  }
}
#company .contents .wrap .access--map {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap .access--map {
    margin-top: 20px;
  }
}
#company .contents .wrap .access--map h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 25px;
  margin-bottom: 20px;
  position: relative;
}
#company .contents .wrap .access--map h4::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/ico-shop01.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap .access--map h4::before {
    top: 2px;
  }
}
@media screen and (max-width: 768px) {
  #company .contents .wrap .access--map h4 {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
#company .contents .wrap .access--map h4 span {
  font-size: 1.4rem;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap .access--map h4 span {
    font-size: 1.2rem;
    padding-left: 10px;
  }
}
#company .contents .wrap .access--map .map {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 25%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #company .contents .wrap .access--map .map {
    padding-top: 50%;
  }
}
#company .contents .wrap .access--map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* お問い合わせ */
#contact .page--title {
  background: url(../images/contact-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#contact .contents {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #contact .contents {
    padding: 40px 20px;
  }
}
#contact .contents .txt {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #contact .contents .txt {
    font-size: 1.4rem;
  }
}
#contact .contents table {
  width: 100%;
}
#contact .contents table th {
  font-weight: 500;
  text-align: left;
  width: 260px;
  padding: 40px 20px;
  vertical-align: top;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #contact .contents table th {
    display: block;
    width: 100%;
    padding: 0 0 10px;
  }
}
#contact .contents table th span {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  vertical-align: 1px;
  padding: 1px 8px;
  background-color: #cc0000;
  margin-left: 5px;
}
#contact .contents table td {
  padding: 20px 0;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #contact .contents table td {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }
}
#contact .contents table td .radio {
  padding: 14px 20px 20px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #contact .contents table td .radio {
    display: block;
    padding: 15px 0;
  }
}
@media screen and (max-width: 768px) {
  #contact .contents table td .radio:not(:first-child) {
    padding-top: 0;
  }
}
#contact .contents table td .radio input[type=radio] {
  display: none;
}
#contact .contents table td .radio input[type=radio]:checked + .radio-label::after {
  opacity: 1;
}
#contact .contents table td .radio .radio-label {
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}
@media screen and (max-width: 768px) {
  #contact .contents table td .radio .radio-label {
    font-size: 1.4rem;
    padding: 0 0 0 30px;
  }
}
#contact .contents table td .radio .radio-label::before {
  background: #fff;
  border: 1px solid #cc0000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
#contact .contents table td .radio .radio-label::after {
  background: #cc0000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}
#contact .contents table td .radio:not(:first-child) {
  padding-left: 0;
}
#contact .contents table td input[type=text],
#contact .contents table td textarea {
  width: 100%;
  padding: 20px 25px;
  background-color: #f9f8f8;
  border: none;
  font-size: 1.6rem;
  color: #878787;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  #contact .contents table td input[type=text],
  #contact .contents table td textarea {
    font-size: 1.4rem;
    padding: 15px;
  }
}
#contact .contents table td input[type=text]:focus,
#contact .contents table td textarea:focus {
  outline: none;
  background-color: #fff1f1;
}
#contact .contents table td input[type=email] {
  width: 100%;
  padding: 20px 25px;
  background-color: #f9f8f8;
  border: none;
  font-size: 1.6rem;
  color: #878787;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact .contents table td input[type=email]:focus {
  outline: none;
  background-color: #fff1f1;
}

#contact .contents .agree {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree {
    margin-top: 40px;
  }
}
#contact .contents .agree .wrap {
  width: 80%;
  margin: 0 auto;
  height: 240px;
  border: 1px solid #d6d6d6;
  overflow-y: scroll;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #contact .contents .agree .wrap {
    height: 150px;
  }
}
#contact .contents .agree .wrap h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#contact .contents .agree .wrap ul {
  margin-top: 20px;
}
#contact .contents .agree .wrap ul li {
  margin-bottom: 20px;
}
#contact .contents .agree .wrap ul li h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .wrap ul li h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
#contact .contents .agree .wrap ul li p {
  padding-left: 32px;
}
#contact .contents .agree .wrap ul li ul {
  padding-left: 32px;
}
#contact .contents .agree .wrap ul li ul li {
  margin-bottom: 10px;
}
#contact .contents .agree .agree--check {
  margin-top: 40px;
  font-size: 1.6rem;
  text-align: center;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .agree--check {
    margin-top: 20px;
    font-size: 1.4rem;
    padding-left: 20px;
  }
}
#contact .contents .agree .agree--check input[type=checkbox] {
  display: none;
}
#contact .contents .agree .agree--check input[type=checkbox]:checked + .check--style::after {
  opacity: 1;
}
#contact .contents .agree .agree--check .check--style {
  position: relative;
  padding: 5px 32px;
  cursor: pointer;
}
#contact .contents .agree .agree--check .check--style::before {
  position: absolute;
  content: "";
  top: 56%;
  width: 16px;
  /* チェックボックスの幅 */
  height: 16px;
  /* チェックボックスの高さ */
  left: 5px;
  border: 1px solid #d6d6d6;
  /* チェックボックスの枠 */
  border-radius: 3px;
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .agree--check .check--style::before {
    margin-top: -9px;
  }
}
#contact .contents .agree .agree--check .check--style::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  width: 8px;
  height: 18px;
  border-right: 3px solid #cc0000;
  /* チェックマークの色 */
  border-bottom: 3px solid #cc0000;
  /* チェックマークの色 */
  margin-top: -12px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#contact .contents .agree .btn {
  width: 240px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .btn {
    margin-top: 40px;
  }
}
#contact .contents .agree .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 8px 0;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 20px;
}
#contact .contents .agree .btn a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #contact .contents .agree .btn a {
    font-size: 1.4rem;
  }
}
#contact .contents .agree .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px rgba(249, 248, 248, 0.8);
          box-shadow: 0 2px 10px rgba(249, 248, 248, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .mw_wp_form .mwform-radio-field {
  margin-left: 20px;
  vertical-align: -22px;
}
@media screen and (max-width: 768px) {
  #contact .mw_wp_form .mwform-radio-field {
    vertical-align: 5px;
    margin-left: 0;
    margin-right: 10px;
  }
}
#contact .mw_wp_form .mwform-radio-field label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 25px;
  position: relative;
  width: auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #contact .mw_wp_form .mwform-radio-field label {
    font-size: 1.4rem;
  }
}
#contact .mw_wp_form .mwform-radio-field label span {
  position: relative;
}
#contact .mw_wp_form .mwform-radio-field label span::before {
  background: #fff;
  border: 1px solid #cc0000;
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  top: 51%;
  left: -20px;
}
#contact .mw_wp_form .mwform-radio-field label span::after {
  background: #cc0000;
  border-radius: 50%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 51%;
  left: -17px;
  opacity: 0;
}
#contact .mw_wp_form .mwform-radio-field input[type=radio] {
  display: none;
}
#contact .mw_wp_form .mwform-radio-field input[type=radio]:checked + span::after {
  opacity: 1;
}

#contact .btn .confirm-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: block;
  width: 320px;
  margin: 60px auto 0;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #cc0000;
  border: 1px solid #cc0000;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

#contact .mw_wp_form .error {
  font-size: 1.2rem;
  color: #cc0000;
  display: block;
  margin-top: 5px;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  #contact .mw_wp_form .error {
    margin-left: 15px;
  }
}

#contact--confirm .page--title {
  background: url(../images/contact-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#contact--confirm .contents {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents {
    padding: 40px 20px;
  }
}
#contact--confirm .contents .txt {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .txt {
    font-size: 1.4rem;
  }
}
#contact--confirm .contents table {
  width: 100%;
}
#contact--confirm .contents table th {
  font-weight: 500;
  text-align: left;
  width: 260px;
  padding: 30px 20px;
  vertical-align: top;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents table th {
    display: block;
    width: 100%;
    padding: 15px;
  }
}
#contact--confirm .contents table th span {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  vertical-align: 1px;
  padding: 1px 8px;
  background-color: #cc0000;
  margin-left: 5px;
}
#contact--confirm .contents table td {
  padding: 30px 40px;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents table td {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
  }
}
#contact--confirm .contents .btn {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .btn {
    margin-top: 40px;
  }
}
#contact--confirm .contents .btn button.return {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #fff;
  border: 2px solid #333;
  color: #333;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .btn button.return {
    width: 90%;
    margin: 0 auto 20px;
  }
}
#contact--confirm .contents .btn button.return a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .btn button.return a {
    font-size: 1.4rem;
  }
}
#contact--confirm .contents .btn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #333;
  border: 2px solid #333;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .btn button {
    width: 90%;
    margin: 0 auto 20px;
    font-size: 1.4rem;
  }
}
#contact--confirm .contents .btn .confirm-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact--confirm .contents .btn .confirm-btn {
    font-size: 1.4rem;
    width: 90%;
    margin: 0 auto;
  }
}

#contact--confirm .agree {
  display: none;
}

#contact--thanks .page--title {
  background: url(../images/contact-title-img.jpg) center center no-repeat;
  background-color: #000;
  background-size: cover;
}

#contact--thanks .contents {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 20px 0;
  padding-bottom: 240px;
}
@media screen and (max-width: 768px) {
  #contact--thanks .contents {
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
}
#contact--thanks .contents h3 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contact--thanks .contents h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#contact--thanks .contents .btn {
  width: 240px;
  margin: 120px auto 0;
}
@media screen and (max-width: 768px) {
  #contact--thanks .contents .btn {
    margin-top: 60px;
  }
}
#contact--thanks .contents .btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  position: relative;
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #contact--thanks .contents .btn a {
    font-size: 1.4rem;
  }
}
#contact--thanks .contents .btn a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#contact--thanks .contents .btn a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
          box-shadow: 0 2px 10px rgba(202, 201, 201, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #contact--thanks .contents .btn a:hover {
    -webkit-transform: none;
            transform: none;
  }
}