/*========= 価格表アコーディオン =========*/
#entrust .accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

#entrust .accordion-area li{
    margin: 1.5em 0;
    background-color: #ebcc1f;
}

#entrust .accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
#entrust .li_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:2rem;
    font-weight: bold;
    padding: 5% 5% 5% 50px;
    transition: all .5s ease;
    color: #000000;
}

/*アイコンの＋と×*/
#entrust .li_title::before,
#entrust .li_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #000000;
    
}
#entrust .li_title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
#entrust .li_title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
#entrust .li_title.close::before{
  transform: rotate(45deg);
}

#entrust .li_title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
#entrust .box {
    display: none;/*はじめは非表示*/
    background: #ffffff;
    margin:0 3% 3% 3%;
    padding: 3%;
    text-align: center;
}


/* 対応エリア アコーディオン */
.area_chart {
    max-width: 500px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
}

.area_chart summary {
    width: 25%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    /* display: block;
    list-style: none; */
}

.area_chart summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #000000b3;
    border-right: 3px solid #000000b3;
    content: '';
    transition: transform .5s;
}

.area_chart[open] summary::after {
    transform: rotate(225deg);
}

.area_chart p {
    padding: 1em 1em;
    color: #000000;
    background-color: #ffffff;
    text-align: justify;
    line-height: 1.3em;
}

.area_chart[open] p {
    transform: none;
    opacity: 1;
    border-radius: 0 0 5px 5px;
    background-color: #ffffff;
}

/* Chrome、Safariで矢印を消す */
.area_chart summary::-webkit-details-marker {
    display: none;
}


/* よくある質問 アコーディオン */
.qa {
    max-width: 500px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff; 
}

.qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 4em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    background-color:  #0F55F3;;
    font-size: 0.9em;
     letter-spacing: 0.1em;
    line-height: 1.3em;
}

/* Chrome、Safariで矢印を消す */
.qa summary::-webkit-details-marker {
    display: none;
}


.qa summary::before,
.qa p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa summary::before {
    color: #0F55F3;
    content: "Q";
    background-color: #ffffff;
    border-radius: 50%;
    padding: 0.3em 0.4em;
    font-weight: bold;
}

.qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    transition: transform .5s;
}

.qa[open] summary::after {
    transform: rotate(225deg);
}

.qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 1em 4em;
    color: #333;
    transition: transform .5s, opacity .5s;
    font-weight: bold;
}

.qa[open] p {
    transform: none;
    opacity: 1;
    border: 1px dotted #000000;
    font-size: 1em;
    background-color: #EFF3FC;
    line-height: 1.3em;
}

.qa p::before {
    color: #ffffff;
    line-height: 1.2;
    content: "A";
    background-color: #0F55F3;
    border-radius: 50%;
    padding: 0.2em 0.5em;
    font-weight: bold;
    margin-top: -0.3em;
}


/* 固定CTAぽよぽよ */
.poyo_animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
  }
  
  .poyo_keyframe {
    animation-name: poyo_poyo;
  }
  
  @keyframes poyo_poyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }