@charset "utf-8";

/* グローバル */
* {
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
p {
	margin-bottom: 2em;
}
body {
	font-size: 15px;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto;
	font-weight: 400;
	color: #37474F;
	line-height: 2;
	background: #FAFAFA;
}
a {
	color: #ff5252;
	text-decoration: none;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
a:hover {
	color: #66BB6A;
}

/* レイアウト */
#container {
	width: 900px;
	margin: 0 auto;
	word-break: break-all;
}
#ss.list #container,
#offline #container {
	padding: 0 0 0 300px;
}
#contents {
	width: 600px;
	margin-bottom: 50px;
}
#ss.detail #contents,
#form #contents,
#blog #contents {
	margin: 70px auto 0;
}
#pageTtl {
	margin: 100px 0 10px;
	font-size: 30px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height: 1;
	text-align: center;
}
#offline #pageTtl {
	margin-bottom: 50px;
}


/* トップページ */
#home {
	color: #fff;
}
#home a {
	color: #fff;
}
.fp-viewing-0 {
	background-image: linear-gradient(0deg, rgb(255, 138, 128) 25%, rgb(255, 242, 155) 100%);
	background-image: -moz-linear-gradient(top, rgb(255, 138, 128) 25%, rgb(255, 242, 155) 100%);
	background-image: -webkit-linear-gradient(top, rgb(255, 138, 128) 25%, rgb(255, 242, 155) 100%);
	background-image: -o-linear-gradient(top, rgb(255, 138, 128) 25%, rgb(255, 242, 155) 100%);
	background-image: -ms-linear-gradient(top, rgb(255, 138, 128) 25%, rgb(255, 242, 155) 100%);
}
.fp-viewing-1 {
	background-image: linear-gradient(0deg, rgb(255, 246, 184) 25%, rgb(200, 255, 201) 100%);
	background-image: -moz-linear-gradient(top, rgb(255, 246, 184) 25%, rgb(200, 255, 201) 100%);
	background-image: -webkit-linear-gradient(top, rgb(255, 204, 128) 25%, rgb(156,204,101) 100%);
	background-image: -o-linear-gradient(top, rgb(255, 246, 184) 25%, rgb(200, 255, 201) 100%);
	background-image: -ms-linear-gradient(top, rgb(255, 246, 184) 25%, rgb(200, 255, 201) 100%);
}
.fp-viewing-2 {
	background-image: linear-gradient(0deg, rgb(128,203,196) 25%, rgb(76,175,80) 100%);
	background-image: -moz-linear-gradient(top, rgb(128,203,196) 25%, rgb(76,175,80) 100%);
	background-image: -webkit-linear-gradient(top, rgb(128,203,196) 25%, rgb(76,175,80) 100%);
	background-image: -o-linear-gradient(top, rgb(128,203,196) 25%, rgb(76,175,80) 100%);
	background-image: -ms-linear-gradient(top, rgb(128,203,196) 25%, rgb(76,175,80) 100%);
}
#home .down {
	margin-left: -1em;
	position: absolute;
	bottom: 0;
	left: 50%;
}
#home .down .material-icons {
	font-size: 70px;
	cursor: pointer;
}
#home #home_about {
	text-align: center;
}
#home #home_about .ct {
	margin: 0 0 30px;
	font-size: 80px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height: 1;
}

#home #home_nav {
	margin: 0 -15px 50px;
}
#home #home_nav ul {
	width: 100%;
	padding: 0;
	display: table;
	list-style: none;
}
#home #home_nav li {
	width: 50%;
	margin: 0;
	padding: 0 15px;
	display: table-cell;
}
#home #home_nav a {
	width: 100%;
	font-size: 18px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height: 60px;
	text-align: center;
	border: 1px solid #fff;
	display: inline-block;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	position: relative;
}
#home #home_nav a:hover {
	color: #ff5252;
}
#home #home_nav a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
#home #home_nav a:hover:before,
#home #home_nav a:focus:before,
#home #home_nav a:active:before {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#home #home_nav i {
	position: absolute;
	top: 15px;
	right: 10px;
	font-size: 30px;
}

#home #home_info {
	width: 100%;
	margin-bottom: 70px;
	display: table;
}
#home #home_info .news {
	width: 50%;
	padding-right: 20px;
	display: table-cell;
}
#home #home_info .event {
	width: 50%;
	padding-left: 20px;
	display: table-cell;
}
#home #home_info h3 {
	margin: 0 40px 0 0;
	font-size: 23px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height: 1;
	float: left;
}
#home #home_info h3 span {
	margin-top: 15px;
	font-size: 15px;
	display: block;
}
#home #home_info a {
	padding-right: 25px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height: 1;
	position: relative;
}
#home #home_info a i {
	position: absolute;
	top: 0;
	right: 0;
}#home #home_info a:hover {
	color: #ff5252;
}
#home #home_info dl {
	margin: 0;
	line-height: 1.4;
	overflow: hidden;
}
#home #home_info dt {
	margin-bottom: 10px;
	float: left;
}
#home #home_info dd {
	margin-bottom: 10px;
	padding-left: 60px;
}

#home #home_banner {
	margin: 0;
	padding: 0;
	list-style: none;
}
#home #home_banner li {
	margin: 0 10px 0 0;
	display: inline-block;
}
#home #home_banner img {
	vertical-align: bottom;
}

#home #home_chat {
	width: 100%;
	margin-bottom: 80px;
	display: table;
}
#home #home_chat h2 {
	width: 20%;
	font-size: 21px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	display: table-cell;
}
#home #home_chat ul {
	width: 80%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: table-cell;
}

#home #home_contact {
	width: 100%;
	margin-bottom: 80px;
	display: table;
}
#home #home_contact h2 {
	width: 20%;
	font-size: 21px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	display: table-cell;
}
#home #home_contact dl {
	width: 80%;
	margin: 0;
	display: table-cell;
	overflow: hidden;
}
#home #home_contact dt {
	margin: 0;
	float: left;
}
#home #home_contact dd {
	padding-left: 3em;
}
#home #home_contact dd img {
	margin-top: 10px;
}


/* SS */
#sub {
	width: 300px;
	padding: 50px 30px 30px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
	word-break: break-all;
	overflow-y: auto;
}
#sub h1 {
	margin: 0 0 10px;
	text-align: center;
}
#blog h1,
#form h1 {
	margin: 90px 0 0;
	text-align: center;
}
#sub h2 {
	margin: 0 0 20px;
	font-size: 23px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align: center;
}
#sub h3 {
	margin: 0 0 15px;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.4;
}
#sub p {
	margin: 0 0 15px;
	font-size: 13px;
	color: #B0BEC5;
	line-height: 1.4;
}
#sub ul {
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}
#sub li {
	margin-bottom: 5px;
	padding-left: 13px;
	position: relative;
	font-size: 14px;
	line-height: 1.4;
}
#sub li i {
	position: absolute;
	top: 3px;
	left: 0;
	font-size: 13px;
	color: #37474F;
}
#sub li .new {
	color: #000;
	margin-left: 10px;
	font-size: 11px;
}

#sss_cat {
	margin-bottom: 50px;
	text-align: center;
	line-height: 1;
}
#sss_cat #subTtl {
	margin-right: 5px;
	padding-right: 10px;
	border-right: 1px solid #000;
	font-size: 15px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	display: inline-block;
}
#sss_cat ul {
	padding: 0;
	list-style: none;
	display: inline-block;
}
#sss_cat li {
	display: inline-block;
}
#sss_cat li + li:before {
	content: ', ';
}

.ssBox {
	margin-bottom: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid #CFD8DC;
}
.ssHeader {
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
}
.ssHeader h3 {
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 1;
}
.ssHeader ul {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
}
.ssHeader li {
	margin-right: 10px;
	display: inline-block;
}
.ssHeader li a:before {
	content: '・';
}
.ssHeader .date {
	margin: 0;
	float: right;
	font-size: 12px;
}
#pager {
	margin-bottom: 50px;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
#pager li:first-child {
	float: left;
}
#pager li:last-child {
	float: right;
}

#pagetop {
	margin: 50px 0;
	padding: 0;
	font-size: 18px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align: right;
}

.close {
	text-align: center;
}
.close a .material-icons {
	font-family: 'Material Icons';
    font-size: 35px;
    color: #B0BEC5;
    content: "close";
}

/* オフライン */
#offline .offlineBox {
	margin-bottom: 50px;
}
#offline .offlineBox ul {
	margin: 0;
	padding: 0;
}
#offline .offlineBox .list {
	font-size: 14px;
	list-style: none;
}
#offline .offlineBox .list li {
	margin-bottom: 30px;
	line-height: 1.6;
}
#offline .offlineBox .list li h4 {
	margin-bottom: 10px;
}
#offline .offlineBox .list li span {
	margin-bottom: 10px;
	display: block;
}

#offline .offline_txt {
	margin-bottom: 50px;
	line-height: 1.6;
}
#offline .offline_txt li {
	margin-bottom: 20px;
}


.mailorderBox {
	margin-bottom: 50px;
	line-height: 1.6;
}
.mailorderBox dt {
	float: left;
	clear: left;
}
.mailorderBox dd {
	margin: 0 0 1em;
	padding: 0 0 1em 13em;
	border-bottom: 1px solid #CFD8DC;
}
.mailorderBox .ws {
	margin-bottom: 5px;
	width: 6em;
	border: 1px solid #CFD8DC;
}
.mailorderBox .wm {
	width: 100%;
	border: 1px solid #CFD8DC;
}
.mailorderBox textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #CFD8DC;
}
.mailorderBox .btnArea {
	margin-top: 20px;
	text-align: center;
}