@charset "UTF-8";
/* ＝=＝=＝=＝=＝=＝=＝=＝=＝=＝
        事前の準備START
＝=＝=＝=＝=＝=＝=＝=＝=＝=＝ */

/* ＝＝＝＝＝＝＝＝
　　　PC START
＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝見出し＝＝＝ */
#advance .h2{
    margin: 100px 0 40px 0;
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
}
#advance .h2line{
    display: block;
    width: 822px;
    margin: 0 auto 100px;
}

#advance .box{
    border: 1px solid var(--main);
    border-radius: 10px;
    background-color: #ffffff;
    padding: 30px 80px 36px 80px;
    margin-bottom: 30px;
}
#advance .boxtit span{
    vertical-align:-14%;
    font-size: 1.8em;
    font-weight: bold;
}
#advance .boxtit{
    padding-bottom: 8px;
    font-size: 1.6em;
    font-weight: bold;
    color: var(--main);
    border-bottom: 4px dotted var(--main);
}
#advance .boxtxt{
    padding-top: 14px;
    transform: rotate(0.05deg);
    font-size: 1.1em;
    line-height: 1.6;
}
#advance .wrap_pc{
    margin-bottom: 120px;
}


/* =================================
【事前の準備】のタブレット・スマホ
==================================== */
@media screen and (max-width: 767px){
    /* =========パンくずリスト========= */
.pankuzu{
    font-size: 1em;
    transform: rotate(0.05deg);
    margin-top: 20px;
}
/* =========見出し========= */
#advance .h2line{display: none;}
#advance .h2{
    margin: 60px 0 30px 0;
    font-size: 1.8em;
}
 #advance .h2line_sp{
    width: 70%;
    margin: 0 auto 80px;
}

/*=======アコーディオンのためのcss=========*/
/*アコーディオン全体*/
#advance .accordion-area02{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto 80px;
}
#advance .accordion-area02 li{
    border: 1px solid var(--main);
    border-radius: 10px;
    background-color: #fff;
    padding: 14px 50px 16px 50px;
}

@media screen and (max-width: 550px){
#advance .accordion-area02 li{
    border: 1px solid var(--main);
    border-radius: 10px;
    background-color: #fff;
    padding: 14px 30px 10px 30px;
}
}/* アコーディオン550end */

/*アコーディオンタイトル*/
#advance .ac_title02 {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    padding: 18px 40px 20px 0;
    transition: all .5s ease;
    border-bottom: 4px dotted var(--main);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.2;
}
#advance .ac_title02 span{
    font-size: 2em;
    font-weight: bold;
    display: block;
}

/*アイコンの＋と×*/
#advance .ac_title02::before,
#advance .ac_title02::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 5px;
    background-color: var(--main);
}
#advance .ac_title02::before{
    top:48%;
    right: 0;
    transform: rotate(0deg);
}
#advance .ac_title02::after{    
    top:48%;
    right: 0;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
#advance .ac_title02.close::before{
  transform: rotate(45deg);
}
#advance .ac_title02.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
#advance .ac_box02 {
    display: none;/*はじめは非表示*/
    background: #FFF;
    border-radius: 10px;
  	margin:0 0;
    padding: 20px 0 22px;
}
#advance .ac_box02{
    font-size: 1em;
    transform: rotate(0.05deg);
}
#advance .ac_box02 p{
    line-height: 1.5;
}

/* アコーディオンの間隔 */
#advance .accordion-area02 li+li{
    margin-top: 20px;
}

}/* 767END */

@media screen and (max-width: 550px){
/* ------見出し------ */
#advance .h2{
    margin: 50px 0 30px 0;
    font-size: 1.3em;
}
#advance .h2line_sp{
    width: 90%;
    margin: 0 auto 60px;
}
}/* 550END */