/* MV home */
/* ============================================ */
.mv{
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
}
.mv_img img{
  width: 100%;
  height: 730px;
  object-fit: cover;
}
.mv_text{
  width: 100%;
  max-width: var(--width-lg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: var(--secondary-font);
  z-index: 10;
}
.mv_text h2{
  font-size: clamp(24px,3.8vw,40px);
  margin-bottom: 40px;
}
.mv_text p{
  font-size: 18px;
  font-size: clamp(14px,2.3vw,18px);
}
@media (max-width: 430px){
  .mv_img img{
    height: 100vh;
  }
}

/* NAVIGATION
--------------------------- */
.main_nav{
  margin-bottom: 100px;
}

/* OUR FEATURES */
/* ============================================ */
.features{
  counter-reset: features-no 0;
}
.bg_left,.bg_right{
  position: relative;
}
.bg_left{
  padding-top: 40px;
}
.bg_right{
  padding-bottom: 40px;
}
.bg_left::before,.bg_right::before{
  content: "";
  display: block;
  width: 40vw;
  background-color: var(--bg-color);
  /* z-index: -1; */
}
.bg_left::before{
  margin-left: calc(50% - 50vw);
  height: 95%;
  position: absolute;
  left: 0;
  top: 0;
}
.bg_right::before{
  margin-right: calc(50% - 50vw);
  height: 75%;
  position: absolute;
  right: 0;
  top: 250px;
}
.features_card{
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
}
.features_card::before{
  counter-increment: features-no 1;
  content: "0" counter(features-no);
  display: block;
  font-weight: 900;
  font-size: 64px;
  color: var(--tertiary-bg-color);
  line-height: 1;
}
.bg_left .features_card::before{
  color: #fff;
}
.features_card.rt{
  margin-left: auto;
}
.features_card_inner{
  display: flex;
  border-radius: 20px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.features_card_inner figure{
  width: 40%;
}
.features_card_inner figure img{
  height: 100%;
  object-fit: cover;
}
.features_card_text{
  width: 60%;
  padding: 40px;
  background-color: #fff;
}
.features_card_text h3{
  font-size: clamp(18px,3.1vw,24px);
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.5;
  margin-bottom: 30px;
}
.features_card_text p{
  font-size: clamp(16px,2.3vw,18px);
  margin-bottom: 30px;
}
@media (max-width: 768px){
  .bg_left::before,.bg_right::before{
    width: 70vw;
  }
  .bg_left::before{
    height: 70%;
  }
  .bg_right::before{
    height: 80%;
  }
  .features_card{
    max-width: 400px;
    margin-bottom: 50px;
  }
  .features_card_inner{
    display: block;
  }
  .features_card_inner figure{
    width: 100%;
  }
  .features_card_inner figure img{
    width: 100%;
  }
  .features_card_text{
    width: 100%;
    padding: 20px;
  }
  .features_card_text h3{
    margin-bottom: 20px;
  }
  .features_card_text p{
    margin-bottom: 20px;
  }
}


/* TREATMENT MENU */
/* ============================================ */
.bg_lattice{
  position: relative;
  padding-bottom: 100px;
}
.bg_lattice::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-image: url(/img/fm/nd02/frame/bg-treatment.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.treatment_menu_01,.treatment_menu_02{
  display: flex;
  justify-content: space-between;
  margin:0;
  padding:0;
}
.treatment_menu_01{
  gap: 0 5%;
  margin-bottom: 50px;
}
.treatment_menu_02{
  gap: 0 3%;
}
.treatment_menu_01 li,.treatment_menu_02 li{
  text-align: center;
  background-color: var(--secondary-bg-color);
  border-radius: 20px;
  padding: 36px 0;
  font-weight: 700;
  list-style: none;
}
.treatment_menu_01 li{
  width: calc(100% / 3);
  font-size: 24px;
  font-size: clamp(16px,2.2vw,24px);
}
.treatment_menu_02 li{
  width: calc(100% / 4);
  font-size: clamp(16px,2vw,20px);
}
.treatment_menu_01 li a,.treatment_menu_02 li a{
  display: block;
  color: #5A5954;
}
.treatment_menu_01 li img,.treatment_menu_02 li img{
  display: block;
  height: 90px;
  margin: 0 auto 25px;
}
@media (max-width: 768px){
  .bg_lattice{
    padding-bottom: 60px;
  }
  .bg_lattice::before{
    top: 60px;
  }
  .treatment_menu_01,.treatment_menu_02{
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px 16px;
  }
  .treatment_menu_01{
    margin-bottom: 20px;
  }
  .treatment_menu_01 li,.treatment_menu_02 li{
    width: calc(50% - 8px);
    padding: 20px 0;
  }
  .treatment_menu_01 li img,.treatment_menu_02 li img{
    height: 70px;
    margin: 0 auto 15px;
  }
  .treatment_menu_01 .menu_wide{
    width: 100%;
    font-size: 24px;
  }
  .treatment_menu_01 .menu_wide a{
    display: flex;
    align-items: center;
  }
  .treatment_menu_01 .menu_wide img{
    width: 50%;
    max-width: 130px;
    height: auto;
  }
  .treatment_menu_01 .menu_wide p{
    width: 50%;
  }
}


/* FLOW */
/* ============================================ */
.flow{
  position: relative;
  padding: 60px 0;
  background-color: var(--tertiary-bg-color);
  margin-bottom: 200px;
}
.flow::after{
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid var(--tertiary-bg-color);
}
.flow_line{
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}
.flow_line li{
  position: relative;
  width: calc(100% / 4);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
}
.flow_line li::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}
.flow_line li:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 1;
}
.flow_line li span{
  display: block;
  font-size: 64px;
  margin-bottom: 95px;
  line-height: 1;
}
@media (max-width: 768px){
  .flow{
    padding: 50px 0;
    margin-bottom: 100px;
  }
  .flow::after{
    bottom: -40px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid var(--tertiary-bg-color);
  }
  .flow_line{
    width: 90%;
    max-width: 300px;
    display: block;
  }
  .flow_line li{
    width: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  .flow_line li:not(:last-child){
    padding-bottom: 70px;
  }
  .flow_line li::before{
    top: 5px;
    left: 75px;
    transform: unset;
  }
  .flow_line li:not(:last-child)::after{
    top: 20px;
    left: 89px;
    transform: unset;
    width: 2px;
    height: 100%;
  }
  .flow_line li span{
    margin-bottom: 0;
    margin-right: 90px;
    font-size: 40px;
  }
}


/* PICK UP */
/* ============================================ */
.pickup.content_wrap{
  margin-bottom: 200px;
}
.pickup_card{
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 0 30px;
}
.pickup_card figure{
  border-radius: 20px;
  overflow: hidden;
}
.pickup_card figure img{
  height: 480px;
  object-fit: cover;
}
.pickup .heading_wrap{
  text-align: right;
}
.pickup_menu{
  position: absolute;
  right: 0;
  bottom: 60px;
  margin:0;
  padding:0;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  z-index: 1;
}
.pickup_menu li{
  width: calc(50% - 12px);
  list-style: none;
}
.pickup_menu li a {
  color: #5A5954;
}
@media (max-width: 768px){
  .pickup.content_wrap{
    margin-bottom: 100px;
  }
  .pickup_card{
    display: block;
  }
  .pickup_card figure{
    text-align: center;
    margin-bottom: 24px;
  }
  .pickup_card figure img{
    width: 500px;
    height: auto;
  }
  .pickup_menu{
    position: static;
    margin: 0 auto;
    max-width: 500px;
    gap: 16px;
  }
  .pickup_menu li{
    width: 100%;
  }
}

/* INFORMATION */
/* ============================================ */
.infomation{
  margin-bottom: 200px;
}
.infomation .content_inner{
  padding: 80px;
  background-color: var(--accent-color);
}

#information_list{
  margin:0;
  padding:0;
  font-size: clamp(16px,2.6vw,20px);
}
#information_list li{
  display: flex;
  gap: 16px 24px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}
#information_list li:not(:last-child){
  margin-bottom: 16px;
}
#information_list .Date{
  display: inline-block;
  white-space: nowrap;
}
#information_list .Category{
  display: inline-block;
  min-width: 120px;
  height: 34px;
  text-align: center;
  font-size: clamp(14px,2vw,16px);
  line-height: 30px;
  background-color: var(--sub-color);
  color: var(--main-color);
  border-radius: 50vw;
}
.infomation .btn_primary{
  position: absolute;
  right: 0;
  bottom: -30px;
}
@media (max-width: 768px){
  .infomation{
    margin-bottom: 150px;
  }
  .infomation .content_inner{
    width: 100%;
    padding: 70px 30px;
    padding: 70px 10px;
  }
  #information_list li{
    gap: 16px 20px;
    padding: 20px;
    flex-wrap: wrap;
  }
  #information_list .Category{
    width: 100px;
    height: 30px;
  }
  .infomation .btn_primary{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ACCESS */
/* ============================================ */
#access{
  clear: both;
  border-top: none;
  margin-bottom: 200px;
  margin-bottom: 70px;
  padding-top: 0;
}
