@charset "UTF-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

@font-face {
    font-family:'Chelsea';
	src: url(Chelsea.ttf);
}

a:link {
	text-decoration:none;
	color: #000;
}
a:visited {
	text-decoration:none;
	color: #000;
}
a:hover {
	text-decoration:none;
	color: #000;
}
a:active {
	text-decoration:none;
	color: #000;
}

/*メニュー開閉用ボタンのスタイル*/
.menu-btn {
    position: fixed;
    top: 12px;
    right: 10px;
    width: 100px;
    height: 50px;
    line-height: 50px;
    font-size: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn span {
    color: #444;
}

.menu-btn span:after {
    content: attr(data-txt-menu);
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span:after {
    content: attr(data-txt-close);
	color: #fff;
}
/*メニュー開閉用ボタンのスタイルEND*/



/*メニューモーダルウィンドウのスタイル*/
.menu {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(178,34,34,.8);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
	font-family: 'Chelsea';
	list-style: none;
	z-index: 999;
	letter-spacing: 0.15em;
}

.menu ul {
    display: table-cell;
    vertical-align: middle;
}

.menu li {
    width: 400px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    text-align: center;
	list-style:none;
}

/*メニューテキスト*/
.menu li a {
    display: block;
    font-size: 35px;
    color: #fff;
}

.menu li a:hover {
    color: #000;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    cursor: url(../images/cross.svg),auto;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}
/*メニューモーダルウィンドウのスタイルEND*/

#container {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

h2 {
	font-family: 'Chelsea';
	font-size: 35px;
	font-weight: normal;
	letter-spacing: 0.05em;
}

h3 {
	font-family: "Sawarabi Gothic";
	font-size: 20px;
	font-weight: normal;
	display: inline;
}

h4 {
	font-family: 'Chelsea';
	font-size: 25px;
	font-weight: normal;
	letter-spacing: 0.05em;
	color: #dc143c;
}

p{
	font-family: "Sawarabi Gothic";
	font-size: 13px;
	color: #000;
	line-height: 23px;
}

/*フッター*/
#footer{
	height: 300px;
	width: auto;
	background-color: #a9a9a9;
	font-family: 'Chelsea';
	color:#fff;
	font-size: 20px;
	letter-spacing: 0.05em;
}

.icon a:link {
	text-decoration:none;
	color:#fff;
}

.icon a:visited {
	text-decoration:none;
	color: #fff;
}

.icon{
	height: 230px;
	padding: 20px;
}
/*アイコンテキスト中央配置*/
.icon img{
	vertical-align: -6px;
}

address{
	font-style:normal;
	font-size:  15px;
}
/*フッターEND*/