@charset "utf-8";





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

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

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





/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100%;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*全体の文字色*/
	line-height: 1.9;		/*行間*/
}

/*リセット*/
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;}

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

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

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}


/*スマホPC表示オフ*/

.pc_area{
	display: block;
}

.sp_area{
	display: none;
}

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

.sp_area{
	display: block;
}
	
}






/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #106eb8;
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
	color: #64ad2e;	/*マウスオン時の文字色*/
}

i{
	margin-right: 10px;
}


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	/*max-width: 1500px;				最大幅。これ以上広がらないように。後半の大きな端末用の「#menubar > ul」と数字を揃える。*/
	max-width: 100%;
	margin: 0 auto;
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	flex: 0 0 auto;
	height: 100px;					/*ヘッダーの高さ*/
	padding: 0 25px 0 25px;
/*ヘッダー内の余白*/
}

.tit_site_h1{
	font-size:0.8em; 
	padding: 5px 10px 0 20px;
	
	
}

/*ロゴ画像*/
header #logo {
	line-height: 0;margin: 0;
	width: 500px;		/*ロゴ画像の幅*/
}

header #logo img {
	margin-bottom:10px;
	width: 100%;
	
}

@media screen and (max-width: 640px) {

	.tit_site_h1{
	font-size:0.8em; 
	padding: 0 10px 0 10px;
	position: fixed;
	top: 0px;
	z-index: 99;
	width: 100%;
	height: auto;
	margin-top: 0;
	background-color: #1f7ec9;
    color: #fff;
	border-bottom: solid 3px #fff;

}

	
	
	header{
		height: auto;
		padding: 0 10px 5px;
		position: fixed;
    top: 21px;
    left: 0;
    z-index: 99;
		background: #fff;
	box-shadow: 0px 2px 3px rgb(0 0 0 / 20%);
	}
	
	header #logo {
	line-height: 0;
	margin: 3px 0 0 0;
	width: 100%;;		/*ロゴ画像の幅*/
}
	
	header #logo img {
	margin-bottom:6px;
	width: 85%;
	
}

}


/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin-right: 80px;	/*右側に空けるスペース。ハンバーガーメニューに重ならないようにする為です。*/
}

/*電話番号のアイコン（アイコンにはFont Awesomeを使用）*/
header address a {
	color: #ff6705;
	font-size:1.5em;
	font-weight: bold;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 24px;		/*上からの配置場所指定*/
	right: 5px;	/*右からの配置場所指定*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: rgb(101 185 252 / 48%) url(../images/ham.png) no-repeat center top/50px;/*背景色、ハンバーガメニュー画像の読み込み、50pxは幅の指定*/
}
/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #ffffff url(../images/ham.png) no-repeat center bottom/50px;
}


/*メニュー設定（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
#menubar ul {
	list-style: none;margin: 0;padding: 0;
	background: #1f7ec9;	/*背景色。諸事情あって、下のbackgroundのグラデーションのどちらかの色を抜いて下さい。*/
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	display: block;text-decoration: none;
	background: linear-gradient(#0798b7, #1f7ec9);/*背景グラデーション*/
	color: #fff;		/*文字色*/
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	
}

@media screen and (max-width: 640px) {
	#menubar ul a {
	
	border-bottom: solid 1px #fff;
	
}
}

/*マウスオン時のメニュー色*/
#menubar > ul > li > a:hover {
	filter: brightness(1.2);	/*少しだけ明るくする*/
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 1em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*メニューの設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}

/*小さな端末用のメニューブロック*/
#menubar.db {
	position: fixed;overflow: auto;z-index: 99;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 20px;	
	background: rgb(255 255 255 / 80%);	
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
#menubar .ddmenu_parent ul {display: none;}

/*ドロップダウンメニュー1個あたりの設定*/
#menubar .ddmenu_parent ul a {
	background: #e7ffff;	/*背景色*/
	color: #333;		/*文字色*/
}

/*マウスオン時*/
#menubar .ddmenu_parent ul a:hover {
	background: #fafafa;	/*背景色*/
	color: #001ec3;			/*文字色*/
}


/*contentsブロック
---------------------------------------------------------------------------*/
#contents {
	min-height: 0%;		/*IE対策*/
	flex: 1 0 auto;
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	display: block;			/*IE対策*/
	margin: 50px auto 100px;
	width: 75%;
	
}
/*スマホトップページのmainブロックの設定*/
@media screen and (max-width: 640px) {
main {
	position: relative;
	top:40px;
	width: 95%;
	}
}

/*mainブロック内のh2タグ*/
main h2 {
	border-bottom: 4px solid #eee;	/*下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
}

/*mainブロック内のh2タグに下線を引くための指定。*/
main h2 span.uline {
	display: inline-block;
	border-bottom: 4px solid #3bb1f1;	/*下線の幅、線種、色。アクセントカラーです。上のmain h2と数字を合わせておく。*/
	position: relative;
	bottom: -4px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 10px;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}

/*mainブロック内のh3タグ*/
main h3 {
    padding: 0.5em;
    color: #1f7ec9;
    background: #e8f2fb;
    border-left: solid 5px #3bb1f1;
	margin-top: 10px;
}

/*mainブロックのpタグ*/
main p {
	margin: 30px 20px 0px;	/*上、左右、下へ空けるスペース*/
	font-size:1.05em;
	letter-spacing:5%;
}

@media screen and (max-width: 640px) {
	main p {
		font-size:1.2em;
	}
	
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #77d4ff;	/*背景色*/
	background-image: url(../images/foot_bg.png) ;
	background-repeat:  no-repeat;              /* 背景の繰り返し設定 */
    background-size:  cover;
	font-size: 0.85rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #333;
    font-size: 1.1em;
	margin-bottom: 10px;
}



#footermenu a i{
	color: #fff;
	margin-right: 5px;
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #106eb8;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 15px;
	flex: 1;
	list-style: none;
	background-color: rgba(255, 255, 255, 52%);
    border-radius: 10px;
    padding: 30px;
	text-align: center;
}

@media screen and (max-width: 640px) {
	#footermenu{
		display: block;
	}
	
	
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #106eb8;
    padding-bottom: 5px;
    font-size: 1.6em;
}



#footermenu td{
	background-color: #fff;
}


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

footer {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #1f7ec9;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

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

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}

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


@media screen and (max-width: 640px) {
	
	#footermenu{
		
		font-size:0.95em;
	}
	
}


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

@media screen and (max-width: 640px) {
	#new {
	font-size:1.2em;
	}
	
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 10px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

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

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}

.new_tit{
		background: #ff9600; 
		color: #fff; 
		padding: 5px;
	}

@media screen and (max-width: 640px) {
	#new dt,
	#new dd{
		width: 100%;
	}
	#new dd{
	padding-top: 0px;
	}
	
	#new dt{
		border-bottom: none;
		padding-bottom: 0px;
	}
	
}
/*サービスページ（listブロック）
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	background: #f4f4f4;				/*背景色。*/
	color: #000;					/*文字色*/
	padding: 20px;					/*ボックス内の余白*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 10px;			/*角を丸くする指定*/
	overflow: hidden;
}

/*listボックス内のfigure画像*/
.list figure {
	margin: -20px -20px 0;	/*上の余白部分を埋めて画像を大きくするような指定です*/
}

/*listボックス内のh4タグ*/
.list h4 {
	margin: 10px 0;			/*上下、左右へのh4の外側に空けるスペース*/
	font-size: 1.2em;		/*文字サイズを120%に*/
	font-weight: bold;	
	border-bottom: dotted 3px #ccc;
	color: #1135ac;
}

/*listボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 1em;	/*文字サイズを90%に。*/
}

@media screen and (max-width: 640px) {
	.list p {
		font-size: 1.2em;	
	}
	
	
	
}

/*IE対策*/
.list div {
	min-height: 0%;
}


.list h4 i{
	color:rgb(66, 133, 244);
	margin-right: 5px!important;
}

/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/
.mainimg {
	position: relative;
}

@media screen and (max-width: 640px) {
	.mainimg {
	top:75px;
}
}

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

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

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

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: #31adef;	/*色*/
}


/*アイコン
---------------------------------------------------------------------------*/
/*アイコンの共通設定*/
.icon {
	display: inline-block;
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	background: #999;	/*背景色。iconクラスだけ適用した場合に出る色です。*/
	color: #fff;		/*文字色*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-radius: 3px;	/*角を丸くする指定*/
	margin-right: 3px;	/*アイコンが並んだ際に間にとるスペース*/
}

/*NEWアイコン*/
.newicon {
	background: #e82600;	/*背景色*/
}

/*option1アイコン*/
.option1 {
	background: #e80068;	/*背景色*/
}

/*option2アイコン*/
.option2 {
	background: #009def;	/*背景色*/
}


/*詳細ページ
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	margin: 0 auto 20px;
	text-align: center;
	width: 100%;
}

/*大きな画像のボックスの中の画像*/
#item-image img {
	width: 100%;
}

/*サムネイル画像*/
.thumbnail {
	width: 80px;	/*画像の幅*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}

.thumbnail:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}


/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/

.btn02 a{
	display: inline-block;text-decoration: none;border: none;
	color: #fff!important;			/*文字色*/
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 20px;		/*上下、左右へのボタン内の余白*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	background: linear-gradient(#ff873b,#ff7400);/*背景グラデーション*/
	/*background: #ff9600;
    border: 1px solid #ff9600;*/
	font-size: 1.3rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	
}


.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	color: #fff;			/*文字色*/
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 20px;		/*上下、左右へのボタン内の余白*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	/*background: linear-gradient(#5bc4fa,#0889cc);/*背景グラデーション*/
	background: #2FAFCB;
    border: 1px solid #38beef;
	font-size: 1rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*ボタンのマウスオン時*/
.btn02 a:hover,
.btn a:hover,
.btn input:hover {
	filter: brightness(1.2);	/*少しだけ明るくする*/
	cursor: pointer;
}

/*listブロック内でのボタン*/
.list .btn a, .list .btn input {
	margin-top: 10px;	/*上にスペースを空ける*/
	display: block;		/*横幅いっぱいに広げる*/
}




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

/*質問*/
.faq dt {
	border-radius: 10px;	/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.2は色が20%出た状態の事。*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;
	
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #64ad2e;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

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

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

.faq dt span {text-indent: 0;}


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

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

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}

.pagetop i{
	margin: 0!important;
}



/*ボタンの設定_電話*/
.pagetop_tel a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 0px;		/*右からの配置場所指定*/
	bottom: 150px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 2rem;	/*文字サイズ*/
	background: rgb(2 123 196 / 73%);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	border-radius: 5px 0 0 5px;
	width: 35px;
    line-height: 0.3;
	padding: 9px;
	/*writing-mode: vertical-rl;
    text-orientation: upright;*/
	letter-spacing: 0.05em;
    
}

.pagetop_tel a i {
	margin-left: 10px;
	
}

/*マウスオン時*/
.pagetop_tel a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}

.pageto_tel i{
	margin: 0!important;
}

/*ボタンの設定_メール*/


.pagetop_mail a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 0px;		/*右からの配置場所指定*/
	bottom: 85px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 2rem;	/*文字サイズ*/
	background: rgb(20 168 66 / 76%);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	border-radius: 5px 0 0 5px;
	width: 35px;
    line-height: 0.3;
	padding: 9px;
    
}

.pagetop_mail a i {
	margin-left: 5px;
	
}

/*マウスオン時*/
.pagetop_mail a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}

.pageto_tel i{
	margin: 0!important;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #64ad2e !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}





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

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-direction: column;	/*ロゴと電話番号を縦並びにする*/
}

/*電話番号ブロック*/
header address {
	margin-right: 0px;
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}





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


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;	/*基準となるフォントサイズの上書き*/
}


/*fixmenu。大きな端末で、メインメニューが画面上部についた時のスタイル。
---------------------------------------------------------------------------*/
.fixmenu{
	position: fixed !important;z-index: 100;
	left:0px;top:0px;
	width: 100%;
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*電話番号ブロック*/
header address {
	margin-right: 0px;
}

	
	

/*menubar
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}

/*メニューのボックス全体の設定（※変更不要）*/
#menubar {height: auto;overflow: visible;}
#menubar.db {position: static;overflow: visible;height: auto;padding: 0;}

/*ドロップダウンに影響させない為。*/
#menubar > ul {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	/*max-width: 1500px;				最大幅。これ以上広がらないように。前半の小さな端末用の「#container」と数字を揃える。*/
	max-width: 100%;
	margin: 0 auto;
}

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


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
#menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
}

/*メニュー１個ごとに入れる線*/
#menubar .ddmenu_parent ul li a {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
}

/*最初のドロップダウンにのみ上の線を入れる*/
#menubar .ddmenu_parent ul li:first-of-type a {
	border-top: 1px solid #ccc;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 20px 50px;	/*上下、左右へのボックス内の余白*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 10em;	/*幅。10文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

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

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

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 10em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}
	
	.new_tit{
		background: #ff9600; 
		color: #fff; 
		padding: 5px;
	}


/*サービスページ（listブロック）
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	flex-direction: row;	/*子要素を横並びにする*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.list {
	width: 43%;	/*ボックスの幅*/
}


/*詳細ページ
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	width: 100%;
}




/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*診察時間表*/

table {
    border-collapse: collapse;
    width: 80%;
    margin: auto;
	text-align: center;
	border: solid 1px #ccc;
}

th{
	border: solid 1px #ccc;
}

tr{
	border: solid 1px #ccc;
}

td{
	border: solid 1px #ccc;
	padding: 9px;
	color: #1135ac;
}



.tbl-r05 td:first-child {
      background: #fff5cc!important;
	color: #333!important;
   
	
}

.thead{
	background: #fff5cc;
}
@media screen and (max-width: 640px) {
  .tbl-r05 {
    width: 85%!important;
  }
  .tbl-r05 .thead {
    /*display: flex;*/
  }
  .tbl-r05 tr {
    /*width: 100%;*/
  }
  .tbl-r05 td {
    /*display: block;*/
    text-align: center!important;
    /*width: 100%;*/
  }
  .tbl-r05 td:first-child {
    background: #fff5cc!important;
    color: #333!important;
    /*font-weight: bold;*/
    text-align: center;
	line-height: 1.2;
  }
  .tbl-r05 td:before {
    content: attr(data-label)!important;
    float: left!important;
    font-weight: bold!important;
    margin-right: 10px!important;
  }
}
 
.tbl-r06_width {
	width: 100%;
	
}

.tbl-r06 td{
color: #333!important;
text-align: left;
}


.tbl-r06 td:first-child {
      background: #fff5cc!important;
	color: #333!important;
	text-align: center;	
}



.thead{
	background: #fff5cc;
}
@media screen and (max-width: 640px) {
  .tbl-r06 {
    width: 100%!important;
  }
  .tbl-r06 .thead {
    /*display: flex;*/
  }
  .tbl-r06 tr {
    /*width: 100%;*/
  }
  .tbl-r06 td {
    /*display: block;*/
    text-align: center!important;
    /*width: 100%;*/
  }
  .tbl-r06 td:first-child {
    background: #fff5cc!important;
    color: #333!important;
    /*font-weight: bold;*/
    text-align: center;
	line-height: 1.2;
  }
  .tbl-r06 td:before {
    content: attr(data-label)!important;
    float: left!important;
    font-weight: bold!important;
    margin-right: 10px!important;
  }
}
 

@media screen and (max-width: 480px) {
	
.tbl-r06_width {
	width: 90%;
	
}
	
  .tbl-r06 {
    width: 90%!important;
  }
  .tbl-r06 .thead {
    display:none;
  }
  .tbl-r06 tr {
    width: 100%;
  }
  .tbl-r06 td {
    display: block;
    text-align: center!important;
  }
  .tbl-r06 td:first-child {
    background: #fff5cc!important;
    color: #333!important;
    font-weight: bold;
    text-align: center;
	line-height: 1.2;
  }
  .tbl-r06 td:before {
    content: attr(data-label)!important;
    float: left!important;
    font-weight: bold!important;
    margin-right: 10px!important;
  }
}


.indent {
		padding-left:1em;
		text-indent:-1em;
	margin-top: 10px;
	}
	

/*お願い枠*/
.box15 {
    padding: 0.5em 0.5em;
    margin: 2em auto 0;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
	width: 85%;
}
.box15 p {
    margin: 0; 
    padding: 0;
}

.box15 b{
	color: darkblue;
}

/*フッターボタン*/

.foot_btn_waku{
	margin: 15px 0;
}

.foot_tel_btn{
	margin-right: 10px;
}

@media screen and (max-width: 640px) {
	.foot_tel_btn{
	margin-right: 0px;
	margin-bottom: 15px;
}
	
}

.highlighter {
    background: linear-gradient(transparent 40%, #f3e86b54 40%, #f0ff12 80%, #f7f79a 100%)!important;
}

.photo{
	width: 40%; 
	float: right; 
	margin: 15px 0 20px 30px;
}

.photo02{
	width: 20%; 
	float: left; 
	margin: 0 30px 20px 0;
}

.photo02 img{
	border-radius:49% 51% 73% 27% / 50% 56% 44% 50% ;
}

@media screen and (max-width: 640px) {
	.photo{
	width: 100%; 
	float: none; 
	margin: 15px auto;
}
	.photo02{
	width: 50%; 
	float: none; 
	margin: 0 auto;
}
	
}

/*枠線*/

.box14{
    padding: 1em;
    margin: 2em 0;
    background: -webkit-repeating-linear-gradient(-45deg, #fff, #dcf3ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #fff, #dcf3ff 3px,#e9f4ff 3px, #e9f4ff 7px);
	border-radius: 10px;
}
.box14 p {
    margin: 0; 
    padding: 0;
}

.stf_coment{
	border-bottom: dotted 3px #78d4ff; padding-bottom: 5px; 
	margin:0px 0 20px!important;
}

.box_pro{
	adding: 0.5em 0.5em;
    margin: 2em auto 0;
    color: #565656;
    background-color: rgba(255, 255, 255,80%);
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255,80%);;
    border: dashed 2px #78d4ff;
	border-radius: 8px;
	width: 80%;
	padding: 20px;
   
}

.box_pro p {
    margin: 0; 
    padding: 0;
}


h5 {
  position: relative;
  padding: 0.5em 0.8em;
  background: #3bb1f1;
  color: #fff;
  margin-top: 10px;
 font-size:1em;
}

h5::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}

.come{
	float: left;
    width: 68%;
	margin: 10px 0 10px;
}

@media screen and (max-width: 640px) {
	
	.stf_coment{
	border-bottom: dotted 3px #78d4ff; padding-bottom: 5px; margin:0px 0 20px 0!important;
}
	
	.box_pro{
		padding: 10px;
	}

	.come{
	float: none;
    width: 90%;
		margin: 40px auto 0px;
}
	
}

.box_pro ul {
  list-style: none;
  margin: 0px;
	padding-left: 0;
}

.box_pro ul li {
  position: relative;
  padding:5px 0 5px 25px;
  border-bottom: solid 1px #78d4ff;
}

.box_pro ul li::before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  left: 0;
  color: #3bb1f1;
font-size:0.7em;
}

@media screen and (max-width: 640px) {
	.box_pro ul li {
  position: relative;
  padding:5px 0 5px 15px;
 
}
}

.item-box {
  display: flex;
line-height: 1.25;
	width: 100%;;
    margin: auto;
   
}

.item-box>div{
    flex: 1;
	margin:0 10px 10px 0;
    background-color: #fff;
    padding: 20px;
	text-align: left;
	border-radius: 10px;
	line-height: 1.8;
}

.item-box>div span{
		font-size: 0.8em;
}

.item-box>div b{
	    color: #0279c2;
    border-bottom: dotted 2px #7ad5ff;
    padding-bottom: 2px;
	
}

.item-box>div b i{
	margin-right: 2px;
}



.item-box>div img{
	border-radius:0%; margin-bottom: 10px;
}


@media screen and (max-width: 640px) {
	.item-box {
  display: block;
		width: 100%;
   }
	
	.item-box>div{
	text-align: left;
	margin:5px auto 20px;
	padding:10px;
	background-color: #fff;
	font-size:1.2em;
	line-height: 1.8;
	}
	
	.item-box>div span{
		font-size: 0.7em;
		margin-left: 0px;
	}
	
	.item-box>div img{
	margin-bottom: 10px;
	width: 100%;
		
	}
	
}

.doc_come{
	padding: 5px!important; margin:20px 0 5px!important;"
}

@media screen and (max-width: 640px) {
	
	.doc_come{
	padding: 5px!important; margin:0 5px!important;"
}
	
}

.txt_in{
	padding-left: 1em;
  text-indent: -1em;
}


.iframe-wrapper {
position:relative;
width:100%;
height:35vh;
padding-top:55%;
aspect-ratio: 16 / 9;
}

@media screen and (max-width: 820px) {
	
	.iframe-wrapper {
		height:450px;
	}
	
}
 
@media screen and (max-width: 768px) {
	
	.iframe-wrapper {
		height:500px;
	}
	
}

@media screen and (max-width: 640px) {
	
	.iframe-wrapper {
		height:705px;
	}
	
}
.iframe-wrapper iframe {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}