/*----------------------------------
     便秘外来ページ専用スタイル
----------------------------------*/

/* ポイント帯 */
.constipation_point{
  width: calc(100% - 2rem);
  max-width: 960px;
  margin: 80px auto;
  padding: 32px 40px;
  background-color: #2C2A53;
  border-radius: 4px;
}
.constipation_point:first-child{
  margin-top: 0;
}
.constipation_point_text{
  font-size: 20px;
  line-height: 1.8;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 991px){
  .constipation_point{
    max-width: 450px;
    margin: 40px auto;
    padding: 24px 20px;
  }
  .constipation_point:first-child{
    margin-top: 0;
  }
  .constipation_point_text{
    font-size: 16px;
  }
}

/* 便秘の原因 2カラム */
.constipation_cause{
  width: calc(100% - 2rem);
  max-width: 840px;
  display: flex;
  gap: 24px;
}
.constipation_cause_block{
  flex: 1;
  padding: 32px;
  background-color: #FFF;
  border: 1px solid #EBEBED;
  border-radius: 4px;
}
.constipation_cause_title{
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #2C2A53;
}
.constipation_cause_title::after{
  display: none;
}
.constipation_cause_block p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 991px){
  .constipation_cause{
    max-width: 450px;
    flex-direction: column;
    gap: 16px;
  }
  .constipation_cause_block{
    padding: 20px;
  }
  .constipation_cause_title{
    font-size: 16px;
  }
  .constipation_cause_block p{
    font-size: 14px;
  }
}

/* 腸内細菌の種類 3カード */
.constipation_bacteria{
  display: flex;
  gap: 20px;
  max-width: 720px;
}
.constipation_bacteria_item{
  flex: 1;
  padding: 24px 16px;
  text-align: center;
  border-radius: 4px;
}
.constipation_bacteria_good{
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
}
.constipation_bacteria_bad{
  background-color: #FFEBEE;
  border: 1px solid #EF9A9A;
}
.constipation_bacteria_opportunistic{
  background-color: #FFF8E1;
  border: 1px solid #FFE082;
}
.constipation_bacteria_label{
  display: block;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C2A53;
}
.constipation_bacteria_desc{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #2C2A53;
}

@media screen and (max-width: 991px){
  .constipation_bacteria{
    flex-direction: column;
    gap: 12px;
  }
  .constipation_bacteria_item{
    padding: 16px 12px;
  }
}

/* 腸内フローラバランス */
.constipation_flora{
  width: calc(100% - 2rem);
  max-width: 840px;
  padding: 32px 40px;
  background-color: #FFF;
  border: 1px solid #EBEBED;
  border-radius: 4px;
}
.constipation_flora_balance{
  gap: 40px;
}
.constipation_flora_item{
  text-align: center;
}
.constipation_flora_label{
  display: block;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2C2A53;
}
.constipation_flora_value{
  display: block;
  font-family: "Lora", serif;
  font-size: 28px;
  line-height: 1;
  color: #2C2A53;
}

@media screen and (max-width: 991px){
  .constipation_flora{
    max-width: 450px;
    padding: 24px 20px;
  }
  .constipation_flora_balance{
    gap: 24px;
  }
  .constipation_flora_value{
    font-size: 22px;
  }
}

/* メカニズムフロー */
.constipation_mechanism{
  width: calc(100% - 2rem);
  max-width: 600px;
  padding-bottom: 80px;
}
.constipation_mechanism_step{
  padding: 16px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #EBEBED;
  border-radius: 4px;
}
.constipation_mechanism_step-result{
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background-color: #2C2A53;
  border-color: #2C2A53;
}
.constipation_mechanism_arrow{
  width: 2px;
  height: 24px;
  margin: 0 auto;
  background-color: #2C2A53;
  position: relative;
}
.constipation_mechanism_arrow::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #2C2A53;
}

@media screen and (max-width: 991px){
  .constipation_mechanism{
    max-width: 450px;
    padding-bottom: 40px;
  }
  .constipation_mechanism_step{
    font-size: 14px;
    padding: 12px 16px;
  }
  .constipation_mechanism_step-result{
    font-size: 18px;
  }
}

/* 治療メニュー */
.constipation_treatment{
  width: calc(100% - 2rem);
  max-width: 840px;
  margin-top: 40px;
  padding: 32px 40px;
  background-color: #FFF;
  border: 1px solid #EBEBED;
  border-radius: 4px;
}
.constipation_treatment_title{
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #2C2A53;
  text-align: center;
}
.constipation_treatment_title::after{
  display: none;
}
.constipation_treatment_list{
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
.constipation_treatment_list li{
  padding: 14px 0;
  border-bottom: 1px solid #EBEBED;
}
.constipation_treatment_list li:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.constipation_treatment_num{
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Lora", serif;
  color: #FFF;
  background-color: #2C2A53;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  vertical-align: middle;
}

@media screen and (max-width: 991px){
  .constipation_treatment{
    max-width: 450px;
    padding: 24px 20px;
  }
  .constipation_treatment_title{
    font-size: 18px;
  }
  .constipation_treatment_list{
    font-size: 14px;
  }
}

/* 便秘外来の治療 */
.constipation_point_treatment{
  width: calc(100% - 2rem);
  max-width: 960px;
  margin: 80px auto;
  padding: 32px 40px;
  background-color: #E8F5E9;
  border-radius: 4px;
  border: 1px solid #A5D6A7;
}
.constipation_point_treatment:first-child{
  margin-top: 0;
}
.constipation_point_treatment_text{
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}