@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

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

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

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



/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {

	--primary-color: #cd6d6c;			/*テンプレートのメインまたはアクセントとなる色*/
	--primary-inverse-color: #fff;		/*primary-colorの対として使う色*/

	--global-space: 5vw;	/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	height: 100%;
	font-size: 14px;	/*基準となるフォントサイズ。*/
}

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

	html, body {
		font-size: 17px;	/*基準となるフォントサイズ。*/
	}

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


	@font-face {
		font-family: 'Hiragino Maru Gothic Pro';
		src: url('path_to_your_font_file.woff2') format('woff2'),
			 url('path_to_your_font_file.woff') format('woff');
	}
	
	body {
		font-family: 'Hiragino Maru Gothic Pro', 'Meiryo', 'MS PGothic', sans-serif;
		-webkit-text-size-adjust: none;
		background: #fff;
		color: #777;
		line-height: 2;
	}




#memo2 {
    width: 100%;
    padding: 30px;
    border: 3px solid #6666ff;
    border-style: dotted;
    margin: 30px auto;
    background: #fff url("../images/memo02_bgright.png") no-repeat right bottom;
    text-align: left;
}
#memo3 {
    width: 100%;
    padding: 30px;
    border: 3px solid #97979f;
    border-style: dotted;
    margin: 30px auto;
    background: #fff;
    text-align: left;
}
#memo5 {
    width: 100%;
    padding: 10px;
    border: 3px #efc5f3;
    border-style: double;
    margin: 10px auto;
	background:url("../images/memo06_bgleft.png") no-repeat right bottom;
    text-align: center;
}

#memo4 {
    width: 100%;
    padding: 45px;
    border: 3px #efc5f3;
    border-style: double;
    margin: 30px auto;
	background: url("../images/memo05_bgleft.png") no-repeat left top, #fff8dc url("../images/memo05_bgright.png") no-repeat right bottom;
    text-align: center;
}
#suni {
    margin: 30px auto;
    text-align: center;
}

/*プロフィールのリストのセンタリング*/
.profile {text-align: center;
}

.profile-list{
display: inline-block;
  margin: 0 0 30 30px;
  list-style: disc;
  text-align: left;
}

article { text-align: center ;
  }

/* お問い合わせ */
.email {
    width: 100%;
    background-color: #faf7f0;
    border-radius: 48px;
    padding: 1rem 1rem;
    margin: 3px;
}
.email p {
    margin: 1rem 0 1rem;
}

/* ボタン */
	article .btn {
		display: inline-block;
		font-size: 1.5rem;
		color: #fff;
		background-color: #66cc66;
		border-radius: 8px;
		padding: .75rem 1.5rem;
		transition: .5s;
		}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

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

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

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

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

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}


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


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

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


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


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}

/*トップページのヘッダーブロック*/
.home header {
	background: none;
	position: relative;	/*ロゴとヘッダーメニューを絶対配置させる為に必要な指定*/
}

/*ロゴ*/
#logo {
	margin: 0;
	height: 80px;			/*高さ。ロゴの高さではなく、トップ以外でのロゴが入っている色のついた部分の高さとして使っています。*/
	display: flex;			/*flexを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-left: 3%;		/*左側に空ける余白*/
}
#logo img {
	display: block;
	width: 300px;	/*ロゴ画像の幅*/
}

/*トップページのロゴ*/
.home #logo {
	height: auto;
	padding-left: 0;
	position: absolute;	/*絶対配置する為の指示*/
	left: 5%;			/*headerブロックに対して左からの配置指定*/
	top: 10%;			/*headerブロックに対して上からの配置指定*/
}
.home #logo img {
	width: 350px;	/*ロゴ画像の幅*/
}

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

	/*ロゴ*/
	 #logo img  {
		width: 220px;	/*ロゴ画像の幅*/
	}
	
	/*トップページのロゴ*/
	.home #logo img  {
		width: 150px;	/*ロゴ画像の幅*/
	}

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


/*カテゴリーメニュー（カテゴリーメニューは、開閉ブロックの#menubar内）
---------------------------------------------------------------------------*/
/*メニューブロック初期設定
---------------------------------------------------------------------------*/
#menubar {opacity: 0;line-height: 1.5;}
#menubar ul {list-style: none;margin: 0;padding: 0;}

.large-screen #menubar {opacity: 1;}

.small-screen #menubar.display-none {display: none;}
.small-screen #menubar.display-block {display: block;opacity: 1;}

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

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

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	font-size: 0.7rem;		/*文字サイズを70%に*/
	padding-right: 0.5rem;	/*右側に空ける余白。0.5文字分。*/
}


/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
}

/*小文字の英語部分*/
#menubar span {
	display: block;
	font-size: 0.7em;		/*文字サイズを親要素の70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックを囲むボックス*/
.large-screen #menubar {
    position: sticky;	/*画面の上部にメニューが固定される*/
    top: 0;
    z-index: 2;
    transition: opacity 0.3s;
}

/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;	/*横並びにする*/
	justify-content: space-between;
	align-items: center;
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
	text-align: center;	/*テキストをセンタリング*/
}

/*リンク（a要素）の設定*/
.large-screen #menubar li a {
	flex: 1;
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
	padding: 0.8rem 0;	/*上下、左右の余白*/
}

/*マウスオン時に明るくする*/
.large-screen #menubar li a:hover {
	filter: brightness(1.2);
}


/*大きな端末用のメニューブロックが画面上部に到達した場合（fixed）
---------------------------------------------------------------------------*/
/*文字色*/
.large-screen #menubar.fixed a {
    opacity: 0.8;	/*透明度。色を80%だけ出す。*/
}

/*マウスオン時*/
.large-screen #menubar.fixed a:hover {
	opacity: 1;		/*透明度。色を100%出す。*/
}

/*メニューの上下の余白を狭くする*/
.large-screen #menubar.fixed2 li a {
	padding-top: 0.4rem;	/*上の余白*/
	padding-bottom: 0.4rem;	/*下の余白*/
}


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


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

/*ドロップダウンメニュー1個あたりの上下、左右への余白。*/
.large-screen #menubar ul ul a {
	padding: 0.6rem 1rem !important;
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------
.small-screen #menubar {height: 0px;}*/

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 3rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar li li a {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 2vw;		/*上からの配置場所*/
	right: 2vw;		/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 15px;	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: rgba(0,0,0,0.6);	/*背景色*/
}

/*以下は変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;			/*線の太さ*/
	background-color: #fff;	/*線の色*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 3%;	/*コンテンツ内の余白*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定（※頭にドットのある.mainとは異なる要素なので間違わないようにして下さい）*/
main {
	margin: 2rem 0;	/*ブロックの外側（上下、左右）に空けるスペース*/
}

/*mainブロック内のh2*/
main h2 {
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	color: #fff;			/*文字色*/
	margin: 0 0 1rem;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.3rem;		/*文字サイズ*/
	padding: 3px 2rem;		/*h2内の余白。上下、左右への順番。*/
	border-radius: 25px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	display: flex;					/*flexを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*mainブロック内のh2の中にある最後のspan。つまり、見出し右側の装飾文字（英語）です。*/
main h2 span:last-of-type {
	font-size: 0.7em;	/*文字サイズを親要素の0.7倍に。*/
}

/*mainブロックのh2内にあるアイコン*/
main h2 i {
	margin-right: 1rem;	/*右側に空けるスペース。テキストとの間の余白になります。*/
}

/*mainブロック内のh3*/
main h3 {
	font-size: 1.2rem;		/*文字サイズ*/
	margin: 2rem 0 1rem;		/*h3の外側にとるスペース。上、左右、下への順番。*/
	padding: 7px 2rem;		/*h3内の余白。上下、左右への順番。*/
	background: #eee;		/*背景色*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
}
main h3 i {
	margin-right: 1rem;	/*右側に空けるスペース。テキストとの間の余白になります。*/
}

/*pタグ*/
main p {
	margin: 0 2rem 2rem;	/*pの外側にとるスペース。上、左右、下への順番。*/
}

/*微調整*/
main h2 + p, main h3 + p, main p + p {
	margin-top: -1rem;	/*少し上に詰める。*/
}

/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
main.column .main {
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;					/*flexを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
	}
	
	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
	main.column .main {
		margin-bottom: 0;
		order: 2;					/*並び順。数字の小さい順番に表示されます。*/
		width: calc(100% - 260px);	/*幅。ここの260pxの数字は下の.subの幅(230px)に、左右ブロックの間の余白(30px)を追加したものです。*/
	}
	
	/*2カラムの中にある.sub要素*/
	main.column .sub {
		order: 1;		/*並び順。数字の小さい順番に表示されます。*/
		width: 230px;	/*幅*/
	}

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


/*sub,sideブロック設定
---------------------------------------------------------------------------*/
#contents .sub h3::before, #contents .side h3::before {border: none;padding: 0;}
/*ブロック内のh3タグ*/
#contents .sub h3, #contents .side h3 {
	margin: 0;border: none;border-radius: 0;
	font-weight: normal;
	padding: 5px;		/*余白*/
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
}
#contents .sub h3 a, #contents .side h3 a {color: inherit;}


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu li {
	border-bottom: 1px solid rgba(0,0,0,0.2);	/*下線の幅、線種、色。0,0,0は黒の事で0.2は色が20%出た状態。*/
}
.submenu a {
	display: block;text-decoration: none;
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*アイコン（Font Awesome）*/
.submenu a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}

/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #666;			/*アイコンの色*/
}


/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #F5F4EC;	/*背景色*/
	margin-top: 6vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #cd6d6c;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}


/*テキストボックス*/
.box1 .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}

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

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box1 > * {flex: 1;}


	/*テキストボックスの上の小さなイラスト*/
	.box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

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


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 80%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 45vw;	/*画像ブロックに対して上からの配置場所*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: #444;	/*背景色*/
	color: #fff;		/*文字色*/
	padding: 50px 3%;	/*上下、左右へのボックス内の余白*/
	font-size: 0.9rem;	/*文字サイズ*/
}
#footer-contents a {
	color: inherit;
}

/*フッターコンテンツ内のh4*/
#footer-contents h4 {
	margin: 0;
	font-size: 1.3em;	/*文字サイズを親要素の1.2倍に*/
}

/*フッターコンテンツ内のロゴ*/
#footer-contents #footer-logo {
	max-width: 400px;	/*最大幅*/
}

/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;	/*下に空けるスペース*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	#footer-contents {
		display: flex;					/*flexを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
	}
	
	/*左側のブロック*/
	#footer-contents .left {
		margin-bottom: 0;	/*下のマージンをリセット*/
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}
	#footer-contents .right {
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
		padding-left: 3%;	/*左側に空ける余白。左右ブロックの間の隙間です。*/
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*テーブル（week）footer-contents内で使っています。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.week caption {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	background: #333;		/*背景色*/
	padding: 0.5rem 1rem;	/*caption内の余白。上下、左右に１文字分ずつとる。*/
}

/*weekテーブルブロック設定*/
.week {
	width: 100%;
	table-layout: fixed;
	text-align: center;	/*テーブル内のテキストをセンタリング*/
}
.week, .week td, .week th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色。*/
}

/*○月の講座受付表テーブルブロック設定*/
.weekkouza caption {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	background: #c3bcde;		/*背景色*/
	padding: 0.5rem 1rem;	/*caption内の余白。上下、左右に１文字分ずつとる。*/
}

/*○月の講座受付表テーブルブロック設定*/
.weekkouza {
	width: 100%;
	table-layout: fixed;
	text-align: center;	/*テーブル内のテキストをセンタリング*/
}
.weekkouza, .weekkouza td, .weekkouza th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色。*/
}

/*アロマの種類テーブル１行目に入った見出し部分（※caption）*/
.aromatype caption {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	background: #fcc;		/*背景色*/
	padding: 0.5rem 1rem;	/*caption内の余白。上下、左右に１文字分ずつとる。*/
	text-align: left;
	font-size: 1.3em
}

/*アロマの種類テーブルブロック設定*/
.aromatype {
	width: 100%;
	table-layout: fixed;
	text-align: center;	/*テーブル内のテキストをセンタリング*/
}
.aromatype th {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色。*/
	background-color: #fcc;
	padding: 1rem 0rem;
}

.aromatype td {
	text-align: left;	/*テーブル内のテキストをセンタリング*/
	padding: 15px;
}

.aromatype, .aromatype td {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色。*/
	margin-bottom: 30px;
}


/*footer-contents内のマップ(iframe)と、詳細ページのYouTube(iframe)動画をレスポンシブにする設定。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*アスペクト比を調整するところです*/
	position: relative;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #333;	/*背景色*/
	color: #999;		/*文字色*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
	padding: 20px 3%;	/*上下、左右へのボックス内の余白*/
	display: flex;		/*flexを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 2px;
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #fff;			/*文字色*/
}

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

/*著作部分*/
footer .pr {display: block;}


/*３列タイプのボックス（grid）
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid .list {
	position: relative;
	margin-bottom: 2rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
    display: grid;			/*gridを使う指定*/
    grid-template-rows: auto 1fr auto;		/*list内の上から2番目のブロック(.text)だけ伸ばし、他は自動。*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4*/
.list-grid .list h4 {
	margin: 0;
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}

/*リンクテキスト*/
.list-grid .list h4 a {
	color: inherit;
}

/*金額*/
.list-grid .list .price {
	display: block;
	font-weight: bold;	/*太字に*/
}

/*アロマ商品の種類系アイコン*/
.list-grid .list .icon {
	display: inline-block;
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	padding: 0 0.6rem;		/*アイコン内の余白。上下、左右への指定。*/
	font-size: 0.7em;		/*文字サイズを80%に*/
	background: #eee;		/*アイコンの基本の背景色*/
	color: #000;			/*文字色*/
}

/*「フローラル」アイコンの背景色*/
.list-grid .list .floral {
	background: #fbd7d2;
}

/*「オリエンタル」アイコンの背景色*/
.list-grid .list .oriental {
	background: #c7e4fc;
}

/*「柑橘」アイコンの背景色*/
.list-grid .list .fruit {
	background: #f4b804;
}

/*「ウッド」アイコンの背景色*/
.list-grid .list .tree {
	background: #00ff00;
}

/*「ハーブ」アイコンの背景色*/
.list-grid .list .herb {
	background: #999966;
}

/*「初級」アイコンの背景色*/
.list-grid .list .simple {
	background: #fcc9ac;
}

/*「中級」アイコンの背景色*/
.list-grid .list .middle {
	background: #c3dcbe;
}

/*「上級」アイコンの背景色*/
.list-grid .list .high {
	background: #b7aed6;
}

/*「動画」アイコンの設定*/
.list-grid .list .movie::before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f03d";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*右側に空けるスペース。テキストとの間の余白調整です。*/
	opacity: 0.3;			/*色を30%だけ出す*/
}

/*ボックス内のp*/
.list p {margin: 0;}

/*ボックス内のtext*/
.list-grid .list .text p {
	font-size: 0.8em;	/*文字サイズを親要素の80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*ボックス内のfigure*/
.list-grid .list figure {
	margin: -1rem -1rem 1rem;	/*１つ目と２つ目は、.list-grid .listで指定しているpaddngを打ち消す為（枠一杯にする）、最後の数字は画像の下に空けるスペース。*/
}

/*figureのマウスオン時に少し明るくする*/
.list-grid .list figure a:hover {
	filter: brightness(1.2);
}
.list-grid .btn a {
	display: block;text-decoration: none;
	text-align: center;		/*テキストをセンタリング*/
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色。var以降は色の指定ですが、css冒頭で指定しているprimary-colorを読み込みます*/
	color: #fff;			/*文字色*/
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 1rem;		/*ボタンの上に空けるスペース*/
}

/*マウスオン時のボタン*/
.list-grid .btn a:hover {
	background: #fff;				/*背景色*/
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
}

/*このテンプレートでは、左上の「NEW」アイコンで使っています*/
.tab-3 .icon-point {
	background: #ee2d2d;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.7rem;		/*文字サイズ0.7倍*/
	width: 60px;			/*幅*/
	line-height: 60px;		/*高さ*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 50%;		/*円形にする*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: grid;		/*gridを使う指定*/
		gap: 2rem 1rem;		/*上下、左右へのマージン的な指定*/
		grid-template-columns: repeat(2, 1fr);	/*３列にする指定。４列にしたければrepeat(4, 1fr)とする。*/
	}

	/*ボックス１個あたり*/
	.list-grid .list {
		margin-bottom: 0;	/*ボックス同士の上下間に空けるスペースをリセット*/
	}
	
	}/*追加指定ここまで*/


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

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	margin: 0;
	display: flex;		/*flexを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 2rem;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
.new dt,
.new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
.new dt {
	width: 8em;	/*幅。8文字(em)分*/
}

/*日付の横のマーク（共通設定）*/
.new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
.new dd {
	width: calc(100% - 8em);	/*「8em」は上の「.new dt」のwidthの値です*/
}

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

	/*日付(dt)設定*/
	.new dt {
		width: 14em;	/*幅。14文字(em)分。アイコン分も含んだ幅にします。*/
		display: flex;	/*flexを使う指定*/
		justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	}

	/*日付の横のマーク（共通設定）*/
	.new dt span {
		display: inline-block;	/*表示させる*/
		width: 7em;				/*幅。7文字(em)分。*/
		background: #999;		/*背景色*/
		color: #fff;			/*文字色*/
		font-size: 0.8em;		/*文字サイズを80%に。*/
		text-align: center;		/*文字をセンタリング*/
		margin-right: 1em;		/*アイコンの右側に空けるスペース*/
		align-self: flex-start;	/*高さを間延びさせない指定*/
		line-height: 1.8;		/*行間を少し狭く*/
		position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
		border-radius: 2px;		/*角を丸くする指定*/
	}

	/*icon-bg1設定。サンプルテンプレートでは「●●●重要」と書いてあるマーク*/
	.new dt span.icon-bg1 {
		background: #cd0000;	/*背景色*/
	}

	/*icon-bg2設定。「workshop」と書いてあるマーク*/
	.new dt span.icon-bg2 {
		background: #f9a980;	/*背景色*/
	}
	/*icon-bg3設定。サンプルテンプレートでは「resson」と書いてあるマーク*/
	.new dt span.icon-bg3 {
		background: #9fca99;	/*背景色*/
	}

	/*記事(dd)設定*/
	.new dd {
		width: calc(100% - 14em);	/*「14em」は上の「.new dt」のwidthの値です。*/
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 2rem;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fce6e8;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-indent: -2rem;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
    content: "\f007";	/*アイコンのコード*/
	color: var(--primary-color);	/*アイコンの色。css冒頭で指定しているprimary-colorを読み込みます*/
	padding-right: 1rem;	/*アイコンとテキストとの間のスペース*/
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #777;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 2em;		/*最後の「2em」がテーブルの下に空けるスペースです*/
}

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

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;				/*幅*/
	background: #f0f0f0;	/*背景色*/
	text-align: left;
}
.ta1 tr {
	text-align: left;
}

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

	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {
		padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）、td（右側）の共通設定*/
	.ta1 th, .ta1 td {
		padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
	}

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

	.grid {
        gap: 3rem 2rem;
        grid-template-columns: repeat(3, 1fr);
    }

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

	/*画面幅400px以上の追加指定*/
	@media screen and (min-width:400px) {
		.grid {
			display: grid;
			gap: 1rem 1rem;
			grid-template-columns: repeat(3, 1fr);
			text-align: center;
		}
		.item img {
			aspect-ratio: 1/1;
			object-fit: cover;
			border-radius: 8px;
		}
		.item p {
			font-size: .875rem;
		}

	}



/*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%;	/*円形にする*/
}


/*詳細ページ（item.html）で使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.back {
	text-align: center;
}
.back a {
	text-decoration: none;display: inline-block;
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右。*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	background: #eee;		/*背景色*/
}
.back a::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0d9";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	opacity: 0.5;			/*色を50%だけ出す*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !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;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

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

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

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


/*CMS用に追加
---------------------------------------------------------------------------*/
.mb10 {margin-bottom: 10px !important;}
.list .icon-point.bg1 {
	background: #999;
}
#contents .sub .list h4 {
	margin: 0;
}
#contents .sub .list p {
	line-height: 1.5;
	font-size: 0.8rem;
}

/*ページャー*/
.pager {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	color: #999;
}
.pager a {
	display: inline-block;text-decoration: none;
	margin-bottom: 5px;
	padding: 0 10px;
	border: 1px solid #777;
	background: #fff;
	color: #777;
}
.pager a:hover {
	filter: brightness(1.5);
}
.pager span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 10px;
	border: 1px solid #ccc;
	background: rgba(0,0,0,0.1);
}

/* --------------------------------------------------
  お問い合わせフォーム
-------------------------------------------------- */

/* フォームの3つのブロックに対する指定 */
.form-group {
	margin-bottom: 20px;
  }
  /* 項目名に対する指定 */
  .form-label {
	display: block;
	margin-bottom: 10px;
	color: #032559;
  }
  /* 送信ボタンを囲む<div>に対する指定 */
  .form-btn {
	margin: 30px 0;
	text-align: center;
  }
  
  /* 入力欄に対する指定 */
  input[type="text"],
  input[type="email"],
  textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #999;
  }
  /* 入力欄が:focus（入力状態）のとき */
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
	border-color: #cd6d6c;
	outline: none;
  }
  
  /* 送信ボタン */
  button[type="submit"] {
	background: none;
	border: none;
	cursor: pointer;
  }
  /* 送信ボタンが:hoverのとき */
  button[type="submit"]:hover {
	opacity: 0.65;
  }
  
  /* --------------------------------------------------
	お問い合わせフォームここまで
  -------------------------------------------------- */

  /* トップページの画像グリッド
------------------------------- */
.grid {
    display: grid;
    gap: 1rem 1rem;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}
.item p {
    font-size: .875rem;
}
 /* 画像の横に一行テキスト
------------------------------- */
.ichigyou img{
    vertical-align: middle;
    display: inline-block;
}
.ichigyou span{
    display: inline-block;
}
/*  Googleカレンダー埋め込みコード */
.responsive-calendar iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
  }

   /* 画像を丸くトリム-過去レッスンメニューのページで石鹸の画像 */
   .trim-image-to-circle {
    border-radius: 50%;
    width: 180px;
    height: 180px; 
    object-fit: cover;/*画像の縦横比を保ったまま領域をカバー */
} 

/* 上に枠線のついたタブ3つ-レッスンページ用 */
.tab-3 {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    border: 1px solid #999;
}

.tab-3 > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .7em 1em .5em;
    background-color: #f2f2f2;
    color: #999;
    font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-3 > label:hover {
    opacity: .8;
}

.tab-3 input {
    display: none;
}

.tab-3 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-3 label:has(:checked) {
    border-bottom: 4px solid #cc6666;
    color: #cc6666;
}

.tab-3 label:has(:checked) + div {
    display: block;
}

/* 過去レッスンのボタン */
.button-54 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 70%;
    margin: 1rem auto;
    padding: .9em 3em .9em 2em;
    border: 1px solid #cc6666;
    border-radius: 5px;
    background-color: #fff;
    color: #cc6666;
    font-size: 1em;
}

.button-54::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #cc6666;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.button-54:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

div.animation_box {
	padding: 10px;
	margin-bottom: 20px;
	font-size: 1.2em;
	width: 100%;
    border: 3px solid #cd6d6c;
    border-style: dotted;
	background:  #fff url("../images/memo04_bgright.png") no-repeat right bottom;
	animation: fadeIn 5s ease 1s 1 normal backwards;
  }

  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(50px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

