@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
}

#container {
  background-color: white;
}

/*--画面サイズによる改行、表示非表示---------------------------------------------------------------------*/
.hide-sm {
  display: none;
}
@media screen and (min-width: 480px) {
  .hide-sm {
    display: block;
  }
}

.hide-md {
  display: none;
}
@media screen and (min-width: 600px) {
  .hide-md {
    display: block;
  }
}

.hide-lr {
  display: none;
}
@media screen and (min-width: 820px) {
  .hide-lr {
    display: block;
  }
}

.hide-lg {
  display: none;
}
@media screen and (min-width: 960px) {
  .hide-lg {
    display: block;
  }
}

.hide-xl {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hide-xl {
    display: block;
  }
}

.show-md {
  display: block;
}
@media screen and (min-width: 600px) {
  .show-md {
    display: none;
  }
}

.show-lr {
  display: block;
}
@media screen and (min-width: 820px) {
  .show-lr {
    display: none;
  }
}

.show-lg {
  display: block;
}
@media screen and (min-width: 960px) {
  .show-lg {
    display: none;
  }
}

.show-xl {
  display: block;
}
@media screen and (min-width: 1280px) {
  .show-xl {
    display: none;
  }
}

/*--ユーティリティのマージンボトムの設定---------------------------------------------------------*/
.mb-sm {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .mb-sm {
    margin-bottom: 25px !important;
  }
}

.mb-md {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .mb-md {
    margin-bottom: 60px !important;
  }
}

.mb-lr {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 600px) {
  .mb-lr {
    margin-bottom: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .mb-lr {
    margin-bottom: 100px !important;
  }
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg {
    margin-bottom: 120px !important;
  }
}

/*--ユーティリティのマージントップの設定---------------------------------------------------------*/
.mt-sm {
  margin-top: 16px !important;
}
@media screen and (min-width: 960px) {
  .mt-sm {
    margin-top: 25px !important;
  }
}

.mt-md {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .mt-md {
    margin-top: 60px !important;
  }
}

.mt-lr {
  margin-top: 40px !important;
}
@media screen and (min-width: 600px) {
  .mt-lr {
    margin-top: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .mt-lr {
    margin-top: 100px !important;
  }
}

.mt-lg {
  margin-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .mt-lg {
    margin-top: 120px !important;
  }
}

/*--ユーティリティのパディングボトムの設定---------------------------------------------------------*/
.pb-sm {
  padding-bottom: 16px !important;
}

.pb-md {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .pb-md {
    padding-bottom: 60px !important;
  }
}

.pb-lr {
  padding-bottom: 40px !important;
}
@media screen and (min-width: 600px) {
  .pb-lr {
    padding-bottom: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .pb-lr {
    padding-bottom: 100px !important;
  }
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg {
    padding-bottom: 120px !important;
  }
}

/*--ユーティリティのパディングトップの設定---------------------------------------------------------*/
.pt-md {
  padding-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .pt-md {
    padding-top: 60px !important;
  }
}

.pt-lr {
  padding-top: 40px !important;
}
@media screen and (min-width: 600px) {
  .pt-lr {
    padding-top: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .pt-lr {
    padding-top: 100px !important;
  }
}

.pt-lg {
  padding-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .pt-lg {
    padding-top: 120px !important;
  }
}

/*--全体レイアウトの横幅、両サイドの余白の設定---------------------------------------------------------*/
.content-width {
  width: 90%;
  margin: 0 auto;
}

/*--各ブレイクポイントでのflexboxの設定---------------------------------------------------------*/
.flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex820 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .flex820 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex960 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .flex960 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex1280 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .flex1280 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/*--フォントサイズの設定---------------------------------------------------------*/
.font-ssm {
  font-size: clamp(13px, 2vw, 14px);
}

.font-sm {
  font-size: clamp(14px, 2vw, 16px);
}

.font-md {
  font-size: clamp(17px, 2vw, 19px);
}

.font-lr {
  font-size: clamp(20px, 4vw, 28px);
}

.font-lg {
  font-size: clamp(24px, 4vw, 36px);
}

.font-xl {
  font-size: clamp(30px, 5vw, 40px);
}

@media screen and (min-width: 820px) {
  #container {
    padding: 1em 5em;
    overflow: hidden;
  }
}

#content {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  #content {
    max-width: 850px;
  }
}

.main-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #d94d63;
}
@media screen and (min-width: 820px) {
  .main-content {
    overflow-y: auto;
    flex: 1;
    border-radius: 20px;
  }
}

@media screen and (min-width: 820px) {
  .header-text img {
    border-radius: 18px 18px 0 0;
  }
}

@media screen and (min-width: 820px) {
  .support-message {
    background-color: transparent;
    padding-bottom: 0;
  }
}

.right-content,
.left-content {
  width: 10%;
  display: none;
}
@media screen and (min-width: 820px) {
  .right-content,
  .left-content {
    display: block;
  }
}

.left-content {
  position: relative;
  width: 10%;
  top: 250px;
  left: -60px;
}
.left-content__inner {
  position: fixed;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.left-content__inner .logo img {
  max-width: 120px;
}
.left-content .button {
  position: relative;
}
.left-content .button::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_cart.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: 42px;
  left: 16px;
}
.left-content .button:hover::before {
  background-image: url("../images/icon_cart_p.svg");
}
.left-content .button > a {
  background-color: #d94d63;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: right;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 54px 15px;
  height: 200px;
  border: 1px solid white;
  transition: 0.3s;
}
.left-content .button > a:hover {
  border: 1px solid #d94d63;
  color: #d94d63;
  background-color: white;
}

.right-content {
  width: 10%;
  position: relative;
  top: 450px;
  left: 10px;
}
.right-content__inner {
  position: fixed;
}

.qrcode {
  text-align: center;
}
.qrcode__stage img {
  max-width: 100px;
}
.qrcode__button {
  border-style: none;
  background-color: transparent;
  font-size: 10px;
  text-decoration: underline;
}

.scrollbar {
  position: absolute;
  top: -45%;
  left: 50%;
  height: 130%;
  width: 1px;
  background: #ddd;
  transform: translate(-50%, -50%);
}

.scrollbar__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: #d94d63;
}

.scrollbar__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #d94d63;
  border-radius: 50%;
}

.page-top {
  transition: all 0.3s ease;
  position: relative;
  top: -290px;
  background-color: #d94d63;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
.page-top a {
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.qr-modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(217, 77, 99, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.qr-modal__content {
  position: relative;
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  width: 40%;
  max-width: 300px;
}
.qr-modal__close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.qr-modal img {
  max-width: 100%;
  max-height: 100%;
}

.btn a {
  transition: 0.3s;
}
.btn a:hover {
  opacity: 0.8;
}

.btn-fixed {
  position: fixed;
  z-index: 1000;
  left: 0;
  display: none;
  max-width: 550px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
}

.qa__inner {
  width: 90%;
  margin: 0 auto;
}
.qa__inner dl {
  margin-bottom: 30px;
}
.qa__inner dl dt {
  font-family: "Noto Serif JP", serif;
  padding: 5px 10px;
  background-color: #d94d63;
  color: white;
  font-weight: 600;
  position: relative;
  position: relative;
  padding-left: 2em;
}
.qa__inner dl dt::before {
  content: "";
  background-image: url("../images/question.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 10px;
  top: 12px;
}
.qa__inner dl dt:after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
}
.qa__inner dl dt.active:after {
  content: "−";
}
.qa__inner dl dd {
  display: none;
  padding: 10px 20px;
  padding-left: 2em;
  text-align: justify;
  background-color: #fff8f9;
  margin-bottom: 20px;
  color: #7d6750;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 2px 0 rgba(202, 186, 189, 0.2);
  position: relative;
}
.qa__inner dl dd::before {
  content: "";
  background-image: url("../images/answer.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 10px;
  top: 17px;
}
.qa__inner dl dd.active {
  display: block;
  background: #f5c6cb;
}
.qa__inner dl:first-child dd {
  display: block;
}

.footer {
  background: linear-gradient(to right, #e77369, #da4f62);
  padding-bottom: 30%;
}
@media screen and (min-width: 820px) {
  .footer {
    border-radius: 0 0 18px 18px;
    padding-bottom: 23%;
  }
}
.footer ul {
  list-style: none;
  padding: 0;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-around;
  line-height: 2;
}
.footer ul a {
  color: white;
  text-decoration: none;
}
.footer__copy {
  margin-top: 20px;
  text-align: center;
  color: white;
}

.appear.up .item {
  transform: translateY(20px);
}

.appear.down .item {
  transform: translateY(-10px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.2s;
  transition-delay: 0.2;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 3s;
}/*# sourceMappingURL=layout.css.map */