@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=Kosugi&family=Kosugi+Maru&family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@400;500;700&display=swap');


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

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


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

	--primary-color: #3db6eb;			/*メインまたはアクセントとなる色*/
	--primary-inverse-color: #fff;		/*primary-colorの対として使う色*/
	--global-space: 0vw;	/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


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


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


/*全体の設定
---------------------------------------------------------------------------*/
/*	すべての要素を視覚的に確認 */

/*
* {
  outline: 1px solid red;  
}
*/
/*ページ内リンクの時に、固定のヘッダー分下げてタイトル部分に到達*/
html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}
body * {box-sizing: border-box;}

body {
	margin: 0;padding:0;
	font-family: "Roboto","Noto Sans JP","メイリオ","ヒラギノ角ゴ Pro","Hiragino Sans","M PLUS 1", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #303030;		/*文字色*/
	line-height: 2;		/*行間*/
	animation: opa1 0.2s 0.5s both;	/*0.5秒待機後、0.2秒かけてフェードイン表示*/
}



/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
input {font-size: 1rem;}
section li {margin-left: 1rem;}

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

/*画像全般の設定*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
  	display: block; /* 画像が余計な余白を持たないように */
  	margin: 0 auto; /* 画像を中央揃えに */

}

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

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

/*section,div1200
---------------------------------------------------------------------------*/
section {
	margin: 5rem var(--space-small) 5rem var(--space-large);	/*上、右、下、左へのマージン（外側への余白）*/
}

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

	section {
		margin: 4rem var(--space-small);	/*上下、左右へのマージン（外側への余白）*/
	}

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

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

	section {
		width: 1200px;
		margin: 0 auto;
	}
	.d1200{
		width: 1200px;
		margin: 0 auto;
	}
	}/*追加指定ここまで*/


/*sectionが続く場合*/
section + section {
	margin-top: 4vw;	/*sectionの上に空けるスペース*/
}




/*文字サイズの設定。
もしデフォルトを「大」にしたい場合は、js/fontSizeChanger.jsの中のコメント箇所を読んで下さい。
---------------------------------------------------------------------------*/
/*「大」ボタンを押した時の文字サイズ*/
html.f-large {
	font-size: 24px;
}

/*「小」ボタンを押した時の文字サイズ*/
html.f-small {
	font-size: 18px;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
/*	color: var(--primary-color);	文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	filter: brightness(1.2);		/*マウスオン時に少し明るくする*/
}


/*container（フッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 0 var(--global-space);	/*上下、左右へのcontainer内の余白。左右の余白はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*contents（mainを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 3vw 0vw 5vw;	/*上、左右、下へのcontents内の余白。画面幅100%＝100vwです。*/
	width: 100vw;

}



/*トップページのコンテンツ*/

.home #contents {
	padding-top: calc(3vw + 40px);	/*スライドショー上のボタンが画像下に移動するので重ならないよう適当にpxを指定しています*/
	width: 100vw;
	padding: 3vw 0vw 5vw;	/*上、左右、下へのcontents内の余白。画面幅100%＝100vwです。*/
	margin-top: 5vw;

}

/*ヘッダー（ロゴや電話番号が入っている最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    display: flex;	/*ヘッダー内にあるボックスを横並びにする*/
    justify-content: space-between;
    align-items: center;
	position: relative;	/*文字サイズブロックを絶対配置する為に必要な指定*/
	padding: 3vw 5vw;
}

/*ロゴ画像*/
#logo {margin:0 ;padding: 0; margin-top: auto; margin-bottom: auto }
#logo img {
	display: block;
	width: 40vw;	/*ロゴ画像の幅*/
}


/*電話番号ブロック*/
address {
	font-style: normal;
	line-height: 1.2;	/*行間を狭くする*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0;	/*上下、左右へのブロック内の余白*/
	margin-top: 70px;	/*上に空けるスペース。文字サイズボックスに重ならないように。*/
}

/*電話番号*/
address .tel {
	font-size: 2rem;	/*文字サイズを２倍に。*/
	font-family: "Roboto", serif;
	font-weight: 500;
}
address .tel a{
text-decoration: none; 
color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

address .fa-solid{
font-size: 0.8em; /* サイズ */
}

address.margin-top-reset {margin-top: 0;}

	/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
	
	/*ヘッダーブロック*/
	header {
		flex-direction: column;	/*ヘッダー内にあるボックスを縦並びにする*/
	}
	
	/*ロゴ画像*/
	#logo img {
		margin-top: 70px;	/*ロゴの上に空けるスペース*/
		width: 100vw;	/*ロゴ画像の幅*/

	}
	
	/*電話番号ブロック*/
	address {
		margin-top: 0;	/*マージンのリセット*/
	}
	
	}/*追加指定ここまで*/


/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#f-size {
    background: #fff;	/*背景色*/
    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
    border-radius: 0px 0px 5px 5px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
    display: flex;			/*flexボックスを使う指定*/
    align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
    padding: 10px 15px;		/*ブロック内の余白。上下、左右へ。*/
    position: absolute;		/*headerに対して絶対配置する為の指定*/
    right: 0px;				/*右からの配置場所*/
    top: 0px;				/*上からの配置場所*/
}

/*「文字サイズ」のテキスト*/
#f-size p {
	margin: 0;
	margin-right: 10px;	/*右側に空けるスペース。ボタンとの間にとるスペースです。*/
	font-size: 17px;	/*文字サイズ*/
}

/*「小」「大」を囲むブロック*/
#f-size ul {
	list-style: none;margin: 0;padding: 0;
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*「小」ボタン設定*/
#f-size ul li#f-small {
	margin-right: 5px;	/*右側に空けるスペース。「大」との間の隙間です。*/
}
#f-size ul li#f-small::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 16px;	/*文字サイズ*/
	width: 32px;		/*幅*/
	line-height: 32px;	/*高さ*/
	text-align: center;	/*内容をセンタリング*/
	background: #f2fcfd;	/*背景色*/
}

/*「大」ボタン設定*/
#f-size ul li#f-large::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 24px;	/*文字サイズ*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	text-align: center;	/*内容をセンタリング*/
	background: #f2fcfd;	/*背景色*/
}

/*選択中の設定*/
#f-size li#f-large.current::before,
#f-size li#f-small.current::before {
	background: #bcf0f7;	/*背景色*/
}

/*マウスオン時にリンクテキストと同じような手のマークが出るように*/
#f-size li {
	cursor: pointer;
}

	/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
	
	/*ボタンブロック全体*/
	#f-size {
		right: 60px;	/*右からの配置場所の上書き。３本バー（ハンバーガー）アイコンが出てくるの重ならないようにする。*/
	}
	
	}/*追加指定ここまで*/

	/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
	
	/*ボタンブロック全体*/
	#f-size {
		display: none;	/*スペースが狭くなるので非表示に*/
	}
	
	}/*追加指定ここまで*/


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
#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;
	font-family: "M PLUS 1", serif;
}

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


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/

/*メニューブロックを囲むボックス*/
.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;
	max-width: 1200px; /* 最大幅を指定 */
	margin: 0 auto;    /* 中央揃え */
	padding: 0 1rem;   /* 端の余白を少し追加 */
	box-sizing: border-box; /* パディングを含めて幅を計算 */
}


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

/*リンク（a要素）の設定*/
.large-screen #menubar li a {
	flex: 1;
	background: #fff;		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: #111;	/*文字色。*/
	padding: 0.8rem 0;	/*上下、左右の余白*/
}

/*マウスオン時に色を変える*/
.large-screen #menubar li a:hover {
	background: #bcf0f7;	/*背景色*/
	color: #111;	/*文字色。*/
	filter: brightness(1);
}
/*お問い合わせボタンだけ色変更*/
.large-screen #menubar a.highlight {
  	color: #fff; /* 文字色を白に */
  	background-color: #007d51; /* 背景色を緑に */
}
.large-screen #menubar a.highlight:hover {
	color: #fff; /* 文字色を白に */
 	background-color: #007d51; /* 背景色を緑に */
	filter: brightness(1.2);
}

/* カレント表示用のスタイル */
.large-screen #menubar a.current {
	color: #111;	/*文字色。*/
  	background-color: #bcf0f7; /* 背景色 */
 	position: relative;         /* 疑似要素の基準にする */
}

/* 逆三角形の追加 */
.large-screen #menubar a.current::after {
  content: "";               /* 疑似要素は空 */
  position: absolute;        /* 絶対配置で下に表示 */
  bottom: -10px;             /* リンクの下に配置 */
  left: 50%;                 /* 左端を中央揃えに */
  transform: translateX(-50%); /* 水平方向に中央調整 */
  border-left: 10px solid transparent;  /* 左側の透明な三角形 */
  border-right: 10px solid transparent; /* 右側の透明な三角形 */
  border-top: 10px solid #bcf0f7;       /* 矢印の色と大きさ */
}


/*文字サイズ「大」の場合のメニューブロックを囲むボックス*/
html.f-large .large-screen #menubar {
	position: relative;	/*メニューが２段になる為、stickyを外してスクロールさせるようにする。固定させたままがいいならこの１行を削除する。*/
}

/*文字サイズ「大」の場合のメニューブロック全体の設定*/
html.f-large .large-screen #menubar > nav > ul {
	flex-wrap: wrap;	/*メニューを２段にする為、改行を許可する*/
}

/*文字サイズ「大」の場合のメニュー１個あたりの設定*/
html.f-large .large-screen #menubar > nav > ul > li {
	flex: auto;
	width: 33.33%;	/*メニュー幅。３列なので33.33%*/
}


/*大きな端末用のメニューブロックが画面上部に到達した場合（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: #bcf0f7;	/*背景色。*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
	color: #111;	/*文字色。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a.highlight {
  	color: #fff; /* 文字色を白に */
  	background-color: #007d51; /* 背景色を緑に */
	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);}


/*mainブロック
---------------------------------------------------------------------------*/

/*h2見出し*/
main h2 {
	text-align: center; /* h2要素を中央に配置 */
	align-items: center;
	margin: 0 0 2rem;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.5rem;		/*文字サイズ*/
	position: relative;		/*ulineを配置する為に必要な指定*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
}

/*h2のアクセントラインの設定*/
main h2 .uline {
	display: inline-block;position: relative;
	padding: 0.5rem 0;	/*h2内の余白。上下、左右への順番。*/
	bottom: -3px;		/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます。*/
	border-bottom: 3px solid var(--primary-color);	/*濃い色の線の幅、線種*/
}
main h2 .tume {
	display: block;   /* <span>の代わりにブロック要素にする */
  	margin-top: -5px; /* 上の字間を詰める */
  	line-height: 1.2; /* 行間を調整して詰める */
}



main h2.c {
  display: block; /* 要素の幅を文字に合わせる */
  position: relative; /* 疑似要素の基準位置 */
  text-align: center;
  font-size: 2rem;
  border: none;
  margin:4vw auto 3vw; /* 親要素内で中央配置 */
  padding-top: 5vw;
}

main h2.c::after {
  content: ''; /* 空の疑似要素を作る */
  position: absolute;
  bottom: -1px; /* 文字の下に線を配置 */
  left: 50%;
  transform: translateX(-50%); /* 線を中央に寄せる */
  width: 30px; /* 下線の幅を短くする */
  height: 3px; /* 線の太さ */
  background-color: var(--primary-color); /* 線の色 */


}

/*h3見出し*/
main h3 {
	display: flex;
	justify-content: space-between;
	text-align: center; /* h3要素を中央に配置 */
	align-items: center;
	margin: 2rem 5vw;		/*h3の外側にとるスペース。*/
	font-size: 1.5rem;		/*文字サイズ*/
	position: relative;		/*ulineを配置する為に必要な指定*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
	border-bottom: 3px solid #ddd;	/*薄い色の線の幅、線種、色*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
}
/*h3のアクセントラインの設定*/
main h3 .uline {
	display: inline-block;position: relative;
	padding: 0.5rem 0;	/*h3内の余白。上下、左右への順番。*/
	bottom: -3px;		/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます。*/
	border-bottom: 3px solid #ee79b1;	/*濃い色の線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}
main h3 .uline-2 {
	display: inline-block;position: relative;
	padding: 0.5rem 0;	/*h3内の余白。上下、左右への順番。*/
	bottom: -3px;		/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます。*/
	border-bottom: 3px solid #eecd79;	/*濃い色の線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}


.sline {
	margin-top: 5vw;
	margin-bottom: 0;
}

/*h4見出し*/

main h4 {
	font-size: 1.5rem;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}
main h4.c {
  text-align: center;
  margin:1rem 0 !important;	

}

.text h4.c .small {
  font-size: 0.7em;  /* 小さく表示 */
  display: block;   /* <span>の代わりにブロック要素にする */
  margin-top: -5px; /* 上の字間を詰める */
  line-height: 1.2; /* 行間を調整して詰める */
}


/*トップページ画像*/
.aisatuimage img{
	border-radius: 15px;
	margin: 0 auto;	
}
/*挨拶部部分*/
.aisatu{
	font-size: 1.5rem;	/*文字サイズを２倍に。*/
	font-family: "Kosugi", serif;
	letter-spacing: 0.1rem;
	font-weight: 400;
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	line-height: 1.5;	
}
.mgr-10{ 
	margin-left: 3vw; /* 左側のマージン */
}
/* デフォルトでは改行を非表示 */
.sp-only {
  display: none;
}


/* SPサイズで改行を表示 */
@media (max-width: 410px) {
  .sp-only,.mgr-11 {
    display: inline;
  }
	.mgr-10-2{ 
	margin-left: 6vw; /* 左側のマージン */
}
}
/*文の一部ピンクに*/
.pink{
	color: #ee79b1;
	font-weight: 600;
}
/*文の一部水色に*/
.sky{
	color: #3db6eb;
	font-weight: 600;
}

.home #contents .text {
		z-index: 3;  /* 文字はz-index 2で円より上 */
	}
	
	/*右側のブロック*/
.home #contents .aisatuimage {
		z-index: 3;  /* 文字はz-index 2で円より上 */
	}

/*画面幅以上の追加指定*/
	@media screen and (min-width:1200px) {
	
.home #contents {
		display: flex;	/*flexボックスを使う指定*/
		gap: 2rem;		/*左右のボックスの間のマージン的な設定*/
	}
	
	/*左側のブロック*/
.home #contents .text {
		margin-bottom: 0;	/*下のマージン（外側への余白）をリセット*/
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/

	}
	
	/*右側のブロック*/
.home #contents .aisatuimage {
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

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

/*波の形の背景（.bg-wave1と.bg-wave2）
---------------------------------------------------------------------------*/
/*共通*/
.bg-wave1, .bg-wave2 {
	background-position: top center, bottom center;
	background-size: 100% 50px;		/*右側の数字は画像の高さ*/
	background-repeat: no-repeat;
	padding-top: 50px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	max-width: none;
}

/*共通*/
.bg-wave1-inner, .bg-wave2-inner {
	padding-top: 50px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	max-width: none;
}

/*共通（ボックス内の上下の空白が広くなりすぎるので、sectionの上下マージンをなくす）*/
.bg-wave1-inner > section, .bg-wave2-inner > section {
	margin-top: 0;
	margin-bottom: 0;
}
	/*背景のウェーブ
---------------------------------------------------------------------------*/

/*bg-wave1の背景画像の読み込み*/
.bg-wave1 {
	background-image: url('../images/bg_wave_top-min.png'), url('../images/bg_wave_bottom-min.png');
}

.bg-wave1-inner {
	background: #f2fcfd;	/*背景色。背景画像の色に合わせる。*/	
}	

/*bg-wave2の背景画像の読み込み*/
.bg-wave2 {
	background-image: url('../images/bg_wave_top_2-min.png'), url('../images/bg_wave_bottom_2-min.png');
}

.bg-wave2-inner {
	background: #def8fb;	/*背景色。背景画像の色に合わせる。*/	
}	



/*背景のウェーブに円を配置(トップページ)
---------------------------------------------------------------------------*/

.bg-wave1 {
  position: relative; /* 親要素を基準に */
  background-position: top center, bottom center;
  background-size: 100% 50px;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: none;
  z-index: 0;  /* 背景はz-index 0 */
}
.bg-wave1::before,
.bg-wave1::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;  /* 文字より下に配置 */
}

/* 1個目の円 */
.bg-wave1::before {
  top: calc(5% + 3em);   /* さらに下に配置 */
  left: 30%;
  width: 16vw;
  height: 16vw;
  background-color: rgba(222,251,248,0.8);/* 薄い水色 */

}

/* 2個目の円 */
.bg-wave1::after {
  top: calc(5% + 3em);   /* さらに下に配置 */
  left: 40%;
  width: 8vw;
  height: 8vw;
  background-color: rgba(188,240,247,0.8);/* 少し濃い水色 */
}
@media screen and (max-width: 1200px) {
bg-wave1 {
  position: relative; /* 親要素を基準に */
	}
.bg-wave1::before,
.bg-wave1::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;  /* 文字より下に配置 */
}

  .bg-wave1::before {
    left: 60%;
	top: 5%;   
    width: 32vw;
    height: 32vw;

  }
  .bg-wave1::after {
    left: 50%;
	top: 10%;   
  	width: 16vw;
  	height: 16vw;

  }
.home #contents .text,
.home #contents .aisatuimage {
  position: relative; /* または absolute */
  z-index: 3;
}

}

/*会社概要 日付の改行設定
---------------------------------------------------------------------------*/
/* 通常時は改行させない */
.break-1 .break-2 {
  white-space: nowrap;
}

/* 画面幅が600px以下の場合に改行 */
@media (max-width: 600px) {
  .break-1::before {
    content: '\A';
    white-space: pre;
  }
}
/* 画面幅が350px以下の場合に改行 */
@media (max-width: 350px) {
  .break-2::before {
    content: '\A';
    white-space: pre;
  }
}




/*パンくずリストページ内専用メニュー（service1,2,3）
---------------------------------------------------------------------------*/
.pan {
	margin: 0 5vw 5vw;
	padding: 10px;
}
.pan li {
	display: inline-block;
	padding: 0 10px;
}
.pan li::before { 
	content: "> ";
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}
.pan li a{
	text-decoration: none;
}

/*説明文*/
.setumei p{
		margin: 5vw;
		}
.setumei-s{
		margin-top: 2rem;	
		}
.setumei-s p{
		margin: 0 5vw;
		}	
/*画面幅 以上の追加指定*/
	@media screen and (min-width:1500px) {

.setumei p {
		width: 1200px;
		margin: 3vw auto;
	}
.setumei-s p{
		margin: 0;
		}
		
		

}
.irast{
	background: #fff;
	width: 70vw;
  	height: 100%;
  	border-radius: 15px;  /* 角を丸くする */
	margin: 5vw auto;
	padding: 2vw;
}


/*アクセスページの設定
---------------------------------------------------------------------------*/

.iframe-box-1 {
	width: 100%;
	height: 0;
	padding-top: 80%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box-1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.map{
	margin: 5vw;
}

/*お問い合わせページの設定
---------------------------------------------------------------------------*/
  .contact {

	font-size: 1.5rem;

  }


.contact a {
  margin-left: 5px; /* テキストとアイコンの間隔を調整 */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;  /* 文字が長すぎる場合は折り返す */
  font-family:"Roboto", serif;
  font-weight: 500;
  font-style: normal; 
}




/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents, #footermenu {
	padding: 2rem 5vw;	/*上下、左右へのボックス内の余白。*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: #f2fcfd;	/*背景色*/
	color: #303030;		/*文字色*/
	margin-top: 10vw;
}
#footer-contents a {
	color: inherit;
}

/* 左側のコンテンツ */
#footer-contents .left {
	display: flex;       /* 画像とテキストを横並びにする */
  	flex-direction: column; /* 左側は縦方向（テキスト・画像） */
  	align-items: flex-start; /* 左揃えにする */
}


/* 画像の調整 */
#footer-contents .left address img {
  display: inline-block; /* インラインブロックでテキストと横並びに */
  width: 15vw;           /* 画像のサイズを調整 */
  height: auto;
  margin-left: 25vw;     /* テキストと画像の間隔 */
  vertical-align: middle; /* 画像をテキストの中央に揃える */
}
/* 画面幅が900px以下の場合のスタイル */
@media (max-width: 900px) {
#footer-contents .left address img {
  display: none; /* 非表示 */
}
}

/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;	/*下に空けるスペース*/
}
#footer-contents .tel a{
text-decoration: none; 
color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}
#footer-contents address {
    font-style: normal;
    line-height: 1.5;
     text-align: left; 
     padding:  0px; 
     margin-top: 0px; 
}


	/*画面幅901px以上の追加指定*/
	@media screen and (min-width:901px) {
	
	#footer-contents {
		display: flex;	/*flexボックスを使う指定*/
		gap: 2rem;		/*左右のボックスの間のマージン的な設定*/
	}
	
	/*左側のブロック*/
	#footer-contents .left {
		margin-bottom: 0;	/*下のマージン（外側への余白）をリセット*/
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}
	
	/*右側のブロック*/
	#footer-contents .right {
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

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



/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 70%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #bcf0f7;	/*背景色*/
	color: #303030;		/*文字色*/
	font-size: 0.8rem;		/*文字サイズ。*/
	text-align: center;


}

#footermenu ul {
  	display: flex; /* flexboxを使って横並びに */
  	justify-content: center; /* 中央 */
  	list-style: none; /* リストの点を非表示に */
	width: 600px; /* 横幅を600pxに指定 */
	margin: 0 auto; /* コンテンツを中央に配置 */
	gap: 30px;  /* リストの間隔を調整 */
}

#footermenu li {
  white-space: nowrap;  /* 文字が折り返さないように */
  margin: 0;  /* 文字間隔を適度に調整 */

}

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

#footermenu {
	display: flex;
}



/* 画面幅が900px以下の場合のスタイル */
@media (max-width: 900px) {
  #footermenu {
    width: 100%; /* 幅を100%にする */
  }

  #footermenu ul {
    flex-direction: column; /* 縦並びにする */
	width: 100%; /* 幅を100%にする */
    align-items: center; /* 中央揃え */
	gap: 5px;  /* リストの間隔を調整 */
	margin: 0;

  }

  #footermenu li {
    width: auto; /* 幅を自動調整 */
	padding: 0
  }
}


/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ*/
	background: #1d1b1b;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;			/*ボックス内の余白*/
}

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

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


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

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

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

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


/*list-half（左右にわかれたボックス）
---------------------------------------------------------------------------*/
/*画像ブロック*/
.list-half .image {
    width: 60vw;	/*幅。60%。*/
	margin: 0 auto;	/*画像を中央に配置*/
	padding: 5vw 0;	/*上下、左右への余白。画像の上下に隙間をあけます。*/
}
/*ボックス全体*/
	.list-half {
		padding: 5vw;	/*上下、左右への余白。画像の上下に隙間をあけます。*/
		
	}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width : 1200px ){
	
	/*ボックス全体*/
	.list-half {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 2vw;	/*左右の間に空けるマージン的な要素*/
		position: relative;
		padding: 5vw;	/*上下、左右への余白。画像の上下に隙間をあけます。*/

		
	}

	/*テキストブロック*/
	.list-half .text {
		flex: 1;
		
	}

	/*画像ブロック*/
	.list-half .image {
		padding: 0;		/*余白をリセット*/
		width: 40vw;	/*幅。40%。*/
	}

	/*左右を入れ替える場合用*/
	.list-half.reverse {
		flex-direction: row-reverse;
	}

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




/*list-grid1,2,3,4
---------------------------------------------------------------------------*/
.list-grid1 .list,
.list-grid2 .list,
.list-grid3 .list,
.list-grid4 .list 
*{margin: 0;padding: 0;
}

/*ボックス１個あたり*/
.list-grid1 .list,
.list-grid2 .list,
.list-grid3 .list,
.list-grid4 .list {
    display: grid;
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 1rem;	
	line-height: 1.5;	/*行間を狭くする*/
	margin-bottom: 2rem;
}
.list-grid2 .list p {
	font-size: 1rem;	
	line-height: 1.5;	/*行間を狭くする*/
	margin-bottom: 2rem;
}


/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 15px;
	margin: 5vw
}
.list-grid2 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 15px;
	margin: 5vw
}
.list-grid4 .list {
	background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 15px;
	margin: 5vw;
	padding: 0;
}


/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/	
}
.list-grid2 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/	
}


.list-grid1 .list figure img,
.list-grid2 .list figure img {
    border-top-left-radius: 15px;  /* 上側も角丸に */
    border-top-right-radius: 15px;
}
.list-grid4 .list figure img {
    border-radius: 15px;  
}
	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

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

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin: 0;	/*下に空けるスペースをなくす*/
	}
	.list-grid2 .list {
		margin: 0;	/*下に空けるスペースをなくす*/
	}
	.list-grid4 .list {
		margin: 0;	/*下に空けるスペースをなくす*/
	}


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



/*ボタン（btn）
---------------------------------------------------------------------------*/
.btn {
	display: inline-flex;
	align-items: center; /* 縦方向の中央揃え */
	justify-content: center; /* 水平方向の中央揃え */
	position: relative;
	text-decoration: none;
    background-color: #ee8779;
    color: var(--primary-inverse-color);
	border-radius: 9999px;  /* ボタンの高さの半分以上を指定して丸くする */
	font-size: 1rem;
	width: 100%; /* ボタンの幅を親要素いっぱいに */
	box-sizing: border-box; /* パディングを含めた幅指定 */
	padding: 0.5rem 1rem !important;		/*	ボタン内の余白*/
}
a.btn{
	margin-bottom: 1rem !important;
	
}

.btn i {
	display: flex;
	position: absolute;
    right: 20px;  /* 右から20pxの位置 */

}



/* 親ボックス .list */
.list-grid1 .list {
    position: relative;
    display: grid;
    overflow: hidden; /* はみ出しを防ぐ */
}
/* 円形ボタン */
.btn-maru {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* ボタンの直径 */
    height: 50px; /* ボタンの直径 */
    background-color: #ee8779;
    color: var(--primary-inverse-color);
    border-radius: 50%;
    position: absolute; /* 配置を調整 */
    bottom: 1rem; /* 親ボックス内の下 */
    right: 1rem; /* 親ボックス内の右 */
    text-decoration: none;
    z-index: 1;
	cursor: pointer; /* マウスオーバーでポインターに */

}

/* 矢印「>」を三角形で作成 */
/*.btn-maru::after {*/
/*
    content: "";
    display: block;
    width: 0;
    height: 0;
*/
/*    border-top: 8px solid transparent; */
/* 上部分を透明にする */
/*    border-bottom: 8px solid transparent;*/
/* 下部分を透明にする */
/*    border-left: 12px solid var(--primary-inverse-color); */
/* 左三角形を矢印の色にする */
/*    transform: translateX(2px); */
/* 位置調整（中央揃え） */
/*}*/

/*矢印アイコン（Font Awesome）*/
.btn-maru::after {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f061";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #fff;		/*アイコンの色*/
	font-weight: bold;
	display: block;
	}

/*矢印アイコン（Font Awesome）のマウスオン時*/
.btn-maru:hover::after {
	transform: scale(1.6);	/*サイズを少し大きくする*/
}


.list {
    position: relative; /* ボタンの位置指定の基準をリスト全体にするため */
}


/* レスポンシブで余裕を作る */
@media screen and (max-width: 900px) {
    .btn-maru {
        right: 2vw; /* 右位置を微調整 */
    }
}
/*
下層ページのヘッダー下見出し
---------------------------------------------------------------------------
*/
.page-header{
	background-color: #f2fcfd;
	padding: 5vw;
	margin-bottom: 5vw;
	width: 100vw;  /* 横幅を画面いっぱいに */
  	margin-left: calc(50% - 50vw);  /* 中央からはみ出させる */
}

.page-header h2{
	margin: 0;
	color: var(--primary-color);
  	font-weight: 600;
	
}


/*ドットラインボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.dott .list {
	position: relative;
	overflow: hidden;
	margin: 5vw 5vw 0;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}


.dott-contact .list {
	border: 3px solid #3db6eb;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
} 
.dott-contact .list .cc {
    text-align: center; 
	font-size: 1rem;	/*文字サイズ*/
	border-bottom: 5px dotted #3db6eb;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	padding: 10px;
}
.list {
	position: relative;
	overflow: hidden;
	margin: 5vw 5vw 0;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4タグ設定*/
.dott .list h4 {
	font-size: 1.5rem;	/*文字サイズ*/
	border-bottom: 5px dotted #3db6eb;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
}
/*ボックス内の段落タグ設定*/
.dott .list p {
	font-size: 1rem;	
	line-height: 1.5;	/*行間を狭くする*/
	margin-bottom: 2rem;
}
/* レスポンシブで見出しを中央 */
@media screen and (max-width: 799px) {
 .dott .list h4 {
text-align: center;
	}

}
/*ドットラインボックス2
---------------------------------------------------------------------------*/

.dott-2 .list {
	position: relative;
	overflow: hidden;
	margin: 5vw 5vw 0;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 4px dotted #3db6eb;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
}
.dott-2{
	margin: 0 5vw;
}
/*ボックス内の段落タグ設定*/
.dott-2 .list p {
	font-size: 1rem;	
	line-height: 1.5;	/*行間を狭くする*/
}
/*ドットラインボックスred
---------------------------------------------------------------------------*/

/*各ボックスの設定*/
.dott-red .list {
	position: relative;
	overflow: hidden;
	margin: 5vw;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4タグ設定*/
.dott-red .list h4 {
	font-size: 1.5rem;	/*文字サイズ*/
	border-bottom: 5px dotted #ee8779;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
}

.red-maru {
	padding-left:2rem
}

.red-maru li::marker {
  color: #ee8779;  /* 赤系の色を指定 */
  font-size: 1.3rem;  /* マーカーの大きさ変更も可能 */
}
.red-maru span{
  font-size: 1.3rem;  
}
		
/*ボックス内の段落タグ設定*/
.dott-red .list p {
	font-size: 1.3rem;	
	line-height: 1.5;	/*行間を狭くする*/
	margin-bottom: 2rem;
}
/* レスポンシブで見出しを中央 */
@media screen and (max-width: 799px) {
 .dott-red .list h4 {
text-align: center;
	}
	
}

/*ドットラインボックスblue
---------------------------------------------------------------------------*/

/*各ボックスの設定*/
.blue .list {
	position: relative;
	overflow: hidden;
	margin: 5vw;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: none;
}


.blue-maru {
	padding-left:2rem;
}

.blue-maru li{
  font-size: 1.3rem;  /* マーカーの大きさ変更も可能 */

}

.blue-maru li::marker {
  color: #3db6eb;  /* 色を指定 */
  font-size: 1.3rem;  /* マーカーの大きさ変更も可能 */
}


/*ドットラインボックスkango,kaigo
---------------------------------------------------------------------------*/

/*各ボックスの設定*/
.dott-kango .list,
.dott-kaigo .list {
	position: relative;
	overflow: hidden;
	margin: 5vw;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 3px solid #799aee;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border-radius: 15px;	/*角丸のサイズ*/
}
.dott-kaigo .list {
	border: 3px solid #efcd7a;	/*枠線の幅、線種、色*/
}
.dott-kango .list li,
.dott-kaigo .list li {
	font-size: 1.3rem;
}

.dott-kango .list-flex,
.dott-kaigo .list-flex  {
	display: flex; /* 子要素を横並びに */
    flex-wrap: wrap; /* 必要に応じて折り返し */
    gap: 0; /* 左右のリスト間にスペースを追加 */
}

/*ボックス内のh4タグ設定*/
.dott-kango .list h4 {
	font-size: 1.5rem;	/*文字サイズ*/
	border-bottom: 5px dotted #799aee;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
}
.dott-kaigo .list h4 {
	font-size: 1.5rem;	/*文字サイズ*/
	border-bottom: 5px dotted #efcd7a;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
}

.kango-maru,.kaigo-maru {
	padding-left:2rem;
	flex: 1; /* 各リストを均等幅に */
    min-width: 0; /* 均等幅にするために最小幅をリセット */
    text-align: left; /* 左寄せ（必要に応じて調整） */
}
.kango-maru li::marker {
  color: #799aee;  /* 色を指定 */
  font-size: 1.3rem;  /* マーカーの大きさ変更も可能 */
}
.kaigo-maru li::marker {
  color: #efcd7a;  /* 色を指定 */
  font-size: 1.3rem;  /* マーカーの大きさ変更も可能 */
}
/* レスポンシブで縦並びに変更 */
@media screen and (max-width: 1200px) {
 .dott-kango .list-flex,
 .dott-kaigo .list-flex {
   display: block; /* flex を解除して縦並びに */ 
   margin-bottom: 2rem;
    }
}

/* レスポンシブで見出しを中央 */
@media screen and (max-width: 799px) {
 .dott-kango .list h4,
 .dott-kaigo .list h4 {
	text-align: center;
	}
}


/*スケジュール
---------------------------------------------------------------------------*/
/* time-schedule */
.time-schedule {
  max-width: 50vw;
  list-style: none;
  margin: 0 0 0 6em;
  padding-left: 20px;
  border-left: 6px solid #3db6eb;
  box-sizing: border-box;
  line-height: 1.3em;
}

.time-schedule li {
  width: 100%;
  margin: 0;
  padding: 5px 0;
  position: relative;
  margin-bottom: 1rem;
}

.time-schedule span.time {
 width: 5em;
  position: absolute; /* 親要素(li)に対して絶対位置を指定 */
  left: -8em; /* 必要に応じて調整 */
  top: 50%;
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -40px; /* 丸を右に配置 */
  top: 50%; /* 垂直方向の中央 */
  transform: translateY(-50%);
  background: #3db6eb;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.time-schedule .sch_box {
  display: block;
  width: 100%;
  padding: 15px;
  vertical-align: middle;
  background: #fff;
  border: solid #3db6eb;
  box-sizing: border-box;
  border-radius: 10px;
}


.time-schedule .sch_tx {
  font-size: 1rem;
  font-weight: normal;
	
}
/*スケジュール横の画像
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/

.side1 {
 	display: flex;	/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	gap: 2rem;		/*マージン的な指定*/
	margin: 0 5vw;
}

/*画像を囲むブロックの設定*/
.side1-image {
    justify-content: center;	/*並びかたの種類の指定*/
}

/*画像の設定*/
.side1-image img {
    width: 50%;	/*幅*/
}

/*テキストブロックの設定*/
.side1-text{
	margin: 0 auto;
	}


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

	/*ブロック全体の設定*/
	.side1 {
		flex-direction: row;	/*子要素を縦並びから縦並びに変更*/
		justify-content: space-around;	/*並びかたの種類の指定*/
	}

	/*画像を囲むブロックの設定*/
	.side1-image {
		display: flex;	/*flexボックスを使う指定*/
		flex-direction: column;	/*子要素を縦並びにする*/
		flex: 1;				/*幅*/
	}

	/*画像の設定*/
	.side1-image img {
		width: 100%;	/*幅*/
	}

	/*テキストブロックの設定*/
	.side1-text{
		flex: 2;		/*幅*/
		display: flex;	/*flexボックスを使う指定*/
		flex-direction: column;	/*子要素を縦並びにする*/
	}

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


/*side1の追加設定
---------------------------------------------------------------------------*/
/*photo1の設定*/
.side1 .photo1 {
	transform: rotate(-5deg);	/*回転*/
}

/*photo2の設定*/
.side1 .photo2 {
	transform: translateX(-0.5rem) rotate(4deg);	/*回転*/
}

/*photo（写真風スタイル）
---------------------------------------------------------------------------*/
.photo {
	padding: 0.7vw;		/*写真の縁にあたる部分*/
	background: #fff;	/*縁の部分の色*/
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);	/*写真につける影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.2は色が20%出た状態。*/
}


/*list-sisetujmpブロック 　施設紹介へ飛ぶ
---------------------------------------------------------------------------*/

/*listブロック（２カラムタイプ、横長タイプ）、list2ブロック（枠が動く３カラムタイプ）の設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list-sisetujmp {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	background: #fff;				/*背景色。*/
    padding: 1rem;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.15は色が15%出た状態。*/
	border-radius: 15px;				/*角を丸くする指定*/
	overflow: hidden;				/*はみ出た要素を非表示にする。画像の角が飛び出ないようにする為の指定です。*/
	margin: 5vw;
}

/*h4タグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list-sisetujmp h4 {
	margin: 0;
	font-size: 1.5rem;		/*文字サイズ*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}

/*pタグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list-sisetujmp p {
	margin: 1rem 0 2rem;
	line-height: 1.5;
}
/*ボックス内のfigure画像*/
.list-sisetujmp figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;
}



/*ここから下は画面幅901px以上の追加指定*/
/*---------------------------------------------------------------------------*/
@media screen and (min-width:901px) {

/*１個あたりのボックスの指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list-sisetujmp  {
	flex-direction: row;
}

/*画像の指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list-sisetujmp figure {
	width: 50%;			/*幅*/
	margin: 1rem 20px 1rem 1rem;	/*画像とテキストブロックの間にとる余白*/
}

.list-sisetujmp  div {
	flex: 1;
}

	
}




/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: #fcf8ea;	/*背景色*/
	padding-top: 5vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	/*margin-top: 10vw;		ボックス外の上に空ける余白。お好みで調整して下さい。*/
	/*margin-bottom: 10vw;	ボックス外の下に空ける余白。お好みで調整して下さい。*/
	
	/*以下は変更不要*/
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
.bg1 a {
	color: inherit;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	background: rgba(0,0,0,0.02);	/*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
	overflow: hidden;
	margin-bottom: 4rem;	/*ブロックの下に空けるスペース。4文字分。*/
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.new dt:nth-of-type(odd),
.new dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.04);
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem 1rem 0;	/*dt内の余白。上、左右、下への順番。*/
}

/*記事(dd)設定*/
.new dd {
	padding: 1rem;	/*dd内の余白*/
}

/*ブロック内の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 #999;	/*枠線の幅、線種、色*/
}

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

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

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

	/*日付(dt)設定*/
	.new dt {
		padding: 1rem 0 1rem 2rem;	/*dt内の余白。上、右、下、左への順番。*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1rem 2rem 1rem 0;	/*dd内の余白。上、右、下、左への順番。*/
	}

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


/*2・3カラム（main-contents、sub-contents設定）
---------------------------------------------------------------------------*/
/*main-contentsブロック*/
.main-contents {
	margin-bottom: 2vw;	/*ボックスの下に空けるスペース*/
}

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


	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	
	}/*追加指定ここまで*/


/*box1
---------------------------------------------------------------------------*/
.box1 {
	padding: 1rem;			/*ボックス内の余白*/
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース*/
	background: rgba(0,0,0,0.05);	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}

/*box1内のsubmenuの下マージンをなくす*/
.box1 .submenu {
	margin-bottom: 0;
}


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

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

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


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

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

/*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: center;	/*中央よせにする*/
	background: #def8fb;	/*背景色*/
	font-weight: 500;
}
.ta1.ta1-ser th{
	background: #fffbe3;	/*背景色*/
}

.ta1 td {
	text-align: left;	
}


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

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

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


/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	text-align: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}

/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 2rem;	/*テーブルの下に空けるスペース*/
	text-align: center;		/*センタリング*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}

/*曜日と午前午後*/
.ta2 th {
	background: #fffbe3;
}



/*料金表*/

.ta2 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ta2 th, td {
    border: 1px solid #999;
    padding: 10px;
    text-align: center;
}

.ta2 th {
    background-color: #def8fb;
}

.ta2 .cost {
    background-color: #fdf2f8;
}

.ta2 .care-level {
    background-color: #fbf7de;
    font-weight: 500;
}

.ta2 tfoot td {
    text-align: right;
    padding-top: 15px;
    font-size: 14px;
}


/*テーブルを小さな端末で横スクロールさせる為の準備
---------------------------------------------------------------------------*/
/*テーブルを囲むブロック*/
.ta-box {
	overflow-x: auto;
	margin-bottom: 1rem;
	padding: 0 5vw 5vw;
}

/*ブロック内にあるta2のみ最小幅を設定*/
.ta-box .ta2 {
	min-width: 840px;
}

.ta-box + p,
.ta1 + p,
.ta2 + p {
	margin-top: -2rem;
}

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


/*その他
---------------------------------------------------------------------------*/
.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: #eee;color: #333;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;}

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