@charset "UTF-8";
/* CSS Document */
body{background-color:snow;}
body div h1 {
	font-family: "Tsukushi B Round Gothic Bold";
	height: 50px;
}
body img{
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	max-width: 100%;
		height:auto;
}
p{font-family: "Tsukushi B Round Gothic Regular";
font-size:15px}

#ankoimg{margin-left:20px}

h2{
	float: right;
	margin-top: -110px;
	margin-left: 0px;
	margin-right: 60px;
	font-family:"Tsukushi B Round Gothic Bold";
		font-size:20px;
}

#setumeianko{}

#creamimg{
	margin-left: 20px;
	right: auto;
}

h3{
	float: right;
	margin-top: -110px;
	margin-right: 60px;
	font-family: "Tsukushi B Round Gothic Bold";
}
.ankosetumei {
	margin-left: 30px;
}
.creamsetumei {
	margin-left: 30px;
}
.photo {width: 100;
	margin-top: -5px;
}
h4{font-size:25px;
	font-family: "Tsukushi B Round Gothic Bold";
	margin-top:-20px;
}
.renjisetumei {
	margin-top: -30px;}

h5{font-family: "Tsukushi B Round Gothic Bold";
font-size:25px;
margin-top:20px}

.tostersetumei{margin-top:-30px;}

h6{font-family:"Tsukushi B Round Gothic Bold";
font-size:18px;}

.huyu {
	margin-top: 50px;
	margin-left: 20px;
}
.tyuui {font-size:10px;
	margin-top:-20px;
}
.sen {margin-top:50px
}
/*メニュー部分*/
#ham-menu {
    background-color: #fff; /*メニュー背景色*/
    box-sizing: border-box;
    height: 28%;
    padding: 10px 40px; /*メニュー内部上下左右余白*/
    position: fixed;
    right: -300px; /*メニュー横幅①と合わせる*/
    top: 0;
    transition: transform 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
    width: 300px; /*メニュー横幅①*/
    z-index: 1000;
}

/*メニューアイコン部分は疑似要素で*/
#ham-menu::before {
    background-color: #fff; /*ボタン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color:darksalmon; /*アイコン（フォント）色*/
    content: "≡"; /*メニューアイコン*/
    display: block;
    font-size: 50px; /*アイコン（フォント）サイズ*/
    height: 50px;
    line-height: 50px; /*縦位置中央化*/
    position: absolute;
    right: 100%;
    text-align: center;
    top: 0;
    width: 50px;
}

/*透過背景部分*/
#menu-background {
    background-color: #333; /*黒背景部分背景色*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
    width: 100%;
    z-index: -1;
}

/*hover 時の処理*/
#ham-menu:hover {
    transform: translate(-300px); /*メニュー横幅①と合わせる*/
}

#ham-menu:hover + #menu-background {
    opacity: 0.5; /*黒背景部分透過度*/
    z-index: 999;
}



