/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  width: 100%;
  background: var(--gray-light);
  min-height: 200px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
  flex-wrap: wrap;
}
.page-hero img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.section-label {
  text-align: center;
}
.about-section {
  padding: 80px 60px;
}
.about-content {
  display: block;
  align-items: center;
}
.about-text {
  font-size: 16px;
  color: #939393;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 80px;
}
.manuel_dw h2{
  color: #FF6C00;
  font-size: 29px;
  margin-bottom: 20px;
}
.btn_aria{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  margin-bottom: 75px;
}
.manuel_btn{
  color: #222222;
  font-size: 15px;
  border: solid 1px #FF6C00;
  border-radius: 25px;
  padding: 10px;
  width: calc(100% / 3.5);
  text-align: center;
  background-color: #fff;
}
.manuel_btn:hover{
  background-color: #FF6C00;
  color: #fff;
  transition: 0.3s; 
}




/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin:0 auto;
}

.accordion-area li{
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #FF6C00;
  border-radius: 50px;
  background-color: #F0F0F0;
  border-top: 0;
}

/*アコーディオンタイトル*/
.title {
  position: relative;
  cursor: pointer;
  font-size: 21px;
  font-weight: bold;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  /* border: 2px solid #FF6C00; */
  border-radius: 50px;
  background-color: #FF6C00;
  color: #fff;
}

/*アイコンの＋と×*/
.title::before{
  content: '▼';
  transition: transform 0.3s ease;
  display: inline-block;
  margin-right: 30px;
  color: #fff;
  top: 35% !important;
  right: 15px !important;
  left: unset !important;
  position: absolute;
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(180deg);
}
.accordion-area h2{
  margin-top: 0;
  padding-top: 50px;
}
/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: unset;
  margin:0 3% 3% 3%;
  padding: 3%;
}
.box ul li{
  list-style: none;
  margin: 10px 0;
  border-bottom: 1px solid #222222;
  padding: 0 0 10px;
}
.box ul li a{
  display: flex;
  align-items: center;
  color: #222222;
}
.box ul li a:hover{
  color: #FF6C00;
}
.box ul li img{
  width: 4%;
  margin-right: 10px;
}
@media (max-width: 768px) {

  .btn_aria{
    gap: 10px 35px;
  }
  .manuel_btn{
    width: calc(100% / 2.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .accordion-area{
    width: 90%;
  }
  .manuel_dw h2 {
    font-size: 25px;
  }
  .title{
    font-size: 17px;
  }
}
@media screen and (min-width: 769px) {
  .hide-pc{
    display: none;
  }
}