/* 共通パーツ
***************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

p {
  color: rgb(99, 85, 75);
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* ボタン */
.button>a>img {
  width: 100%;
}

.button {
  display: inline-block;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.button-animation {
  animation: bounce 0.3s ease infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.button a {
  display: block;
  text-decoration: none;
  position: relative;
}

.button img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.button img:hover {
  opacity: 0.6;
  transform: scale(0.9);
}

/* ページ全体の横幅制御 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

/* 中央のコンテンツ領域 */
.content {
  width: 750px;
  margin: 0 auto;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {
  .content {
    width: 100%;
  }
}

/* ファーストビュー
***************************************************************/
.moringa img,
.why-nama img {
  width: 100%;
}

/* ボディー
***************************************************************/
/* あの人は!?  */

.why-drink img {
  width: 100%;
}

/* 生モリンガが"医療機関"で選ばれました */
.chosen-by-medical-institutions img {
  width: 100%;
}

/* "無添加"にこだわりを。 */
.no-additives img {
  width: 100%;
}

/* 栄養価に優れたモリンガの可能性"モリンガ"とは？ */
.whats-moringa {
  margin-top: -12%;
  background-color: rgb(248, 248, 244);
}

.whats-moringa img {
  width: 100%;
}

/* "モリンガ"ならなんでもいいわけではありません。 */
.not-everything-is-fine img {
  width: 100%;
}

/* 01産地 */
.origin img {
  width: 100%;
}

/* 他社モリンガより高栄養価 */
.high-nutrition img {
  width: 100%;
}


/* 02品質 */
.quality img {
  width: 100%;
}

/* USDAオーガニック認定農園で栽培 */
.usda-organic img {
  width: 100%;
}

/* 03製法 */
.formulation img {
  width: 100%;
}

.formulation img:nth-child(2) {
  margin-top: -2%;
}

/* もっと詳しく見る*/
.see-more img {
  width: 100%;
}

/* 基本の飲み方 */
.how-to-drink img {
  width: 100%;
}

/* よくあるご質問 */
.faq-top {
  width: 100%;
}

.faq {
  max-width: 750px;
  margin: 0 auto;
  margin-top: -3%;
  padding: 0 20px;
  padding-top: 20px;
  background-color: rgb(234, 244, 230);
  background-position: top;
  font-family: "Noto Sans JP", sans-serif;
}

.faq img {
  width: 100%;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.faq-box dt {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.faq-question-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
  position: relative;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #33ad43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.33vw;
  font-family: sans-serif;
}

.faq-question-text {
  flex: 1;
  color: rgb(99, 85, 75);
  font-size: 2.66vw;
  line-height: 1.6;
  font-weight: 300;
}

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: rgb(99, 85, 75);
  background-color: #fff;
  border: none;
  font-size: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  border-top: 1px solid rgb(230, 230, 230);
  transition: max-height 0.2s ease, padding 0.2s ease;
}

.faq-box.open .faq-answer {
  max-height: 1000px;
  padding: 20px;
}

.faq-answer-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #f2a3b1;
  display: flex;
  justify-content: center;
  font-size: 3.33vw;
  font-family: sans-serif;
}

.faq-answer-title {
  flex: 1;
  color: #f2a3b1;
  font-size: 2.66vw;
  line-height: 1.6;
  font-weight: 300;
}

.faq-answer-text {
  color: rgb(99, 85, 75);
  font-size: 1.86vw;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
  margin-top: 0.5vw;
  margin-left: 1%;
  margin-right: 1%;
}

.faq-bold {
  font-weight: 400;
  color: rgb(99, 85, 75);
  background-color: #fcebed;
}

.faq-recommend {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 21px;
  border-radius: 8px;
  background-color: #ef899d;
  text-align: left;
  font-size: 1.86vw;
  font-weight: 400;
  line-height: 0;
  color: #ffffff;
}

.faq-recommend::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #ef899d transparent transparent;
  translate: -50% 100%;
}

.faq-support {
  width: 100%;
  position: relative;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {
  .faq-question-wrapper {
    padding: 15px;
    gap: 10px;
  }

  .faq-q-icon,
  .faq-a-icon {
    width: 35px;
    height: 35px;
    font-size: 4vw;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-answer-text {
    margin-left: 3.5%;
    margin-right: 2%;
    font-size: 2.86vw;
  }

  .faq-box.open .faq-answer {
    padding: 15px;
  }

  .faq-recommend {
    padding: 8px;
    border-radius: 3px;
  }

  .faq-question-text {
    font-size: 3.66vw;
  }

  .faq-answer-title {
    font-size: 3.66vw;
  }
}

/* どんなお悩みにも寄り添います */
.problem {
  padding: 40px 20px 60px;
  text-align: center;
  margin-top: -14%;
}

.problem img {
  width: 100%;
}

.line-tel {
  margin-top: -15%;
}

.reception-hours {
  margin-top: -3%;
}

.problem-button {
  display: inline-block;
  margin: 0 auto 25px;
}

.problem-button img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  position: relative;
  animation: slidein 1s infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.problem-button:hover img {
  opacity: 0;
  transform: scale(0.9);
}

@keyframes slidein {
  0% {
    right: 0px;
  }

  25% {
    right: 8px;
  }

  75% {
    right: 0px;
  }

  95% {
    right: 8px;
  }

  100% {
    right: 0px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 750px) {
  .problem {
    margin-top: -19%;
  }
}

@media (min-width: 750px) {
  .problem-button-phone {
    pointer-events: none;
  }
}

/* モリンガのおいしさを実感ください */
.realize img {
  width: 100%;
}

.button-realize {
  margin-top: -35%;
}

/* 生モリンガは"定期購入"がおトク!  */
.subscription img {
  width: 100%;
}


/* クロージング
***************************************************************/
/* ネットでご注文 */
.order-section {
  max-width: 750px;
  margin: 60px auto;
  padding: 0 20px;
}

.order-section img {
  width: 100%;
}

.order-products {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.product-card {
  padding-bottom: 20px;
  text-align: center;
  flex: 0 1 calc(50% - 15px);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.product-button {
  display: block;
  width: 100%;
  max-width: 250px;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.product-button:hover {
  opacity: 0.8;
}

.product-button img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -35%;
}

@media screen and (max-width: 750px) {
  .product-button img {
    width: 90%;
    margin: 0 auto;
    margin-top: -30%;
  }
}

/* 電話でご注文 */
.phone-order-section {
  max-width: 750px;
  margin: 60px auto;
  padding: 0 20px;
}

.phone-order-section img {
  width: 100%;
}

.phone-order-button {
  text-align: center;
}

.phone-order-button a {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  transition: opacity 0.3s ease;
}

.phone-order-button a:hover {
  opacity: 0.8;
}

.phone-order-button img {
  width: 100%;
  height: auto;
  display: block;
}

/* 公式SNSアカウント */
.sns-section {
  width: 60%;
  margin: -5% auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sns-title img {
  width: 100%;
}

.sns-icon {
  flex-shrink: 0;
}

.sns-icon img {
  width: 30px;
  height: auto;
  display: block;
}

.sns-links {
  display: flex;
}

.sns-link a {
  display: block;
  transition: transform 0.3s ease;
}

.sns-link a:hover {
  transform: scale(1.1);
}

.sns-link img {
  width: 80%;
  display: block;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {

  .order-section,
  .phone-order-section {
    margin: 40px auto;
  }

  .order-products {
    align-items: center;
  }

  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .sns-section {
    gap: 5px;
    margin: -10% auto 10px;
    padding-top: 3%;
  }
}

@media (min-width: 750px) {
  .phone-order-button {
    pointer-events: none;
  }
}


/* フッター */
.footer {
  background-position: top;
  padding: 80px 0 50px;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
}

.footer img {
  width: 100%;
}

.footer-links {
  margin: -60% 0;
  line-height: 2.2;
}

.footer-links a {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {
  .footer {
    padding: 10px 0 30px;
  }

  .footer-links {
    line-height: 1.3;
  }

  .footer-links a {
    font-size: 1.86vw;
  }
}