@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");



/* 全体のコンテンツ----------------------------------------- */

body {
  width: 100%;
  /* overflow-x: hidden; */
  /* 横スクロールを防ぐ */
  box-sizing: border-box;
  /* padding-top: 0; */
  line-height: 1.5;
}


/* メインのラッパーがあるなら、それにも適用 */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /* overflow-x: hidden; */
  /* 横スクロールを防ぐ */
  box-sizing: border-box;
}

.top-page {
  padding-top: 0;
}

img {
  width: auto;
}

/* 全ての `p` や `div` に適用 */
p,
div {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
  /* はみ出し防止 */
  box-sizing: border-box;
  /* ボックスの計算ミス防止 */
}


section {
  padding-left: 30px;
  padding-right: 30px;
}

/* 強調の時 */

strong {
  font-weight: bold;
  border-bottom: 1px solid;
}

.bd-y {
  background: #FDDC2F;
  /* 背景を黄色 */
  font-weight: bold;
  white-space: normal;
  /* 改行OK */
  border-bottom: 1px solid #354768;
  /* 下線の色 */
  line-height: 1.8;

}



.pcbr {
  display: none;
}

@media screen and (min-width: 768px) {
  .top-page {
    padding-top: 144px;
    margin-top: 0;
  }

  .spbr {
    display: none;
  }

  .pcbr {
    display: block;
  }

}



/* headerコンテンツ----------------------------------------- */



#logo {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  line-height: 70px;

}

#logo a {
  line-height: 70px;
  height: 70px;
}


nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px; /* ヘッダーの高さ */
  z-index: 99999; /* 他の要素と競合しないように大きめに設定 */
  box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);

}

.onboarding__drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  background: #ffffff;
  z-index: 1000000;
  box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);
}

.onboarding__link__btn {
  display: flex;
  width: 100%;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 10px;
  height: 100%;
}
.onboarding__link {
  padding: 2em 2em 0;

}


.onboarding__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  /* background-color: #DA7AB3; */


  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  padding: 10px 20px;


  width: 185px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.2s;
  font-feature-settings: "palt";
  background: #00AF3A;
  border: 2px solid #00AF3A;
  color: #fff;

}

.onboarding__link a:hover {
  color: #00AF3A;
  background: #fff;
}

/*ナビゲーション部分*/

.onboarding__menu ul li a {
  display: block;
  padding: 2em;
  border-bottom: 1px dotted #DCF2DB;
  text-decoration: none;
  white-space: nowrap; /* メニューのテキストが改行されないように */
}


.onboarding__menu ul li a:hover {
  background-color: #DCF2DB;
  color: #00AF3A;
}


.onboarding__menu {
  text-align: center;
  height: 100vh;
  /* background-color: rgba(255, 255, 255, 0.5); */
  background: #fff;
  transition: .5s ease;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);

}


/*OPEN時の動き*/

.onboarding__menu.open .onboarding__menu.open {
  height: 100px;
}

.onboarding__menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/

}

.onboarding__menu.open ul li a:hover {
  background-color: #DCF2DB;
  color: #00AF3A;
}


/*トグルボタンのスタイルを指定*/
.Toggle {
  display: block;
  position: fixed;
  /* bodyに対しての絶対位置指定 */
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  right: 15px;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 45px;
  border-bottom: solid 4px #00AF3A;
  -webkit-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  -moz-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  transition: .35s ease-in-out;
  /*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
  top: 5px;
}

.Toggle span:nth-child(2) {
  top: 18px;
}

.Toggle span:nth-child(3) {
  top: 32px;
}



.Toggle.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.onboarding__menu ul li:nth-child(8),
.onboarding__menu ul li:nth-child(9) {
  display: none;
}



/* 現在のページのリンクに特別なスタイルを適用 */
ul li a.active {
  color: #00AF3A;
  border-bottom: 2px solid #00AF3A !important;
}


@media screen and (max-width: 600px) {

  /* 現在のページのリンクに特別なスタイルを適用 */
  ul li a.active {
    color: #354768;
    /* border-bottom: none !important; */
  }


}

@media screen and (max-width: 600px) {


  /* .onboarding__menu .onboarding__btn {
    display: none;
  } */


}
.onboarding__menu .onboarding__btn a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1em;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 10px 30px;
  width: 185px;

  border-radius: 50px;
  transition: 0.2s;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 2px 2px 2px);
  font-feature-settings: "palt";
  background: #DA7AB3;
  border: 2px solid #DA7AB3;
  color: #fff;
  font-weight: bold;

}
.onboarding__menu .onboarding__btn  {
  padding:1em 0 2em;
  border-bottom: 1px dotted #DCF2DB;
}
.onboarding__menu .onboarding__btn a:hover {
  background: #fff;
  color: #DA7AB3;
}

@media screen and (min-width: 1280px) {

  
  .training-status {
    padding: 4.75rem 0;

}
  .onboarding__menu {
    text-align: center;
    height: 100vh;
    /* background-color: rgba(255, 255, 255, 0.5); */
    background: #fff;
    transition: .5s ease;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  
  }

  .onboarding__link__btn {
    display: flex;
    width: 20%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
  }
  

  .onboarding__link  {

    padding: 0;
    border-bottom:none;
  }
  #logo {
    max-width: 400px;
  }

  header::after {

    display: none;
  }


  nav {
    display: flex;
    height: 144px;
    margin: 0 auto;
    min-width: 75pc;
    position: fixed;
    background: #ffffff;
    z-index: 1000;
  }

  .onboarding__drawer {
    height: 144px;
    max-width: 350px;
    box-shadow:none;
    padding-left: 2rem;
  }

  .Toggle {
    display: none;
  }

  .onboarding__menu {
    width: 100%;
    height: 144px;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    display: flex;
    justify-content: space-between;
    margin-left: 2%;
  }

  /* .onboarding__menu .onboarding__btn {
    height: 50px;
    position: absolute;
    right: 44px;
    bottom: 74px;
  } */

  .onboarding__menu .onboarding__btn a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1em;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    width: 185px;

    border-radius: 50px;
    transition: 0.2s;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 2px 2px 2px);
    font-feature-settings: "palt";
    background: #DA7AB3;
    border: 2px solid #DA7AB3;
    color: #fff;
 

    font-weight: bold;
  }

  .onboarding__menu .onboarding__btn  {
    border-bottom:none;
    padding: 0;
  }
  .onboarding__menu .onboarding__btn a:hover {
    background: #fff;
    color: #DA7AB3;
  }

  .onboarding__menu ul {

    height: 144px;
    /* width: 60%; */
    display: flex;

    justify-content: flex-end;
    align-items: center;
  }

  .onboarding__menu ul li {
    padding: 0 15px;

  }

  .onboarding__menu ul li a {
    padding: 0;
    border-bottom: none;
    font-weight: bold;
    font-size: 2rem;
    white-space: nowrap; /* メニューのテキストが改行されないように */
  }

  .onboarding__menu ul li a:hover {
    background-color: transparent;
  }



  /* 8番目と9番目だけボタン風に */
  .onboarding__menu ul li:nth-child(7),
  .onboarding__menu ul li:nth-child(8) {
    display: flex;
  }

  .onboarding__menu ul li:nth-child(7) a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43px;
    width: 228px;

    background-color: #DA7AB3;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    border-radius: 50px;

  }

  .onboarding__menu ul li:nth-child(7) a:hover {
    background: #fff;
    color: #DA7AB3;
    border: 1px solid #DA7AB3;

  }

  .onboarding__menu ul li:nth-child(8) a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 1.5em;
    background-color: #0169B6;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    margin-left: 8px;
    /* リストアイテム間の余白 */
    border-radius: 50px;
    font-size: 14px;
  }

  .onboarding__menu ul li:nth-child(8) a:hover {
    background: #fff;
    color: #0169B6;
    border: 1px solid #0169B6;

  }
}




/* TOPのMV----------------------------------------- */
.onboarding__mv {
  position: relative;
  background: url(../images/onboarding/MV-bg-sp.png) center center / cover no-repeat;
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 0;
  height: 600px;
  width: 100%;
  overflow: hidden;
  /* 画像がはみ出るのを防ぐ */
  display: flex;
  justify-content: center;
  align-items: center;
}

.onboarding__mv__img {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 100%; */
  background: url(../images/onboarding/MV-sp.png) center center / contain no-repeat;
  /* 画像を中央にフィットさせる */
  background-size: contain;
  /* 画像がはみ出さないように調整 */

}

.onboarding__mv__img img {
  width: 100%;
  height: auto;
  display: block;

}

.onboarding__mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}




/* デスクトップ用 */
@media screen and (min-width: 768px) {
  .onboarding__mv {
    height: 700px;
    background: url(../images/onboarding/MV-bg.png) center center / cover no-repeat;
    max-width: 100%;
  }

  .onboarding__mv__img {
    width: 100%;
    height: 100%;
    max-width: 700px;
    background: url(../images/onboarding/MV.png) center center / contain no-repeat;
    /* ここも調整 */
  }

  .onboarding__mv__img img {
    width: 100%;
    height: auto;
  }

  .onboarding__mv h1 {
    font-size: 3.6rem;
  }
}






/* sloganのコンテンツ----------------------------------------- */

.slogan {
  padding: 5rem 0 6rem;
}

.slogan__content--smallwide {
  width: 100%;
  margin: 0 auto;
}

.slogan__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

.slogan__subtitle {
  font-size: 1.2rem;
  color: #00AF3A;
  text-align: center;
  display: block;
}

.slogan__title {
  font-size: 2.4rem;
  margin:0 0 2.5rem;
  font-weight: bold;
  text-align: center;
}

.slogan__text {
  font-size: 1.6rem;
  margin-bottom: 0;
  text-align: center;
}

/* PC 用のスタイル */
@media screen and (min-width: 768px) {
  .slogan {
    padding: 10rem 0 12rem;
  }

  .slogan__content--wide {
    width: 1180px;
    margin: 0 auto;
    padding: 0;
  }

  .slogan__subtitle {
    font-size: 1.6rem;
  }

  .slogan__title {
    font-size: 3.2rem;
  margin: 0 0 5rem;
  }

  .slogan__text {
    font-size: 2.4rem;
    line-height: 2;
  }
}

/* 幅を 1180px に固定する Modifier */
.slogan__content--wide {
  max-width: 1180px;
  margin: 0 auto;
}






/* 5つのレベルのコンテンツ----------------------------------------- */


/*orientation-aboutのコンテンツ----------------------------------------- */
.orientation-level {
  background: #FFF7E5;
  padding-top: 5rem;
  padding-bottom: 6rem;
}



.orientation-level__content--wide {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;

}





.orientation-level__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #00AF3A;
  text-align: center;
  margin-bottom: 2.5rem;
}

.orientation-level__content__subttl {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

.orientation-level__text {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.orientation-level__item__title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.orientation-level__item__text {
  text-align: left;
  margin-bottom: 2rem;
}

.orientation-level__content__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #00AF3A;
  margin-bottom: 2rem;
}






/* PC 用のスタイル */
@media screen and (min-width: 768px) {

  .orientation-level {
    padding-top: 10rem;
    padding-bottom: 0;
  }

  .orientation-level__title {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }

  .orientation-level__content__subttl {
    font-size: 2rem;
    margin-bottom: 5rem;
    line-height: 2;
  }

  .orientation-level__content--wide {
    max-width: 1180px;
    margin: 0 auto;
    padding-bottom: 12rem;
  }


  .oorientation-level__img {
    width: 70%;
    margin: 0 auto;
  }

  .orientation-level__img__text {
    position: relative;
    text-align: center;
    color: #00AF3A;
    font-weight: bold;
    font-size: 2rem;
  }

  .orientation-level__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;
  }




}






/* 5つのレベルのコンテンツ終わり----------------------------------------- */


/* ステージアップで以下が----------------------------------------- */


.orientation-project__level {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}

.orientation-project__level__item {
  width: 100%;
  border: 2px solid #00AF3A;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 0;
  position: relative;
}

.orientation-project__level__item:first-child {
  margin-bottom: 6rem;
}

.orientation-project__level__item:first-child:before {
  position: absolute;
  content: "１";
  background: #00AF3A;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.orientation-project__level__item:last-child:before {
  position: absolute;
  content: "２";
  background: #00AF3A;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.orientation-project__level__item__img {
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 1rem;
}

.orientation-project__level__item__text {
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  height: auto;
}

.orientation-project__content__title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  color: #00AF3A;

}

.orientation-level__img {
  margin-bottom: 5rem;
}


@media screen and (min-width: 768px) {
  .orientation-project__level {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8rem;
  }

  .orientation-project__level__item {
    width: 45%;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .orientation-project__level__item:first-child {
    margin-bottom: 0;
  }


  .orientation-level__img {
    margin-bottom: 10rem;
  }

  .orientation-project__content__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #00AF3A;

  }

  .orientation-project__level__item:first-child:before {
    position: absolute;
    content: "１";
    background: #00AF3A;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .orientation-project__level__item:last-child:before {
    position: absolute;
    content: "２";
    background: #00AF3A;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
  }


  .orientation-project__level__item__img {
    width: 300px;
    height: 150px;
    margin: auto;
    margin-bottom: 2rem;
  }

  .orientation-project__level__item__text {

    font-size: 2rem;
    font-weight: bold;
    height: 50px;
  }



}

/* ステージアップで以下が終わり----------------------------------------- */













/* helpful-infoのコンテンツ----------------------------------------- */

.helpful-info {
  padding-top: 50px;
  padding-bottom: 60px;

  /* background: #FFF7E5; */

}

.helpful-info__title {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  color: #00AF3A;
  text-align: center;
}

.helpful-info__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 30px;
  padding:0;
}

.helpful-info__item {
  position: relative;
  width: 100%;
  padding: 20px 10px;
  border-top: 1px solid #354768;
  word-break: break-word;
  border-bottom: 1px solid #354768;
  a:hover {
    opacity: 0.5;
  }
}

/* .helpful-info__item a:hover.helpful-info__item::before {
  right: 10px;
  opacity: 0.5;
} */

.helpful-info__item:last-child {
  border-bottom: 1px solid #354768;

}


.helpful-info__item__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.helpful-info__item__text {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* .helpful-info__item::before {
  display: block;
  transition: .3s;
  content: "";
  width: 31px;
  height: 10px;
  background: url(../../images/common/arrow_navy.svg) no-repeat top center / contain;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  filter: inherit;
} */


.helpful-info__item__text__link {
  margin-bottom: 0.5rem;
  font-size: 15px;

  a {
    border-bottom: 1px solid;
    font-weight: bold;
    display: inline-block;
    color: #00AF3A;
  }
}


@media screen and (min-width: 768px) {


  .helpful-info {
    padding: 10rem 0 12rem;

  }

  .helpful-info__title {
    font-size: 3.2rem;
    margin-bottom: 5rem;
    font-weight: bold;
    color: #00AF3A;
    text-align: center;
  }

  .helpful-info__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 60px;
  }

  .helpful-info__content--wide {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px 128px 80px;
    box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);
  }

  .helpful-info__item {
    position: relative;
    width: 48%;
    padding: 0;
    border-top: 1px solid #354768;
  }

  .helpful-info__item__link {
    padding: 2rem;
    min-height: 210px;
  }

  .helpful-info__item:nth-child(5) {
    border-bottom: 1px solid #354768;
  }

  .helpful-info__item__title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .helpful-info__item__text {
    font-size: 15px;
  }

  /* .helpful-info__item::before {
    display: block;
    transition: right 0.3s ease;

    content: "";
    width: 31px;
    height: 10px;
    background: url(../../images/common/arrow_navy.svg) no-repeat top center / contain;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    filter: inherit;
  } */





}

/* faq ボタン -----------------------------------------*/


/* FAQ */
.faq {
  padding: 10rem 0 15rem;
  position: relative;
  counter-reset: number;
  background: #FFF7E5;
  /* カウンターをリセット */
}

/* 
.faq::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 354px;
  height: 183.6px;
  background-image: url('../images/nextstep_partnerplus/bg__logo.png');

  background-repeat: repeat;

  background-size: cover;
 
  background-position: center;

  bottom: 250px;
  left: -140px;
} */

/* @media screen and (max-width: 767px) {
  .faq::before {
    width: 177px;
    height: 91.8px;
    top: 40px;
    left: -70px;
  }
} */

section .faq__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  color: #00AF3A;
}

@media screen and (max-width: 767px) {
  section .faq__ttl {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 8vw;

  }


}




section.faq dl {
  width: 980px;
  margin: 0 auto 10px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(41, 149, 100, 0.25);
  cursor: pointer;
  text-align: left;
}

section.faq dt {
  display: flex;
  align-items: center;

}

section.faq dl dd,
section.faq dl dt {
  position: relative;
  padding: 8px 40px 8px 50px
}

section.faq dl dd:before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0
}

section.faq dl dt {
  font-weight: bold;
  padding: 8px;
  position: relative;
  padding: 8px 40px 8px 50px;

}


section.faq dl dt:before {
  counter-increment: number;
  /* カウンターを1つずつ増加 */
  content: "Q"counter(number);
  /* カウンターの値を表示 */
  font-size: 22px;
  font-weight: 700;
  font-family: Barlow, Noto Sans JP, YuGothic, Yu Gothic, ヒラギノ角ゴシック, Hiragino Sans, sans-serif;
  color: #ffffff;
  background: #00AF3A;
  display: block;
  width: 40px;
  /* 円形の横幅 */
  height: 40px;
  /* 円形の高さ */
  line-height: 40px;
  /* テキストを中央揃え */
  text-align: center;
  /* テキストを中央揃え */
  border-radius: 50%;
  /* 円形にする */

  position: absolute;
  left: 0;
  top: 50%;
  /* 垂直中央に配置 */
  transform: translateY(-50%);
  /* 垂直中央に配置 */
}


section.faq dl dt:after {
  display: block;
  content: "";
  background: #00AF3A;
  height: 8.6602540378px;
  width: 9pt;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%)
}

section.faq dl dt.open:after {
  clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

section.faq dl dd {
  display: none;
  margin-top: 20px;
  padding-left: 90px;
  padding-bottom: 20px
}

section.faq dl dd:before {
  background: url(../images/top/icon_faq002.webp) no-repeat top center/contain;
  left: 40px
}

section.faq dl dd figure {
  margin: 15px auto
}

section.faq dl dd strong {
  font-weight: bold;
}

section.faq dl dd .red {
  font-weight: bold;
  color: #FF0000;
}

section.faq dl dd span {
  color: #FF0000;
  font-weight: bold;
  border-bottom: 1px solid;
}

section.faq dl dd .small {
  color: #00AF3A !important;
  border-bottom: none !important;
}

section.faq dl dd a {
  color: #0664b7;
  text-decoration: underline
}

section.faq dl dd a:hover {
  opacity: 0.7;
}

section.faq dl dd .img_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px
}

section.faq dl dd .img_list figure {
  width: 150px;
  margin: 0
}

section.faq .btn {
  margin-top: 60px
}


.faq__small {
  font-size: 13px;
  margin-top: 1rem;
}

@media screen and (max-width:767px) {
  section.faq {
    padding: 16vw 0;
  }


  section.faq dl {
    width: auto;
    padding: 8px
  }

  section.faq dl dd,
  section.faq dl dt {
    padding: 0 40px 0 50px;
  }

  section.faq dl dt {
    min-height: 40px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  section.faq dl dd {
    margin-top: 15px;
    padding-left: 50px;
    padding-bottom: 10px;
    word-break: break-all;
  }

  section.faq dl dd:before {
    left: 0
  }

  section.faq .btn {
    margin-top: 40px
  }
}



@media screen and (min-width:768px) {
  .fixed-nav {
    width: 360px;
    height: 328px;
    bottom: 10px;
    right: 10px
  }

  .fixed-nav .btn {
    width: 360px;
    z-index: 2
  }

  .fixed-nav .btn,
  .fixed-nav .img {
    position: absolute;
    bottom: 0;
    right: 0
  }

  .fixed-nav .img {
    width: 261px;
    z-index: 1
  }

  .fixed-nav .close {
    width: 36px;
    position: absolute;
    top: -20px;
    right: 10px;
    cursor: pointer
  }

  .fixed-nav .close.active,
  .fixed-nav .img.active {
    display: none
  }

  img:hover {
    opacity: 1
  }

  a {
    transition: .3s
  }


}


/* faq ボタン */

section.faq dl dd .faq__box {
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 3px solid #DEDEDE;
  border-radius: 20px;
  max-width: 700px;
  margin-bottom: 3rem;
}

section.faq dl dd .faq__box--item {
  width: 30%;
  /* アイテムの幅を統一 */
  box-sizing: border-box;
  /* パディングとボーダーも含めて幅を計算 */

}



section.faq dl dd .faq__box figure {
  width: 80%;
  /* 元の70%よりさらに小さく設定 */
  margin: 0 auto;
  /* 自動での中央寄せを削除 */
}

section.faq dl dd .faq__box figure img {
  width: 100%;
  max-width: 90%;
  /* 画像の幅を縮小 */
  display: block;
  /* ブラウザの間隔を消すためにblock表示にする */
  margin: 0 auto;
  /* 中央揃え */
  margin-bottom: 0.5rem;
}

section.faq dl dd .faq__btn--wrap .faq__btn:nth-child(2) {
  margin-top: 0.5rem;
  position: relative;
}

section.faq dl dd .faq__btn--wrap .faq__btn:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: url(../images/common/arrow_square_gleen.svg) center / contain no-repeat;
  border: 1px solid #fff;
  border-radius: 20%;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
}

section.faq dl dd .faq__btn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  padding: 1rem 3rem;
  transition: 0.3s;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 50px;
  background-color: #00AF3A;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
  text-decoration: none;
}

section.faq dl dd .faq__btn a::before {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  display: block;
  line-height: 1.4;
  width: 12px;
  height: 5px;
  margin: auto;
  content: "";
  transition: 0.3s;
  background: url(../images/common/arrow_gleen.svg) center / contain no-repeat;
  filter: brightness(0) invert(1);
}

section.faq dl dd .faq__btn a:hover::before {
  background: url(../images/common/arrow_gleen.svg) center / contain no-repeat;
  right: 12px;
  filter: none;
}

section.faq dl dd .faq__btn a:hover {
  color: #299564;
  background-color: #fff;
  font-weight: bold;

}

@media screen and (max-width: 768px) {
  section.faq dl dd .faq__box {
    flex-direction: column;
    padding: 4rem 2rem;
  }

  section.faq dl dd .faq__box--item {
    width: 100%;
    margin-bottom: 4rem;

  }

  section.faq dl dd .faq__box--item:last-child {
    margin-bottom: 0;
  }

  section.faq dl dd .faq__btn a {
    font-size: 1.2rem;
  }

}

.faq .btn a::before {
  content: "";
  background: url(../images/added-value/FAQ.png) center center / cover;
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  font-weight: bold;
  filter: brightness(0) invert(1);
}

.faq .btn a:hover::before {
  filter: none;
  transition: .3s;
}


/* faq ボタン 　終わり*/

/* ©----------------------------------------- */

.copylight {
  background-color: #00AF3A;
  color: #fff;
  padding: 15px 30px;
  text-align: center;
  font-size: 14px;
}


