/* ----　見出し　----- */
h2.midashi {
  color: #111111;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 2px #E06A0A;/*上線*/
  border-bottom: solid 2px #E06A0A;/*下線*/
	text-align:left;
}
h3.midashi {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #111111;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 8px #E06A0A;/*左線*/
}


/* ----　トップページ右カラムの一覧表示メニュ　----- */
a.btn_brown_sone {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    padding: 1.5rem 3.0rem;
    background-color: #FFFfff;
	border: 1px solid #E06A0A;
    border-radius: 8px;
  box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s;
}
a.btn_brown_sone span.bl__text {
    display: block;
    position: relative;
    color: #E06A0A;
    font-size: 16px;
    text-align: center;
    padding-left: 30px;
}
a.btn_brown_sone span.bl__text:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #E06A0A;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
a.btn_brown_sone span.bl__text:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #Ffffff;
  box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}
a.btn_brown_sone:hover {
    background-color: #F9E8E8;
	text-decoration: none;
}
a.btn_brown_sone:hover span.bl__text:after {
    border-top: 3px solid #Ffffff;
    border-right: 3px solid #Ffffff;
}
@media (max-width: 736px) {
    a.btn_brown_sone{
        max-width: 280px;
        padding: 1.5rem 2.0rem;
    }
    a.btn_brown_sonespan.bl__text {
        font-size: 14px;
    }
}

/* ----　枠囲い薄グレー----- */
.waku_glay {
  border: solid 3px;
	border: solid 1px ;
	border-color: #dddddd;
	padding: 0.5em 1em 0.5em 2.3em;
}

/* ----　トップページ右カラムの過去の大会結果----- */
.list-12 {
    list-style-type: none;
    padding: 1em;
    border: 1px solid #dddddd;
}

.list-12 li {
    display: flex;
    align-items: center;
    gap: 0 10px;
    position: relative;
    padding: .3em .3em .3em 1.5em;
}

.list-12 li::before,
.list-12 li::after {
    position: absolute;
    content: '';
}

.list-12 li::before {
    left: 0;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background-color: #E06A0A;
}

.list-12 li::after {
    left: .6em;
    transform: translateX(-75%) rotate(-45deg);
    width: .3em;
    height: .3em;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}
.list-12 li a:hover {
	color:#E06A0A;
	text-decoration: none;
}

/* ----　リンク文字をブルーにする----- */
a.blue:link {
 text-decoration : underline; 
 color : #2200cc; 
 }
a.blue:visited {
 color: #2200cc;
 }
a.blue:hover{
color:#004d33;
}
