@charset "UTF-8";

body{
	box-sizing: border-box;
	background-image: url("images/konnkuri.jpg");
	background-repeat: round;
	height: 331px;
}

.site-header{
	position: fixed;
	padding-top: 16px;
	top: 0;
	float: left;
	padding-left: 0px;
}

header {
	position: fixed;
	padding-top: 0px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 0px;
	froat: left;
}

.h-menu{
	position: relative;
	text-align: left;
	margin-top: -131px;
}

/*inputのcheckboxは非表示に*/
.h-menuCheckbox {
	display: none;
	padding-top: 1px;
}

/*ハンバーガーメニュー*/
.h-menu_icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	padding-top: 0px;
}

/*3本線*/
.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 100;
    top:0;
    bottom:0;
    width: 32px;
    height: 3px;
    background: #000000;
    cursor: pointer;
}
.hamburger-icon:before {
    top: 10px;
}
.hamburger-icon:after {
    top: 20px;
	
}

.menu_list{
	list-style-type: none;
}

/*メニュー以外を暗くする*/
#h-menu_black {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: .7s ease-in-out;
}

/*中身*/
#h-menu_content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 53px 16px 16px;
    background-color: darkgray;
    overflow: auto;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
	
}

/*チェックボックスにチェックが入ったら表示*/
input:checked ~ .h-menu_icon .hamburger-icon{
	background: transparent;
	width: auto;	
}
input:checked ~ .h-menu_icon .hamburger-icon::before{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top:10px;
    z-index:999;
}
input:checked ~ .h-menu_icon .hamburger-icon::after{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top:10px;
    z-index:999;
}
input:checked ~ #h-menu_black {
    display: block;/*カバーを表示*/
    opacity: .8;
}
#h-menu_checkbox:checked ~ #h-menu_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.h-menu_icon .hamburger-icon, .h-menu_icon .hamburger-icon::before, .h-menu_icon .hamburger-icon::after, #h-menu_black, #h-menu_content{
    -webkit-transition: all .3s ;
    transition: all .3s ;}

#h-menu_content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#h-menu_content ul li{
    /*border-bottom: solid 1px white;*/
}
#h-menu_content li a {
    display: block;
    color: white;
    font-size: 14px;
    padding: 24px;
    text-decoration: none;
    transition-duration: 0.2s;
}
#h-menu_content li a:hover {
    background: #455b6d;
}

/*ここから本文*/

h1{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 3em;
	text-align: center;
	height: 272px;
	margin-top: 170px;
	background: url("images/title-back.png");
	border-width: thick;
	width: 335px;
    word-wrap: break-word;
}


	h2 {
	border-left-style: double;
	border-left-color: #939393;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 2em;
	width: 200px;
	text-align: center
}

	body{
		margin: 20px;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		text-align: center
	}

div{
	text-align: center;
}

.box-img,
.box-text{
  display: inline-block;
}

a{
text-decoration: none;
text-decoration-color: black;
}

.syousai{
  text-decoration-color: black;
  list-style-type: none;
  padding: 0; /* 左にできる隙間を消す */
}

