@charset "utf-8";
/*============================
共通
============================*/
.cont_ttl {
  font-size: 0.26rem;
  font-weight: 700;
  padding-bottom: 0.2rem;
  position: relative;
}

@media screen and (max-width: 640px) {
  .cont_ttl {
    font-size: 0.18rem;
    text-align: center;
    padding-bottom: 0.15rem;
  }
}

.cont_ttl::after {
  content: "";
  width: 0.55rem;
  height: 0.01rem;
  background-color: #81be25;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .cont_ttl::after {
    width: 0.40rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cont_ttl.-center {
  text-align: center;
}


.cont_ttl.-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.item_ttl {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.875;
  padding-bottom: 0.1rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .item_ttl {
    font-size: 0.15rem;
    padding-bottom: 0;
  }
}
.item_ttl.-center {
  text-align: center;
}

.item_text {
  font-size: 0.15rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 640px) {
  .item_text {
    font-size: 0.13rem;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

.item_text.-dot {
  text-indent: -0.16rem;
  padding-left: 0.16rem;
}

.item_text.-dot::before {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.1rem;
  position: relative;
  top: -0.02rem;
}
@media screen and (max-width: 640px) {
  .item_text.-dot {
    text-indent: -0.12rem;
    padding-left: 0.12rem;
  }

  .item_text.-dot::before {
    width: 0.04rem;
    height: 0.04rem;
    margin-right: 0.08rem;
    top: -0.01rem;
  }
}

/* テーブルレイアウト風 */
.text_list {
  width: 50%;
  border-top: 1px solid #707070;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  display: flex;
}

.text_list.-w100 {
  width: 100%;
}

.text_list.-borderbottom {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 640px) {
  .text_list.-borderbottom {
    border-bottom: none;
  }
}

.text_list .ttl {
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  .text_list .ttl {
    line-height: 1.2;
    padding-top: 0.05rem;
  }
}
.text_list .txt {
  font-size: 0.14rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 640px) {
  .text_list .txt {
    font-size: 0.13rem;
  }
}
@media screen and (max-width: 640px) {
  .text_list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem 0;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .text_list .ttl,
  .text_list .txt {
    width: 100%;
  }
}

/* 4カラムレイアウト */
.list4col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list4col .item {
  width: 23.5%;
}

.list4col .item .ph_wrap {
  margin-bottom: 0.2rem;
}

/* 3カラムレイアウト */
.list3col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list3col .item {
  width: 31.5%;
}

.list3col .item .ph_wrap {
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  .list3col .item .ph_wrap {
    margin-bottom: 0.1rem;
  }
  .list3col .item_ttl {
    font-size: 0.14rem;
  }
}
/* 2カラムレイアウト */
.list2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list2col .item {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .list2col .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.list2col .item .ph_wrap {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  .list2col .item .ph_wrap {
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 640px) {
  .list4col .item {
    width: 48%;
    margin-bottom: 0.5rem;
  }

  .list4col .item .ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  .list2col .item {
    width: 100%;
  }

  .list2col .item .ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* 写真とテキストの組み合わせ */
.ph_text_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ph_text_wrap .ph_wrap {
  width: 6.5rem;
}

.ph_text_wrap .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph_text_wrap .text_wrap {
  width: calc(100% - 6.5rem);
  box-sizing: border-box;
  padding-left: 0.5rem;
}

.ph_text_wrap .text_wrap .cont_title {
  font-size: 0.2rem;
  font-weight: 700;
  padding-bottom: 0.2rem;
}

.ph_text_wrap .text_wrap .text {
  font-size: 0.16rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
}

.ph_text_wrap .text_wrap .cont_box {
  padding-top: 0.45rem;
}

@media screen and (max-width: 640px) {
  .ph_text_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .ph_text_wrap .ph_wrap,
  .ph_text_wrap .text_wrap {
    width: 100%;
    padding-left: 0;
  }

  .ph_text_wrap .text_wrap {
    margin-top: 0.25rem;
  }

  .ph_text_wrap .ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/*============================
業務案内
============================*/
.business {
  padding-bottom: 1.0rem;
  position: relative;
}

.business .in::after {
  content: "";
  width: 100%;
  height: 3.8rem;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 0.3rem;
  right: 1rem;
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .business .in::after {
    right: 0;
    height: 2.4rem;
    bottom: 0.1rem;
  }
}

.business .cont_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.business .cont_wrap .text_wrap {
  width: 52%;
  padding-top: 0.50rem;
}

.business .cont_wrap .text_wrap .text {
  font-size: 0.16rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 640px) {
  .business .cont_wrap .text_wrap .text {
    font-size: 0.15rem;
  }
}

.business .cont_wrap .ph_wrap {
  width: 48%;
  box-sizing: border-box;
  padding-left: 0.3rem;
}

.business .cont_wrap .ph_wrap .list {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}

.business .cont_wrap .ph_wrap .list .item {
  width: 48%;
}

.business .cont_wrap .ph_wrap .list .item:first-child {
  margin-top: 0.5rem;
}

@media screen and (max-width: 640px) {
  .business .cont_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .business .cont_wrap .text_wrap,
  .business .cont_wrap .ph_wrap {
    width: 100%;
    padding-left: 0;
  }


  .business .cont_wrap .ph_wrap .list .item:first-child {
    margin-top: 0.2rem;
  }
}

/*============================
計画・設計・調査解析
============================*/
.plan {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan {
    padding-bottom: 0;
  }
}

.plan .lead {
  font-size: 0.16rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
  padding-bottom: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .plan .lead {
    font-size: 0.14rem;
    text-align: justify;
    padding-bottom: 0.3rem;
  }
}

/* 構想立案 */
.kousou_wrap {
  position: relative;
}

.kousou_wrap::before {
  content: "";
  width: calc(100% - 1.00rem);
  height: 100%;
  background-color: #ECF8FA;
  position: absolute;
  top: 0.50rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .plan .kousou_wrap::before {
    width: 100%;
  }
}

.plan .ph_text_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.plan .ph_text_wrap .ph_wrap {
  width: 6.4rem;
}

.plan .ph_text_wrap .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan .ph_text_wrap .text_wrap {
  width: calc(100% - 6.4rem);
  box-sizing: border-box;
  padding-left: 0.5rem;
}

.plan .ph_text_wrap .text_wrap .cont_title {
  font-size: 0.2rem;
  font-weight: 700;
  padding-bottom: 0.2rem;
}

.plan .ph_text_wrap .text_wrap .text {
  font-size: 0.16rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
}

.plan .ph_text_wrap .text_wrap .cont_box {
  padding-top: 0.45rem;
}
@media screen and (max-width: 640px) {
  .plan .ph_text_wrap .text_wrap .cont_box {
    padding-top: 0.3rem;
  }
}

@media screen and (max-width: 640px) {
  .plan .ph_text_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .plan .ph_text_wrap .ph_wrap,
  .plan .ph_text_wrap .text_wrap {
    width: 100%;
    padding-left: 0;
  }

  .plan .ph_text_wrap .text_wrap {
    margin-top: 0.25rem;
  }

  .plan .ph_text_wrap .ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* 調査解析 */
.plan .chousa_wrap {
  position: relative;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan .chousa_wrap {
    margin-top: 1.0rem;
    padding-bottom: 0.4rem;
  }
}

.plan .chousa_wrap .cont_ttl {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan .chousa_wrap .cont_ttl {
    margin-bottom: 0.3rem;
  }
}                               

.plan .chousa_wrap::after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 2rem);
  background-color: #F2F8E9;
  position: absolute;
  bottom: -0.3rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .plan .chousa_wrap::after {
    width: 100%;
    right: 0;
    bottom: 0;
    height: calc(100% - 1.5rem);
  }
  .plan .chousa_wrap .list3col {
    gap: 0.4rem 0;
    padding-bottom: 0.50rem;
  }
  .plan .chousa_wrap .list3col .item {
    width: 100%;
  }
  .plan .chousa_wrap .list3col .item .item_ttl {
    font-size: 0.15rem;
  }
  .plan .chousa_wrap .list3col .item .ph_wrap {
    height: 55vw;
  }
  .plan .chousa_wrap .list3col .item.ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

}


.plan .chousa_wrap .bottom_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  .plan .chousa_wrap .bottom_cont {
    margin-top: 0;
    border-bottom: 1px solid #707070;
  }
}

.plan .chousa_wrap .bottom_cont .text_list .ttl {
  width: 20%;
}

.plan .chousa_wrap .bottom_cont .text_list:nth-child(even) .ttl {
  width: 30%;
}

@media screen and (max-width: 640px) {
  .plan .chousa_wrap .bottom_cont .text_list .ttl,
  .plan .chousa_wrap .bottom_cont .text_list:nth-child(even) .ttl {
    width: 100%;
  }
}

/* 計画 */
.plan .keikaku_wrap {
  position: relative;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan .keikaku_wrap {
    padding-bottom: 0;
  }
}

.plan .keikaku_wrap::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 2rem);
  background-color: #F2F8E9;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .plan .keikaku_wrap::before {
    width: 100%;
    bottom: 0;
    height: calc(100% - 1.8rem);
  }
}

.plan .keikaku_wrap .cont_ttl {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan .keikaku_wrap .cont_ttl {
    margin-bottom: 0.2rem;
  }
}

.plan .keikaku_wrap .list2col {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 640px) {
  .plan .keikaku_wrap .list2col {
    margin-bottom: 0;
  }
}


/* 設計 */
.plan .sekkei_wrap {
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .plan .sekkei_wrap {
    margin-top: 1.0rem;
    padding-bottom: 0;
  }
}

.plan .sekkei_wrap::after {
  content: "";
  width: calc(100% - 1.00rem);
  height: calc(100% - 6.00rem);
  background-color: #ECF8FA;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .plan .sekkei_wrap::after {
    width: 100%;
    height: 9.4rem;
  }
}

.plan .sekkei_wrap .cont_ttl {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .plan .sekkei_wrap .cont_ttl {
    margin-bottom: 0.2rem;
  }
}

.plan .sekkei_wrap .list3col {
  margin-top: 0.5rem;
}

.plan .sekkei_wrap .list3col .item {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  .plan .sekkei_wrap .list3col .item {
    margin-bottom: 0.3rem;
    width: 48%;
  }
}

.plan .sekkei_wrap .bottom_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .plan .sekkei_wrap .bottom_cont {
    border-bottom: 1px solid #707070;
  }
}

.plan .sekkei_wrap .bottom_cont .text_list .ttl {
  width: 30%;
}

.plan .sekkei_wrap .bottom_cont .text_list:nth-child(even) .ttl {
  width: 20%;
}

@media screen and (max-width: 640px) {
  .plan .sekkei_wrap .bottom_cont .text_list .ttl,
  .plan .sekkei_wrap .bottom_cont .text_list:nth-child(even) .ttl {
    width: 100%;
  }
}

/* 災害復旧 */
.plan .saigai_wrap {
  position: relative;
  padding: 0.5rem 0;
  margin-top: 1rem;
}
@media screen and (max-width: 640px) {
  .plan .saigai_wrap {
    margin-top: 0.5rem;
  }
}

.plan .saigai_wrap::after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1.0rem);
  background-color: #ECF8FA;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .plan .saigai_wrap::after {
    width: 100%;
    left: 0;
  }
}

.plan .saigai_wrap .ph_text_wrap {
  display: flex;
}

@media screen and (max-width: 640px) {
  .plan .saigai_wrap .ph_text_wrap {
    flex-direction: column;
  }
}

/* 農業情報システム開発 */
.plan .agri_system_wrap {
  position: relative;
  padding: 0.5rem 0;
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .plan .agri_system_wrap {
    margin-top: 0.5rem;
  }
}

.plan .agri_system_wrap::after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1.0rem);
  background-color: #F2F8E9;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .plan .agri_system_wrap::after {
    width: 100%;
    right: 0;
  }
}

.plan .agri_system_wrap .ph_text_wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
}

@media screen and (max-width: 640px) {
  .plan .agri_system_wrap .ph_text_wrap {
    flex-direction: column;
  }
}

.plan .agri_system_wrap .ph_text_wrap .cont_ttl {
  margin-bottom: 0.4rem;
}

.plan .agri_system_wrap .ph_text_wrap .block {
  padding-right: 0.40rem;
}

@media screen and (max-width: 640px) {
  .plan .agri_system_wrap .ph_text_wrap .block {
    padding-right: 0;
  }
}

.plan .agri_system_wrap .ph_text_wrap .block .text_list {
  width: 100%;
  display: block;
}

/* 施工管理 */
.plan .sekou_wrap {
  position: relative;
  padding: 0.5rem 0;
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .plan .sekou_wrap {
    margin-top: 0.5rem;
  }
}

.plan .sekou_wrap::after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1.0rem);
  background-color: #ECF8FA;
  position: absolute;
  bottom: 0;
  left: 0; 
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .plan .sekou_wrap::after {
    width: 100%;
    left: 0;
  }
}

.plan .sekou_wrap .ph_text_wrap {
  display: flex;
  align-items: end;
}

@media screen and (max-width: 640px) {
  .plan .sekou_wrap .ph_text_wrap {
    flex-direction: column;
  }
}

.plan .sekou_wrap .ph_text_wrap .cont_ttl {
  margin-bottom: 0.4rem;
}

.plan .sekou_wrap .ph_text_wrap .block {
  padding-right: 0.40rem;
}
@media screen and (max-width: 640px) {
  .plan .sekou_wrap .ph_text_wrap .block {
    padding-right: 0;
  }
}

.plan .sekou_wrap .ph_text_wrap .block .text_list {
  width: 100%;
  display: block;
}

/* BIM/CIM および 生成AI */
.plan .bim_cim_wrap {
  position: relative;
  padding: 0.5rem 0;
  margin-top: 0.7rem;
}
@media screen and (max-width: 640px) {
  .plan .bim_cim_wrap {
    margin-top: 0.5rem;
  }
}

.plan .bim_cim_wrap .col2_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.plan .bim_cim_wrap .col2_wrap .column {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .plan .bim_cim_wrap .col2_wrap .column {
    width: 100%;
  }
}

.plan .bim_cim_wrap .col2_wrap .column .cont_ttl {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  .plan .bim_cim_wrap .col2_wrap .column .cont_ttl {
    margin-bottom: 0.2rem;
  }
}

.plan .bim_cim_wrap .col2_wrap .column .txt {
  font-size: 0.15rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
  padding-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  .plan .bim_cim_wrap .col2_wrap {
    flex-direction: column;
    gap: 0.45rem 0;
  }
}

/* 施工管理　農業情報システム開発 */
.plan .sekou_system_wrap {
  margin-top: 1rem;
}

.plan .sekou_system_wrap .in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.plan .sekou_system_wrap .in .cont_wrap {
  width: 48%;
}

.plan .sekou_system_wrap .in .cont_wrap .ph_wrap {
  margin-top: 0.45rem;
  margin-bottom: 0.35rem;
}

.plan .sekou_system_wrap .block {
  padding-top: 0.30rem;
}

.plan .sekou_system_wrap .in .cont_wrap .text_list {
  width: 100%;
}
.plan .sekou_system_wrap .in .cont_wrap .text_list .ttl {
  width: 30%;
}


.plan .sekou_system_wrap .in .cont_wrap.-system .text_list .ttl {
  width: 45%;
}

.plan .sekou_system_wrap .in .cont_wrap.-system .text_list .txt {
  width: 55%;
}

@media screen and (max-width: 640px) {
  .plan .sekou_system_wrap .in {
    flex-direction: column;
    gap: 0.45rem 0;
  }

  .plan .sekou_system_wrap .in .cont_wrap {
    width: 100%;
  }

  .plan .sekou_system_wrap .in .cont_wrap .ph_wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  .plan .sekou_system_wrap .in .cont_wrap .text_list .ttl {
    width: 100%;
  }

  .plan .sekou_system_wrap .in .cont_wrap.-system .text_list .ttl,
  .plan .sekou_system_wrap .in .cont_wrap.-system .text_list .txt {
    width: 100%;
  }
}

/* 品質マネジメントシステム */
.plan .qms_wrap {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding: 0.7rem 0;
}
@media screen and (max-width: 640px) {
  .plan .qms_wrap {
    padding: 0.5rem 0;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
}

.plan .qms_wrap::after {
  content: "";
  width: calc(100% - 1rem);
  height: 100%;
  background-color: #F2F8E9;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .plan .qms_wrap::after {
    width: 100%;
    right: 0;
  }
}

.plan .qms_wrap .lead {
  font-size: 0.15rem;
  line-height: 1.9;
  letter-spacing: 0.09em;
  padding-bottom: 0.3rem;
  text-align: center;
  margin-top: 0.5rem;
}

.plan .qms_wrap .housin {
  width: 100%;
  max-width: 8rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 0.1rem;
  border: 1px solid #81BE25;
  padding: 0.2rem;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.plan .qms_wrap .housin .housin_ttl {
  font-size: 0.20rem;
  font-weight: 700;
  padding-bottom: 0.10rem;
  width: 25%;
  text-align: center;
}

.plan .qms_wrap .housin .housin_list {
  width: 75%;
  box-sizing: border-box;
}

.plan .qms_wrap .housin .housin_list .item {
  font-size: 0.16rem;
  letter-spacing: 0.09em;
  line-height: 1.9;
}

@media screen and (max-width: 640px) {
  .plan .qms_wrap .housin {
    flex-direction: column;
    max-width: none;
    padding-top: 0.3rem;
  }

  .plan .qms_wrap .housin .housin_ttl {
    width: 100%;
    font-size: 0.18rem;
  }

  .plan .qms_wrap .housin .housin_list {
    width: 100%;
  }

  .plan .qms_wrap .housin .housin_list .item {
    font-size: 0.14rem;
  }
}

.plan .qms_wrap .bottom_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.plan .qms_wrap .bottom_cont .ph_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 48%;
}

.plan .qms_wrap .bottom_cont .ph_list .item {
  width: 48%;
}

.plan .qms_wrap .bottom_cont .ph_list .item img {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.16);
}
.plan .qms_wrap .bottom_cont .text_wrap {
  width: 52%;
  box-sizing: border-box;
  padding-left: 0.35rem;
}

.plan .qms_wrap .bottom_cont .text_wrap .text_list {
  width: 100%;
}

.plan .qms_wrap .bottom_cont .text_wrap .text_list .ttl {
  width: 30%;
}

@media screen and (max-width: 640px) {
  .plan .qms_wrap .bottom_cont {
    flex-direction: column;
    margin-top: 0.4rem;
  }

  .plan .qms_wrap .bottom_cont .ph_list,
  .plan .qms_wrap .bottom_cont .text_wrap {
    width: 100%;
    padding-left: 0;
  }

  .plan .qms_wrap .bottom_cont .ph_list {
    margin-bottom: 0.25rem;
  }

  .plan .qms_wrap .bottom_cont .text_wrap .text_list .ttl {
    width: 100%;
  }
}