@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Satisfy&family=Noto+Sans+JP:wght@100..900&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	/*色の一括管理*/
    --primary-color: #8ac5c3;		/*このテンプレートのテーマカラー*/
    --primary-text-color: #fff;		/*このテンプレートのテーマカラーの上に文字を載せる場合*/
    --secondary-color: #f9bdbb;		/*このテンプレートのアクセントカラー*/
    --secondary-text-color: #fff;	/*このテンプレートのアクセントカラーの上に文字を載せる場合*/
	
	/*このテンプレートのフォントの設定*/
    --main-font: "Lato","Noto Sans JP","ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	
	/*見出しに使うフォントの設定。１つ目はGoogleFontsの指定で、２つ目は英語表記に対応していない(日本語表記など)に使うフォント（上の行で定義したフォント）を使う指定。*/
    --heading-font: "Satisfy","Kaisei Decol",  var(--main-font);
	
	/*bg1で使っている共通の高さ*/
    --bg1-height: 50px;
}


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*rotate1（左右にスイング）
---------------------------------------------------------------------------*/
@keyframes rotate1 {
	0% {transform: rotate(0deg);}
	30% {transform: rotate(-4deg);}
	80% {transform: rotate(4deg);}
	100% {transform: rotate(0deg);}
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body * {box-sizing: border-box;}

body {
	margin: 0;padding:0;
	font-family: var(--main-font);	/*フォント種類。css冒頭で指定しているmain-fontを読み込みます*/
	-webkit-text-size-adjust: none;
	font-weight: 400; /* ここで太さを指定 */
	color: #555;			/*文字色*/
	line-height: 2.2;		/*行間*/
	animation: opa1 0.5s 0.2s both;	/*0.2秒の間だけ非表示にし、その後0.5秒かけてフェードイン表示*/
	background-color: #faf9f7;	/*背景色*/
}

/*トップページの背景画像に関する指定。
background-imageは、カンマ区切りで２枚の画像の読み込み。
background-repeatは、リピートしない設定
background-positionは、配置場所。カンマ区切りで２枚の画像のそれぞれの場所を指定。vwは画面幅に対して。100vwが画面幅100%の事。
1枚目（右上画像）の位置指定 → 85vw -10vw
2枚目（左下画像）の位置指定 → 0vw 30vw
横方向（右左）：75vw → 85vw に増やすとより右に移動します／縦方向（上下）：-5vw → -10vw にするとさらに上に移動します（マイナスが大きいほど上へ）
background-sizeは、画像の幅。画面幅に対して30%の事。*/
body.home {
	background-image: url('../images/kazari2.png'), url('../images/kazari3.png');
	background-repeat: no-repeat;
	background-position: 63vw 0vw, 0vw 25vw;
	background-size: 35vw, 28vw;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section {margin: 5vw;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #999;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	max-width: 1800px;				/*最大幅。これ以上広がりません。*/
	display: flex;					/*flexを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 auto;
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
}


/*ヘッダー
---------------------------------------------------------------------------*/
header {
	position: relative;
}

/*ロゴ*/
#logo img {display: block;}
#logo {
	margin: 0;
	width: 35vw;		/*幅*/
	padding-left: 10px;	/*左に空ける余白*/
	padding-top: 10px;	/*上に空ける余白*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ロゴ*/
	#logo {
		width: 25vw;	/*幅*/
	}

	}/*追加指定ここまで*/


/*トップページのロゴの配置場所*/
.home #logo {
	position: absolute;z-index: 1;
	left: 0px;
	top: 0px;
}


/*スイングアニメーション（主にロゴ画像に使用）
---------------------------------------------------------------------------*/
.swing {
	animation-name: rotate1;				/*css冒頭にある@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 5S;					/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-iteration-count: infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-timing-function: linear;		/*アニメーションのパターン。速度を一定に変化させる指定。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}


/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	padding: 0.3rem 1.5rem;	/*上下、左右へのメニュー内の余白*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック*/
.large-screen #menubar {
	margin: 4rem 0;	/*上下、左右へのメニューの外側にとるスペース*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*トップページ以外のメニューブロック*/
	body:not(.home).large-screen #menubar {
		position: absolute;
		right: 4rem;	/*右からの配置場所指定*/
		top: 0px;		/*上からの配置場所指定*/
	}

	}/*追加指定ここまで*/


.large-screen #menubar > nav > ul {
	display: flex;				/*横並びにする*/
	justify-content: flex-end;	/*右側に配置*/
	gap: 1rem;					/*メニュー同士の間にあけるマージン的な余白*/
}
.home.large-screen #menubar > nav > ul {
	justify-content: center;	/*左右の中央に配置*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
	text-align: center;	/*テキストをセンタリング*/
}
.large-screen #menubar li a {
	background: #fff;
	border-radius: 100px;
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色*/
}
.large-screen #menubar > nav > ul > li > a {
	box-shadow: 0px 7px var(--primary-color);
}
.large-screen #menubar > nav > ul > li > a:hover {
	box-shadow: 0px 3px var(--primary-color);
}

/*マウスオン時*/
.large-screen #menubar li a:hover {
	position: relative;
	top: 1px;
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*ドロップダウンの親*/
a.ddmenu::before {
	content: "▼";	/*この印を入れる*/
	display: inline-block;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	transform: scale(1, 0.7);		/*サイズ変更。幅は100%で高さを70%にしています。*/
	margin-right: 5px;				/*アイコンの右側に空けるスペース*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
	padding-top: 10px;
}

/*ドロップダウンメニュー一個あたり*/
.large-screen #menubar ul ul li {
	margin-top: 5px;	/*メニュー同士の外側（上）のスペース*/
}
.large-screen #menubar ul ul a {
	background: #fff;		/*背景色*/
}


/* ボタンのデザイン */
.button022 a {
    position: relative;
	border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #eee;
    z-index: 0;
}
.button022 a:before, .button022 a:after {
  content: "";
  border-radius: 50px;
  position: absolute;
  display: block;
  transition: all 0.3s;
}
.button022 a:before {
  opacity: 0;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 1.4rem;
  border-radius: 50px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: translateY(-50%) rotate(45deg);
}
.button022 a:after {
  opacity: 0;
  right: -2px;
  bottom: -2px;
  background: #8ac5c3;
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50px;

}
.button022 a:hover {
  padding: 10px 25px 10px 10px;
  color: #FFF;
  border-radius: 50px;
}
.button022 a:hover:before {
  opacity: 1;
  border-color: #FFF;
  border-radius: 50px;
}
.button022 a:hover:after {
  opacity: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50px;
}
.button022 {
    margin: 0 0 20px 0; /* 下20pxの余白 */
}
.button022 a {
    text-decoration: none;
}



/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: #fff;			/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen nav > ul > li {
	border: 1px solid #555;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}



/* スクロールバーのデザイン */
.scroller {
    margin: 0 auto;
    width: 80%;
    background-color: #b4c19a;
    border: solid 4px #869666;
    border-radius: 5px;
    scrollbar-color: #b4c19a #869666;
    scrollbar-width: thin;
}
.flyer-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-start; /* 左寄せ（必要に応じて） */
  flex-wrap: wrap; /* スマホで折り返し対応 */
  margin-bottom: 1.5rem;
  padding-left: 20px; /* ← 左側にスペースを追加 */
}

.flyer-row img {
  width: 200px;     /* 好みに応じて調整 */
  height: auto;
  display: block;
  border: 1px dotted #ccc; /* オプションで枠つけたいとき */
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;			/*右からの配置場所指定*/
	top: 30px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*main
---------------------------------------------------------------------------*/
main {
	flex: 1;
	padding-top: 1rem;		/*ブロックの上の余白*/
	padding-bottom: 3rem;	/*ブロックの下の余白*/
}

/*h2(見出し)要素*/
main h2 {
	font-size: 2rem;		/*文字サイズを２倍*/
	font-weight: normal;	/*太さを標準*/
	font-family: var(--heading-font);	/*フォント種類。css冒頭で指定しているheading-fontを読み込みます*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	border-bottom: 1px solid var(--primary-color);	/*下線の幅、線種、varの部分は色で、css冒頭で指定しているprimary-colorを読み込みます*/
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
	margin-top: 1rem;  /* ← ここで上にスペースを追加 */
	}
	/* 英字だけ Kaisei Decol を使う */
main h2 span.kaisei {
	font-family: "Kaisei Decol", sans-serif;
}
	@media screen and (max-width:700px) {
	/* スマホ表示時の h2 見出しを少し小さめにする */
	main h2 {
		font-size: 1.5rem; 
	}
}


/*type1の見出し*/
main h2.type1 {
	margin: 0; padding: 0; border: none;
	font-family: var(--heading-font);	/*フォント種類。css冒頭で指定しているheading-fontを読み込みます*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
main h2.type1 span {
	display: block;
	font-size: 1.2rem;
	text-align: right;	/*テキストを右寄せ*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*type1の見出し*/
	main h2.type1 {
		width: 20vw;	/*幅*/
		flex: 0 0 auto;
		line-height: 1;
		transform: rotate(-10deg);	/*少しだけ傾ける*/
		margin-right: 2rem;			/*右側へのスペース*/
		font-size: 4rem;			/*文字サイズ。４倍。*/
	}
	main h2.type1 span {
		margin-top: 2rem;	/*上に２文字分のスペース*/
	}

	}/*追加指定ここまで*/


/*h3(見出し)要素*/
main h3 {
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
}

/*p(段落)要素*/
main p {
	padding-left: 0.5rem;	/*左に0.5文字分の余白*/
}




/*左側にh2見出し、右側にメニュー写真が並ぶタイプのブロック設定
---------------------------------------------------------------------------*/

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.list-side-title {
		display: flex;	/*横並びに*/
		justify-content: center;	/*中央に寄せる*/
		align-items: flex-start;	/*上に寄せる*/
		gap: 3%;					/*ブロック同士のマージン的な要素。*/
	}

	}/*追加指定ここまで*/


	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	/*ブロック内にある、全ての写真ブロックを囲むボックス*/
	.list-side-title .list-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*２列にする。３列がいいなら、(3, 1fr)とすればOKです。*/
		gap: 2rem;	/*写真ブロック同士に空けるマージン的な要素。*/
	}

	}/*追加指定ここまで*/


/*list（メニュー写真や説明が入ったボックス一個あたり）
---------------------------------------------------------------------------*/
/*list内の全ての要素のマージンを一旦リセット*/
.list * {
	margin: 0;
}

/*ボックス１個あたり*/
.list {
	position: relative;
    display: flex;
	flex-direction: column;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	margin-bottom: 3%;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ボックス１個あたり*/
	.list {
		margin-bottom: 0;
	}

	}/*追加指定ここまで*/

/*ブロック内のh4*/
.list h4 {
	color: #555;	/*文字色*/
}

/*価格*/
.list h4 .price {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	border-radius: 100px;	/*角を丸くする指定。大きければ適当でOK。*/
	padding: 0.3rem 1rem;	/*価格内の余白。上下、左右へ。*/
	margin-left: 1rem;		/*左側に1文字分のスペースを空ける。メニュータイトルとの隙間の調整です。*/
	font-size: 0.8rem;		/*文字サイズを80%に*/
}

/*ブロック内のp要素*/
.list p {
	margin: 0;padding: 0;
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.8;	/*行間を少し狭く*/
}

/*アイコン*/
.list .newicon {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-text-color);	/*文字色。css冒頭で指定しているsecondary-text-colorを読み込みます*/
	font-size: 0.7rem;	/*文字サイズ。70%。*/
	width: 5em;			/*アイコンの幅。4文字分。*/
	line-height: 5em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ボックス内のfigure画像*/
.list figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}

/*リンクテキスト*/
footer a {
	text-decoration: none;
	color: inherit;
}

/*copyright*/
#copyright {
	font-size: 0.8rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 10px;			/*余白*/
}

/*テンプレート著作部分*/
footer .pr {display: block;}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;	/*横並びにする*/
	align-self: center;
	justify-content: center;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
.icons i {
	font-size: 40px;	/*Font Awesomeのアイコンサイズ*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	border-color: transparent;			/*枠線の色を透明に*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-text-color);	/*文字色。css冒頭で指定しているsecondary-text-colorを読み込みます*/
	border-color: transparent;			/*枠線の色を透明に*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
		padding-left: 1rem;		/*左に空ける余白*/
		padding-right: 1rem;	/*右に空ける余白*/
	}

	}/*追加指定ここまで*/


/*前に戻るボタンの設定
---------------------------------------------------------------------------*/
.button-container {
  text-align: center; /* ボタンを横中央に配置 */
  margin-top: 2rem;   /* 上に余白を追加 */
}

.button-container button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-container button:hover {
  background-color: /* 少し濃いめの色や透明度変化など */;
  background-color: rgba(138, 197, 195, 0.8); /* 例：少し透ける感じ */
}

/*メイン画像スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*slickの簡易チラつき対策（slick共通）*/
.slick-slide {
  will-change: transform;
}

/*画像を囲むブロック*/
.mainimg-slick {
	margin: 3rem;	/*画像の周りに空けるスペース。３文字分。*/
}

/* メイン画像全体の横幅を調整 */
.mainimg-slick {
  margin: 3rem auto;
  width: 90%;
  max-width: 1000px;
}

/* スライド枠の高さと角丸 */
.mainimg-slick div {
  height: 600px;
  border-radius: 2vw 20vw 2vw 20vw;
  overflow: hidden;
}

/* スライド内の画像調整 */
.mainimg-slick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*丸いページナビボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 30px;	/*下からの配置場所指定*/
}

/*丸いページナビボタン１個あたりの設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプするので、わかりやすいようhover時にpointerになるように。*/
	background: #ccc;		/*背景色。白。*/	
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/* スマホ用：画面幅768px以下で高さを小さくする */
@media screen and (max-width: 768px) {
  .mainimg-slick {
    width: 95%;
    margin: 2rem auto;
  }

  .mainimg-slick div {
    height: 280px; /* スマホに合った高さ。調整可能 */
    border-radius: 4vw 10vw 4vw 10vw;
  }
}


/*サムネイルの横スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショーを囲むブロック*/
.thumbnail-slide {
	background: #fff;	/*背景色*/
	padding: 20px 10px;	/*上下、左右へのボックス内の余白*/
}

/*各アイテム間のマージン*/
.thumbnail-slide .slick-slide {
    margin: 0 10px;	/*上下は0、左右へ10px*/
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 a {color: inherit;}
.bg1 {
	background-position: top center, bottom center;	/*１枚目画像、２枚目画像の配置場所指定*/
	background-size: 100% var(--bg1-height);		/*背景画像のサイズ。幅は100%で、高さはcss冒頭のbg1-heightを読み込みます。*/
	background-repeat: no-repeat;		/*画像をリピートしない*/
	padding-top: var(--bg1-height);		/*変更不要*/
	padding-bottom: var(--bg1-height);	/*変更不要*/
	background-image: url('../images/bg1_top.png'), url('../images/bg1_bottom.png');	/*背景画像の読み込み。カンマ区切りで２枚読み込んでいます。*/
}

.bg1-inner {
	background: #cbf0ef;	/*背景色。背景画像の色に合わせる。*/
	padding-top: var(--bg1-height);		/*変更不要*/
	padding-bottom: var(--bg1-height);	/*変更不要*/
}

/*ボックス内の上下の空白が広くなりすぎるので、sectionの上下マージンをなくす*/
.bg1-inner > section {
	margin-top: 0;
	margin-bottom: 0;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;		/*ボックス内の余白*/
	background: #afa5a0;	/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #999;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #999;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #efebe9;	/*背景色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/





/*テーブル（スケジュール）
---------------------------------------------------------------------------*/
.week2-parts {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 10px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}

/*受付時間の幅*/
.week2-parts th:first-child,
.week2-parts td:first-child {
	width: 20%;
}

/*各曜日の幅*/
.week2-parts th:not(:first-child),
.week2-parts td:not(:first-child) {
	width: calc(75% / 4);	/*受付時間で25%とっているので残りの75%を7で割る*/
}

/*th(曜日)とtd(時間)*/
.week2-parts th,
.week2-parts td {
	padding: 1rem 0;	/*ボックス内の余白。上下に１文字分、左右は0。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}

/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.week2-parts th:last-child,
.week2-parts td:last-child {
	border-right: none;
}

/*最後の行の下線を消す*/
.week2-parts tr:last-child td {
	border-bottom: none;
}

/*th(曜日)の追加指定*/
.week2-parts th {
	background: #eee;	/*背景色*/
}
.week2-parts td {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}




/*テーブル3（イベント予定）
---------------------------------------------------------------------------*/
.event-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 10px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}
.event-table caption {
  font-weight: 700;
  text-align: center;  /* キャプションも中央に */
  margin: .5em 0;
}
.event-table th,
.event-table td {
  padding: .5em .7em;
  text-align: center;  /* 文字中央 */
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}
.event-table thead th {
  background: #f7f7f7;
}
.event-table tbody tr:nth-child(even) {
  background: #fafafa;
}



/*list-grid7
---------------------------------------------------------------------------*/
.list-grid7-parts .list-parts * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid7-parts {
	padding-top: 20px;	/*画像が少し上にずれるので適当に余白を確保*/
}

/*ボックス１個あたり*/
.list-grid7-parts .list-parts {
    display: grid;
	position: relative;
	border-radius: 5px;		/*角を少しだけ丸く*/
	background: #fafafa;	/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2rem;			/*ボックス内の余白。２文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。2文字分。*/
}

/*ボックス内のh4見出し*/
.list-grid7-parts .list-parts h4 {
	text-align: center;		/*テキストをセンタリング*/
	margin-bottom: 0.5rem;	/*下に0.5文字分の余白を空ける*/
}

/*ボックス内のp要素*/
.list-grid7-parts .list-parts p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid7-parts .list-parts figure {
	margin: 0 auto;
	width: 100px;			/*画像サイズ*/
	margin-top: -40px;		/*本来の場所より上にずらす*/
	margin-bottom: 1rem;	/*画像の下に空けるスペース*/
	border-radius: 50%;		/*円形にする*/
	overflow: hidden;
	background: #fed720;	/*背景色。画像に透過部分がある場合に見えます。*/
}

/*ボックス内のfigure画像（※アスペクト比を1:1にした場合）*/
.list-grid7-parts.square .list-parts figure {
	aspect-ratio: 1 / 1;	/*幅に対して高さを同じにする*/
}
.list-grid7-parts.square .list-parts figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;			/*コンテナいっぱいにカバー、余分な部分はカット*/
	object-position: center;	/*中央部分を表示*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体を囲むブロック*/
	.list-grid7-parts {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2rem	/*ブロックの間に空けるマージン的な指定。２文字分。*/
	}

	/*ボックス内のfigure画像*/
	.list-grid7-parts .list-parts figure {
		width: 150px;		/*画像サイズ*/
		margin-top: -50px;	/*本来の場所より上にずらす*/
	}

	}/*追加指定ここまで*/




/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view-parts {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
}

/*矢印＋サムネイル列を囲むブロック*/
.thumbnail-nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;	/*左寄せで*/
	gap: 8px;						/*矢印と列の間隔*/
	max-width: 1000px;				/*最大幅*/
	margin:0 auto 2rem;				/*下に空けるスペース。２文字分。*/
}

/*左右矢印*/
.thumb-arrow {
	flex: 0 0 30px;		/*30pxが幅。お好みで。*/
	line-height: 60px;	/*高さ。お好みで。*/
	font-size: 18px;	/*矢印の文字サイズ*/
	text-align: center;
	color: #fff;		/*矢印の色*/
	background: rgba(0,0,0,0.3);	/*矢印の背景色*/
	cursor: pointer;
	user-select: none;
}

/*矢印非表示*/
.thumb-arrow.is-off {display: none;}

/*横スクロール用ラッパー*/
.thumbnail-wrapper {
	flex: 1 1 auto;
	overflow-x: auto;
	scrollbar-width: none;
}
.thumbnail-wrapper::-webkit-scrollbar{display: none;}

/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
	display: flex;
}

/*サムネイル画像*/
.thumbnail-parts img {
	width: 100px;	/*サムネイルの幅*/
	margin: 2px;	/*サムネイル間のスペース*/
	cursor: pointer;
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail-parts img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}






/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*color-check（マーカー風スタイル）
---------------------------------------------------------------------------*/
.color-check {
  background: linear-gradient(to bottom, transparent 70%, rgba(249, 189, 187, 0.6) 70%);
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: var(--primary-color) !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.03);border: 1px solid #ccc; border-radius: 3px;word-break: break-all;}
.s {font-size: 0.8em;}
.small {font-size: 0.7em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.responsive-br {display: none;}


	/*画面幅700px以上の追加指定*/
	@media screen and (min-width: 700px) {

	.responsive-br {display: block;}

	}/*追加指定ここまで*/


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/
