/* パンくずリスト
--------------------------- */
@media screen and (min-width: 768px) {
  #breadcrumbs {
    margin-bottom: 50px;
  }
}

/* マイクロスコープ治療とは */
/* ============================================ */
.about_ms{
  margin-bottom: 200px;
}
.about_ms_card{
  display: flex;
  gap: 50px;
}
.about_ms_card_img{
  width: 40%;
}
.about_ms_card_img figure:not(:last-child){
  margin-bottom: 40px;
}
.about_ms_text{
  width: 60%;
}
.about_ms_text p:not(:last-child){
  margin-bottom: 2rem;
}
@media (max-width: 768px){
  .about_ms{
    margin-bottom: 100px;
  }
  .about_ms_card{
    flex-wrap: wrap;
    gap: 30px;
  }
  .about_ms_card_img{
    width: 100%;
    display: flex;
    gap: 10px;
  }
  .about_ms_card_img figure:not(:last-child){
    margin-bottom: 0;
  }
  .about_ms_text{
    width: 100%;
  }
}


/* マイクロスコープの見え方 */
/* ============================================ */
.movie_wrap{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: hidden;
}
.our_treatment{
  background-image: url(/img/fm/nd02/frame/bg-treatment.jpg);
  background-position: center;
  background-repeat: repeat;
}
.our_treatment_card{
  display: flex;
  align-items: center;
  gap: 50px;
}
.our_treatment_card_img{
  flex: 1;
  margin-right: calc(50% - 50vw);
}
.our_treatment_card_text{
  padding: 30px 0;
  width: 50%;
}
.our_treatment_description{
  font-weight: 700;
  margin-bottom: 80px;
}
.downward_bubble{
  position: relative;
  padding: 1em;
  border-bottom: 2px solid #111;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
}
.card_text_inner{
  width: 85%;
}
.downward_bubble::before{
  content: "";
  position: absolute;
  left: 100px;
  bottom: -21px;
  width: 0;
  height: 0;
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}
.downward_bubble::after{
  content: "";
  position: absolute;
  left: 102px;
  bottom: -16px;
  width: 0;
  height: 0;
  border-width: 16px 16px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.card_text_inner_img{
  display: flex;
  gap: 16px;
}
.card_text_inner_img figure{
  width: calc(100%/3);
  background: var(--secondary-bg-color);
  text-align: center;
  border-radius: 20px;
  padding: 16px 5px;
}
.card_text_inner_img figure img{
  height: 60px;
  margin-bottom: 10px;
}
.card_text_inner_img figcaption{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  font-size: 14px;
  font-size: clamp(12px,1.8vw,14px);
}
@media (max-width: 1100px){
  .card_text_inner{
    width: 100%;
  }
}
@media (max-width: 768px){
  .our_treatment{
    padding: 60px 0;
  }
  .our_treatment_card_text .heading_secondary{
    text-align: center;
  }
  .our_treatment_card_text .heading_secondary::before{
    left: calc(50% - 30px);
  }
  .our_treatment_card{
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .our_treatment_card_img{
    width: 100%;
    flex: auto;
    margin-right: 0;
  }
  .our_treatment_card_text{
    padding: 0;
    width: 100%;
  }
  .our_treatment_description{
    text-align: center;
    margin-bottom: 40px;
  }
  .card_text_inner_img{
    gap: 8px;
  }
}


/* マイクロスコープ治療だからできること */
/* ============================================ */
.point_ms{
  position: relative;
  padding: 100px 0;
  background-color: var(--tertiary-bg-color);
  margin-bottom: 200px;
}
.point_ms::after{
  content: "";
  position: absolute;
  bottom: -5vw;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 5vw solid var(--tertiary-bg-color);
}
.point_ms .heading_secondary_center::before {
  background: #fff;
}
.card_content{
  display: flex;
  gap: 70px;
  margin-bottom: 100px;
}
.card_content.reverse{
  flex-direction: row-reverse;
}
.card_content:last-child{
  margin-bottom: 0;
}
.card_img{
  width: 40%;
}
.card_text{
  width: 60%;
}
@media (max-width: 768px){
  .point_ms {
    padding: 60px 0;
    margin-bottom: 100px;
  }
  .card_content{
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
  }
  .card_img{
    width: 100%;
    text-align: center;
  }
  .card_text{
    width: 100%;
  }
}


/* ギャラリー */
/* ============================================ */
.feature{
  margin-bottom: 200px;
}
.feature .content_inner{
  max-width: 900px;
}
.feature_gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.feature_gallery figure{
  width: calc(50% - 40px);
}
.feature_gallery figure img{
  margin-bottom: 24px;
}
.feature_gallery figcaption{
  text-align: center;
  font-weight: 700;
  font-size: clamp(12px,3.1vw,24px);
  color: var(--main-color);
}
@media (max-width: 768px){
  .feature{
    margin-bottom: 100px;
  }
  .feature_gallery{
    gap: 20px;
  }
  .feature_gallery figure{
    width: calc(50% - 10px);
  }
  .feature_gallery figure img{
    margin-bottom: 10px;
  }
}
@media (max-width: 430px){
  .feature_gallery{
    gap: 20px 10px;
  }
  .feature_gallery figure{
    width: calc(50% - 5px);
  }
}


/* クリニックインタビュー */
/* ============================================ */
.interview{
  margin-bottom: 200px;
}
.interview_card{
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}
.interview_card_img{
  width: 40%;
}
.interview_card_text{
  width: 60%;
}
.interview_card_text h3{
  font-size: clamp(18px,3.1vw,24px);
  font-weight: 700;
  margin-bottom: 40px;
}
.interview_card_text .btn_primary{
  margin-top: 56px;
}
@media (max-width: 768px){
  .interview{
    margin-bottom: 100px;
  }
  .interview_card{
    flex-wrap: wrap;
    gap: 20px;
  }
  .interview_card_img{
    text-align: center;
    width: 100%;
  }
  .interview_card_text{
    width: 100%;
  }
  .interview_card_text h3{
    text-align: center;
    margin-bottom: 20px;
  }
  .interview_card_text .btn_primary{
    margin: 20px auto 0;
  }
}
