@charset "utf-8";
/* CSS Document */
.main {
    width: 1000px;
    margin: 0 auto;
    padding: 20px 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /*flex-direction: row-reverse;*/
    flex-wrap: wrap;
    align-items: stretch;
}

.left-colum {
    width: 75%;
    padding: 10px;
    background: #fff;
}

.right-colum {
    width: 25%;
	padding:10px 10px 0 10px;
}

.colum-ttl{
    padding: 1px 20px;
    margin: 10px 0;
    border-radius: 10px;
    background-color: #f7931e;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
	}
.colum-rightttl {
    padding: 5px 26px;
    margin: 10px 0 0 0;
    background-color: #006837;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.right-ttl{
	font-size: 18px;
    /* line-height: 1.6; */
    padding: 2px 5px 7px 20px;
    position: relative;
}

.right-ttl:before {
   content: '';
    width: 19px;
    height: 19px;
    background: url("../images/column/sankaku.png") 0 0 no-repeat;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.right-box{
	padding: 10px;
	margin-bottom: 10px; 
	border: 2px solid #006837;
}

.text-box{
	padding: 10px;
	margin-bottom: 40px; 
	border: 1px solid #000;
}

.green-box{
    padding: 10px;
	margin-bottom: 10px; 
	border: 2px solid #006837;
	border-radius: 10px;
}

/* スティッキーヘッダー */
.header.fixed {
    position: fixed;
    top: 0px;
    z-index:999;
}
.menu ul {
    text-align: left;
}
.menu ul li {
    display: inline-block;
    margin: 0 5% 0 0;
}
section h2 {
    padding: 0 0 10px 0;
    margin: 20px 0 15px 0;
    border-bottom: solid 3px #CCC;
}

@media screen and (max-width: 768px){
	
.main {
    width: 100%;
    padding: 30px 15px 0;
}

 .left-colum {
    width: 100%;
    padding: 15px;
    margin: 0 0 20px 0;
    border-top: 2px solid #cc6f63;
    background: #fff;
}
.right-colum {
    width: 100%;
}	
}
