@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");


main {
  overflow: hidden;
}

section {
  padding-left: 30px;
  padding-right: 30px;
}

/* TOPのMV----------------------------------------- */

.orientation__mv {
  background: #FFF7E5;
  height: 250px;
  width: 100vw;
  /* margin: 0 calc(50% - 50vw); */
  position: relative;
}

.orientation__mv h1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .orientation__mv {
    background: #FFF7E5;
    height: 330px;
    width: 100vw;
    /* margin: 0 calc(50% - 50vw); */
    position: relative;
  }

  .orientation__mv h1 {
    position: absolute;
    top: 72%;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.6rem;
  }
}


/*orientation-aboutのコンテンツ----------------------------------------- */

.orientation-about {
  padding-top: 50px;
  padding-bottom: 60px;
}
.orientation-about__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}
.orientation-about__item {
  margin: 0 auto;
  margin-bottom: 2rem;
}
.orientation-about__title {
  font-size: 2.6rem;
  margin: 0 0 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  line-height: 1.6;
}
/* PCのサイズ */
@media screen and (min-width: 768px) {
  .orientation-about {
    padding: 10rem 0 12rem;
  }

  .orientation-about__content--wide {
    max-width: 1180px;
    margin: 0 auto;
  }

  .orientation-about__title {
    font-size: 3.2rem;
    margin: 1.2rem 0 4rem;
  }
}

.orientation-about__item--wrap {
  margin: 0 auto;
  width: 1180px;
  margin-bottom: 5rem;
}
.orientation-about__item--wrap .orientation-about__item--box:nth-child(4) .blue {
  border: 3px solid #FF0000;
}
.orientation-about__item--wrap .orientation-about__item--box:nth-child(4) .blue .step {
  background: #FF0000;
}
.orientation-about__item--wrap .orientation-about__item--box:nth-child(4) .blue .step:after {
  position: absolute;
  content: "";
  right: -10px;
  bottom: 25px;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid #FF0000;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--wrap {
    padding: 20px 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .orientation-about__item--wrap :last-child {
    margin-bottom: 0;
  }
}
/* STEP1,STEP2だけ上寄せ */
.orientation-about__item--wrap :nth-child(1),
.orientation-about__item--wrap :nth-child(2){
  align-items: flex-start;
}

.orientation-about__item--box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--box {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}

.orientation-about__item--box .orientation-about__item--item {
  width: 52%;
  text-align: left;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--box .orientation-about__item--item {
    width: 100%;
  }
}

.orientation-about__item--item a {
  margin-top: 1rem;
  border-bottom: 1px solid #00AF3A;
  color: #00AF3A;
  font-size: 1.4rem;
  font-weight: bold;
}
.orientation-about__item--item a:hover {
  opacity: 0.7;
}

.orientation-about__item--box .blue {
  position: relative;
  font-size: 2.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  border: 3px solid #354768;
  padding: 0rem 2rem 0rem 0;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--box .blue {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}


.orientation-about__item--wrap .orientation-about__item--box:nth-child(2) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--wrap .orientation-about__item--box:first-child {
    margin-bottom: 4rem;
  }
}

.orientation-about__item--box .step {
  position: relative;
  background: #354768;
  color: #fff;
  padding: 1rem;
  margin-right: 2.5rem;
  width: 130px;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--box .step {
    max-width: 70px;
  }
}

.orientation-about__item--box .step::after {
  position: absolute;
  content: "";
  right: -10px;
  bottom: 25px;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid #354768;
}
@media screen and (max-width: 767px) {
  .orientation-about__item--box .step::after {
    bottom: 30px;
  }
}

.orientation-about__item--box .step span {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: Barlow, Noto Sans JP, YuGothic, Yu Gothic, ヒラギノ角ゴシック, Hiragino Sans, sans-serif;
}




/* orientation-menuのコンテンツ----------------------------------------- */

.orientation-menu {
  padding-top: 5rem;
  padding-bottom: 60px;
  background: #FFF7E5;
}

/* 共有するスタイル */
.orientation-menu__content--smallwide,
.orientation-menu__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.orientation-menu__content--smallwide {
  max-width: 100%;
}

.orientation-menu__content--wide {
  max-width: 1180px;
}

.orientation-menu__title {
  font-size: 2.6rem;
  margin: 0 0 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  line-height: 1.6;
}

/* 共有するアイテムスタイル */
.orientation-menu__item {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  /* margin-bottom: 3rem; */
  border-radius: 10px;
  width: 100%;
  margin-bottom: 2rem;
}

.orientation-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;
}

.orientation-menu__item__title {
  font-size: 18px;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* アイコンのスタイル */
.orientation-menu__item__icon {
  position: relative;
  background-color: #00AF3A;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  margin: 0 auto;
}

.orientation-menu__item__icon::before {
  content: "";
  position: absolute;
  background-position: center;
  top: 50%;
  left: 50%;
  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) {

  .orientation-menu {
    margin: 0 auto;
    padding-top: 10rem;
    padding-bottom: 0;
  }

  .orientation-menu__content--wide {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .example-menu__content--smallwide {
    max-width: 924px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .orientation-menu__title {
    font-size: 3.2rem;
    margin: 1.2rem 0 4rem;
  }

  .orientation-menu__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-bottom: 20rem;
    max-width: 1180px;
  }

  /* アイテムのサイズ調整 */
  .orientation-menu__item {
    padding: 30px;
  }

  .orientation-menu__item__subtitle {
    font-size: 20px;
  }

  .orientation-menu__item__title {
    font-size: 22px;
    margin-bottom: 3rem;
  }

  .orientation-menu__item__icon {
    width: 50px;
    height: 50px;
    padding: 10px 20px;
  }

  .orientation-menu__item__icon::before {
    width: 20px;
    height: 20px;
  }

  /* ホバー時のスタイル */
  .orientation-menu__content a:hover .orientation-menu__item {
    background: #00AF3A;
    color: #fff;
  }

  .orientation-menu__content a:hover .orientation-menu__item__icon {
    background: #fff;
  }

  .orientation-menu__content a:hover .orientation-menu__item__icon::before {
    background-image: url(../images/common/arrow_green.svg);
  }
}





/* orientation-projectのコンテンツ----------------------------------------- */

.orientation-project {
  /* padding-top: 50px; */
  padding-bottom: 60px;
  background: #FFF7E5;
}



.orientation-project__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;

}

.orientation-project__content--wide .orientation-project__content--wide--type2:nth-last-of-type(1){
  margin-bottom: 0;
}

.orientation-project__content--wide--type2 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 50px;
}

.orientation-project__example:nth-last-of-type(1) {
  margin-bottom: 0;
}


.orientation-project__content--smallwide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;

}



.orientation-project__item {
  margin: auto;
}



.orientation-project__title {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  margin-bottom: 2rem;

}

.orientation-project__content__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  /* margin-top: 4rem; */
  margin-bottom: 2rem;
}

.orientation-project__text {
  font-size: 1.6rem;
  margin-bottom: 0;
  margin-bottom: 2rem;

}

.orientation-project__item__title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.orientation-project__item__text {
  text-align: left;
  margin-bottom: 2rem;
}

.orientation-project__img__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.orientation-project__img {
  margin-bottom: 4rem;
}

.orientation-project__img__text {
  position: relative;
  text-align: center;
  color: #00AF3A;
  font-weight: bold;
  font-size: 1.8rem;
}

.orientation-project__img__text::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  background: url(../images/top/icon_cover_008.webp)center center /contain;
  background-repeat: no-repeat;
  bottom: 13%;
  right: -13px;

}


.orientation-project__img__content .orientation-project__img:first-child {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.icon {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.orientation-project__merit {
  text-align: center;
  /* padding: 60px 30px; */
  margin-top: 5rem;
  display: grid;
  place-items: center;
  border-radius: 30px;
  /* background: #fff; */
  /* box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25); */
  margin-bottom: 8rem;

}

.orientation-project__merit__item {
  text-align: left;
  margin-bottom: 2rem;
}

.orientation-project__merit__item__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.orientation-project__merit__item__text {
  font-size: 1.6rem;
}


.orientation-project__example {
  margin-bottom: 6rem;

}


.orientation-project__example .orientation-project__example__item__img--type2 {

  width: 35%;
}

.orientation-project__example .orientation-project__example__item__img--type3 {
  width: 35%;
}

.orientation-project__example__title {
  text-align: left;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.orientation-project__example__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}

.orientation-project__example__content:last-child {
  margin-bottom: 0;
}

.orientation-project__example__item {
  width: 100%;
}

.orientation-project__example__item--flex {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.orientation-project__example__item--flex--type2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orientation-project__example__item__icon {
  display: flex;
  justify-content: center;
  /* 左寄せ */
  align-items: center;
}

.orientation-project__example__item__img {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-right: 10px;
}

.orientation-project__example__item__title {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

.orientation-project--type2 {
  background: #FFF7E5;
}

.orientation-project__example__item__text {
  text-align: left;

  font-size: 1.4rem;

  a {
    color: #00AF3A;
    font-weight: bold;
    border-bottom: 1px solid;

    &:hover {
      opacity: 0.5;
    }
  }

  .subtext {
    font-size: 1.3rem;
  }



  .orientation-project__merit {
    text-align: center;
    /* padding: 60px; */
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    /* background: #fff; */
    /* box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25); */
    margin-bottom: 80px;

  }

  .orientation-project__merit__item {
    text-align: left;
    margin-bottom: 2rem;
    width: 80%;
    /* 適宜調整 */
    text-align: left;
    /* テキストを左揃え */
  }

  .orientation-project__merit__item__title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .orientation-project__merit__item__text {
    font-size: 1.6rem;
  }

}





/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .orientation-project {
    padding-bottom: 20rem;
    padding-top: 0px;
  }



  .orientation-project--type2 {
    background: #FFF7E5;
  }

  .orientation-project__content--smallwide {
    max-width: 924px;
    margin: 0 auto;

  }

  .orientation-project__content--smallwide--type2 {
    max-width: 1080px;
    margin: 0 auto;

  }

  .orientation-project__content--wide {
    max-width: 1180px;
    margin: 0 auto;

  }

  .orientation-project__content--wide--type2 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 128px 100px;
    margin-bottom: 10rem;
  }

  .orientation-project__content--wide--type2:last-of-type {

    margin-bottom: 0;
  }

  .orientation-project__title {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }

  .orientation-project__list {
    display: flex;
    justify-content: space-between;
  }

  .orientation-project__item {
    width: 45%;
  }

  .orientation-project__item__title {
    font-size: 2rem;
    text-align: left;
    font-weight: bold;
    margin-bottom: 2rem;
  }

  .orientation-project__item__text {
    font-size: 1.4rem;
    text-align: left;

  }

  .orientation-project__text {
    font-size: 2rem;
    margin-bottom: 10rem;
    line-height: 2;
  }

  .orientation-project__img__content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }

  .orientation-project__img__content .orientation-project__img:first-child {
    width: 40%;
  }

  .orientation-project__img__content .orientation-project__img:last-child {
    width: 50%;
  }

  .orientation-project__img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin: 0 auto;
    padding-bottom: 10rem;
    border-radius: 30px;

  }

  .orientation-project__img__text {
    position: relative;
    text-align: center;
    color: #00AF3A;
    font-weight: bold;
    font-size: 2rem;
  }

  .orientation-project__img__text::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 100%;
    background: url(../images/top/icon_cover_008.webp)center center /contain;
    background-repeat: no-repeat;
    bottom: 10%;
    right: -50%;

  }

  .icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
  }



  .orientation-project__merit {
    text-align: center;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;

    margin-bottom: 10rem;

  }

  .orientation-project__merit__item {
    margin-bottom: 2rem;
    width: 80%;
    /* 適宜調整 */
    text-align: left;
    /* テキストを左揃え */
  }

  .orientation-project__merit__item__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .orientation-project__merit__item__text {
    font-size: 1.6rem;
  }

  .orientation-project__example {
    padding-bottom: 0rem;
  }

  .orientation-project__example:last-child {
    margin-bottom: 0;
  }

  .orientation-project__example__title {
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .orientation-project__example__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8rem;
    flex-direction: row;
  }

  .orientation-project__example__content:last-child {
    margin-bottom: 0;
  }

  .orientation-project__example__item {
    width: 57%;
    margin-left: 0px;
  }

  .orientation-project__example__item--flex {
    width: 30%;
    display: flex;

    flex-direction: column;
    align-items: start;
  }

  .orientation-project__example__item--flex--type2 {
    width: 36%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .orientation-project__example__item__icon {
    display: flex;
    justify-content: flex-start;
    /* 左寄せ */
    align-items: center;
  }

  .orientation-project__example__item__img {
    margin-bottom: 1.5rem;
    margin-right: 1em;
    width: 75px;
  }

  .orientation-project__example--type2 .orientation-project__example__item__img {
    margin-bottom: 2rem;
    margin-right: 0;
    width: 85%;
  }

  .orientation-project__example .orientation-project__example__item__img--type2 {
    width: 75px;
  }

  .orientation-project__example .orientation-project__example__item__img--type3 {
    width: 75px;
  }

  .orientation-project__example--type2 .orientation-project__example__item__img--type2 {
    width: 100%;
  }

  .orientation-project__example__item__title {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
  }

  .orientation-project__example__item__text {
    text-align: left;
    line-height: 2;
    font-size: 1.6rem;

    a {
      color: #00AF3A;
      font-weight: bold;
      border-bottom: 1px solid;
    }

    .subtext {
      font-size: 1.4rem;
    }
  }


}









/* ----------------------------------------- */



/* インプットアウトプットコンテンツ----------------------------------------- */




.beginner-strategy {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: #FFF7E5;

}

.beginner-strategy__content--smallwide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 30px;
}




.beginner-strategy__title {
  font-size: 2.4rem;
  margin: 1.2rem 0 2rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
}

.beginner-strategy__text {
  font-size: 1.6rem;
  margin-bottom: 0;
  text-align: center;

}

/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .beginner-strategy {
    padding: 50px 60px;
    margin: 0 auto;
  }

  .beginner-strategy__content--smallwide {
    max-width: 924px;
    margin: 0 auto;
    text-align: center;
  }


  .beginner-strategy__title {
    font-size: 3.2rem;
    margin: 1.2rem 0 4rem;
  }

  .beginner-strategy__text {
    font-size: 1.8rem;
    /* margin-bottom: 2.5rem; */
    line-height: 1.6;
  }
}

/* orientation-projectのコンテンツ終わり----------------------------------------- */


/* テスト環境と本番環境のコンテンツ----------------------------------------- */

.orientation-comparison {
  /* padding-top: 50px; */
  padding-bottom: 8rem;
  background-color: #FFF7E5;

}



.orientation-comparison__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  /* padding: 0 30px; */
  padding: 0;
}





.orientation-comparison__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  margin-bottom: 2.5rem;
}

.orientation-comparison__text {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.orientation-comparison__item__title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.orientation-comparison__item__text {
  text-align: left;
  margin-bottom: 2rem;
}

.orientation-comparison__content__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  margin-bottom: 2rem;
}

.orientation-comparison__box {
  box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);
}

.orientation-comparison__box__title {
  margin-bottom: 4rem;
}

.orientation-comparison__box__title {
  font-size: 2rem;
  font-weight: bold;
  color: #00AF3A;
  margin-bottom: 4rem;
  text-align: center;
}


.orientation-comparison__box__item {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.orientation-comparison__box__item .orientation-comparison__box__item__text:first-child {
  margin-bottom: 4rem;

}

.orientation-comparison__box__item:first-of-type {
  margin-bottom: 4rem;
}

.orientation-comparison__box__item__text {
  text-align: left;
  width: 100%;

  .subtitle {
    font-size: 13px;
    text-align: left;

  }
}

.orientation-comparison__box__item__subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.orientation-comparison__subtitle {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.orientation-comparison__box__item--l {

  display: flex;
  flex-direction: column;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.orientation-comparison__box__item__img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;

}

.orientation-comparison__img {
  width: 70%;
  margin: 0 auto;
}

.orientation-comparison__img__text {
  position: relative;
  text-align: center;
  color: #00AF3A;
  font-weight: bold;
  font-size: 2rem;
}

.orientation-comparison__img__text::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 100%;
  background: url(../images/top/icon_cover_008.webp)center center /contain;
  background-repeat: no-repeat;
  bottom: 10%;
  right: -50%;

}

.orientation-comparison__box {
  background: #fff;
  padding: 60px 30px;
  margin: 0 auto;
  border-radius: 30px;

}


.orientation-comparison__box__item__text a {
  font-weight: bold;
  border-bottom: 1px solid;
  color: #00AF3A;
}


/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .orientation-comparison {
    /* padding-top: 100px; */
    padding-bottom: 150px;
  }



  .orientation-comparison__content--wide {
    max-width: 1180px;
    margin: 0 auto;

    /* padding: 60px 0 80px; */
  }

  .orientation-comparison__box {

    background: #fff;
    border-radius: 30px;
  }

  .orientation-comparison__box__title {
    font-size: 2rem;
    font-weight: bold;
    color: #00AF3A;
    margin-bottom: 4rem;
    text-align: center;
  }

  .orientation-comparison__box__item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    max-width: 924px;
    margin: auto;
  }

  .orientation-comparison__box__item .orientation-comparison__box__item__text:first-child {
    margin-bottom: 4rem;

  }

  .orientation-comparison__box__item:first-of-type {
    margin-bottom: 4rem;

  }

  .orientation-comparison__box__item__text {
    text-align: left;
    width: 70%;
    line-height: 2;

    .subtitle {
      font-size: 13px;
      text-align: left;

    }

  }

  .orientation-comparison__title {
    font-size: 2.8rem;
    margin-bottom: 5rem;

  }

  .orientation-comparison__subtitle {
    font-size: 2rem;
    margin-bottom: 8rem;
  }

  .orientation-comparison__box__item--l {
    width: 20%;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    align-items: center;
    justify-content: center;
  }

  .orientation-comparison__box__item__img {
    width: 76px;
    height: auto;
    margin-bottom: 1rem;
  }

  .orientation-comparison__img {
    width: 70%;
    margin: 0 auto;
  }

  .orientation-comparison__img__text {
    position: relative;
    text-align: center;
    color: #00AF3A;
    font-weight: bold;
    font-size: 2rem;
  }

  .orientation-comparison__img__text::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 100%;
    background: url(../images/top/icon_cover_008.webp)center center /contain;
    background-repeat: no-repeat;
    bottom: 10%;
    right: -50%;

  }

  .orientation-comparison__box__item__text a {
    font-weight: bold;
    border-bottom: 1px solid #00AF3A;
    color: #00AF3A;
  }

  .orientation-comparison__box__item__text a:hover {
    opacity: 0.5;
  }

  .icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
  }

}