/* ============================================
   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;
}
/*アコーディオン全体*/
.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;
}

/*アコーディオンタイトル*/
.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);
}

/*アコーディオンで現れるエリア*/
.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) {
  .accordion-area {
    width: 90%;
}
  .accordion-area section{
    border-top: 0;
  }
  .title{
    font-size: 15px;
padding-left: 22px;
  }
}

