@charset "utf-8";



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


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');


/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


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

	--bg-color: #fff;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #47443f;	/*上のbg-colorの対として使う色*/
	
	--content-space: 8.33vw;  /*余白の一括管理用。画面幅100% = 100vwです。（grid-boxと幅を合わせる為に100÷12=8.33にしました）*/

}

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

	:root {
		--content-space: 10px;	/*余白の一括管理用。小さな端末で余白を狭くする。*/
	}

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


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
/*	font-size: 13px;	基準となるフォントサイズ。*/
	font-size: 16px;
}

dt {border-bottom: 0px solid #999; padding: 0 1em 0 0; font-weight: 500;}
	@media screen and (min-width:699px) {
dt {border-bottom: 1px solid #999; font-weight: 500;}
	}


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

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

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


body {
	margin: 0;padding:0;
	font-family: "Kiwi Maru", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-weight: 300;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);		/*文字色*/
/*	line-height: 3;		行間*/
	line-height: 2em;
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;
	border-bottom: 1px solid #999;}
nav,ul,li,ol {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 > ol,section > ul {margin-left: 2rem;}


/*sectionの設定
---------------------------------------------------------------------------*/
section {
	padding: 0 var(--content-space);
	margin: 3vw 0;
}


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

/*マウスオン時*/
a:hover {
/*	filter: brightness(1.1);	少しだけ明るくする*/
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)"; 
}


/*conatiner（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: grid;
	grid-template-rows: auto 1fr;	/*主にトップページ以外（※トップはコンテンツが多いので）用。mainの内容が少ない場合にfooterが浮かないように。*/
	min-height: 100vh;
	min-height: 100dvh;
}


/*header（ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
    position: relative;
    background-image: url(../images/header_background.jpg);
    background-repeat: repeat-x;
    background-position-x: center;
/*    background-position-y: -30px;*/
    background-size: contain;
}

/*@media screen and (max-width:500px) {
header {
    background-size: 100%;
}
}*/

/*ロゴ画像*/
#logo {margin: 0;}
#logo img {
display: block;
    width: 40%;
    margin: 2% 0 2% 8%;
    max-width: 200px;
}

/*画面右上の「Online Shop」ボタン*/
#nav {
	list-style: none;margin: 0;
	position: fixed;
	z-index: 99;
	right: 75px;	/*右からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	display: flex;
	gap: 0.5rem;	/*ボタンを複数おいた場合のボタン同士に空けるスペース*/
	font-size: 0.8rem;	/*文字さいう80%*/
}
#nav a {
	text-decoration: none;display: block;
	background: #eee;	/*背景色*/
	border-radius: 0px 0px 5px 5px;	/*角を丸くする。左上、右上、右下、左下の順。*/
	padding: 0 1rem;	/*ボタン内の余白。上下は0、左右に1文字分。*/
}


/*見出し
---------------------------------------------------------------------------*/
/*h2と、grid-box内のh4*/
#container h2, .grid-box h4 {
	display: flex;
	flex-direction: column-reverse;	/*spanと表示順を入れ替える*/
	line-height: 2;	/*行間を少しつめる*/
	font-size: 1.8rem;	/*文字サイズ1.8倍*/
	font-weight: 500;
}

/*上記のh2とh4の中で使うspan（小文字）*/
#container h2 span, #container h4 span {
	font-size: 0.8rem;	/*文字サイズ0.8倍*/
	opacity: 0.5;		/*透明度50%*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広く*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白*/
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);	/*文字色*/
}

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

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
	background: #FFF;
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	border: none;
	padding: 0;
    margin-left: 3.8rem;	/*左に空けるスペース*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	content: "\f078";	/*このアイコンを使う*/
	margin-right: 0.5em;	/*アイコンとメニューテキストとの間に空けるスペース。0.5文字分。*/
}
a.ddmenu {cursor: default;}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
/*	background: var(--bg-color);	ボタン色*/
	background: #ffffffc4;
	border-radius: 0px 0px 0px 20px;	/*角を丸くする指定。左上、右上、右下、左下の順番。この場合は左下だけ角を丸くする。*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: var(--bg-color);
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: var(--bg-inverse-color);	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*list-grid（３列に並んだリストブロック）
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	gap: 6vw;	/*ブロックの間に空けるスペース*/
	align-items: start;
	line-height: 2;
}

/*ボックス１個あたり*/
.list-grid .list {
	display: grid;
	text-align: center;		/*テキストをセンタリング*/
	position: relative;
}

/*ランキング用（２位）の場所をずらす設定*/
.list-grid.step .list:nth-of-type(2) {
	margin-top: 30px;	/*上に空けるスペース*/
}

/*ランキング用（３位）の場所をずらす設定*/
.list-grid.step .list:nth-of-type(3) {
	margin-top: 60px;	/*上に空けるスペース*/
}

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

/*ボックス内のh4（見出し）*/
.list-grid h4 {
	font-weight: 500;
}

/*ボックス内のp（文章）*/
.list-grid p {
	font-weight: normal;
	font-size: 0.85rem;	/*文字サイズ85%*/
	opacity: 0.7;		/*色を70%だけ出す*/
}

/* ランキングの旗 */
.rank-flag {
	position: absolute;
	left: -5px;	/*左からの配置場所*/
	top: -5px;	/*上からの配置場所*/
	width: 3rem;	/*幅*/
	height: 3rem;	/*高さ*/
	font-weight: bold;	/*太字に*/
  
  /* マスクの設定 */
  --mask-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,100 L50,70 L0,100 Z' fill='%23000000'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--mask-url);
  mask-image: var(--mask-url);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* 色のバリエーション */
.rank1 {
  background: #fddc00; /*背景色（金）*/
  color: #111;	/*文字色*/
}
.rank2 {
  background: #c0c0c0; /*背景色（銀）*/
  color: #fff;	/*文字色*/
}
.rank3 {
  background: #cd7f32; /*背景色（銅）*/
  color: #fff;	/*文字色*/
}


/*grid-box（色々なレイアウト用）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.grid-box {
	margin-bottom: 5vw;	/*下に空けるスペース。100vw = 画面幅100%なので、この場合は5%。*/
}

/*section内で使うgrid-boxの左右の余白をなくす*/
section .grid-box {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
}

/*ボックス内のh2*/
.grid-box h2 {
	grid-column: 2 / 12;
}

/*ボックス内のh4*/
.grid-box h4{
	margin: 0;
}

/*画像と文字を囲むブロック*/
.grid-box article {
	display: grid;
	grid-template-columns: repeat(12, 1fr); /* 12等分 */
	gap: 5vw; /* 要素間の隙間 */
	margin-bottom: 5vw;	/*下に空けるスペース*/
	grid-auto-flow: dense;
}
.grid-box article:last-child {
  margin-bottom: 0;	/*最後のブロックの下マージンをなくす*/
}

/*imageとtextの設定*/
.grid-box .image,
.grid-box .text {
	align-self: center;
	position: relative;
}

/*imageのみの設定*/
.grid-box .image {
	grid-column: 1 / -1;
}

/*textのみの設定*/
.grid-box .text {
	grid-column: 2 / 12;
}

/*装飾イラスト用*/
.grid-box .kazari {
	display: block;
	position: absolute;
	z-index: 99;
	transform: translate(-50%, -50%);
	width: 150px;	/*幅*/
}

/*image-wide（横長で使う場合）*/
.grid-box .image-wide {
	grid-column: 2 / 12;
}

/*image-01*/
.grid-box .image-01 {
	grid-column: 8 / 12;
}
/*.text-01*/
.grid-box .text-01 {
	grid-column: 2 / 8;
}
/*image-01（左右入れ替え用）*/
.grid-box article.reverse .image-01 {
	grid-column: 2 / 6;
}
/*text-01（左右入れ替え用）*/
.grid-box article.reverse .text-01 {
	grid-column: 6 / 12;
}

/*image-02*/
.grid-box .image-02 {
	grid-column: 1 / 10;
}
/*text-02*/
.grid-box .text-02 {
	grid-column: 2 / 10;
}
/*image-02（左右入れ替え用）*/
.grid-box article.reverse .image-02 {
	grid-column: 4 / -1;
}
/*text-02（左右入れ替え用）*/
.grid-box article.reverse .text-02 {
	grid-column: 4 / 12;
}



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

	/*section内で使うgrid-boxの左右の余白をデフォルトに戻す*/
	section .grid-box {
		margin-left: var(--content-space);
		margin-right: var(--content-space);
	}

	/*画像と文字を囲むブロック*/
	.grid-box article {
		display: block;
		margin-bottom: 60px;
	}
	.grid-box img {
		margin-bottom: 1em;
	}

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


/*お知らせページ（new.html）
---------------------------------------------------------------------------*/
	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new,
	.infos {
		display: grid;
/*		gap: 1rem;  日付や文章の間にとるスペース。１文字分。*/
		gap: 1rem 0;
		grid-template-columns: auto 1fr;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}

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



/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*画像ボックス*/
.bg-slideup {
    background-image: url("../images/bg-slideup_fs.jpg");	/*背景画像の読み込み*/
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
/*	height: 50vh;	高さ。画面の高さの50%になる設定ですがお好みで。
	height: 30vh;*/
/*	display: flex;
	justify-content: center;
	align-items: center;*/
	padding: .5em 0 1em;
	text-align: center;
}
.bg-slideup img {
    width: 45%;
    max-width: 350px;
	margin: 5px;
	}
	
.bg-slideup02 {
    background-image: url("../images/bg-slideup_ds.jpg");	/*背景画像の読み込み*/
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
/*	height: 50vh;	高さ。画面の高さの50%になる設定ですがお好みで。
	height: 30vh;*/
/*	display: flex;
	justify-content: center;
	align-items: center;*/
	padding: .5em 0 1em;
	text-align: center;
}

/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	width: fit-content;
	margin: 0 auto;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);	/*文字色*/
	padding: 0.5rem 3rem;	/*ボタン内の余白。上下に0.5文字分、左右に3文字分。*/
	border-radius: 100px;	/*角を丸くする指定。大きければ適当でOK。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);	/*ボタンの影。右に、下に、ぼかす量、0,0,0は黒のことで0.1は色が10%出た状態。*/
	font-weight: 500;
}

/*マウスオン時*/
.btn1 a:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	box-shadow: none;	/*ボタンの影を消す*/
}


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

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid rgba(0,0,0,0.3);	/*テーブルの上の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(0,0,0,0.3);	/*テーブルの下の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

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

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

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

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

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


/*ボタン
---------------------------------------------------------------------------*/
.btn {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	background: rgba(0,0,0,0.7);	/*背景色*/
	color: #fff;  /*文字色*/
	padding: 1rem 2rem;
	border-radius: 5px;
	transition: 0.3s;
}


/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

/*ブロック全体*/
footer {
	background: #f4f4f2;	/*背景色*/
/*	padding: var(--content-space);	フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
	padding: 2em 5em;
	position: relative;
	line-height: 2;
}

/*ロゴが入ったブロック（大きな画面だと左側）*/
footer .footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
	margin-bottom: 30px;
}

/*フッター内のロゴ*/
footer .logo {
	width: 200px;	/*幅*/
	margin-left: calc(-1 * var(--content-space));
	margin-top: calc(-1 * var(--content-space));
}

/*地図が入ったブロック（大きな画面だと右側）*/
footer .footer2 {
    flex: 1;
}

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

	footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴが入ったブロック*/
	footer .footer1 {
		margin-bottom: 0;
		text-align: left;
	}

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


/*Copyright部分*/
footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}


/*Google Map用
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	line-height: 2;
	display: flex;
	flex-direction: column;  /*縦並び*/
	text-align: center;
	position: fixed;  /*アイコンを固定*/
	gap: 10px;
/*	right: 23px;  右からの配置場所*/
	right: 15px;
	top: 100px;  /*上からの配置場所*/
}
.icons i {
/*	font-size: 20px;	アイコンサイズ*/
	font-size: 30px;
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: #f4f4f2;
	padding-top: 3vw;
	padding-bottom: 3vw;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.slide-thumbnail1 {
	overflow-x: hidden;
	margin-bottom: 2rem;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
	overflow: hidden;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1vw;	/*上下の余白はなし、左右への余白は画面の1%*/
}


/*段違いに見せる為、偶数番目の画像に上に余白を作る。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	margin-top: 30px;
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	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%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #c02340 !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;}
.padding0 {padding: 0 !important;}
.mb0 {margin-bottom: 0px !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.7); color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.block {display: block !important;}




/* 共通設定
----------------------------------------------------------------------------*/

.inblo {
	display: inline-block;
	}

.pink {
	color: #F33;
	}
.txt150 {
	font-size: 1.5em;
	}
.txt120 {
	font-size: 1.2em;
	}
.txt80 {
	font-size: .8em;
	}

.mb20 {
	margin-bottom: 20px;
	}
.mb50 {
	margin-bottom: 50px;
	}

@media screen and (max-width: 699px) {
.infos dd,
.infos-50 dd {
		margin-bottom: 1rem;
	}
}


/*　トップ　私の夢
--------------------------------------------*/
@media screen and (max-width: 699px) {
#mydream p {
	text-align: left;
}
#mydream .inblo {
	display: inline;
	}
}

.h_sakura {
    background-image: url(../images/h_sakura.png);
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: contain;
	}



/*　トップ　サービス
-------------------------------------------*/
#fd-service ul,
#dc-service ul {
	margin: 0 0 0 2em;
	}




/*　企業情報
-------------------------------------------*/
@media screen and (max-width:699px) {
#companyinfo,
#contact,
#fd-price,
#fd-info,
#dc-price,
#dc-info,
footer {
	padding-right: 20px;
	padding-left: 20px;
	}
	}

	

/*　詳細ページ　dl
---------------------------------------------*/

.infos02 {
		display: grid;
/*		gap: 1rem;  日付や文章の間にとるスペース。１文字分。*/
		gap: 1rem 0;
		grid-template-columns: auto 1fr;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}
.infos-50 {
/*		display: grid;
		gap: 1rem;  日付や文章の間にとるスペース。１文字分。*/
		gap: 1rem 0;
		grid-template-columns: 50% 50%;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}
	@media screen and (min-width:699px) {
.infos-50 dt {
		border-bottom: 0px solid #999; padding: 0 1em 0 0; font-weight: 500;
		}
	}
.infos-50 dd {
/*		margin: 0 0 1em;*/
		padding: 0 0 1em;
		
		border-bottom: 0px;
	}



.infos02.dl01 .dl-ttl,
.infos02.dl02 .dl-ttl,
.infos-50.dl01 .dl-ttl,
.infos-50.dl02 .dl-ttl {
	background: #a2959d;
	padding: .5em .5em .5em 1em;
	font-weight: 500;
	border-bottom: none;
	color: #FFF;
	border-radius: 3px;
	}

.infos02 dt {
	border-bottom: 1px solid #999;
	}


#dc-info .grid-box {
    margin-bottom: 1em;
}


/* dl　左　*/
.grid-box .dl01 {
	grid-column: 2 / 7;
}
/* dl　右　*/
.grid-box .dl02 {
	grid-column: 7 / 12;
}
@media screen and (max-width:500px) {
.grid-box .dl01,
.grid-box .dl02 {
    margin: 0 0 2em;
}
}


#dc-info .grid-box article {
    gap: 3vw;
}
#dc-info h3 {
    margin: 3em 0 0;
}
@media screen and (max-width:699px) {
#dc-info h3 {
    margin: 3em 10px 10px;
}
}


/*　ケアステーション　*/

.infos-50 dd p {
	margin: 0;
	padding-bottom: .5em;
	border-bottom: 1px solid #777;
	}
.cs-service-free::before {
  content: '【 費 用 】';
  padding-left: .5em;
	}




/* 吹き出し
---------------------------------------------*/
.fukidashi {
    position: relative;
    padding: 1rem;
    border: 5px solid #abe7af;
	text-align: center;
}

.fukidashi:before,
.fukidashi:after {
    position: absolute;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.fukidashi:before {
    top: 100%;
    border: 15px solid;
    border-color: transparent;
    border-top-color: #abe7af;
    margin-left: -15px;
}

.fukidashi:after {
    top: 99%;
    border: 8px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -8px;
}







/*　　　問い合わせ　　*/
table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}
table th {
    background-color: #dcdcdc;
    text-align: left;
    width: auto;
    white-space: nowrap;
    padding: 1em;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    font-weight: normal;
}
table td {
    background-color: #f6f6f6;
    padding: 1em;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.formTable label {
    width: auto;
    margin: 0 .5em;
    display: inline-block;
}


@media screen and (max-width: 699px) {
table {
    border-top: 0px solid #999;
	width: auto;
  }
table td {
    display: block;
    text-align: left;
  }
table th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
    text-align: left;
  }
}

.need {
    background: #FF0000;
    font-size: 10px;
    color: #FFFFFF;
    padding: 2px 5px;
    margin: 0 1em;
    width: auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}


.margintop-m {
    margin-top: 30px;
}
.faq {
    padding: 0 5px;
    margin: 0;
}
.faq dt {
    border-radius: 3px;
    margin-bottom: 20px;
    background: linear-gradient(#fff, #f7f7f7);
    text-indent: -2em;
    padding: 5px 1em 5px 3em;
    border: 1px solid #e4e2d7;
}
.faq dd {
    padding: 5px 1em 30px 3em;
}
.faq .fas {
    padding-left: 2em;
}
.fa-list:before {
    content: "\f03a";
}

input,
textarea {
    font-size: 1rem;
}

:where(.formTable input, .formTable select, .formTable textarea) {
    margin: 0;
    padding: 0.5em;
    width: 95%;
    line-height: 1.3em;
}

:where(button, [type="button" i], [type="reset" i], [type="submit" i])
特異性: (0,0,0)
 {
    -webkit-appearance: none;
}
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
    padding: .5em 1em;
    -webkit-appearance: button;
    border: 0;
    border-radius: 3px;
    background: #0e82ff;
    color: #FFF;
    font-size: 1em;
}

/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.openclose1-parts {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 0.5rem 1rem;		/*ブロック内の余白。上下に0.5文字分、左右い1文字分。*/
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

/*アイコン*/
.openclose1-parts::before {
	font-family: "Font Awesome 6 Free";
/*	content: "\f03a";	アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	color: #ff0000;			/*アイコンの色*/
}


/*回答*/
.openclose1-parts + * {
	padding: 0 1rem 1rem 3rem;	/*ボックス内の余白。上、右、下、左への順番。*/
}



:where(.formTable input, .formTable select, .formTable textarea) {
    margin: 0;
    padding: 0.5em;
    width: 95%;
    line-height: 1.3em;
}
.formTable input[type="radio"] {
    width: auto;
    margin: 0 .5em;
}

.openclose1-parts .fas {
    line-height: 2;
	padding-right: 1em;
}




/* footer
----------------------------------------------------*/
#footer-bnr img {
	width: 20%;
	min-width: 160px;
	margin: 0 5px 10px;
	}

.bg2 {
	background: #e7e7e7;
	padding: 3vw 0px;
	margin-bottom: 0;
}

@media screen and (max-width:500px) {
.icons {
	display: none;
}
}

/* スマホ用 固定電話フッター */
.sp-tel-footer {
  display: none; /* PCでは非表示 */
}

/* スマホ表示のみ */
@media screen and (max-width: 768px) {
  .sp-tel-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #28a745;
    text-align: center;
  }

  .sp-tel-footer a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
  }
}

/* 固定フッター分、本文が隠れないようにする */
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}
