@charset "UTF-8";

/*アコーディオン全体*/
.accordion_area:not(:last-child) {
    margin-bottom: 20px;
}
/*アコーディオンタイトル*/
.title {
    position: relative;
    padding: 20px;
    transition: all .5s ease;
    background-color: #39A886;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}
.title::after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.title > div {
    position: relative;
}
/*アイコンの＋と×*/
.title > div::before,
.title > div::after{
    position: absolute;
    content: "";
    width: 18px;
    height: 3px;
    background-color: #39A886;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: all 0.3s;
    z-index: 1;
}
.title > div::before{
    transform: rotate(0deg);
}
.title > div::after{
    transform: rotate(90deg);
}
.title.close div::after{
	transform: rotate(0deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    padding: 20px;
}
.title p, .box p {
    padding-left: 60px;
    position: relative;
    line-height: 1.5;
}
.title p::before, .box p::before {
    position: absolute;
    left: 10px;
    top: -4px;
    color: #39A886;
    line-height: 1;
    font-size: 2.2rem;
    font-weight: bold;
    font-family: "Shippori Antique B1", serif;
}
.title p::before {
    content: "Q.";
    color: #fff;
}
.title p {
    font-size: 1.4rem;
}
.box p::before {
    content: "A.";
}
.box p {
    font-size: 1rem;
    padding-top: 10px;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .accordion_area:not(:last-child) {
                    margin-bottom: 40px;
                }
                .title, .title p::before, .box p::before {
                    font-size: 2.8rem;
                    top: -8px;
                }
                .title p, .box p {
                    padding-left: 100px;
                }
                .title p {
                    font-size: 1.6rem;
                }
                .box p {
                    padding-top: 20px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
            }