@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    accordion.css / kanekalon
---------------------------------------------------------------------------------------------------------------------
*/

.accordion {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.accordion_summary {
    display: block;
    position: relative;
    width: 100%;
    height: 44px;
    margin: 2px 0;
    padding: 2px 38px 2px 16px;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.06em;
    text-align: center;
    border: none;
    border-radius: 0;
    color: #ffffff;
    background-color: #808080;
    cursor: pointer;
    z-index: 200;
}

.accordion_summary::-webkit-details-marker {
    display: none;
}

.accordion_summary::before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transition: transform 0.3s;
}

.accordion[open] .accordion_summary::before {
    transform: rotate(225deg);
}

.accordion[open] .accordion_summary {
    background-color: #606060;
}

.accordion_summary:hover {
    background-color: #606060;
}

.accordion_content {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*background-color: rgba(255, 0, 0, 0.2);*/
}

.content_inner {
    width: 100%;
    padding: 0 0 32px 0;
    /*background-color: rgba(0, 0, 255, 0.2);*/
}

/*-------------------------------------------------------------------------------------------------------------------
    PC wide
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (min-width: 1400px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1000px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .accordion_summary {
        display: block;
        position: relative;
        width: 100%;
        height: 34px;
        margin: 2px 0;
        padding: 0;
        font-size: 18px;
        line-height: 36px;
        letter-spacing: 0.06em;
        font-weight: normal;
        text-align: center;
        border: none;
        border-radius: 0;
        color: #ffffff;
        background-color: #808080;
        cursor: pointer;
        z-index: 200;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
}
