@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-primary: #3fb160;

  --noto: "Noto Sans JP", sans-serif;

  --fs18: 1.8rem;
  --fs20: 2rem;
  --fs22: 2.2rem;
  --fs25: 2.5rem;
  --header: 23rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --fs18: 1.4rem;
    --fs20: 1.4rem;
    --fs22: 1.6rem;
    --fs25: 2rem;
    --header: 8rem;
    scroll-padding: var(--header);
  }

}

/*================================================
* mainVisual
================================================*/
#mainVisual {
  margin-top: 23rem;
  height: 108rem;
  background: url(../images/mv_bg.jpg) no-repeat center/cover;
  /* height: 100%; */
}

.newsArea {
  display: flex;
  gap: 7rem;
  padding: 5rem;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5rem;
  border: 1px solid var(--color-black);
  box-shadow: 7px 7px 5px rgb(0 0 0 / 15%);
}

.newsArea h2 {
  color: var(--color-primary);
  font-size: 5rem;
  font-weight: 700;
}

.newsArea ul {
  width: 86rem;
  margin-top: 1rem;
}

.newsArea ul li:not(:last-child) {
  border-bottom: 0.05rem solid #000000;
  margin-bottom: 4rem;
}

.newsArea ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: var(--fs18);
  font-weight: 400;
  gap: 2rem;
  position: relative;
  padding-bottom: 2rem;
  padding-right: 3rem;
}

/* 
.newsArea ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: var(--fs18);
  font-weight: 400;
  gap: 2rem;
  position: relative;
  padding-bottom: 2rem;
  padding-right: 3rem;
} */

.newsArea ul li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/news_arrow.png);
  width: 1.6rem;
  height: 2.1rem;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
}

.newsArea ul li .date {
  white-space: nowrap;
}

.newsArea ul li .cat {
  font-size: var(--fs20);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  white-space: nowrap;
}

.newsArea ul li .ttl {
  font-size: var(--fs25);
}

@media screen and (max-width:767px) {
  #mainVisual {
    margin-top: 8rem;
    background: url(../images/mv_bg.jpg) no-repeat center left 21% / cover;
  }

  .newsArea {
    flex-wrap: wrap;
    padding: 3rem 1.5rem;
    width: 90%;
    gap: 2rem;
  }

  .newsArea h2 {
    width: 100%;
  }

  .newsArea ul {
    width: 100%;
    margin-top: 1rem;
  }


  .newsArea ul li a {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* .newsArea ul li {
    flex-wrap: wrap;
    gap: 1rem;
  } */

  .newsArea ul li .ttl {
    font-size: 1.8rem;
    display: block;
    width: 100%;
  }



}


/*================================================
* point
================================================*/
#point {
  padding-top: 6rem;
  background: var(--color-primary);
  z-index: 1;
}

#point::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/point_circle.png);
  width: 192rem;
  height: 80.6rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.point_txt {
  text-align: center;
  position: relative;
  padding-bottom: 54rem;
}

.point_txt::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/point_img.png);
  width: 104.8rem;
  height: 58.7rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.point_txt h2 {
  font-size: 5rem;
  letter-spacing: 0;
  font-feature-settings: "palt";
  line-height: 1.3;
  font-weight: 700;
}

.point_txt h2 span {
  font-size: 6.4rem;
  font-weight: 800;
  color: var(--color-primary);
  border-bottom: 0.8rem solid #e7e400;
  margin-bottom: 1rem;
  display: inline-block;
}

.point_banner {
  width: 150rem;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  #point {
    overflow: hidden;
  }

  #point::before {
    top: -43rem;
  }

  .point_txt {
    padding-bottom: 20rem;
  }

  .point_txt h2 {
    font-size: 2.6rem;
  }

  .point_txt h2 span {
    font-size: 3.4rem;
  }

  .point_txt::before {
    width: 35rem;
    height: 19.6rem;
  }

  .point_banner {
    width: 34.5rem;
  }
}

/*================================================
* problems
================================================*/
/* problems_top */
.problems_top {
  position: relative;
  background: url(../images/problems_bg.png) no-repeat center bottom/cover;
  height: 100%;
  padding: 8rem 0 19rem;
}


.problems_top h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}

.problems_top h2 span {
  color: var(--color-primary);
  font-size: 4.5rem;
}

.problems_top ul {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 4rem;
  width: 117rem;
  margin: 4rem auto 0;
}

.problems_top ul li {
  position: relative;
  width: 36rem;
}

.problems_top ul li p {
  position: absolute;
  text-align: center;
  font-size: var(--fs28);
  font-weight: 700;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.2;
}

.problems_top ul li:nth-child(2) p,
.problems_top ul li:nth-child(4) p,
.problems_top ul li:nth-child(5) p {
  top: 5rem;
}

.problems_top h3 {
  font-size: 5rem;
  width: 74rem;
  margin: 0 auto;
  height: 10rem;
  border-radius: 1000px;
  background: var(--color-primary);
  color: var(--color-white);
  display: grid;
  place-content: center;
}

.problems_top h3+p {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
  line-height: 1.65;
}

/* problems_under */
.problems_under {
  margin-top: 8rem;
}

.problems_under h2 {
  text-align: center;
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.problems_under h2::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/problems_under-ttl.png);
  width: 35rem;
  height: 39rem;
  top: 50%;
  right: -29rem;
  transform: translateY(-50%);
}

.problems_under h2 span {
  color: var(--color-primary);
}

.problems_under-img {
  width: 124rem;
  margin: 6rem auto;
}

.problems_under h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.problems_under h3 span {
  color: var(--color-primary);
  font-size: 3.5rem;
}

.problems_under-card {
  width: 140rem;
  margin: 10rem auto 4rem;
}

.problems_under-card ul {
  display: flex;
  gap: 5rem;
  align-items: stretch;
}


.problems_under-card ul li {
  width: 40rem;
  background: #D2D2D3;
  background: linear-gradient(0deg, rgba(210, 210, 211, 1) 0%, rgba(238, 238, 239, 1) 100%);
  border-radius: 0 0 1rem 1rem;
}

.problems_under-card ul li:nth-child(2) {
  width: calc(100% - ((40rem * 2) + 10rem));
}

.problems_under-card ul li h5 {
  background: var(--color-primary);
  text-align: center;
  color: var(--color-white);
  font-size: 3.5rem;
  position: relative;
  line-height: 1.2;
  min-height: 15rem;
  display: grid;
  place-content: center;
  border-radius: 1rem 1rem 0 0;
}

.problems_under-card ul li h5 span {
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  aspect-ratio: 1/1;
  width: 10rem;
  border-radius: 1000000000px;
  border: 1rem solid var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
  line-height: 1;
  display: grid;
  place-content: center;
}

.problems_under-card ul li:nth-child(2) h5 {
  background: #f29600;
}

.problems_under-card ul li:nth-child(2) h5 span {
  border: 1rem solid #f29600;
  color: #f29600;
}

.problems_under-card ul li:nth-child(3) h5 {
  background: #036eb7;
}

.problems_under-card ul li:nth-child(3) h5 span {
  border: 1rem solid #036eb7;
  color: #036eb7;
}

.problems_under-card ul li p {
  padding: 2rem 3rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  font-weight: 400;
  font-size: 2.9rem;
}

.problems_under h4 {
  font-size: 5rem;
  text-align: center;
  font-weight: 700;
}

.problems_under h4 span {
  color: var(--color-primary);
}

.problems_under h4 span strong {
  font-size: 6rem;
}

@media screen and (max-width:767px) {
  .problems_top {
    padding: 8rem 0 4rem;
  }

  .problems_top h2 {
    font-size: 3rem;
    line-height: 1.5;
  }

  .problems_top h2 span {
    color: var(--color-primary);
    font-size: 3.2rem;
  }

  .problems_top ul {
    gap: 1rem;
    width: 34.5rem;
  }

  .problems_top ul li {
    position: relative;
    width: 100%;
  }


  .problems_top h3 {
    width: 34.5rem;
    font-size: 3rem;
    height: 6rem;
  }

  .problems_top h3+p {
    width: 34.5rem;
    margin: 2rem auto 4rem;
  }

  .problems_under {
    overflow: hidden;
    margin-top: 2rem;
  }

  .problems_under-img {
    width: 34.5rem;
    margin: 2rem auto;
  }

  .problems_under-card {
    width: 34.5rem;
    margin: 6rem auto;
  }

  .problems_under-card ul {
    flex-wrap: wrap;
    gap: 7rem;
  }

  .problems_under-card ul li {
    width: 100%;
  }

  .problems_under-card ul li:nth-child(2) {
    width: 100%;
  }

  .problems_under-card ul li h5 {
    font-size: 2.5rem;
    line-height: 1.2;
    min-height: 11rem;
  }

  .problems_under-card ul li h5 span {
    top: -6rem;
    font-size: 3rem;
    width: 8rem;
  }

  .problems_under-card ul li p {
    font-size: 1.9rem;
  }


  .problems_under h2 {
    font-size: 2.8rem;
    text-align: left;
    padding-left: 2rem;
    margin-left: 0;
  }

  .problems_under h2::before {
    width: 19rem;
    height: 21rem;
    top: 70%;
    right: -16rem;
  }

  .problems_under h3 {
    font-size: 2rem;
  }

  .problems_under h3 span {
    font-size: 2.5rem;
  }

  .problems_under h4 {
    font-size: 3rem;
    line-height: 1.5;
  }

  .problems_under h4 span strong {
    font-size: 5rem;
  }


}

/*================================================
* merit
================================================*/
#merit {
  background: url(../images/merit_bg.jpg) no-repeat center/cover;
  height: 100%;
}

#merit h2 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

#merit h2 span {
  color: var(--color-primary);
  font-size: 4.2rem;
  position: relative;
}

#merit h2 span::before {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: #e7e400;
  border-radius: 1000px;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.merit_box {
  width: 116rem;
  margin: 0 auto;
  border-radius: 1rem;
  /* overflow: hidden; */
  border: 1px solid;
  background: var(--color-white);
  position: relative;
}


.merit_box::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/merit_img.png);
  width: 37.2rem;
  height: 33rem;
  right: -23rem;
  bottom: -7.2rem;
}

.merit_box h3 {
  text-align: center;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 2rem 0;
  font-size: 3.5rem;
  border-radius: 1rem 1rem 0 0;
}

.merit_box ul {
  padding: 0 3rem 3rem 4rem;
}

.merit_box ul li {
  font-feature-settings: "palt";
  position: relative;
  padding-left: 6rem;
  margin-top: 4rem;
}

.merit_box ul li::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/merit_check.png);
  width: 3.8rem;
  height: 3.2rem;
  top: 1rem;
  left: 0;
}

.merit_box ul li span {
  color: var(--color-primary);
}

@media screen and (max-width:767px) {
  #merit h2 {
    font-size: 2.6rem;
  }

  #merit h2 span {
    font-size: 3.8rem;
  }

  #merit h2 span::before {
    width: 1rem;
    height: 1rem;
    top: -0.6rem;
  }

  .merit_box {
    width: 34.5rem;
  }

  .merit_box::before {
    width: 14.2rem;
    height: 12rem;
    right: -1rem;
    bottom: -7.2rem;
  }

  .merit_box h3 {
    font-size: 2.5rem;
  }

  .merit_box ul {
    padding: 0 1.5rem 3rem 1rem;
  }

  .merit_box ul li {
    font-size: 1.8rem;
    padding-left: 4rem;
  }

  .merit_box ul li::before {
    width: 2.8rem;
  }
}

/*================================================
* voice
================================================*/
#voice {
  background: #fff6c1;
}

#voice h2 {
  text-align: center;
  color: #ec6c00;
  font-size: 5rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 0.6rem solid;
}

.voice_box {
  display: flex;
  align-items: end;
  gap: 3rem;
  width: 119rem;
  margin: 6rem auto 0;
}

.voice_box p {
  width: calc(100% - 16rem);
  font-feature-settings: "palt";
}

.voice_box img {
  width: 13rem;
}

.sec_img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width:767px) {
  #voice h2 {
    font-size: 3rem;
  }

  .voice_box {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 0;
    width: 34.5rem;
    margin: 2rem auto 0;
  }

  .voice_box p {
    width: 100%;
  }

  .voice_box img {
    width: 60%;
  }

  .sec_img {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}