@charset "UTF-8";
@media (max-width: 1280px) {
  #contents_wrap {
    background-size: cover;
  }
}

.sec-read {
  text-align: center;
  font-size: 1.7rem;
}

.plan_btn {
  margin-top: 70px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 700px) {
  .plan_btn {
    margin: 50px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.plan_btn li {
  position: relative;
  width: 31.5%;
  background-color: rgba(255, 255, 255, 0.1);
  height: auto;
  margin-right: 2.75%;
  margin-bottom: 2.75%;
}

@media (max-width: 700px) {
  .plan_btn li {
    width: 70%;
    margin-top: 6%;
    margin-bottom: 0;
  }
}

.plan_btn li a {
  padding: 30px 10px;
}

.plan_btn li img {
  width: 100%;
}

.plan_btn li:nth-of-type(3n) {
  margin-right: 0;
}

.plan_btn .new::before {
  content: 'NEW';
  width: 66px;
  height: 25px;
  color: #fff;
  background-color: #630000;
  text-align: center;
  letter-spacing: 0.2rem;
  position: absolute;
  top: 3px;
  left: 3px;
}

.alphaOver a:hover img,
.alphaOver2 a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}

.button-border {
  border: 1px solid rgba(255, 255, 255, 0);
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* 擬似要素の共通スタイル */
.button-border::after,
.button-border::before,
.button-border span::after,
.button-border span::before {
  background-color: #858868;
  content: '';
  display: block;
  position: absolute;
  z-index: 15;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

/* 左上へ配置 */
.button-border::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}

/* 右下へ配置 */
.button-border::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}

/* 左下へ配置 */
.button-border span::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}

/* 右上へ配置 */
.button-border span::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}

/* hover */
.button-border:hover::after,
.button-border:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}

.button-border:hover span::after,
.button-border:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}

.plan_btn li.soon {
  position: relative;
  z-index: 1 !important;
}

.plan_btn li.soon .soon-span {
  position: absolute;
  width: 95%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  background: none;
  padding: 0;
}

.plan_btn li.soon a > span > img {
  -ms-filter: blur(8px) !important;
  -webkit-filter: blur(8px) !important;
          filter: blur(8px) !important;
  width: 98%;
}

.plan_btn li.sold-out {
  position: relative;
}

.plan_btn li.sold-out::before {
  position: absolute;
  display: block;
  content: "";
  font-size: 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.plan_btn li.sold-out:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "完売御礼";
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.5rem;
  border: 1px solid #fff;
  padding: 10px 0;
  width: 80%;
  text-align: center;
  z-index: 3;
}

@media (max-width: 700px) {
  .plan_btn li.sold-out:after {
    font-size: 2rem;
  }
}

.plan_main_copy {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.6rem;
  font-weight: 200;
}

.scroll-down {
  width: 1px;
  height: 50px;
  position: relative;
  background: transparent;
  -webkit-animation: scrollDown 1.5s ease infinite;
          animation: scrollDown 1.5s ease infinite;
  border-radius: 100%;
  margin: 10px auto;
}

.scroll-down:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#858868), to(transparent));
  background: linear-gradient(transparent, #858868, transparent);
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

.plan-detail_wrap {
  background-color: rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

@media (max-width: 700px) {
  .plan-detail_wrap {
    padding-bottom: 30px;
    padding-top: 5px;
    margin-bottom: 40px;
  }
}

.plan-detail_wrap dl {
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 700px) {
  .plan-detail_wrap dl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.plan-detail_wrap dl dt {
  margin-right: 2%;
}

@media (max-width: 700px) {
  .plan-detail_wrap dl dt {
    width: 100%;
    line-height: 1.3;
  }
}

.plan-detail_wrap .type {
  letter-spacing: 0.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
}

@media (max-width: 700px) {
  .plan-detail_wrap .type {
    margin-bottom: 30px;
  }
}

.plan-detail_wrap .type:after {
  content: '';
  display: block;
  width: 70%;
  height: 1px;
  background-color: #7c7c7c;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 700px) {
  .plan-detail_wrap .type:after {
    width: 90%;
    bottom: -15px;
  }
}

.plan-detail_wrap .type dt {
  font-size: 2.8rem;
}

.plan-detail_wrap .type dt span {
  font-size: 6rem;
}

.plan-detail_wrap .type dd {
  font-size: 2.4rem;
}

.plan-detail_wrap .type dd span {
  font-size: 4.2rem;
}

.plan-detail_wrap .menseki {
  line-height: 1.4;
  margin-bottom: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 700px) {
  .plan-detail_wrap .menseki {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.plan-detail_wrap .menseki dt {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .plan-detail_wrap .menseki dt {
    margin-bottom: 7px;
  }
}

.plan-detail_wrap .menseki dd {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

@media (max-width: 700px) {
  .plan-detail_wrap .menseki dd {
    line-height: 1.4;
  }
}

.plan-detail_wrap .menseki dd span {
  font-size: 4rem;
}

.plan-detail_wrap .menseki dd:nth-of-type(2), .plan-detail_wrap .menseki dd:nth-of-type(3) {
  display: block;
  width: 100%;
  font-size: 1.4rem;
}

.plan-detail_wrap .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 700px) {
  .plan-detail_wrap .point {
    width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.plan-detail_wrap .point li {
  width: 48%;
  margin-bottom: 2%;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 10px 5px;
  font-weight: 200;
  letter-spacing: 0.2rem;
}

@media (max-width: 700px) {
  .plan-detail_wrap .point li {
    width: 80%;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}

.plan-detail_wrap .point .ls1 {
  letter-spacing: 0.2rem;
}

.plan-detail_wrap .madori {
  width: 80%;
  margin: 30px auto 0;
  background-color: #fff;
  padding: 30px 20px;
  position: relative;
}

@media (max-width: 700px) {
  .plan-detail_wrap .madori {
    width: 90%;
    margin-top: 20px;
    padding: 20px 10px;
  }
}

.plan-detail_wrap .madori img {
  width: 100%;
}

.before,
.after {
  position: absolute;
  width: 70px;
  top: 50%;
  padding: 25px;
}

.before a,
.after a {
  width: 100%;
}

.before {
  left: 1.5%;
}

.before:hover {
  -webkit-animation: before ease-in-out 1s forwards;
          animation: before ease-in-out 1s forwards;
}

.after {
  right: 2%;
}

.after:hover {
  -webkit-animation: after ease-in-out 1s forwards;
          animation: after ease-in-out 1s forwards;
}

@-webkit-keyframes before {
  0% {
    left: 1.5%;
  }
  100% {
    left: 0.5%;
  }
}

@keyframes before {
  0% {
    left: 1.5%;
  }
  100% {
    left: 0.5%;
  }
}

@-webkit-keyframes after {
  0% {
    right: 2%;
  }
  100% {
    right: 0%;
  }
}

@keyframes after {
  0% {
    right: 2%;
  }
  100% {
    right: 0%;
  }
}

@media (max-width: 700px) {
  .plan_btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.plan_btn_wrap .to-plantop {
  background-color: #666;
  border: 1px solid #666;
  max-width: 350px;
  width: 80%;
  font-size: 1.6rem;
  text-align: center;
}

@media (max-width: 700px) {
  .plan_btn_wrap .to-plantop {
    width: calc(100% - 150px) !important;
    font-size: 1.4rem;
  }
}

.plan_btn_wrap .to-plantop:hover {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.plan_btn_wrap .to-plantop a {
  color: #fff;
  padding: 15px 2px;
  width: 100%;
  display: block;
}

@media (max-width: 700px) {
  .plan_btn_wrap .before,
  .plan_btn_wrap .after {
    position: inherit;
    width: 20px;
    padding: 0;
  }
}

@media (max-width: 700px) {
  .plan_btn_wrap .before {
    margin-left: 2%;
  }
}

@media (max-width: 700px) {
  .plan_btn_wrap .after {
    margin-right: 2%;
  }
}

.parallax1 {
  top: 5vw;
}
/*# sourceMappingURL=plan.css.map */