/* #region ======= 対応エリア アコーディオン ======= */
.area_chart {
    max-width: 500px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    border: 2px solid #005B2A;
}

.area_chart summary {
    width: 30%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
}

.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;
}
/* #endregion */

/* #region ======= よくある質問 アコーディオン ======= */
.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: #005B2A;
    font-size: 0.9em;
    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: #005B2A;
    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: 0.9em;
}

.qa p::before {
    color: #ffffff;
    line-height: 1.2;
    content: "A";
    background-color: #005B2A;
    border-radius: 50%;
    padding: 0.2em 0.5em;
    font-weight: bold;
    margin-top: -0.3em;
}
/* #endregion */

/* #region ======= 固定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);
    }
  }
/* #endregion */

