﻿*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}

html, body, header, footer, div, input, label, ul, li, p, img, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	font-weight: normal;
	color: #333;
//	border: 1px solid #333;
}

h1, h2, h3, h4, h5, h6 {
	padding: 5px;
}

a:hover,
a:visited,
a:link {
	text-decoration: none;
	color: #333;
}

/*----Global----*/

.none {
	display: none;
}

.roundbox {
	display: inline-block;
	border: 2px solid #333;
	border-radius: 10px;
	padding: 2px 8px;
	margin: 2px 5px;
}

.inline-block {
	display: inline-block;
}

.text {
	padding: 10px;
//	background: #BFF;
}

.strong {
	font-weight: bolder;
}

.googlemap {
	width: 100%;
	height: auto;
}

.rotate {
	display: inline-block;
	transform: rotate(270deg);
}

.phone::after {
	content: "-6070-7206";
}

.email::after {
	content: "@gmail.com";
}


/*----*/

body {
}

/*----header-----*/

header {
	width: 100%;
	position: fixed;
	top:0;
	z-index: 10000;
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
//	min-width: 520px;
	background: rgba(255, 255, 255, 0.8);
}

.title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.title h1 {
	white-space: nowrap;
	font-size: 1.5em;
	font-weight: bold;
}

@media (max-width: 768px) {
	.title h1 {
		font-size: 1.0em;
	}
}
	

.contact {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	margin-right: 0;
	flex-wrap: nowrap;
}

.img-btn {
	margin: 5px;
}

.img-btn img {
	width: 48px;
	height: 48px;
}

.menu-btn {
	display: block;
}

@media (max-width: 768px) {
	.text-btn {
	  display: none; /* 文字を非表示 */
	}
.img-btn img {
	width: 32px;
	height: 32px;
}
}

/* ハンバーガーのアイコン */
.hamburger-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.5em;
	height: 1.5em;
	cursor: pointer;
	z-index: 11001;
//	margin: 0 30px;
//	margin-right: 15px;
}

@media (max-width: 768px) {
	.hamburger-icon {
		width: 1.0em;
		height: 1.0em;
	}
}


.hamburger-icon span {
	display: block;
	height: 4px;
	background: #333;
	border-radius: 2px;
	transition: 0.3s;
}

/* チェックボックスを非表示にする */
.menu-toggle {
	display: none;
}

/* メニュー本体 */
.hamburger-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 200px;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.3s ease;
	padding-top: 60px;
	z-index: 11000;
}

.hamburger-menu ul {
	list-style: none;
}

.hamburger-menu li {
	margin: 30px;
}

.hamburger-menu a {
	text-decoration: none;
}

/* メニュー表示時の切り替え */
.menu-toggle:checked ~ .hamburger-menu {
	right: 0;
}

/* ハンバーガーアイコンのアニメーション（開いたとき） */
.menu-toggle:checked + .hamburger-icon span:nth-child(1) {
	transform: translateY(0.6em) rotate(45deg);
}

.menu-toggle:checked + .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle:checked + .hamburger-icon span:nth-child(3) {
	transform: translateY(-0.6em) rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-toggle:checked + .hamburger-icon span:nth-child(1) {
		transform: translateY(0.4em) rotate(45deg);
	}
	.menu-toggle:checked + .hamburger-icon span:nth-child(3) {
		transform: translateY(-0.35em) rotate(-45deg);
	}
}


/*-----*/

#topimage {
	width: 100%;
	max-width: 810px;
	text-align: center;
	margin: 0 auto;
}

.carousel .carousel-inner .carousel-item img {
	width: 100%;
}

#logo {
	width: 60%;
	max-width: 640px;
	height: auto;
}

.message {
	text-align: center;
	padding: 5%;
	margin: 5%;
	background-image: url("image/shiyo1.jpg"), url("image/shiyo2.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.message-text {
	display: inline-block;
	width: 90%;
	margin: 15px auto;
	background: rgba(255, 255, 255, 0.5);
}

/*----menu----*/

.list {
}

.menuitem {
	padding-top: 70px;
}

.listmenu {
	display: flex;
	justify-content: center;
}

.menu {
	width: 100%;
//	width: 33%;
//	border: #000 solid 2px;
}


@media (max-width: 768px) {
	.listmenu {
		display: block;
	}
	.menu,
	.menu:first-child {
		width: 100%;
	}
}

h2{
	font-size: 1.3em;
	font-weight: bold;
	display: block;
	background: #09E;
	color: #FFF;
	padding: 8px 15px 3px 15px;
	margin: 5px;
	border-radius: 8px;
}

.menu h3 {
	font-size: 1.3em;
	font-weight: bold;
	display: block;
	background: #0B9;
	color: #FFF;
	padding: 8px 15px 3px 15px;
	margin: 5px;
	border-radius: 8px;
}

.h3Image {
	width: 98%;
	margin: 1%;
	max-width: 810px;
	margin: 0 auto;
	display:block;
}

.menu h4 {
	font-weight: bold;
//	color: #0B9;
//	margin: 5px;
}

.block {
	margin: 10px;
//	border: 1px solid;
}

.stylelist {
	display: flex;
	justify-content: center;
	stylelist: 100%;
	flex-wrap: wrap;
}

.styleimage {
	width: 25%;
}

@media (max-width: 768px) {
	.styleimage {
		width: 50%;
	}
}


.h4Image {
	width: 98%;
	margin: 1%;
}

.wear_list {
	padding-left: 1.5em;
}

.wear_list li {
	display: list-item;
	list-style-type: disc;
}

table {
	width: 100%;
	border-collapse: separate;
//	border: 1px solid #000;
//	font-size: 0.9em;
}

table td {
	background: #DDD;
//	border: 1px solid #000;
	padding: 5px;
}

h5 {
	display: block;
	background: rgba(0, 165, 144, 0.5);
	padding: 5px;
}

ul.schedule li.block {
	background: rgba(240, 240, 240, 1.0);
	padding: 10px;
	border-radius: 10px;
	margin-top: 20px;
}

.schedule h4 {
	font-weight: bold;
//	color: #0B9;
//	margin: 5px;
}

.bringwear h3 {
	font-weight: bold;
}

.h2Image {
	width: 98%;
	margin: 1%;
	max-width: 810px;
	margin: 0 auto;
	display:block;
}

.notice_list {
	padding-left: 1.5em;
}

.notice_list li {
	display: list-item;
	list-style-type: disc;
}

.reservation_list {
	width: 80%;
	margin: 0 auto;
}


footer {
	position: foxed;
	bottom: 0;
	text-align: center;
	background: #0B9;
	color: #FFF;
}

.slideshow {
	background-size: cover;
	animation: changeImage 10s infinite;
}

@keyframes changeImage {
0%   { background-image: url("image/slide1.jpg"); }
25%  { background-image: url("image/slide2.jpg"); }
50%  { background-image: url("image/slide3.jpg"); }
75%  { background-image: url("image/slide4.jpg"); }
100%  { background-image: url("image/slide5.jpg"); }
}