@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

.lang {
  color: #fff;
  position: absolute;
  display: flex;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .lang {
    top: 55px;
    left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .lang {
    top: 60px;
    left: 25px;
  }
}
.lang a {
  color: #999;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .lang a {
    transition: 0.2s;
  }
  .lang a:hover {
    color: #fff;
    text-decoration: underline;
  }
}
.lang__item {
  margin-right: 28px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  position: relative;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}
.lang__item:first-of-type::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 2px;
  height: 15px;
  transform: rotate(20deg);
  position: absolute;
  top: 4px;
  right: -13px;
}

.global_head {
  margin: 0;
  position: relative;
  z-index: 100;
}

.global_foot {
  z-index: 100;
  position: relative;
  background-color: #0a1945;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

footer {
  z-index: 50;
  position: relative;
  background: #0A1945;
}

body {
  background: #B35183;
  background: linear-gradient(156deg, rgb(179, 81, 131) 0%, rgb(86, 168, 105) 33%, rgb(158, 129, 243) 66%, rgb(132, 203, 228) 100%);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.container__first {
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.014) inset;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/top_bg.jpg);
  background-attachment: fixed;
}
@media only screen and (min-width: 768px) {
  .container__first {
    background-size: cover;
    background-position: center;
  }
}
@media only screen and (max-width: 767px) {
  .container__first {
    background-position: -650px;
  }
}
.container__second {
  z-index: 3;
  position: relative;
}
.container__third {
  box-shadow: 0 0 200px rgb(0, 0, 0) inset;
  z-index: 1;
  position: relative;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: #B35183;
  background: linear-gradient(156deg, rgb(179, 81, 131) 0%, rgb(86, 168, 105) 33%, rgb(158, 129, 243) 66%, rgb(132, 203, 228) 100%);
}
.container__third:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-size: cover;
  background-blend-mode: multiply;
  z-index: -1;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .container__third:before {
    background-image: url(../img/bg_2.png);
    background-size: contain;
    background-position: center;
  }
}
@media only screen and (max-width: 767px) {
  .container__third:before {
    background-image: url(../img/bg_2sp.png);
    background-size: cover;
    background-position: -550px;
  }
}

.wrap {
  z-index: 1;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.1098039216);
  top: 0;
  left: 0;
  height: 2500px;
  width: 5000px;
}

.top {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  .top__logo {
    z-index: 5;
    position: absolute;
    top: 50%;
    right: -1vw;
    transform: translateY(-50%);
  }
  .top__logo img {
    width: 45vw;
  }
}
@media only screen and (max-width: 767px) {
  .top__logo {
    z-index: 10;
    position: relative;
    margin: auto 0;
  }
  .top__logo img {
    width: 90vw;
  }
}
@media only screen and (min-width: 768px) {
  .top__nezura {
    z-index: 2;
    position: absolute;
    top: -75vh;
    left: -25vh;
  }
  .top__nezura img {
    width: 175vh;
  }
}
@media only screen and (max-width: 767px) {
  .top__nezura {
    z-index: 2;
    position: absolute;
    top: -70vh;
    left: -25vh;
  }
  .top__nezura img {
    width: 175vh;
    filter: brightness(0.5);
  }
}

.text {
  position: relative;
  text-align: center;
  z-index: 2;
}
.text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: url(../img/banner.jpg) #e9e9e9;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .text:before {
    background-position: center;
  }
}
.text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
  background: rgba(255, 255, 255, 0.938);
}
@media only screen and (min-width: 768px) {
  .text {
    padding: 10vh 0;
  }
  .text img {
    width: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .text {
    padding: 25px 25px 50px;
  }
  .text img {
    max-width: 100%;
  }
}
.text__top {
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .text__top {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .text__top {
    font-size: 25px;
  }
}
.text__bottom {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .text__bottom {
    font-size: 35px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .text__bottom {
    font-size: 25px;
  }
}
.text__bottom a {
  text-decoration: none;
  color: #b80000;
  transition: 0.2s;
}
.text__bottom a:hover {
  color: #fa1b1b;
}
.text__price {
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .text__price {
    font-size: 22px;
    margin: 40px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .text__price {
    font-size: 30px;
    margin: 50px 0 0;
  }
}
.text__size {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .text__size {
    font-size: 20px;
    margin: 20px 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .text__size {
    font-size: 23px;
    margin: 15px 0 25px;
  }
}
.text__detail {
  font-weight: 600;
  border: 3px solid #000;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .text__detail {
    padding: 10px 35px;
  }
}
@media only screen and (min-width: 768px) {
  .text__detail {
    font-size: 20px;
    padding: 20px 45px;
  }
}
.text__note {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .text__note {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .text__note {
    font-size: 30px;
    margin-top: 30px;
  }
}
.text__note a {
  color: #950105;
  text-decoration: none;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .text__note a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .text__note a {
    font-size: 25px;
  }
}
.text__note a:hover {
  text-decoration: underline;
}
.text__note__small {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .text__note__small {
    font-size: 15px;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .text__note__small {
    font-size: 23px;
    margin: 0 0 30px;
  }
}
.text .soldout {
  color: #d83820;
  font-weight: bold;
  text-align: center;
}
.text .soldout__ttl {
  font-family: "Anton", sans-serif;
}
@media only screen and (max-width: 767px) {
  .text .soldout__ttl {
    font-size: 33px;
  }
}
@media only screen and (min-width: 768px) {
  .text .soldout__ttl {
    font-size: 53px;
  }
}
.text .soldout p {
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .text .soldout p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .text .soldout p {
    font-size: 28px;
  }
}

.salemethod {
  border: solid white 2px;
  border-radius: 5px;
}
.salemethod a {
  color: white;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .salemethod {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .salemethod {
    margin: 10px;
  }
}
.salemethod h2 {
  text-align: center;
  border: solid #fff 2px;
  background: #fff;
  color: #000;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .salemethod h2 {
    margin-bottom: 50px;
    padding: 10px;
  }
}
.salemethod h3 {
  text-align: center;
  border-bottom: solid 1px #fff;
  max-width: 1000px;
  width: 95%;
  margin: 50px auto 10px;
  padding-bottom: 5px;
}
.salemethod p {
  font-size: 1em;
  text-align: left;
}
.salemethod__period {
  list-style-type: none;
}
@media only screen and (min-width: 768px) {
  .salemethod__period {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .salemethod__period li span {
    font-size: 1.2em;
    font-weight: 700;
  }
}
.salemethod__items {
  list-style-type: decimal;
}
@media only screen and (min-width: 768px) {
  .salemethod__items {
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .salemethod__items ul {
    font-size: 15px;
    line-height: 1.5em;
  }
}
@media only screen and (min-width: 768px) {
  .salemethod__address {
    font-size: 15px;
    line-height: 1.5em;
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
  }
}
.salemethod__notice {
  list-style-type: "※ ";
}
@media only screen and (min-width: 768px) {
  .salemethod__notice {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.5em;
  }
}
@media only screen and (min-width: 768px) {
  .salemethod__notice li {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .salemethod__notice li {
    margin-bottom: 10px;
  }
}

.bottom {
  max-height: fit-content;
}
.bottom__logo img {
  box-shadow: 0 0 200px rgb(0, 0, 0);
}
@media only screen and (min-width: 768px) {
  .bottom__logo {
    padding-top: 35vh;
  }
}
@media only screen and (max-width: 767px) {
  .bottom__logo {
    padding-top: 300px;
  }
}
.bottom__copywrite {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.bottom__copywrite img {
  box-shadow: 0 0 200px rgb(0, 0, 0);
}
.bottom__copywrite img {
  width: 150px;
  margin-bottom: 50px;
}

.sale {
  background: url(https://www.mandarake.co.jp/dir/cco/4th-anniversary/img/hero-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 20;
  color: white;
}
.sale:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(8, 8, 8, 0.863);
}
@media only screen and (max-width: 767px) {
  .sale {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    padding: 100px 0 130px;
  }
}
.sale__content {
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .sale__content {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 17px;
  }
}
.sale__item {
  margin: 0 0 40px;
}
.sale__item:last-child {
  margin: 0;
}
.sale__item h3 {
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  .sale__item h3 {
    font-size: 1.3rem;
  }
}
.sale__item p {
  margin: 0 0 15px;
}
.sale__item p:last-child {
  margin: 0;
}
.sale__item span {
  font-weight: 700;
}
.sale__item a {
  color: #fff;
  text-decoration: underline;
}
.sale__item a:hover {
  text-decoration: none;
}
.sale__item ol, .sale__item ul {
  margin: 0 0 0 20px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .sale__item ol li, .sale__item ul li {
    margin: 0 0 4px;
  }
}
.sale__item ol li:last-child, .sale__item ul li:last-child {
  margin: 0;
}
.sale__item ol {
  margin: 20px 0 20px 20px;
}
.sale__item.sale-note {
  border: 2px solid #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .sale__item.sale-note {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item.sale-note {
    padding: 30px 30px 40px;
  }
}
.sale__item.sale-note:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-size: cover;
  background-blend-mode: multiply;
  z-index: -1;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .sale__item.sale-note:before {
    opacity: 0.1;
    background-image: url(../img/bg_2.png);
    background-size: contain;
    background-position: center;
  }
}
@media only screen and (max-width: 767px) {
  .sale__item.sale-note:before {
    opacity: 0.1;
    background-image: url(../img/bg_2sp.png);
    background-size: cover;
    background-position: right;
  }
}
.sale__howto {
  max-width: fit-content;
  width: 100%;
  margin: 0 auto;
}

.prod {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .prod {
    margin: 50px 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .prod {
    margin: 15px 0 0;
  }
}
.prod__container {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .prod__container {
    flex-direction: column;
    margin: 0 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__container {
    justify-content: space-between;
    margin: 0 0 50px;
  }
}
.prod__container:last-child {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .prod__main {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__main {
    width: 50%;
  }
}
.prod__main--ttlright {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .prod__main--ttlright {
    right: -125px;
    top: -50px;
    rotate: 5deg;
  }
}
@media only screen and (max-width: 767px) {
  .prod__main--ttlright {
    left: -25px;
    top: -80px;
    rotate: -10deg;
  }
}
@media only screen and (min-width: 768px) {
  .prod__main--ttlright img {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .prod__main--ttlright img {
    height: 450px;
  }
}
.prod__main--ttlleft {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .prod__main--ttlleft {
    left: -75px;
    rotate: -25deg;
  }
}
@media only screen and (max-width: 767px) {
  .prod__main--ttlleft {
    left: -25px;
    top: -125px;
    rotate: -10deg;
  }
}
.prod__main--ttlleft img {
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .prod__sub {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub {
    width: 50%;
    padding: 10px 0 0;
  }
}
.prod__sub-thum {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .prod__sub-thum {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-thum {
    margin: 0 0 20px;
  }
}
.prod__sub-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: #ccc solid 1px;
}
@media only screen and (max-width: 767px) {
  .prod__sub-item {
    width: 60px;
    height: 60px;
    margin: 0 8px 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-item {
    width: 95px;
    height: 95px;
    margin: 0 10px 10px 0;
  }
  .prod__sub-item:hover {
    opacity: 0.8;
  }
}
.prod__sub-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.prod__sub-detail {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .prod__sub-detail {
    width: 100%;
    order: 3;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-detail {
    max-width: fit-content;
    width: 100%;
    margin: 50px auto 20px;
  }
}
.prod__sub-detail h2 {
  margin: 0 auto 5px;
  padding: 7px 5px 5px;
}
@media only screen and (max-width: 767px) {
  .prod__sub-detail h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-detail h2 {
    font-size: 30px;
    font-weight: bolder;
    line-height: 28px;
  }
}
.prod__sub-detail h3 {
  margin: 0 auto 25px;
  padding: 3px 3px 1px;
}
@media only screen and (max-width: 767px) {
  .prod__sub-detail h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-detail h3 {
    font-size: 20px;
    font-weight: bolder;
    line-height: 28px;
  }
}
.prod__sub-detail dl {
  display: grid;
  grid-template-columns: 95px auto;
}
@media only screen and (max-width: 767px) {
  .prod__sub-detail dl {
    border-top: solid #fff 1px;
    border-bottom: solid #fff 1px;
    padding-top: 10px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-detail dl {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.prod__sub-detail dt {
  grid-column: 1;
  font-size: 15px;
  padding-top: 5px;
  font-weight: bolder;
}
.prod__sub-detail dd {
  text-align: left;
  font-weight: bolder;
  grid-column: 2;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .prod__sub-detail dd {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-detail dd {
    margin: 0 0 25px;
  }
}
.prod__sub-caption p {
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .prod__sub-caption p {
    font-size: 17px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub-caption p {
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px;
  }
}
.prod__sub .soldout {
  color: #d83820;
  margin: 30px 0 0;
  font-weight: bold;
}
.prod__sub .soldout__ttl {
  font-family: "Anton", sans-serif;
}
@media only screen and (max-width: 767px) {
  .prod__sub .soldout__ttl {
    font-size: 33px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub .soldout__ttl {
    font-size: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .prod__sub .soldout p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__sub .soldout p {
    font-size: 19px;
    line-height: 29px;
  }
}
.prod .sp-button {
  border: 2px solid #ffffff !important;
}
@media only screen and (max-width: 767px) {
  .prod .sp-button {
    width: 10px !important;
    height: 10px !important;
  }
}
.prod .sp-selected-button {
  background-color: #ffffff !important;
}
.prod .sp-next-arrow:after, .prod .sp-next-arrow:before, .prod .sp-previous-arrow:after, .prod .sp-previous-arrow:before {
  background-color: #ffffff !important;
}

.mid {
  position: relative;
  z-index: 10;
  border-radius: 10px;
  padding: 10px;
  margin: 0 auto;
  background-image: url(../img/top_bg.jpg);
  background-position: center;
  background-size: cover;
}
.mid:after {
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4784313725);
  position: absolute;
  border-radius: 10px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .mid {
    width: 1200px;
  }
}/*# sourceMappingURL=style.css.map */