@charset "UTF-8";

/* すべてのWebページに適用される */
html {
	font-family: sans-serif;
}
html * {
	box-sizing: border-box;
}
body {
        margin-top: 100px; /* 上部から配置の基準位置を決める */
	background-color: #eeece9;
}

.wrapper {
 	margin: 0 auto 0 auto;
 	max-width: 960px;
}


/* ヘッダーの指定
.site-header{
        background: #eeece9;
        position: fixed;
	top: 0; /* 上部から配置の基準位置を決める */
	left: 0; /* 左から配置の基準位置を決める */
	width: 100%; /* ヘッダーの横幅を指定する */
	height: auto; /* ヘッダーの高さを指定する */

}


h2 {
	color: #3f5170;
	font-size: 22px;
	border-bottom: 3px dotted #3f5170;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

h4 {
	color: #3f5170;
	font-size: 14px;
	border-bottom: 3px dotted #3f5170;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

p {
	line-height: 1.6;
}
a:link {
	color: #d25833;
}
a:visited {
	color: #d25833;
}
a:hover {
	color: #e3937a;
}
a:active {
	color: #ff6a3b;
}
img {
	max-width: 100%;
	height: auto;
}

/* すべてのページに適用 - ヘッダー - */
.logo {
	margin: 50px 0 40px 0;
	line-height: 0;
	text-align: center;
}



.nav{
text-align: center;
}

nav ul{
margin: 10 ;
padding: 20 ;
}

.nav li{
list-style: none;
display: inline-block;
width: 10%;
min-width:60px;
}
.nav li:not(:last-child){
border-right:1px solid #ddd;
}
.nav a{
text-decoration: none;
color: #333;
}
.nav a.current{
color: #00B0F0;
border-bottom:1px solid #00B0F0;
}
.nav a:hover{
color:#F7CB4D;
border-bottom:1px solid #F7CB4D;
}



    



/* すべてのページに適用 - フッター - */
.footer {
	background-image: url(../images/footer-bg.png);
	background-repeat: no-repeat;
	margin-top: 30px;
	padding: 80px 15px 20px 15px;
	font-size: 12px;
	color: #3f5170;
}

/* 個別のスタイル */
/* index.html */
.keyvisual {
	margin: 20px 0 0 0;
}
.news-item {
	margin: 0;
}

/* about.html */
.shop-photo {
	float: left;
	padding: 0 1em 1em 0;
}
.clear {
	clear: both;
}


/* Works */

.horizontal-list {
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
}

.horizontal-list .item {
      /* 横スクロール用 */
      display: inline-block;
      width: 25%;
      text-align: center;

      /* 見た目調整 */

   /*   height: 400px;*/
      margin: 16px;
      font-size: 48px;
   /*   background: rgba(255, 0, 0, 0.4);*/
    }




/* テーブル */
.info {
	border-collapse: collapse;
}
.info th, .info td {
	padding: 8px;
	border: 1px solid #bec2c7;
	text-align: left;
}
.info th {
	background-color: #dde2ea;
	width: 90px;
	color: #3f5170;
	vertical-align: top;
}


/* access.html */
.map {
	text-align: center;
}

/* contact.html */
form div {
	padding:12px;
	border-bottom: 1px dashed #bec2c7;
}
select {
	width: 30em;
}
input[name="subject"] {
	width:30em;
}
textarea {
	width: 30em;
	height: 6em;
}
input[type="submit"] {
	margin: 20px 0;
	width: 30em;
}

/* スマートフォン向けCSS */
@media (max-width: 767px) {
	/* 全体 - ナビゲーション */
	.wrapper {
		margin: 0 4px;
	}
	.logo {
		margin: 30px 0;
	}
	.logo img {
		width: 200px;
	}
	.nav {	
		background-color: #dfddda;
	}
	.nav li {
		display: inline-block;
		min-width: 60px;
	}

	/* menu.html - 横並び解除 */
	.menu-item {
		display: block;
	}
	.menu-photo {
		margin-right: 0;
		width: 100%;
	}
	.menu-text {
		width: 100%;
	}

	/* contact.html - フォーム */
	select {
		width: 100%;
	}
	input[name="subject"] {
		width: 100%;
	}
	textarea {
		width: 100%;
	}
	input[type="submit"] {
		margin: 20px 0;
		width: 100%;
	}	
}