@charset "utf-8";
*{
	margin:0;
	padding:0;
	_zoom:1;
	border: none;
}

@media screen and (max-width: 480px){
	.spNone {
		display:none;
	}
}

body {
	font: 62.5% 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	line-height:1.5em;
	height:100%;
	padding: 0;
	color: #000000;
	width:100%;
	margin-right: auto;
	margin-left : auto;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover{
	text-decoration: none;
	color: #cccc99;
}

.wrapper{
    min-height: 50vh;
	position: relative;/*←相対位置*/
	padding-bottom: 100px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

h1,h2{
	font-size: 100%;
}

h1 {
	padding-top: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	font: 150% 'Lato', 'Helvetica Neue', Helvetica, sans-serif;
	text-align: left;
}

h1 a{
	padding: 5px 7px 5px 9px;
	border: 3px solid #333;
	font-size: 17px;
	line-height: 150%;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

#menu{
	width: 100%;
	display: none;
}

#menu h2{
	visibility: hidden;
}

#menu li{
	font: 150% 'arial black',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	display: inline-block;
	width: 150px;
	padding: 10px;
	text-decoration: none;
	text-align: center;
}

#menu a{
	color: #000;
	display:block;
}

#menu a:hover{
	color: #cccc99;
	display:block;
}

#iconmenu {
	display: block;
	background: #ffffff;
	text-align: center;
}

#iconmenu li{
	display: inline;
	text-align: center;
}
#iconmenu a img.icon, #iconmenu a img.icon_menu{
	vertical-align: middle;
	margin: 10px;
}




/*ハンバーガーメニュー*/

.menu_btn{
	position: fixed;
	top: 15px;
	right: 15px;
	display: flex;
	height: 36px;
	width: 36px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background: #000000;
	border-radius: 10px;
}

#menu_btn_check {
    display: none;
}

.menu_btn span,
.menu_btn span:before,
.menu_btn span:after{
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #fff;
	position: absolute;
}

.menu_btn span:before{
	bottom: 8px;
}

.menu_btn span:after{
	top: 8px;
}

#menu_btn_check:checked ~ .menu_btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu_btn_check:checked ~ .menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
}


.mobile-menu-content {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 100px;
    left: 100%;
    z-index: 80;
    background-color: #666666;
	opacity: 0.8;
	transition: all 0.2s;
}

#menu_btn_check:checked ~ .mobile-menu-content{
	left: 0;
}
.mobile-menu-content ul {
    padding: 70px 10px 0;
}
.mobile-menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.mobile-menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.mobile-menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

/**/

#prof{
	height: 70px;
	padding: 20px;
}

#prof img{
	border: solid #cccccc 1px;
	wirh:64px;
	height:64px;
	margin-right: 10px;
	text-align: left;
	float: left;
}
#prof p{
	font: 120% 'メイリオ','ヒラギノ角ゴシック','ＭＳ Ｐゴシック',sans-serif;
	text-align: left;
}

#info{
	padding: 20px;
}

#info h2{
	font: 150% 'arial black',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	text-align: left;
	margin-bottom: 15px;
}

#info li{
	font: 100%;
	width: 100%;
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	text-align: left;
	float: left;
	float: left;
}


footer {
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	height: 50px;
	padding-top: 20px;
	position:fixed;
    bottom: 0;
	text-align: center;
}
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 899px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.pc { display: none !important; }
.sp { display: block !important; }


img.sp{
	max-width: 100%;
	height: auto;
}



