@charset "utf-8";
/*-------------------------------- 
  基本スタイル
-------------------------------- */
body {
	font-family: "Hiragino Kaku Gothic Pro" , "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro" , "メイリオ", "游ゴシック体", "Yu Gothic", yugothic, "Meiryo", メイリオ, sans-serif;;
	font-size: medium;
	line-height: normal;
	height: 100%;
	color: #222;
	background-image: url(00whole/06back.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-bottom: 0px;
	margin-bottom: 0px;
	max-width: 1152px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	animation: fadein 1s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
p {
	line-height: 1.8em;
}
img {
	max-width: 100%;
}

.large {
	font-size: large;
	font-weight: bold;
}

h1 img{
	max-width: 400px;
}
h2 {
	color: #632;
	font-size: x-large;
	margin-bottom: 12px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
main a {
	text-decoration: none;
	color: #632;
}
main a:hover {
	color: red;
	transition: all 0.3s ease-in-out;
}
footer a {
	text-decoration: none;
	color: #632;
}
footer a:hover {
	color: red;
	transition: all 0.3s ease-in-out;
}

/*-------------------------------- 
  ヘッダー
-------------------------------- */
header {
	margin-top: 12px;
	margin-bottom: 12px;
}
header .note {
	width: 100%;
	font-size: small;
	padding-bottom: 24px;
	text-align: center;
}
header .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .header-item {
  margin: 5px 0;
}
/* --- 予約ボタン共通 --- */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 5px;
  text-decoration: none;
}

/* 電話予約ボタン（黄色） */
.btn-tel {
  background-color: #f9d349; /* きりんイエロー */
  color: #5c4500;
}

.btn-tel:hover {
  background-color: #fbe47a;
  transform: translateY(-2px);
}

/* オンライン予約ボタン（緑） */
.btn-web {
  background-color: rgb(61, 155, 30); 
}

.btn-web:hover {
  background-color: rgb(45, 110, 24); 
  transform: translateY(-2px);
}

/*-------------------------------- 
  メイン
-------------------------------- */
main {
	clear: both;
	margin-bottom: 24px;
	padding-top: 12px;
}
/*++++++++++++++ 
  メイン写真・バナー
++++++++++++++ */
.banner01 {
	text-align: center;
	max-width: 49%;
	float: left;
	margin-bottom: 24px;
}
.banner01 img {
	border-radius: 10px;
}
.banner02 {
	text-align: center;
	max-width: 49%;
	float: right;
	margin-bottom: 24px;
}
.banner02 img {
	border-radius: 10px;
}
.banner02 img:hover {
	opacity: 0.8;
	transition: transform 0.3s, opacity 0.3s;
	transform: translateX(3px);
}
/*++++++++++++++ 
  トップボタン
++++++++++++++ */
.botan ul {
	display: flex;
	justify-content: space-around;
	width: 100%;
	margin-bottom: 24px;
	clear: both;
	padding: 0px;
}
.botan li {
  border: 1px solid #fc0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
	padding: 2%;
	width: 24%;
	text-align: center;
	font-size: small;
	list-style-type: none;
	display: block;
	margin-top: 6px;
	margin-bottom: 24px;
}
.botan li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.botan01 h2 {
	font-size: large;
	border-bottom: 1px solid #FC0;
	margin-bottom: 6px;
	margin-top: 6px;
}
.botan a {
	color: #333;
	text-decoration: none;
}
.botan a:hover {
	text-decoration: none;
}
/*++++++++++++++ 
  おしらせ
++++++++++++++ */
.oshirase {
	clear: both;
	text-align: center;
	max-width: 80%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 36px;
	border-bottom: 1px solid #fc0;
}
.oshirase h2 {
	font-size: x-large;
	margin-bottom: 12px;
	padding-bottom: 6px;
}
.oshirase p {
	border-top: 1px solid #fc0;
	padding: 10px;
}
/*++++++++++++++ 
  リスト
++++++++++++++ */
main ul {
	margin-bottom: 18px;
	line-height: 1.8em;
}
main ul li {
	list-style-type: none;
	padding-left: 0px;
}
/*++++++++++++++ 
  テーブル
++++++++++++++ */
table {
	background-color: #300;
}
.back_yellow {
	background-color: #FC0;
	text-align: center;
}
.back_white {
	background-color: #FFF;
	text-align: center;
}
.jihi {
	width: 70%;
	background-color: #fff;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	table-layout: fixed;
}
.jihi th {
	background-color: #f4f4f4;
	padding: 6px;
	border: 1px solid #ccc;
	text-align: left;
}
.jihi td {
	padding: 6px;
	border: 1px solid #ccc;
}

.section_hanbun {
	display: flex;
	justify-content: space-between;
	padding: 6px;
	flex-wrap: wrap;
	align-content: space-between;
}
.section_hanbun .hanbun {
	width: 48%;
}


/*++++++++++++++ 
  Googleマップ
++++++++++++++ */
.map {
	margin-left: auto;
	margin-right: auto;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-------------------------------- 
  第2階層のメイン
-------------------------------- */
.second {
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
}
.second h1 {
	font-size: 240%;
	font-weight: normal;
	margin-top: 24px;
	margin-bottom: 48px;
	text-align: center;
	letter-spacing: 5px;
	font-family: "Kosugi Maru", sans-serif;
	color: #632;
}
.second h2 {
	font-size: xx-large;
	margin-bottom: 24px;
	padding-bottom: 6px;
	border-bottom: 6px solid #fc0;
}
.second h3 {
	font-size: x-large;
	margin-bottom: 24px;
	font-family: "Kosugi Maru", sans-serif;
	color: #632;
	font-weight: normal;
}
.second h4 {
	font-size: large;
	margin-bottom: 12px;
	font-family: "Kosugi Maru", sans-serif;
	color: #632;
}
.second p {
	margin-bottom: 12px;
	line-height: 1.8em;
}
.second hr {
	border-top: 1px solid #ccc;
	margin-top: 24px;
	margin-bottom: 24px;
}
.second img {
	border-radius: 10px;
}
.kakoi {
	border: 1px solid #ccc;
	background-color: #eee;
	padding: 20px;
	border-radius: 10px;
}
.red {
	color: red;
	font-weight: bold;
}
.kakoi ul {
	padding-left: 20px;
	line-height: 1.8em;
	margin-bottom: 0px;
}
.kakoi ul li {
	list-style-type: disc;
}
.second .hanasu {
	margin-bottom: 36px;
}
.maruari li {
	list-style-type: disc;
	margin-left: 20px;
}
.junro01 {
	float: left;
	max-width: 50%;
	padding: 1%;
	text-align: center;
}
.junro02 {
	float: right;
	max-width: 50%;
	text-align: center;
	padding: 1%;
}
.junro03 {
	clear: both;
	float: none;
	width: 959px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.sitemap {
	max-width: 70%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.sitemap li {
	border-bottom: 1px solid #ccc;
	padding: 6px;
}
/*-------------------------------- 
  フッター
-------------------------------- */
footer {
	clear: both;
	text-align: center;
	max-width: 100%;
	padding-bottom: 240px;
	padding-top: 24px;
}
footer .f_nav {
	font-size: small;
	padding-top: 12px;
	padding-bottom: 12px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #ccc;
	border-bottom-color: #ccc;
	margin-bottom: 24px;
}

footer h3 {
	font-size: large;
	font-family: "Kosugi Maru", sans-serif;
	padding-top: 5px;
	padding-bottom: 10px;
	font-weight: bold;
	color: #632;
}
/*-------------------------------- 
  トップへ戻るボタン
-------------------------------- */
html {
  scroll-behavior: smooth;
}

.top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #300;
  display: block;
  text-align: center;
  border-radius: 24px;
}
.top::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}
.top:hover {
  background-color: #632;
  transition: background-color 0.3s;
}
/*-------------------------------- 
  画面サイズが1000px以下の場合
-------------------------------- */
@media only screen and (max-width: 1000px) {

body {
	background-image: none;
	width: 90%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

header .note {
	width: 100%;
	font-size: x-small;
	padding-bottom: 12px;
}
header .title {
  display: flow;
}
header .header-item {
	text-align: center;
}
h1 img{
	max-width: 100%;
}
main {
	clear: both;
	margin-bottom: 24px;
	padding-top: 12px;
	padding-right: 0px;
	padding-left: 0px;
}
.banner01 {
	max-width: 100%;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	float: none;
}

main .banner02 {
	max-width: 100%;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	float: none;
}

.botan ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
.botan li {
    width: 48%;
	margin-bottom: 10px;
  }
.oshirase {
	max-width: 100%;
}
.jihi {
	width: 100%;
}
.section_hanbun .hanbun {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
.junro01 {
	float: none;
	max-width: 100%;
	border-right: none;
}
.junro02 {
	float: none;
	max-width: 100%;
	border-right: none;
}
.junro03 {
	clear: both;
	float: none;
	width: 959px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.sitemap {
	max-width: 100%;
}
/*++++++++++++++ 
  Googleマップ
++++++++++++++ */

footer {
	clear: both;
	text-align: center;
	max-width: 100%;
	padding-bottom: 24px;
	padding-top: 24px;
}

}
