@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }



.head_container{
	width: 650px;
	display: flex;
	flex-direction: column;
	padding: 20px;

}

.head_item_logo{
	display: flex;
	flex-direction: column;
}

.head_item_logo img{
	width: 50%;
}

.motivational_posters_img img{
	width: 100%;

}

.main {
    margin: 0 auto;
}

.main_box{
    text-align: center;
    padding: 150px 0 0;
}

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
    width: 500px;
	display: block;
	color: green;
	/* background:#019ac6; */
}
.Label_link {		/*タイトル*/
	padding: 1em;
    width: 500px;
	display: block;
	color: green;
	/* background:#019ac6; */
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid green;
	border-right: 2px solid green;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
    width: 500px;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.side_img {
    position: absolute;
    width: 850px;
    height: 847px;
    left: 700px;
    top: 3px;
}