
.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 15px 100px 15px;
}

.accordion-area{
    list-style: none;
    width: 100%;
    margin:0 auto;
    margin-bottom: 50px;
}

.accordion-area li{
    margin: 17px 0;
}

.accordion-area section {
	border-radius: 15px;
	border: 1px solid #fff;
	box-shadow: 0 0.0rem .3rem rgba(0, 0, 0, 0.3);
}
/*アコーディオンタイトル*/
.accordion-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 20px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 15px 15px 15px 60px;
}
.accordion-title span {
    margin-left: 10px;
    font-size: 15px;
    
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.accordion-box {
    font-size: 17px;
    padding-bottom: 10px;
}
.accordion-box .address {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
}
.accordion-box .link {
    display: flex;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: .3s;
}
.accordion-box .notices {
    font-size: 10px;
}

a.link[target="_blank"]::after{
    content:'';
    display:inline-block;
    margin: auto 0;
    margin-left: 0.3em;
    background-image:url(/img/out-tab_b.webp);
    width: 10px;
    height: 10px;
    background-size: contain;
    vertical-align: middle;
}



/*アイコンの＋と×*/
.accordion-title::before,
.accordion-title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #000;
    
}
.accordion-title::before{
    top:48%;
    left: 20px;
    transform: rotate(0deg);
    
    transition: all .6s ease;
}
.accordion-title::after{    
    top:48%;
    left: 20px;
    transform: rotate(90deg);

    transition: all .6s ease;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-title.close::before{
	transform: rotate(135deg);
}

.accordion-title.close::after{
	transform: rotate(225deg);
}

/*アコーディオンで現れるエリア*/
.accordion-box {
	border-radius: 10px;
    display: none;/*はじめは非表示*/
    background: #ececec;
	margin:0 3% 3% 3%;
    padding: 3%;
}






.notes {
	border-radius: 10px;
    background: #ececec;
    padding: 30px;
}
.notes h3 {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
}
.notes p {
    font-size: 13px;
}
.notes a {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: .3s;
}





@media screen and (max-width: 842px){
    .accordion-title {
        font-size: 16px;
    }
    .accordion-title span {
        font-size: 12px;
    }
    .accordion-box {
        font-size: 14px;
    }

    .notes h3 {
        font-size: 12px;
    }
    .notes p {
        font-size: 10px;
    }
}

@media (hover: hover) {
    .accordion-box .link:hover {
        padding-left: 10px;
    }
    .notes a:hover {
        opacity: 50%;
    }
}