@charset "UTF-8";

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 1080px;
    margin:30px auto 0;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #3a302d;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 25px 20px 25px 50px !important;
    transition: all .5s ease;
}
/*25px 20px 25px 50px !important;*/
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    /*background: #fbfbfb;*/
  margin:20px;
    padding: 15px;
}

.box p{
padding:10px !important;
}
.cssgrid{
padding:10px !important;
}
#boxes_a{
padding:10px !important;
}
#boxes{
padding:10px !important;
}
 #fish-ck{
padding:10px !important;
}
/*========= レイアウトのためのCSS ===============*/


h2{
    text-align: center;
    margin: 30px 0;
    font-size:1rem;
}

/*https://coco-factory.jp/ugokuweb/move01/9-2-1/*/