@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  /* width: 100%; */
}

body {
  color: #000000;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto;

}
.lp-bg{
  background-color: #000;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: #000000;
  text-align: center;
}

a:hover {
  opacity: 0.5;
}

p {
  text-align: justify;
}

.pro-text-area {
  padding: 20px 60px;
}

.flex-item {
  display: flex;
  justify-content: space-between;
}

.btn-img {
  max-width: 340px;
  margin: 16px auto 40px;
}

.pro-disc,
.pro-cap {
  font-size: 2.4rem;
  font-weight: 100;
  line-height: 1.8;
}

.pro-name,
.pro-price {
  font-size: 3.8rem;
  font-weight: 100;
}

span {
  font-size: 2.4rem;
}

.content-title {
  font-size: 2.4rem;
  font-weight: 100;
}

hr {
  margin-top: 80px;
  border-top: 1px dashed #ccc;
}

.note {
  text-align: center;
  margin-bottom: 60px;
}

.image-notes {
  margin: -70px 0 40px;
  padding: 0 80px;
}
.anno-txt{
  font-size: 1.3rem !important;
}


/* アコーディオン全体 */
.accordion {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  background-color: #ffffff;
}

.ingredients {
  padding: 0 60px;
}

/* アコーディオン */
.accordion__item {
  /* border: 1px solid #ccc; */
  background-color: #F1F4F7;
  opacity: 0.8;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.accordion__item:hover {
  background-color: #FDE2E4;
}

/* アコーディオンのタイトル */
.accordion__title {
  position: relative;
  padding: 15px 60px 15px 20px;
  font-weight: normal;
  cursor: pointer;
  text-align: left;
  font-size: 2.0rem;
}

/* (+)アイコン */
.accordion__title::before,
.accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #000000;
  width: 20px;
  height: 2px;
  transition: all 0.3s;
}

.accordion__title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion__content {
  padding: 0 40px 20px 40px;
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  text-align: justify;
}

.accordion__content.is-open {
  display: block;
}

/* アコーディオン展開時の(-)アイコン */
.accordion__item.is-active .accordion__title::before {
  transform: rotate(180deg);
}

.accordion__item.is-active .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
}

/* SNS */
#sns-sec {
  max-width: 1040px;
  margin: 0 auto;
}

.insta-img-area {
  display: flex;
  padding: 40px 0 180px;
  gap: 20px;
}

.sns-icon-area {
  margin: 60px auto;
  text-align: center;
}

.icon {
  font-size: 2.5rem;
  color: #000;
  margin: 0 10px;
}

.fa-twitter:before {
  content: '𝕏' !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

@media screen and (max-width: 1060px) {
  #sns-sec {
    padding: 0 30px;
  }
}

@media screen and (max-width: 650px) {
  #sns-sec {
    max-width: 400px;
    margin: -200px auto 0;
  }

  .insta-img-area {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 100px;
  }

  .insuta-img {
    max-width: 150px;
  }

  .sns-icon-area {
    margin: 30px auto;
  }
}

#footer {
  height: 50px;
  line-height: 5.0rem;
  text-align: center;
}

#footer small {
  font-family: futura-pt, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* topへ戻る */
.page-top-wrapper {
  position: relative;
  max-width: 1440px;

}

#page-top {
  background-color: #000000;
  width: 62px;
  height: 62px;
  /* border-radius: 50%; */
  position: fixed;
  /* 画面の位置固定 */
  right: 280px;
  bottom: 20px;
  z-index: 9900;
  text-align: center;

}

#page-top a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 6.2rem;

}

@media screen and (max-width: 1250px) {
  #page-top {
    right: 20px;
  }
}

@media screen and (max-width: 650px) {

  .pro-text-area {
    padding: 0 26px;
  }

  .flex-item {
    display: block;

  }

  .btn-img {
    max-width: 320px;
    margin: 16px auto 20px;
  }

  .pro-disc,
  .pro-cap {
    font-size: 1.6rem;
  }

  .pro-name,
  .pro-price {
    font-size: 2.0rem;
  }

  span {
    font-size: 1.6rem;
  }

  .content-title {
    font-size: 1.6rem;
  }

  hr {
    margin-top: 20px;
  }

  .note {
    text-align: left;
    margin: 40px 26px;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .image-notes {
    margin: -10px 0 30px;
    padding: 0 26px;
    font-size: 1.2rem;
  }

  /* アコーディオン全体 */
  .accordion {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;

  }

  .ingredients {
    padding: 0 14px;
  }

  .accordion {
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .accordion__title {
    font-size: 1.6rem;
    padding: 4px 60px 4px 20px;
  }

  .accordion__content {
    padding: 0 20px 20px 20px;
    font-size: 1.3rem;
  }

  .mask-accordion__content {
    padding: 0;
  }

  #footer small {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 605px) {
  #page-top {
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
  }

  #page-top a {
    font-size: 1.4rem;
    line-height: 4rem;

  }

}