/* first view */
#first_view{
  position: relative;
  width: 100%;
  height: 100vh;
}
.top_holder{
  width: 100%;
  height: 100%;
}
.top_holder img{
  height: 100%;
  object-fit: cover;
}
.icon_muryou{
  width: 150px;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
}
.top_article{
  position: absolute;
  bottom: 15%;
  left: 10%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.top_article p,.top_article h1{
  background-color: #FFF;
  margin-bottom: 10px;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
}

/* reason */
#reason_sec{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.reason_box{
  width: 80%;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}
.reason_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 33%;
  gap: 1rem;
}
.reason_item figure{
  min-width: 100px;
  min-height: 100px;
  border-radius: 100%;
  width: 50%;
}
.reason_item article{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* news */
#news_sec{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news_group{
  width: 80%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
.news_item{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0 1rem 5rem;
  border-bottom: 1px solid #000;
  gap: 3rem;
}
.news_item span{
  padding: 0.5rem;
}

/* introduction */
#intro_sec{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro_group{
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.intro_itme{
  width: 45%;
  border-top: 3px solid #2f557a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  padding-top: 2rem;
}
.intro_text{
  padding: 0 2rem;
}

/* Q&A */
#faq_sec{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../images/photo/qa_back.png);
  background-repeat: no-repeat;
  background-position: bottom;
}
.faq_group{
  width: 80%;
  display: flex;
  flex-direction: column;
}
.faq_item{
  border: 1px solid #2f557a;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  margin-bottom: 2rem;
  min-height: 14rem;
  min-width: 100%;
  align-items: center;
}
.faq_item figure{
  width: 8%;
  margin-left: auto;
}
.faq_item_q,.faq_item_a{
  display: flex;
  gap: 2rem;
  align-items: baseline;
}


/* ============================================================== */
/* ==============  2023タプレット 601-1024px   ==================== */
/* ============================================================== */
@media screen and (max-width:1024px){
  .icon_muryou{
    top: 50%;
  }
  .reason_box{
    flex-direction: column;
    gap: 3rem;
  }
  .reason_item{
    width: 100%;
  }
  .news_item{
    padding: 1rem;
  }
  .faq_item figure{
    width: 15%;
  }
  .faq_item_q,.faq_item_a{
    gap: 1rem;
  }
}

/* ============================================================== */
/* ==============  2023スマホ     375-600px   ==================== */
/* ============================================================== */
@media screen and (max-width:600px){
  .icon_muryou{
    width: 120px;
    top: 55%;
    left: 20%;
  }
  .news_item{
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .intro_group{
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .intro_itme{
    width: 95%;
    justify-content: center;
  }
  .faq_item{
    padding: 0.5rem;
    min-height: 11rem;
  }
  .faq_item figure{
    width: 30%;
  }
  .faq_item_q,.faq_item_a{
    gap: 0.5rem;
  }
}