@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Noto+Sans+JP:wght@500;700&;900display=swap");



section {
  padding-left: 30px;
  padding-right: 30px;
}

/* TOPのMV----------------------------------------- */

.example__mv {
  background: #FFF7E5;
  height: 250px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}

.example__mv h1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .example__mv {
    background: #FFF7E5;
    height: 330px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
  }

  .example__mv h1 {
    position: absolute;
    top: 70%;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
  }
}



/* example-sloganのコンテンツ----------------------------------------- */

.example-slogan {
  padding: 50px 0 60px;
}

.example-slogan__content--smallwide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  padding: 0 30px;
}


.example-slogan__subtitle {
  font-size: 1.2rem;
  color: #00AF3A;
  text-align: center;
  display: block;
}

.example-slogan__title {
  font-size: 2.4rem;
  margin: 1.2rem 0 2rem;
  font-weight: bold;
  text-align: center;
}

.example-slogan__text {
  font-size: 1.6rem;
  margin-bottom: 0;
  text-align: center;
}

/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .example-slogan {
    padding: 100px 0;
  }

  .example-slogan__content--smallwide {
    max-width: 924px;
    margin: 0 auto;
  }


  .example-slogan__title {
    font-size: 3.2rem;
    margin: 1.2rem 0 4rem;
  }

  .example-slogan__text {
    font-size: 1.8rem;
    /* margin-bottom: 2.5rem; */
  }
}



/* examle-menuのコンテンツ----------------------------------------- */

.example-menu {
  padding-top: 50px;
  padding-bottom: 60px;
  /* background: #FFF7E5; */
}

/* 共有するスタイル */
.example-menu__content--smallwide,
.example-menu__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.example-menu__content--smallwide {
  max-width: 100%;
}

.example-menu__content--wide {
  max-width: 1180px;
}

.example-menu__title {
  font-size: 2.4rem;
  margin: 1.2rem 0 2rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
}

/* 共有するアイテムスタイル */
.example-menu__item {
  text-align: center;
  box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);
  padding: 20px;
  margin-bottom: 2rem;
  border-radius: 20px;
  width: 100%;
}

.example-menu__item__subtitle {
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 1rem;
  color: #00AF3A;
  font-weight: bold;
  padding: 0.5rem;
  width: 150px;
  border-radius: 50px;
  background-color: #DCF2DB;
}

.example-menu__item__title {
  font-size: 18px;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* アイコンのスタイル */
.example-menu__item__icon {
  position: relative;
  background-color: #00AF3A;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  margin: 0 auto;
}

.example-menu__item__icon::before {
  content: "";
  position: absolute;
  background-position: center;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 12px;
  height: 12px;
  background-image: url(../images/common/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .example-menu {
    padding-top: 10rem;
    padding-bottom: 0;
  }

  .example-menu__content--smallwide {
    max-width: 924px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .example-menu__title {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }

  .example-menu__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    margin-bottom: 10rem;
  }

  .example-box__content > .example-box__item:first-child > .example-box__item__content:first-of-type{
    width: 37%;
  }
  .example-box__content > .example-box__item:first-child > .example-box__item__content:first-of-type > .example-box__item__subtitle{
    margin: inherit;
    margin-bottom: 1.5rem;
  }

  /* アイテムのサイズ調整 */
  .example-menu__item {
    padding: 20px;
    margin-bottom: 1rem;
  }

  .example-menu__item__subtitle {
    font-size: 20px;
  }

  .example-menu__item__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .example-menu__item__icon {
    width: 50px;
    height: 50px;
    padding: 10px 20px;
  }

  .example-menu__item__icon::before {
    width: 20px;
    height: 20px;
  }

  /* ホバー時のスタイル */
  .example-menu__content a:hover .example-menu__item {
    background: #00AF3A;
    color: #fff;
  }

  .example-menu__content a:hover .example-menu__item__icon {
    background: #fff;
  }

  .example-menu__content a:hover .example-menu__item__icon::before {
    background-image: url(../images/common/arrow_green.svg);
  }
}


/* コンテンツ----------------------------------------- */

.example-box {
  padding-top: 0px;
  padding-bottom:10rem;

}

.example-box__content .example-box__item:nth-child(even) {
  flex-direction: column;
}


.example-box__content--wide {
  max-width: 100%;
  margin: 0 auto;

}





.example-box__title {
  font-size: 3.2rem;
  margin: 1.2rem 0 4rem;
  color: #00AF3A;
  font-weight: bold;
}

.example-box__content--wide .example-box__item:first-child {
  padding-top: 0;
}

.example-box__item {
  padding: 5rem 0;
  border-bottom: 1px solid #DCF2DB;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.example-box__content--wide .example-box__item:last-of-type{
  border-bottom:none;
  padding-bottom: 0;
}

.example-box__item:last-child {
  margin-bottom: 0;
}


.example-box__item__img--sp {
  display: none;
}



.example-box__item__subtitle {
  font-size: 28px;
  color: #00AF3A;
  font-weight: bold;
  max-width: 180px;
  background-color: #DCF2DB;
  border-radius: 50px;
  margin: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}

.example-box__item__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.example-box__item__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.example-box__item__img {
  display: block;
  margin-bottom: 2rem;

}

.example-box__item__textbox {
  padding: 30px 20px;
  background: #FFF7E5;
  border-radius: 10px;
  border: 2px solid #00AF3A;
  font-weight: bold;
}

.example-box__item__textbox p {
  font-weight: normal;
  font-size: 1.3rem;
}



.example-box__item__content {
  width: 100%;
}

.example-box__item__allow {

  transform: rotate(90deg);
  margin-bottom: 2rem;
}

.example-box__item__allow img {
  width: 50px;
}


@media screen and (min-width: 768px) {
  .example-box {
    padding-top: 0;
    padding-bottom: 150px;
  }

  .example-box__content .example-box__item:nth-child(even) {
    flex-direction: row-reverse;
  }


  .example-box__content--wide {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 50px;
  }





  .example-box__title {
    font-size: 3.2rem;
    margin: 1.2rem 0 4rem;
    color: #00AF3A;
    font-weight: bold;
  }



  .example-box__item {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 100px 0;
    border-bottom: 1px solid #DCF2DB;
    align-items: center;
    flex-direction: row;
  }

  .example-box__item:first-child .example-box__item__textbox {
    padding: 65px 45px 50px;
    border-radius: 40px;
  }

  .example-box__item:last-child {
    margin-bottom: 0;
  }


  .example-box__item__img--sp {
    display: block;

    width: 100%;
    background-repeat: no-repeat;
  }



  .example-box__item__subtitle {
    font-size: 35px;
    color: #00AF3A;
    font-weight: bold;
margin: inherit;
    max-width: 180px;
    background-color: #DCF2DB;
    border-radius: 50px;
    padding: 0 0.2rem;
    margin-bottom: 1.5rem;
  }

  .example-box__item__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: left;
  }

  .example-box__item__text {
    font-size: 1.5rem;
    line-height: 1.8;
    /* margin-bottom: 3rem; */
  }

  .example-box__item__img {
    display: none;

  }

  .example-box__item__textbox {
    padding: 20px;

  }

  .example-box__item__textbox {
    padding: 16px;
    background: #FFF7E5;
    border-radius: 10px;
    border: 2px solid #00AF3A;
    font-weight: bold;
  }

  .example-box__item__textbox p {
    font-weight: normal;
    font-size: 1.3rem;
  }

  .example-box__item__textbox .type1 {
    margin-bottom: 3.5rem;
    font-size: 1.5rem;
    width: 423px;
  }

  .example-box__item__content .type1 {
    margin-bottom: 3.5rem;
    width: 435px;
  }


  .example-box__item__content {
    width: 48%;
    max-height: 700px;
  }

  .example-box__item__allow {
    /* height: 72px; */
    transform: rotate(0deg);
  }

}