@charset "UTF-8";

/* 下層ページ共通部分 */
.container.under_page {
  line-height: 1.5;
  letter-spacing: 0.16em;
  padding-top: 118px;
}

ul.att {
  margin: 0 auto;
}

.sub_ttl {
  font-size: 26px;
  text-align: center;
}

.txt {
  font-size: 18px;
  text-align: center;
}

.page_ttl {
  background-image: url(../img/copy_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 15%;
  position: relative;
}
.page_ttl h2 {
  font-size: 30px;
  letter-spacing: 0.2em;
  color: #eae4d1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page_ttl h2 span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .container.under_page {
    padding-top: 158px;
  }
}

@media only screen and (max-width: 767px) {
  .container.under_page {
    padding-top: 0;
  }

  .page_ttl {
    background-position: center right;
    padding: 18% 0;
  }

  .page_ttl h2 {
    font-size: 24px;
  }

  .page_ttl h2 span {
    font-size: 13px;
  }

  .sub_ttl {
    font-size: 20px;
  }

  .txt {
    font-size: 14px;
  }
}

/* 下層ページ共通部分ここまで */
.plan_copy {
  font-size: 18px;
  text-align: center;
  padding: 100px;
}
.btn {
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 100px auto 0;
}

.btn li {
  width: calc((100% - 6%) / 2);
  max-width: 470px;
  margin-right: 3%;
}

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

.btn li:nth-of-type(n+3) {
  margin-top: 40px;
}

.btn li a {
  display: block;
  position: relative;
  transition: all 0.5s;
}

.btn li a:hover {
  opacity: 0.7;
}

/* 完売御礼 */
.btn li.soldout {
  position: relative;
}
.btn li.soldout::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.btn li.soldout a {
  position: relative;
  pointer-events: none;
}
.btn li.soldout a::before {
  content: "完売御礼";
  display: block;
  width: 80%;
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  background: #a62328;
  /* background: #3a5aab; */
  border: 1px solid #fff;
  padding: 15px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* coming_soon */
.btn li.coming_soon {
  position: relative;

}
.btn li.coming_soon::before {
  content: "Coming Soon";
  display: block;
  font-size: 25px;
  letter-spacing: 1.5px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.btn li.coming_soon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.btn li.coming_soon a {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .plan_copy {
    padding: 60px 0;
  }
  .btn {
    margin: 75px auto 0;
  }
  .btn li {
    width: 100%;
    margin-right: 0;
  }
  .btn li:nth-of-type(2n) {
    margin-top: 30px;
  }
  /* 完売御礼 */
  .btn li.soldout a::before {
    font-size: 16px;
    padding: 10px 0;
  }

  /* coming_soon */
  .btn li.coming_soon::before {
    font-size: 20px;
  }
}
