@charset "UTF-8";

/*==================================================
アコーディオンのためのcss
===================================*/


/*アコーディオン全体*/

.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 100%;
    margin: 0 auto;
}

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

.accordion-area section {
    border: 1px solid #ccc;
}

.color {
    background-color: #FEC796;
/*	background-color: #A1796C;*/
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

.table {
    width: 100%;
}


/*アコーディオンタイトル*/

.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 1% 1% 1% 50px;
    transition: all .5s ease;
    letter-spacing: 1px;
}
.title.board {
    font-size:1rem;
    font-weight: normal;
}
h3.title.board {
  margin-top: .5rem;
}

/*アイコンの＋と×*/

.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #f3f3f3;
}

.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: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}


/*
掲示板のリスト
*/

ol.sample1 {
    counter-reset: list;
    list-style-type: none;
    font: 14px/1.6 'arial narrow', sans-serif;
    padding: 0;
}

ol.sample1 li {
    text-align: right;
    position: relative;
    padding: 0 0 0 20px;
    margin: 7px 0 7px 0px;
    font-size: 12px;
    line-height: 30px;
    border-bottom: dashed 3px #FEC796;
}

ol.sample1 li:before {
    counter-increment: list;
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 0;
    width: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #FEC796;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}