@charset "UTF-8";
/* ===============================================
# mixins
=============================================== */
/* ===============================================
# colors
=============================================== */
/* ===============================================
# common - 全体に共通するスタイル
=============================================== */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-sp {
    display: none !important;
  }
}
@media (min-width:768px) and (max-width: 1199px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: #191919;
  font-family: ヒラギノ明朝 ProN, serif;
  line-height: 1.6875;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/* ===============================================
# header
=============================================== */
header {
  background: #f6f2ef;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.drawer--right header .drawer-hamburger {
  right: 3px;
}
header .drawer-hamburger-icon {
  background-color: #C6263A;
}
.drawer-open header .drawer-hamburger-icon {
  background-color: transparent;
}
header .drawer-hamburger-icon::before, header .drawer-hamburger-icon::after {
  background-color: #C6263A;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 70px;
  height: 115px;
  position: relative;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-inner {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    height: 60px;
  }
}

.header-logo {
  width: 120px;
  height: 70px;
  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;
}

.header-nav {
  margin-left: auto;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-nav {
    top: 60px;
    background-color: #f6f2ef;
    padding: 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    top: 60px;
    background-color: #f6f2ef;
    padding: 24px 0;
  }
}

@media screen and (min-width: 1200px) {
  .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .header-nav-item + .header-nav-item {
    margin-left: 46px;
  }
}

.header-nav-item-link {
  display: block;
  color: #191919;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1em;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-nav-item-link {
    color: #F8909C;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-item-link {
    color: #F8909C;
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .header-nav-item-link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .header-nav-item-link:hover {
    color: #C6263A;
  }
}

.header-reservation {
  width: 367px;
  height: 48px;
  border-radius: 0px 0px 10px 10px;
  background: #78DCDF;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 900;
  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;
  position: absolute;
  top: 0;
  right: 66px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-reservation:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-reservation {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-reservation {
    display: none;
  }
}

.header-reservation-side {
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-reservation-side:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-reservation-side {
    width: 45px;
    height: 386px;
    margin-top: 23px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    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;
    gap: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 10px 0px 0px 10px;
    background: #78DCDF;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 99;
  }
}
@media screen and (max-width: 767px) {
  .header-reservation-side {
    width: 34px;
    height: 210px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    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;
    gap: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 10px 0px 0px 10px;
    background: #78DCDF;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 99;
  }
}

.header-reservation-side__text {
  display: none;
}
@media (min-width:768px) and (max-width: 1199px) {
  .header-reservation-side__text {
    display: block;
    color: #FFF;
    font-size: 20px;
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 900;
    line-height: 22px;
    letter-spacing: 2.1px;
  }
}
@media screen and (max-width: 767px) {
  .header-reservation-side__text {
    display: block;
    color: #FFF;
    font-size: 11px;
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 900;
    line-height: 12px;
    letter-spacing: 1.2px;
  }
}

/* ===============================================
# sakura
=============================================== */
.sakura {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flower-petal {
  position: absolute;
  list-style: none;
  top: -50px;
  background: #ffdbed;
  border-radius: 0% 70%;
  -webkit-animation: fall 4s linear infinite, sway 2s ease-in-out infinite alternate;
          animation: fall 4s linear infinite, sway 2s ease-in-out infinite alternate;
  z-index: 100;
}

@-webkit-keyframes fall {
  to {
    top: 12815px;
  }
}

@keyframes fall {
  to {
    top: 12815px;
  }
}
@media (min-width:768px) and (max-width: 1199px) {
  @-webkit-keyframes fall {
    to {
      top: 9948px;
    }
  }
  @keyframes fall {
    to {
      top: 9948px;
    }
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes fall {
    to {
      top: 17050px;
    }
  }
  @keyframes fall {
    to {
      top: 17050px;
    }
  }
}
@-webkit-keyframes sway1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
}
@keyframes sway1 {
  from {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
}
@-webkit-keyframes sway2 {
  from {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway2 {
  from {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.flower-petal:nth-child(1) {
  left: 0%;
  width: 24px;
  height: 15px;
  -webkit-animation: fall 100s linear infinite, sway1 3s ease-in-out infinite alternate;
          animation: fall 100s linear infinite, sway1 3s ease-in-out infinite alternate;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(1) {
    -webkit-animation: fall 68s linear infinite, sway1 3s ease-in-out infinite alternate;
            animation: fall 68s linear infinite, sway1 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(1) {
    -webkit-animation: fall 166.5s linear infinite, sway1 3s ease-in-out infinite alternate;
            animation: fall 166.5s linear infinite, sway1 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
}

.flower-petal:nth-child(2) {
  left: 5%;
  width: 13px;
  height: 9px;
  -webkit-animation: fall 105s linear infinite, sway1 2s ease-in-out infinite alternate;
          animation: fall 105s linear infinite, sway1 2s ease-in-out infinite alternate;
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(2) {
    -webkit-animation: fall 78s linear infinite, sway1 2s ease-in-out infinite alternate;
            animation: fall 78s linear infinite, sway1 2s ease-in-out infinite alternate;
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(2) {
    -webkit-animation: fall 183.5s linear infinite, sway1 2s ease-in-out infinite alternate;
            animation: fall 183.5s linear infinite, sway1 2s ease-in-out infinite alternate;
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
  }
}

.flower-petal:nth-child(3) {
  left: 15%;
  width: 16px;
  height: 10px;
  -webkit-animation: fall 109s linear infinite, sway1 3.5s ease-in-out infinite alternate;
          animation: fall 109s linear infinite, sway1 3.5s ease-in-out infinite alternate;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(3) {
    -webkit-animation: fall 83s linear infinite, sway1 3.5s ease-in-out infinite alternate;
            animation: fall 83s linear infinite, sway1 3.5s ease-in-out infinite alternate;
    -webkit-animation-delay: 13s;
            animation-delay: 13s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(3) {
    -webkit-animation: fall 192s linear infinite, sway1 3.5s ease-in-out infinite alternate;
            animation: fall 192s linear infinite, sway1 3.5s ease-in-out infinite alternate;
    -webkit-animation-delay: 13s;
            animation-delay: 13s;
  }
}

.flower-petal:nth-child(4) {
  left: 30%;
  width: 16px;
  height: 10px;
  -webkit-animation: fall 108s linear infinite, sway2 4s ease-in-out infinite alternate;
          animation: fall 108s linear infinite, sway2 4s ease-in-out infinite alternate;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(4) {
    -webkit-animation: fall 81s linear infinite, sway2 4s ease-in-out infinite alternate;
            animation: fall 81s linear infinite, sway2 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(4) {
    -webkit-animation: fall 190s linear infinite, sway2 4s ease-in-out infinite alternate;
            animation: fall 190s linear infinite, sway2 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    left: 10%;
  }
}

.flower-petal:nth-child(5) {
  left: 40%;
  width: 16px;
  height: 10px;
  -webkit-animation: fall 100s linear infinite, sway1 4s ease-in-out infinite alternate;
          animation: fall 100s linear infinite, sway1 4s ease-in-out infinite alternate;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(5) {
    -webkit-animation: fall 74s linear infinite, sway1 4s ease-in-out infinite alternate;
            animation: fall 74s linear infinite, sway1 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(5) {
    -webkit-animation: fall 176.5s linear infinite, sway1 4s ease-in-out infinite alternate;
            animation: fall 176.5s linear infinite, sway1 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    left: 10%;
  }
}

.flower-petal:nth-child(6) {
  left: 55%;
  width: 24px;
  height: 15px;
  -webkit-animation: fall 101s linear infinite, sway2 3s ease-in-out infinite alternate;
          animation: fall 101s linear infinite, sway2 3s ease-in-out infinite alternate;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(6) {
    left: 10%;
    -webkit-animation: fall 74s linear infinite, sway2 3s ease-in-out infinite alternate;
            animation: fall 74s linear infinite, sway2 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(6) {
    left: 10%;
    -webkit-animation: fall 176.7s linear infinite, sway2 3s ease-in-out infinite alternate;
            animation: fall 176.7s linear infinite, sway2 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}

.flower-petal:nth-child(7) {
  left: 65%;
  width: 16px;
  height: 10px;
  -webkit-animation: fall 107s linear infinite, sway2 3.5s ease-in-out infinite alternate;
          animation: fall 107s linear infinite, sway2 3.5s ease-in-out infinite alternate;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(7) {
    -webkit-animation: fall 81s linear infinite, sway2 3.5s ease-in-out infinite alternate;
            animation: fall 81s linear infinite, sway2 3.5s ease-in-out infinite alternate;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(7) {
    -webkit-animation: fall 188.6s linear infinite, sway2 3.5s ease-in-out infinite alternate;
            animation: fall 188.6s linear infinite, sway2 3.5s ease-in-out infinite alternate;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    left: 12%;
  }
}

.flower-petal:nth-child(8) {
  left: 50%;
  width: 13px;
  height: 9px;
  -webkit-animation: fall 107s linear infinite, sway1 3s ease-in-out infinite alternate;
          animation: fall 107s linear infinite, sway1 3s ease-in-out infinite alternate;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(8) {
    -webkit-animation: fall 81s linear infinite, sway1 3s ease-in-out infinite alternate;
            animation: fall 81s linear infinite, sway1 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(8) {
    -webkit-animation: fall 188.6s linear infinite, sway1 3s ease-in-out infinite alternate;
            animation: fall 188.6s linear infinite, sway1 3s ease-in-out infinite alternate;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    left: 10%;
  }
}

.flower-petal:nth-child(9) {
  left: 80%;
  width: 16px;
  height: 10px;
  -webkit-animation: fall 100s linear infinite, sway2 4s ease-in-out infinite alternate;
          animation: fall 100s linear infinite, sway2 4s ease-in-out infinite alternate;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
@media (min-width:768px) and (max-width: 1199px) {
  .flower-petal:nth-child(9) {
    -webkit-animation: fall 74s linear infinite, sway2 4s ease-in-out infinite alternate;
            animation: fall 74s linear infinite, sway2 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    left: 30%;
  }
}
@media screen and (max-width: 767px) {
  .flower-petal:nth-child(9) {
    -webkit-animation: fall 176.5s linear infinite, sway2 4s ease-in-out infinite alternate;
            animation: fall 176.5s linear infinite, sway2 4s ease-in-out infinite alternate;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    left: 10%;
  }
}

/* ===============================================
# main
=============================================== */
.main {
  padding-top: 115px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.section {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 50px;
  }
}

/* ===============================================
# util
=============================================== */
.util-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
  }
}
.util-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 113px;
  border-radius: 100px;
  background: #C6263A;
  margin: 16px auto 0;
}

.util-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #C6263A;
  border: 1px solid #C6263A;
  background: #fff;
  display: inline-block;
  padding: 10px 54px;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
.util-link:hover {
  cursor: pointer;
}
.util-link.-active {
  background: #C6263A;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .util-link:not(.-submit):hover {
    background: #C6263A;
    color: #fff;
  }
}

/* ===============================================
# top
=============================================== */
.top {
  position: relative;
}
.top::after {
  content: "非公式";
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 30px;
  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;
  background-color: #F8909C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.575px;
}

.top-text {
  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;
  margin-top: 30px;
  font-weight: 700;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .top-text {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* ===============================================
# newzealand
=============================================== */
.newzealand-text {
  font-weight: 500;
  font-size: 25px;
  line-height: 2;
  margin-top: 20px;
  padding: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#fff7ab), to(#ffa9f9));
  background: linear-gradient(to right, #fff7ab 0%, #ffa9f9 100%);
  border: solid 1px #0fb8ce;
}
.newzealand-text p:nth-child(n+1) {
  padding-top: 13px;
}
@media screen and (max-width: 767px) {
  .newzealand-text {
    font-size: 15px;
    margin-top: 15px;
  }
}

/* ===============================================
# what_bingo
=============================================== */
.what_bingo-lead {
  margin-top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#fff7ab), to(#ffa9f9));
  background: linear-gradient(to right, #fff7ab 0%, #ffa9f9 100%);
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  padding: 20px;
  border: solid 1px #0fb8ce;
}
.what_bingo-lead p:nth-child(2) {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .what_bingo-lead {
    font-size: 15px;
    margin-top: 15px;
  }
  .what_bingo-lead p:nth-child(2) {
    padding-top: 25px;
  }
}

.what_bingo-footer {
  margin-top: 20px;
}

.what_bingo-title {
  color: #0fb8ce;
  font-weight: 700;
  margin-top: 20px;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .what_bingo-title {
    font-size: 18px;
  }
}

.what_bingo-text {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .what_bingo-text {
    font-size: 16px;
  }
}

/* ===============================================
# newzea_goods
=============================================== */
.newzea_goods-lead {
  margin-top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#fff7ab), to(#ffa9f9));
  background: linear-gradient(to right, #fff7ab 0%, #ffa9f9 100%);
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  border: solid 1px #0fb8ce;
}
@media screen and (max-width: 767px) {
  .newzea_goods-lead {
    font-size: 15px;
    margin-top: 15px;
  }
}

.newzea_goods-items {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #1B1F28;
}

.slide-items-1 {
  margin: 10px auto 0;
}
.slide-items-1 li img {
  width: 95%;
}
@media screen and (max-width: 767px) {
  .slide-items-1 li img {
    width: 100%;
  }
}

.newzea_goods-footer {
  margin-top: 20px;
}

.newzea_goods-title {
  color: #0fb8ce;
  font-weight: 700;
  margin-top: 20px;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .newzea_goods-title {
    font-size: 18px;
  }
}

.newzea_goods-text {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .newzea_goods-text {
    font-size: 16px;
  }
}

/* ===============================================
# bingo_goods
=============================================== */
.bingo_goods-lead {
  margin-top: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#fff7ab), to(#ffa9f9));
  background: linear-gradient(to right, #fff7ab 0%, #ffa9f9 100%);
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  border: solid 1px #0fb8ce;
}
@media screen and (max-width: 767px) {
  .bingo_goods-lead {
    font-size: 13px;
    margin-top: 15px;
  }
}

.bingo_goods-items {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #1B1F28;
}

.bingo_goods-item {
  width: calc(33.3% - 16px);
  background: -webkit-gradient(linear, left top, right top, from(#fff7ab), to(#ffa9f9));
  background: linear-gradient(to right, #fff7ab 0%, #ffa9f9 100%);
  padding: 18px;
  border-radius: 4px;
  border: solid 1px #0fb8ce;
}
.bingo_goods-item:hover .bingo_goods-img > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (min-width: 1200px) {
  .bingo_goods-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .bingo_goods-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media (min-width:768px) and (max-width: 1199px) {
  .bingo_goods-item {
    width: calc(50% - 12px);
  }
  .bingo_goods-item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .bingo_goods-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .bingo_goods-item {
    width: 100%;
    margin-left: 0;
  }
  .bingo_goods-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.bingo_goods-img {
  overflow: hidden;
  height: 254.89px;
  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 (min-width:768px) and (max-width: 1199px) {
  .bingo_goods-img {
    height: 217.58px;
  }
}
@media screen and (max-width: 767px) {
  .bingo_goods-img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.bingo_goods-img > img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.bingo_goods-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.bingo_goods-title {
  font-size: 20px;
  font-weight: 700;
  color: #6f7579;
  margin: 25px auto 9px;
  text-align: center;
}

/* ===============================================
# workshop
=============================================== */
@font-face {
  font-family: "Aozora Mincho";
  src: url("../fonts/AozoraMinchoBlack.ttf") format("truetype");
  src: url("../fonts/AozoraMinchoBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Aozora Mincho";
  src: url("../fonts/AozoraMinchoRegular.ttf") format("truetype");
  src: url("../fonts/AozoraMinchoRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Aozora Mincho";
  src: url("../fonts/AozoraMinchoMedium.ttf") format("truetype");
  src: url("../fonts/AozoraMinchoMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Aozora Mincho";
  src: url("../fonts/AozoraMincho-bold.ttf") format("truetype");
  src: url("../fonts/AozoraMincho-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
.workshop-top-title {
  background: url(../img/title5.png) no-repeat center center/cover;
  height: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding-top: 24.45%;
  position: relative;
}
.workshop-top-title h2 {
  position: absolute;
  top: 36.1%;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 5.04px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-top-title h2 {
    font-size: 23px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .workshop-top-title h2 {
    font-size: 5.8vw;
    font-weight: 500;
    top: 18.44%;
    letter-spacing: 0em;
  }
}
.workshop-top-title p {
  font-weight: 400;
  font-family: "Playball", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 3.36px;
  position: absolute;
  top: 61.34%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-top-title p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .workshop-top-title p {
    letter-spacing: 1.8px;
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.workshop-list {
  margin: 0 auto;
  text-align: center;
  width: 82.187%;
  margin-top: 20px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .workshop-list {
    width: 100%;
    margin-top: 15px;
  }
}

.workshop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  padding: 24px 0;
}
.workshop-item:first-child {
  padding: 0 0 24px;
}
.workshop-item:not(:first-child) {
  border-top: solid 1px #000;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-item {
    display: block;
    height: 807px;
    width: 328px;
    padding: 0;
  }
  .workshop-item:first-child {
    padding: 0;
  }
  .workshop-item:nth-child(2n) {
    margin-left: 24px;
    margin-left: auto;
  }
  .workshop-item:nth-child(n+3) {
    margin-top: 48px;
  }
  .workshop-item:not(:first-child) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .workshop-item {
    display: block;
    max-width: 345px;
    margin: 0 auto;
  }
  .workshop-item:first-child {
    padding: 0 0 24px;
  }
}

.workshop-item-picture {
  width: 300px;
  height: 300px;
}
.workshop-item-picture img {
  width: 100%;
  height: 100%;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-item-picture {
    width: 328px;
    height: 325px;
  }
}
@media screen and (max-width: 767px) {
  .workshop-item-picture {
    width: 100%;
    position: relative;
    padding-top: 100%;
  }
  .workshop-item-picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.workshop-item-body {
  margin-left: 24px;
  width: calc(100% - 300px);
  position: relative;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-item-body {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .workshop-item-body {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
}

.workshop-item-title {
  font-size: 32px;
  font-weight: 900;
  text-align: left;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-item-title {
    font-size: 20px;
    letter-spacing: 2.1px;
  }
}
@media screen and (max-width: 767px) {
  .workshop-item-title {
    font-size: 20px;
  }
}

.workshop-item-text {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: 20px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .workshop-item-text {
    margin-top: 32px;
    height: 418px;
  }
}
@media screen and (max-width: 767px) {
  .workshop-item-text {
    text-align: center;
    margin-top: 26px;
  }
}

.workshop-item-btn {
  width: 240px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #78DCDF;
  border-radius: 115px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.workshop-item-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .workshop-item-btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 40px;
  }
}

.workshop-timeSchedule {
  width: 82.18%;
  margin: 36px auto 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.workshop-timeSchedule:hover {
  opacity: 0.7;
  cursor: pointer;
}
.workshop-timeSchedule img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .workshop-timeSchedule {
    width: calc(100% + 30px);
    margin: 36px -15px;
  }
}

/* ===============================================
# reservation
=============================================== */
.reservation-top-title {
  background: url(../img/title6.png) no-repeat center center/cover;
  height: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding-top: 24.45%;
  position: relative;
}
.reservation-top-title h2 {
  position: absolute;
  top: 36.1%;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 5.04px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-top-title h2 {
    font-size: 23px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .reservation-top-title h2 {
    font-size: 5.8vw;
    font-weight: 500;
    top: 18.44%;
    letter-spacing: 0em;
  }
}
.reservation-top-title p {
  font-weight: 400;
  font-family: "Playball", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 3.36px;
  position: absolute;
  top: 61.34%;
  left: 0;
  width: 100%;
  text-align: center;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-top-title p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-top-title p {
    letter-spacing: 1.8px;
    font-size: 4vw;
  }
}

.reservation-list {
  margin: 0 auto;
  text-align: center;
  width: 82.187%;
  margin-top: 20px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-list {
    width: 100%;
    margin-top: 15px;
  }
}

.reservation-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  font-family: "Noto Serif JP", serif;
  padding: 24px 0;
}
.reservation-item:first-child {
  padding: 0 0 24px;
}
.reservation-item:not(:first-child) {
  border-top: solid 1px #000;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    height: 635px;
    width: 328px;
    padding: 0;
  }
  .reservation-item:first-child {
    padding: 0;
  }
  .reservation-item:nth-child(2n) {
    margin-left: 24px;
    margin-left: auto;
  }
  .reservation-item:nth-child(n+3) {
    margin-top: 48px;
  }
  .reservation-item:not(:first-child) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    max-width: 345px;
    margin: 0 auto;
  }
  .reservation-item:first-child {
    padding: 0 0 24px;
  }
}

.reservation-item-picture {
  width: 300px;
  height: 300px;
}
.reservation-item-picture img {
  width: 100%;
  height: 100%;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item-picture {
    width: 328px;
    height: 325px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item-picture {
    width: 345px;
    max-width: 345px;
    height: auto;
    margin: 0 auto;
  }
}

.reservation-item-body {
  margin-right: 24px;
  width: calc(100% - 300px);
  position: relative;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item-body {
    margin-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item-body {
    width: 100%;
    margin-right: 0;
    margin-top: 24px;
  }
}

.reservation-item-title {
  font-size: 32px;
  font-weight: 900;
  text-align: left;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item-title {
    font-size: 20px;
    letter-spacing: 2.1px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item-title {
    font-size: 20px;
  }
}

.reservation-item-text {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: 20px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item-text {
    margin-top: 32px;
    height: 244px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item-text {
    text-align: left;
    margin-top: 26px;
  }
}

.reservation-item-btn {
  width: 240px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #78DCDF;
  border-radius: 115px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.reservation-item-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media (min-width:768px) and (max-width: 1199px) {
  .reservation-item-btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .reservation-item-btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 40px;
  }
}

/* ===============================================
# member
=============================================== */
.member-items {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f6f2ef;
  font-family: "Crusoe Text", "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
}

.member-item {
  width: calc(33.3% - 16px);
  width: calc(33.3% - 29px);
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .member-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .member-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media (min-width:768px) and (max-width: 1199px) {
  .member-item {
    width: calc(50% - 12px);
  }
  .member-item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .member-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .member-item {
    width: 100%;
    margin-left: 0;
  }
  .member-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.member-img img {
  width: 55%;
  border-radius: 50%;
  margin: 0 auto;
}

.member-title {
  font-size: 35px;
  color: #191919;
  margin-top: 4px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .member-title {
    font-size: 33px;
  }
}

.member-text {
  font-size: 20px;
  color: #191919;
  line-height: 1.5;
  margin-top: 5px;
}

.member-button {
  text-align: center;
  margin-top: 26px;
  font-size: 25px;
}
.member-button a {
  text-decoration: none;
  display: inline-block;
  width: 230px;
  text-align: center;
  color: #191919;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#FFF7AD), to(#FFA9F9));
  background: linear-gradient(to right, #FFF7AD 0%, #FFA9F9 100%);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.member-button a:hover {
  opacity: 0.7;
}
.member-button.skill-market a {
  background: #FFC5E9;
}

.slide-items {
  width: 76%;
  height: 100%;
  margin: auto;
}
@media (min-width:768px) and (max-width: 1199px) {
  .slide-items {
    width: 80%;
  }
}

.slide-items div {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-prev {
  z-index: 10;
  left: -140px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .slick-prev {
    left: -105px;
  }
}

.slick-prev:before,
.slick-next:before {
  color: rgba(62, 161, 209, 0.7);
  font-size: 130px;
}
@media (min-width:768px) and (max-width: 1199px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 100px;
  }
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button:before {
  font-size: 35px;
  top: 6px;
}

/* ===============================================
# access
=============================================== */
.util-title {
  color: #C6263A;
}

.access {
  padding-bottom: 86px;
}
@media screen and (max-width: 767px) {
  .access {
    padding-bottom: 28px;
  }
}

.access__map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .access__map {
    margin-top: 40px;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.access__info {
  margin: 7px auto 0;
  width: 800px;
  max-width: 100%;
}

.access__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access__info-row:not(:first-child) {
  margin-top: 8px;
}
.access__info-row dt {
  margin: 0;
  padding: 0;
  font-weight: 700;
  width: 104px;
}
.access__info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 104px);
}

.access_button {
  text-align: center;
  margin-top: 26px;
}
.access_button a {
  text-decoration: none;
  display: inline-block;
  width: 304px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 16px 12px;
  border-radius: 8px;
  background-color: #78DCDF;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.access_button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 16px;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
}
.access_button a:hover {
  opacity: 0.7;
}

/* ===============================================
# contact
=============================================== */
.contact {
  margin-top: 75px;
  padding: 72px 40px 86px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 92px;
    padding: 56px 28px;
  }
}
.contact .util-title {
  color: #C6263A;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  padding: 0.2em 0.5em;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .contact input[type=text],
  .contact input[type=email],
  .contact textarea {
    border: 3px solid #f6f2ef;
  }
}
.contact input[type=text],
.contact input[type=email] {
  height: 40px;
}
.contact textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-form {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 26px;
  }
}

.contact-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact-text-inline {
  font-size: 16px;
  color: #E7728E;
}

.contact-list {
  max-width: 510px;
  margin: 18px auto 0;
}

@media screen and (min-width: 1200px) {
  .contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact-item + .contact-item {
  margin-top: 32px;
}

.contact-item-title {
  background: rgba(62, 161, 209, 0.7);
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-item-title {
    display: inline-block;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-item-title::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: -8px;
    border-style: solid;
    border-width: 20px 0 20px 8px;
    border-color: transparent transparent transparent rgba(62, 161, 209, 0.7);
  }
}

.contact-item-title-inline {
  font-size: 12px;
  color: #E7728E;
  vertical-align: super;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-item-title-inline {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contact-item-input {
    margin-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-item-input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    margin-left: 18px;
  }
}

.contact-radio-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: solid 1px #fff;
  border-radius: 1px;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
}

.contact-radio {
  position: relative;
}

.contact-radio-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part {
  background-color: #C6263A;
  color: #fff;
  border-radius: 1px;
}
.contact-radio-input:focus + .contact-radio-part {
  outline: -webkit-focus-ring-color auto 1px;
}

.contact-radio-part {
  display: block;
  background: #fff;
  color: #C6263A;
  height: 38px;
  line-height: 38px;
  width: 80px;
  text-align: center;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}

.contact-footer {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-footer {
    margin-top: 14px;
  }
}

.contact-privacy {
  position: relative;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact-privacy-part {
  display: inline-block;
  height: 22px;
  width: 22px;
  border: 1px solid #C6263A;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.contact-privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-privacy-input:checked + .contact-privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact-privacy-input:focus + .contact-privacy-part {
  outline: -webkit-focus-ring-color auto 1px;
}
.contact-privacy-input:checked:focus + .contact-privacy-part {
  outline: none;
}

.contact-privacy-link {
  color: #C6263A;
  text-decoration: underline;
}

.contact-footer-submit {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .contact-footer-submit {
    margin-top: 24px;
  }
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: #f00;
}

/* ===============================================
# footer
=============================================== */
.footer {
  background: #F7F7F7;
  padding: 42px 40px 12px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 36px 0 14px;
  }
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

.footer-nav-list {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .footer-nav-item + .footer-nav-item {
    margin-left: 30px;
  }
}

.footer-nav-item-link {
  font-size: 12px;
  color: #191919;
  display: block;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .footer-nav-item-link {
    padding: 0.3em 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer-nav-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-nav-item-link:hover {
    opacity: 0.7;
  }
}

.footer-sns-list {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-sns-list {
    margin-top: 14px;
  }
}

.footer-sns-item {
  display: inline-block;
}
.footer-sns-item + .footer-sns-item {
  margin-left: 10px;
}

.footer-sns-item-link {
  color: #C6263A;
  font-size: 24px;
  display: block;
  padding: 0.1em 0.5em;
}
@media screen and (min-width: 1200px) {
  .footer-sns-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  color: #888;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 5px;
  }
}

/* ===============================================
# to-top
=============================================== */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to-top a:hover {
  opacity: 0.7;
}
.to-top a img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .to-top a img {
    width: 40px;
  }
}