@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;
	/*全体の文字色*/
	background: #eee url(../images/bg.png);
	/*背景色、背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	font-size: 15px;
	/*文字サイズ*/
	line-height: 2;
	/*行間*/
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
}

ul {
	list-style-type: none;
}

ol {
	padding-left: 40px;
	padding-bottom: 15px;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}

iframe {
	width: 100%;
}

.mt20 {
	margin-top: 20px;
}

.indent {
	padding-left: 1em;
}

/* 強調1*/
.bold {
	font-weight: bold;
}

/* 強調2*/
.under_line {
	border-bottom: 2px solid #ff7f18;
}

/* PCで非表示 */
.sp {
	display: none;
}

/* スマホで改行 */
.sp_br {
	display: none;
}

/* スペーサー */
.spacer_ss {
	margin-top: 10px;
}

.spacer_s {
	margin-top: 20px;
}

.spacer_m {
	margin-top: 50px;
}

.box_with_padding {
	padding: 20px;
}

/* 背景色 */
.bg_color01 {
	background-color: #fffadf;
}

/* 角丸 */
.border_radius {
	border-radius: 10px;
}

.object-fit_s {
	width: 100%;
	height: 250px;
	object-fit: cover;
}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	/*リンクテキストの色*/
	transition: 0.5s;
	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

a:hover {
	color: #ff7f18;
	/*マウスオン時の文字色（全体）*/
	text-decoration: none;
	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/* テキストのリンク */
.text_link {
	display: inline;
	color: blue;
}

/* ボタン1 */

a.button01 {
	display: inline-block;
	padding: .2rem 1rem;
	border-radius: .3rem;
	background-color: #da6607;
	color: #fff !important;
	font-weight: bold;
	max-width: 200px;
}

a.button01:hover {
	color: #fff;
	background-color: #ff7f18;
}

/* ボタン2 */
a.button02 {
	display: inline-block;
	padding: .2rem 1rem;
	border-radius: .3rem;
	background-color: #4284f3;
	color: #fff !important;
	font-weight: bold;
}

a.button02:hover {
	color: #fff;
	background-color: #166bfe;
}

/* ボタン3 */


.button_area {
	padding: 2rem 0;
}

/* ボタン 寄付をする */
#sub .button_area {
	padding: 0 0 1rem;
}

#sub a {
	text-decoration: none;
}

#sub .button-2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.1em;
	gap: .5em;
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	border: none;
	border-radius: 5px;
	/* background: #ff550d; */
	background: #4284f3;
	/* background: linear-gradient(16deg, rgba(255, 85, 13, 1) 1%, rgba(253, 147, 48, 1) 100%); */
	color: #fff;
	font-weight: 600;
	font-size: 1.2em;
	transition: .4s;
	line-height: 1;
}

#sub .button-2:hover {
	/* background-color: #ed7f11; */
	background: #085cf8;
}



/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;
	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 2%;
	/*上、左右、下へのボックス内の余白。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/

header {
	padding-bottom: 20px;
}

header #logo {
	border-top: 10px solid #EA5415;
	padding: 30px;
	background-color: #fff;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar ul {
	overflow: hidden;
	width: 100%;
	background: #fff;
	/*ヘッダーの下から0pxの場所に配置*/
	border-top: 1px solid #fff;
	/*上の線の幅、線種、色*/
	font-size: 90%;
}

/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	/*左に回り込み*/
	width: 16.666%;
	/*メニュー幅。今回は５個あるので、100÷5=20。*/
}

nav#menubar ul li a {
	text-decoration: none;
	display: block;
	font-weight: bold;
	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	background-color: #d76b14;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), linear-gradient(#ff7f18, #ef791a);
	/*背景画像の読み込み,グラデーション*/


	text-align: center;
	/*文字をセンタリング*/
	color: #fff;
	/*文字色*/
	border-left: 1px solid #fff;
	/*左側の線の幅、線種、色*/
	padding: 10px 0;
	/*上下、左右へのボックス内の余白*/
	line-height: 1.5;
	/*行間。デフォルトより少し狭くする。*/
}

/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	border-left: none;
	/*左側の線を消す設定*/
}

/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background: #ff7f18 url(../images/bg1.png);
	/*背景色、背景画像の読み込み*/
}

/*英語表記の設定*/
nav#menubar ul li a span {
	display: block;
	font-size: 13px;
	/*文字サイズ*/
	font-weight: normal;
	/*太字を標準に戻す設定。*/
	opacity: 0.8;
	/*透明度80%*/
}

/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}

/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	overflow: hidden;
	padding-bottom: 10px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;
	/*左側に回り込み*/
	margin-bottom: 10px;
	width: 71%;
	/*メインコンテンツ幅*/
	background: #fff;
	/*背景色*/
	padding: 20px;
	/*ボックス内の余白*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	/*見出しの下にとるスペース*/
	color: #fff;
	/*文字色*/
	padding: 3px 20px;
	/*上下、左右への余白*/
	background: #d76b14;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow2.png) no-repeat right center, linear-gradient(#e36601, #c35600);
	/*背景画像の読み込み,グラデーション*/
	box-shadow: 1px 2px 5px #ccc;
	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	/*見出しの下にとるスペース*/
	background: #fff;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#fff, #f4f4f4 49%, #e8e8e8 50%, #fff 100%);
	/*グラデーション*/
	box-shadow: 1px 2px 5px #e2e2e2;
	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	padding: 4px 20px 4px 10px;
	/*上、右、下、左へのボックス内の余白*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
}

/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #d76b14;
	/*左のアクセントラインの幅、線種、色*/
	padding-left: 7px;
	/*ラインと文字の間の余白*/
}

/*段落タグ設定*/
#main p {
	padding: 0px 20px 15px;
	/*上、左右、下への余白*/
}

#main h2+p,
#main h3+p {
	margin-top: -10px;
}

/*段落タグ設定*/
#main a {
	text-decoration: none;
}

/*レイアウトボックス
---------------------------------------------------------------------------*/
.box_container {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.img_flex_box {
	display: flex;
	gap: 1em;
}

.img_flex_box img {
	width: 50%;
}

/*インデント用ボックス
---------------------------------------------------------------------------*/

.indentbox {
	margin-left: 30px;
}


/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list1 {
	overflow: hidden;
	float: left;
	height: 200px;
	/*ボックスの高さ*/
	width: 47%;
	/*ボックスの幅*/
	line-height: 1.6;
	margin-left: 2%;
	margin-bottom: 20px;
}

/*ボックス内の段落タグ設定*/
#main .list1 p {
	padding: 0px;
}

/*ボックス内のh4タグ設定*/
#main .list1 h4 {
	color: #ff7f18;
	/*文字色*/
}

/*写真の設定*/
#main .list1 figure {
	padding: 5px;
	/*写真と枠線との余白設定*/
	margin-bottom: 5px;
	/*画像の下に少し余白を空ける設定*/
	border: 1px solid #CCC;
	/*画像の枠線の幅、線種、色*/
}


/*「もっと詳しく」ボタン設定*/
#main .list1 p.more {
	margin: 10px auto 0;
	width: 100%;
	/*ボタンの幅*/
	text-align: center;
	/*文字を中央に*/
}

#main .list1 p.more a {
	text-decoration: none;
	display: block;
	color: #fff;
	/*文字色*/
	background-color: #900000;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: linear-gradient(#b10000, #900000);
	/*グラデーション*/
	font-size: 11px;
	/*文字サイズ*/
	border-radius: 4px;
	/*各丸のサイズ*/
	padding: 5px 0;
	/*上下、左右へのボタン内の余白*/
}

#main .list1 p.more a:hover {
	background: #d30000;
	/*マウスオン時の背景色*/
}

/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list2 {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

#main .list2 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;
	/*ボックス内の余白*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*マウスオン時*/
#main .list2 a:hover {
	background-color: rgb(255, 250, 214);
	/*背景色*/
	color: #333;
	/*文字色*/
	border-radius: 6px;
	/*角丸のサイズ*/
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list2 a::before {
	display: block;
	content: "詳しく見る ▼";
	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;
	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;
	/*ボックスの下から20pxの場所に配置*/
	background: #00A3D9;
	/*背景色（古いブラウザ用）*/
	background: rgba(0, 163, 217, 0.8);
	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;
	/*文字色*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	border-radius: 4px;
	/*角丸のサイズ*/
	/* width: 60px; */
	/*幅*/
	line-height: 30px;
	/*高さ*/
	text-align: center;
	padding: 2px 10px;
}

#main .list2 a:hover::before {
	background: #00A3D9;
	/*マウスオン時の「→」マークの背景色*/
}

/*ボックス内のh4タグ設定*/
#main .list2 h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

#main .list2-2 h4.accent {
	color: #ea5415;
}

/*ボックス内の写真設定*/
#main .list2 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list2 p {
	padding: 0px;
}

#main .list2 p {
	padding: 0px;
	margin-top: 15px;
}

/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*リンクマウスオン時背景なし詳細ボタン有り*/
#main .list2-1 {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

#main .list2-1 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;
	/*ボックス内の余白*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*マウスオン時*/
#main .list2-1 :hover {
	background-color: rgb(255, 250, 214);
	color: #4b4b4b;
}

/*ボックス内のh4タグ設定*/
#main .list2-1 h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list2-1 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list2-1 p {
	padding: 0px;
}

#main .list2-1 p {
	padding: 0px;
	margin-top: 15px;
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list2-1 a::before {
	content: " 詳細をみる ▼";
	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;
	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;
	/*ボックスの下から20pxの場所に配置*/
	background: #00A3D9;
	/*背景色（古いブラウザ用）*/
	background: rgba(0, 163, 217, 0.8);
	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;
	/*文字色*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	border-radius: 4px;
	/*角丸のサイズ*/
	width: 130px;
	/*幅*/
	line-height: 30px;
	/*高さ*/
	text-align: center;
	padding-left: 3px;
}

#main .list2-1 a:hover::before {
	background: #00A3D9;
	/*マウスオン時の「→」マークの背景色*/
}


/*---------------------------------------------------------------------------*/
/*リンクマウスオン時背景なし詳細ボタン無し*/
#main .list2-2 {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

#main .list2-2 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	color: #00A3D8;
	/* margin: -20px; */
	/*ボックス内の余白*/
	/* padding: 20px; */
	/*ボックス内の余白*/
}

#main .list2-2 a.link_inline {
	display: inline;
}

/*マウスオン時*/
#main .list2-2 a:hover {
	color: orangered;
	/*文字色*/
}

/*ボックス内のh4タグ設定*/
#main .list2-2 h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list2-2 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list2-2 p {
	padding: 0px;
}

#main .list2-2 p {
	padding: 0px;
	margin-top: 15px;
}




/*service.html内の各ブロック お申し込み
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list0 {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

#main .list0 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;
	/*ボックス内の余白*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*マウスオン時*/
#main .list0 a:hover {
	background-color: rgb(255, 250, 214);
	/*背景色*/
	color: #333;
	/*文字色*/
	border-radius: 6px;
	/*角丸のサイズ*/
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list0 a::before {
	content: " お申し込み ▼";
	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;
	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;
	/*ボックスの下から20pxの場所に配置*/
	background: #00A3D9;
	/*背景色（古いブラウザ用）*/
	background: rgba(0, 163, 217, 0.39);
	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;
	/*文字色*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	border-radius: 4px;
	/*角丸のサイズ*/
	width: 150px;
	/*幅*/
	line-height: 30px;
	/*高さ*/
	text-align: center;
	padding-left: 3px;
}

#main .list0 a:hover::before {
	background: #00A3D9;
	/*マウスオン時の「→」マークの背景色*/
}

/*ボックス内のh4タグ設定*/
#main .list0 h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list0 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list0 p {
	padding: 0px;
}

/*service.html内の各ブロック PDF
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list_pdf {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

#main .list_pdf a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;
	/*ボックス内の余白*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*マウスオン時*/
#main .list_pdf a:hover {
	background-color: rgb(255, 254, 247);
	/*背景色*/
	color: #333;
	/*文字色*/
	border-radius: 6px;
	/*角丸のサイズ*/
}

/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list_pdf a::before {
	content: " PDF ▼";
	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;
	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;
	/*ボックスの下から20pxの場所に配置*/
	background: #00A3D9;
	/*背景色（古いブラウザ用）*/
	background: rgba(0, 163, 217, 0.39);
	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;
	/*文字色*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	border-radius: 4px;
	/*角丸のサイズ*/
	width: 60px;
	/*幅*/
	line-height: 30px;
	/*高さ*/
	text-align: center;
	padding-left: 3px;
}

#main .list_pdf a:hover::before {
	background: #00A3D9;
	/*マウスオン時の「→」マークの背景色*/
}

/*ボックス内のh4タグ設定*/
#main .list_pdf h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list0 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list_pdf p {
	padding: 0px;
}

/*publication.html内の各ブロック（※タイプ3）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list3 {
	overflow: hidden;
	float: left;
	width: 47%;
	/*ボックスの幅*/
	line-height: 1.6;
	height: 280px;
	/*ボックスの高さ*/
	margin-left: 2%;
	margin-bottom: 20px;
	color: #333;
}

#main .list3 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	margin: -20px;
	/*ボックス内の余白*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*マウスオン時*/
#main .list3 a:hover {
	background-color: rgb(255, 250, 214);
	/*背景色*/
	color: #333;
	/*文字色*/
	border-radius: 6px;
	/*角丸のサイズ*/
}

/*ボックス内のh4タグ設定*/
#main .list3 h4 {
	font-size: 90%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list3 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list3 p {
	padding: 0px;
}


/*service.html内の各ブロック（※タイプ4）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list4 {
	position: relative;
	overflow: hidden;
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	border-radius: 6px;
	/*角丸のサイズ*/
	margin-bottom: 20px;
	/*ボックスの下に空けるスペース*/
	background: linear-gradient(#fff, rgb(240, 240, 240));
	/*グラデーション*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #fff inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	padding: 10px 20px 20px 20px;
	/*ボックス内の余白*/
}

/*ボックス内のh4タグ設定*/
#main .list4 h4 {
	font-size: 130%;
	line-height: normal;
	color: #1B1F86;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list4 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 40%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list4 p {
	padding: 0px;
}

#main .list4 a {
	color: #00A3D8;
}

/*マウスオン時*/
#main .list4 a:hover {
	color: orange;
	/*文字色*/
}

.list4_inner_box {
	display: flex;
	justify-content: space-between;
}

.list4_img {
	width: 40%;
}

.list4_text {
	width: 55%;
}

.list4_text_inner {
	display: flex;
	flex-direction: column;
	gap: 1em;
}


/*publication.html内の各ブロック（※タイプ5）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list5 {
	overflow: hidden;
	float: left;
	width: 95%;
	/*ボックスの幅*/
	line-height: 1.6;
	height: auto;
	/*ボックスの高さ*/
	margin-left: 2%;
	margin-bottom: 20px;
	color: #333;
}


/*ボックス内のh4タグ設定*/
#main .list5 h4 {
	font-size: 90%;
	line-height: normal;
	color: #535353;
	/*文字色*/
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}

/*ボックス内の写真設定*/
#main .list5 figure img {
	float: left;
	/*画像を左へ回り込み*/
	margin-right: 20px;
	/*画像の右側に空けるスペース*/
	background-color: #fff;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
	width: 25%;
	/*画像の幅*/
	height: auto;
}

/*ボックス内の段落タグ設定*/
#main .list5 p {
	padding: 0px;
}



/*publication.html内のニュースレター設定
---------------------------------------------------------------------------*/

/*「ダウロード」ボタン設定*/
#main .ta1 .pdf {
	margin: 2px auto 0;
	width: 100%;
	/*ボタンの幅*/
	text-align: center;
	/*文字を中央に*/
}

#main .ta1 .pdf a {
	text-decoration: none;
	display: block;
	color: #fff;
	/*文字色*/
	background-color: #727272;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: linear-gradient(#727272, #535353); */
	/*グラデーション*/
	font-size: 11px;
	/*文字サイズ*/
	border-radius: 4px;
	/*各丸のサイズ*/
	padding: 8px 4px;
	/*上下、左右へのボタン内の余白*/
}

#main .ta1 .pdf a:hover {
	background: #535353;
	/*マウスオン時の背景色*/
}

/*about.html内 写真の上のメッセージ
---------------------------------------------------------------------------*/

#main .message {
	height: 230px;
	font-size: 90%;
	line-height: 150%;
	text-align: left;
	/*文字をセンタリング*/
	padding: 3px 0px;
	/*左から、上下、左右への余白*/
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0) 100%), url(../images/kobe-2.jpg);
	background-size: cover;
	color: #fff;
	/*文字色*/
	padding: 20px;
	/*上下、左右へのボタン内の余白*/
	margin: 0 0 10px 0;

}




/*ホットライン　ブロック  
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#hotline {
	float: left;
	/*左側に回り込み*/
	/*	height: 1250px; */
	margin-bottom: 10px;
	width: 71%;
	/*メインコンテンツ幅*/
	background: #fff;
	padding: 20px;
	/*ボックス内の余白*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
}


/*hotlineコンテンツのh2タグの設定*/
#hotline h2 {
	clear: both;
	margin-bottom: 20px;
	/*見出しの下にとるスペース*/
	color: #fff;
	/*文字色*/
	padding: 3px 20px;
	/*上下、左右への余白*/
	background: #d76b14;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow2.png) no-repeat right center, linear-gradient(#e36601, #c35600);
	/*背景画像の読み込み,グラデーション*/
	box-shadow: 1px 2px 5px #ccc;
	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
}

/*hotlineコンテンツのh3タグの設定*/
#hotline h3 {
	clear: both;
	margin-bottom: 20px;
	/*見出しの下にとるスペース*/
	background: #fff;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#fff, #f4f4f4 49%, #e8e8e8 50%, #fff 100%);
	/*グラデーション*/
	box-shadow: 1px 2px 5px #e2e2e2;
	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	padding: 4px 20px 4px 10px;
	/*上、右、下、左へのボックス内の余白*/
	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/
}

/*hotlineコンテンツのh3タグの１文字目への設定*/
#hotline h3::first-letter {
	border-left: 5px solid #00a3d9;
	/*左のアクセントラインの幅、線種、色*/
	padding-left: 7px;
	/*ラインと文字の間の余白*/
}

/*段落タグ設定*/
#hotline p {
	padding: 0px 20px 15px;
	/*上、左右、下への余白*/
}

#hotline h2+p,
#hotline h3+p {
	margin-top: -10px;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;
	/*右側に回り込み*/
	width: 23%;
	;
	/*サブコンテンツ幅22％*/
	margin-bottom: 30px;
}

/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 1.5em;
	line-height: 1.5;
	text-align: center;
	/*文字をセンタリング*/
	padding: 6px 0px;
	/*左から、上下、左右への余白*/
	background: #7d7d7d;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: #00a3d9;
	color: #fff;
	/*文字色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	font-size: 105%;
	font-weight: bold;
	border-top: 1px solid #CCC;
	/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;
	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;
	/*左側の線の幅、線種、色*/
	margin-bottom: 1em;
	/*メニューブロックの下にあけるスペース*/
}

/*メニュー１個ごとの設定*/
#sub .submenu li a {
	color: #1B1F86;
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #CCC;
	/*下側の線の幅、線種、色*/
	padding: .6em;
	/*上下、左右へのボックス内の余白*/
	background: #fff;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
}

/*マウスオン時の設定*/
#sub .submenu li a:hover {
	background: rgb(255, 250, 214);
	/*背景色*/
	color: #1B1F86;
	/*マウスオン時の文字色*/
	box-shadow: none;
	/*内側への影をリセットする*/
}

/*サブコンテンツ　hotline
---------------------------------------------------------------------------*/
#sub .hotline h2 {
	clear: both;
	margin-bottom: 0px;
	/*見出しの下にとるスペース*/
	color: #fff;
	/*文字色*/
	padding: 1em;
	/*上下、左右への余白*/
	background: linear-gradient(#00af00, #009c00);
	border-radius: 5px 5px 0 0;
	font-size: 1.2em;
}

/*サブコンテンツ　ボックス１
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box1 h2 {
	font-size: 1.7em;
	line-height: 160%;
	text-align: center;
	/*文字をセンタリング*/
	padding: 10px 0;
	/*左から、上下、左右への余白*/
	background: #009D00;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background: #1f9f00;
	background-image: url(../images/rainbow.jpg);
	background-size: cover;
	background-position: center bottom;
	color: #fff; */
	/*文字色*/
	border-radius: 5px 5px 0 0;
}

#sub .box1 {
	overflow: hidden;
	font-size: 11px;
	/*文字サイズ*/
	/* border-bottom: 1px solid #CCC; */
	/*下の線の幅、線種、色*/
	/* border-left: 1px solid #CCC; */
	/*左の線の幅、線種、色*/
	/* border-right: 1px solid #CCC; */
	/*右の線の幅、線種、色*/
	line-height: 1.5;
	/*行間*/
}

#sub .box1 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
}

#sub .box1 a:hover {
	background: rgb(255, 250, 214);
	/*マウスオン時のボックス色*/
	color: #000000;
	/*マウスオン時の文字色*/
}

#sub .box1 h4 {
	font-size: 150%;
	color: #5f5e5e;
}

/*写真の設定*/
#sub .box1 figure {
	float: left;
	/*左に回り込みさせる設定*/
	width: 30%;
	/*画像の幅*/
	margin-right: 5px;
}

.image_m {
	float: left;
	width: 60%;
	margin-right: 20px;
}

/*サブコンテンツ　ボックス２
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box2 h2 {
	font-size: 1.5em;
	text-align: center;
	/*文字をセンタリング*/
	padding: 10px 0px;
	/*左から、上下、左右への余白*/
	background: #5f5e5e;
	color: #fffFFF;
	/*文字色*/
}

#sub .box2 {
	overflow: hidden;
	font-size: 11px;
	/*文字サイズ*/
	/* border-bottom: 1px solid #CCC; */
	/*下の線の幅、線種、色*/
	/* border-left: 1px solid #CCC; */
	/*左の線の幅、線種、色*/
	/* border-right: 1px solid #CCC; */
	/*右の線の幅、線種、色*/
	line-height: 1.5;
	/*行間*/
	border-radius: 5px 5px 0 0;
}

#sub .box2 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
}

#sub .box2 a:hover {
	background: rgb(255, 250, 214);
	/*マウスオン時のボックス色*/
	color: #000000;
	/*マウスオン時の文字色*/
}

#sub .box2 h4 {
	font-size: 150%;
	color: #5f5e5e;
	/*マウスオン時の文字色*/
}

/*写真の設定*/
#sub .box2 figure {
	float: left;
	/*左に回り込みさせる設定*/
	width: 20%;
	/*画像の幅*/
	margin: 2px 5px;
}

/*サブコンテンツ　ボックス３
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box3 h2 {
	font-size: 160%;
	line-height: 160%;
	text-align: center;
	/*文字をセンタリング*/
	padding: 8px 0px;
	/*左から、上下、左右への余白*/
	background: #7d7d7d;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: #A6A49D;
	background-image: url(../images/rainbow.jpg);
	background-size: cover;
	background-position: center top;
	color: #fff;
	/*文字色*/
	height: 28px;
}

#sub .box3 {
	overflow: hidden;
	font-size: 11px;
	/*文字サイズ*/
	border-bottom: 1px solid #CCC;
	/*下の線の幅、線種、色*/
	border-left: 1px solid #CCC;
	/*左の線の幅、線種、色*/
	border-right: 1px solid #CCC;
	/*右の線の幅、線種、色*/
	line-height: 1.5;
	/*行間*/
}

#sub .box3 a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 10px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
}

#sub .box3 a:hover {
	background: rgb(255, 250, 214);
	/*マウスオン時のボックス色*/
	color: #000000;
	/*マウスオン時の文字色*/
}

#sub .box3 h4 {
	font-size: 150%;
	color: #5f5e5e;
	/*マウスオン時の文字色*/
}

/*写真の設定*/
#sub .box3 figure {
	float: left;
	/*左に回り込みさせる設定*/
	width: 20%;
	/*画像の幅*/
	margin: 2px 5px;
}

/*下層 NEW 写真とテキストのボックス設定
----------------------------*/

.f_image {
	width: 100%;
}

.f_container {
	display: flex;
	gap: 20px;
}

#main .f_container p {
	margin-top: 5px;
	line-height: 2;
}

.f_image_box {
	width: 50%;
	text-align: center;
}

.f_text_box {
	width: 50%;
	line-height: 1.5;
}

.contact_text {
	line-height: 1.5;
	margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid #999;
}

.item {
	display: inline-block;
	color: #ef791a;
	min-width: 10em;
	border: 1px solid #ef791a;
	border-radius: 50px;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: .5em;
	margin-top: 20px;
	padding: 0 2em;
	font-weight: bold;
}

.contact_item {
	display: inline-block;
	font-weight: bold;
	margin-right: 1em;
	width: 6em;
	text-align-last: justify;
}

.contact_data {
	display: flex;
	gap: 1em;
	line-height: 1.5;
	margin-top: .5em;
}

#main .list2-2 a.color_link {
	display: inline-block;
	color: #00A3D8;
	margin-right: 10px;
}

#main .list2-2 a.color_link:hover {
	color: #ef791a;
}


/*トップページ内「更新情報・お知らせ」と更新履歴のページ　ブロック  
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	margin-bottom: 10px;
	padding-left: 1em;
	padding-bottom: 7px;
	border-bottom: 1px solid #efefef;
	/*下線の幅、線種、色*/
	display: flex;
	flex-wrap: wrap;
}

/*日付設定*/
#new dt {
	display: block;
	width: 15%;
	/*幅*/
	color: #534e40;
	/*文字色*/
	font-weight: normal;
	/*太字にする設定 bold*/
	/* letter-spacing: 0.1em; */
	font-size: 90%;
	/* サイズ小さめ */
}

/*記事設定*/
#new dd {
	width: 75%;
}

#new dd a {
	text-decoration: none
}

/*トップページ内 お知らせの吹き出し
---------------------------------------------------------------------------*/

#new2 h5 {
	position: relative;
	padding: 0.5rem 1rem;
	color: #094;
	border-radius: 10px;
	background: #fff;
	font-size: 18px;
	border: 4px solid #094;
}

#new2 h5:after {
	position: absolute;
	bottom: -12px;
	left: 1em;
	width: 0;
	height: 0;
	content: '';
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: #094 transparent transparent transparent;
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;
	/*上下、左右への余白*/
}

/*質問の設定*/
.faq dt {
	color: #ff7f18;
	/*文字色*/
	padding-top: 15px;
	font-weight: bold;
	/*太字にする設定*/
}

.faq dt a {
	color: #ff7f18;
	/*文字色*/
}

/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #dbdbdb;
	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}

.ta1,
.ta1 td,
.ta1 th {
	border: 1px solid #CCC;
	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;
	/*ボックス内の余白*/
	word-break: break-all;
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #fff;
	/*文字色*/
	background: #333;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#4b4b4b, #333);
	/*グラデーション*/
}

/*テーブル内の左側の見出し部分*/
.ta1 th {
	/*	width: 180px;*/
	width: 30%;
	text-align: center;
	background: #e2e2e3;
	/*背景色*/
}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}


/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin: 0 auto 20px;
}

.ta2,
.ta2 td,
.ta2 th {
	border: 1px solid #CCC;
	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;
	/*ボックス内の余白*/
	word-break: break-all;
	background: #fff;
}

/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;
	color: #fff;
	/*文字色*/
	background: #333;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: linear-gradient(#4b4b4b, #333);
	/*グラデーション*/
}

/*テーブル内の左側の見出し部分*/
.ta2 th {
	width: 150px;
	text-align: center;
	background: #e2e2e3;
	/*背景色*/
}

/*左側ボックスに画像を入れた場合の設定*/
.ta2 th img {
	width: 100%;
}


/*submitボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	padding: 10px 30px;
	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;
	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);
	/*グラデーション*/
	font-size: 16px;
	/*文字サイズ*/
	border: 1px solid #ccc;
}

/*マウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #fff;
	/*背景色*/
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #fff;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}

h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

.option2 {
	font-size: 10px;
	color: #fff;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transform: rotate(45deg) translate(35px);
	transform: rotate(45deg) translate(35px);
}

h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

body .nav-fix-pos-pagetop a {
	display: none;
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 100;
	animation-name: scroll;
	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;
	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;
	/*アニメーションの完了後、最後のキーフレームを維持する*/
	width: 50px;
	/*幅*/
	line-height: 50px;
	/*高さ*/
	position: fixed;
	/*固定表示*/
	bottom: 90px;
	/*下から90pxの場所に配置*/
	right: 4%;
	/*右から4%の場所に配置*/
	background: #000;
	/*背景色（古いブラウザ用）*/
	background: rgba(0, 0, 0, 0.6);
	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;
	/*文字色*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
	/*マウスオン時の背景色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #5f5e5e;
	/*背景色*/
	color: #fff;
	/*文字色*/
	font-size: 80%;
	/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*グーグルマップ
---------------------------------------------------------------------------*/

.google-maps {
	position: relative;
	padding-bottom: 75%;
	/* 縦横比*/
	height: 0;
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	margin-bottom: 30px;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	/*文字色*/
	background: #727272;
	/*背景色*/
}

footer a {
	text-decoration: none;
	color: #fff;
}

footer a:hover {
	color: #fff;
}

footer .pr {
	display: block;
	font-size: 80%;
}


/*フォント
---------------------------------------------------------------------------*/

.green {
	color: #01BE00;
}

.orange {
	color: #ff6600;
	;
	;
}

.blue {
	color: #00A3D8;
	font-weight: bold;
}

.darkblue {
	color: #1B1F86;
	font-weight: bold;
}

/*news　タイトル と　ボックス
---------------------------------------------------------------------------*/
#info h5 {
	padding: .1em .5em;
	margin-top: 15px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	font-size: 12pt;
	color: #1B1F86;
}

#info .box {
	padding: 10px 10px 10px 5px;
	width: 45%;
	height: 360px;
	float: left;

}


/*境界線スタイル
---------------------------------------------------------------------------*/

hr.style1 {
	border-top: 1px solid #8c8b8b;
}

hr.style2 {
	border-top: 3px double #8c8b8b;
}

hr.style3 {
	border-top: 1px dashed #8c8b8b;
}

hr.style4 {
	border-top: 1px dotted #8c8b8b;
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}

hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}

.mb15,
.mb1em {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 1em !important;
}

.clear {
	clear: both;
}

ul.disc {
	padding: 0em 25px 20px;
	list-style: disc;
}

.color1,
.color1 a {
	color: #ff7f18;
}

.pr {
	font-size: 10px;
}

.wl {
	width: 96%;
}

.ws {
	width: 50%;
}

.c {
	text-align: center;
}

.r {
	text-align: right;
}

.l {
	text-align: left;
}

img.fr {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.big1 {
	font-size: 20px;
}

.mini1 {
	font-size: 11px;
	display: inline-block;
	line-height: 1.5;
}

.sh {
	display: none;
}

.small {
	font-size: 80%;
}

.large {
	font-size: 110%;
}




/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px) {

	/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/

	/*各ボックスの設定*/
	#main .list1 {
		height: 340px;
		/*ボックスの高さ*/
	}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {

	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	/*ヘッダーブロック*/
	header #logo {
		padding: 0 0 20px 0;
		background-color: #fff;
		border-top: 0px solid #EA5415;
	}

	/*メインメニュー
---------------------------------------------------------------------------*/
	/*アニメーションのフレーム設定。全100コマアニメーション。透明度(opacity)0%から透明度100%にする指定。*/
	@keyframes menu1 {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	/*スマホ用メニューブロック*/

	#menubar-s {
		display: block;
		overflow: hidden;
		/* position: absolute; */
		position: fixed;
		top: 0px;
		z-index: 10;
		border-top: 1px solid #fff;
		/*上の線の幅、線種、色*/
		width: 100%;
		/*幅*/
		height: 100vh;
		/*高さ*/
		animation-name: menu1;
		/*上のkeyframesの名前*/
		animation-duration: 0.5S;
		/*アニメーションの実行時間。0.5秒。*/
		animation-fill-mode: both;
		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
		font-size: 18px;
		/*文字サイズ*/
		font-weight: bold;
		background-color: #fff;
	}

	/*メニュー１個あたりの設定*/
	#menubar-s li a {
		display: block;
		text-decoration: none;
		padding: 10px 5%;
		/*上下、左右へのメニュー内の余白*/
		border-bottom: 1px solid #fff;
		/*下の線の幅、線種、色*/
		background: #f4730b;
		/*背景色*/
		color: #fff;
		/*文字色*/
	}

	/*日本語の飾り文字*/
	#menubar-s a span {
		/* display: block; */
		display: inline-block;
		margin-left: 20px;
		font-size: 14px;
		/*文字サイズ*/
		color: rgb(255, 250, 214);
		/*文字色*/
	}

	/*PC用メニューを非表示にする*/
	#menubar {
		display: none;
	}

	/* 言語ボタン選択エリア */

	.menubar-s_title {
		text-align: center;
		font-weight: bold;
		font-size: 18px;
		color: #888;
		margin-top: 20px;
	}

	.menubar-s_title span {
		display: block;
		font-size: 12px;
	}

	.lang_btn_area {
		width: 100%;
		padding: 10px 0px 10px;
		gap: 10px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		background-color: #fff;
		margin: 0 auto;
	}

	.lang_btn {
		width: 40%;
		height: 1.5em;
		line-height: 1.5em;
		display: flex;
		justify-content: center;
		font-size: 14px;
		font-weight: bold;
		padding: 10px 0;
		background-color: #888;
		border-radius: 3px;
		transition: 0.4s;
	}

	.lang_btn:hover {
		background-color: #666;
	}

	.lang_btn a {
		color: #fff;
		text-decoration: none;
	}



	/*３本バーアイコン設定
---------------------------------------------------------------------------*/
	/*３本バーブロック*/
	#menubar_hdr {
		display: block;
		border: 1px solid #fff;
		/*枠線の幅、線種、色*/
	}

	/*アイコン共通設定*/
	#menubar_hdr.close,
	#menubar_hdr.open {
		position: fixed;
		z-index: 11;
		width: 50px;
		/*幅*/
		height: 50px;
		/*高さ*/
	}

	/*三本バーアイコン*/
	#menubar_hdr.close {
		background: #727272 url(../images/icon_menu.png) no-repeat center top/50px;
		top: 15px;
		/*上から15pxの場所に配置*/
		right: 5%;
		/*右から5%の場所に配置*/
	}

	/*閉じるアイコン*/
	#menubar_hdr.open {
		background: #727272 url(../images/icon_menu.png) no-repeat center bottom/50px;
		top: 15px;
		/*上から15pxの場所に配置*/
		right: 5%;
		/*右から5%の場所に配置*/
	}

	/*main,subコンテンツ
---------------------------------------------------------------------------*/
	#main,
	#sub {
		float: none;
		width: auto;
	}

	#main {
		padding: 10px 10px 20px 10px;
	}

	.box_with_padding {
		padding: 0;
	}

	/* 更新情報リスト 
---------------------------------------------------------------------------*/
	#new dt {
		float: none;
		width: 100%;
	}

	#new dd {
		padding-left: 0;
		width: 100%;
	}

	/*hotline,subコンテンツ
---------------------------------------------------------------------------*/
	#hotline,
	#sub {
		float: none;
		width: auto;
	}



	/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
	/*メニュー１個ごとの設定*/
	#sub .submenu li a {
		padding: 10px;
		/*ボックス内の余白*/
	}

	/*サブコンテンツ　製品情報ボックス
---------------------------------------------------------------------------*/
	/*ボックス１個あたりの設定*/
	#sub .box1 {
		font-size: 11px;
		/*文字サイズ*/
	}

	/*写真の設定*/
	#sub .box1 figure {
		width: 10%;
		/*画像の幅*/
	}

	/*その他
---------------------------------------------------------------------------*/
	body.s-n #sub,
	.m-n {
		display: none;
	}

	.sh {
		display: block;
	}

	/* スマホで非表示 */
	.pc {
		display: none;
	}

	.sp {
		display: inline;
	}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

	/*全体の設定
---------------------------------------------------------------------------*/
	body {
		font-size: 16px;
		/*文字サイズ*/
		line-height: 1.7;
		/*行間*/
	}

	/*ヘッダー（サイト名ロゴが入ったブロック）
	---------------------------------------------------------------------------*/
	/*ヘッダーブロック*/


	/*ロゴ表示なし*/
	/*３本バーアイコン設定
---------------------------------------------------------------------------*/
	/*アイコン共通設定*/
	#menubar_hdr.close,
	#menubar_hdr.open {
		width: 40px;
		/*幅を少し小さく再設定*/
		height: 40px;
		/*高さを少し小さく再設定*/
	}

	/*三本バーアイコン*/
	#menubar_hdr.close {
		background-size: 40px;
		/*サイズだけ少し小さく再設定*/
	}

	/*閉じるアイコン*/
	#menubar_hdr.open {
		background-size: 40px;
		/*サイズだけ少し小さく再設定*/
	}

	/* スマホで改行 */
	.sp_br {
		display: block;
	}

	/*mainコンテンツ
---------------------------------------------------------------------------*/
	#main h2,
	#main h3 {
		font-size: 110%;
		padding-left: 10px;
		padding-right: 10px;
	}

	/*段落タグ設定*/
	#main p {
		padding: 0px 10px 15px;
		/*上、左右、下への余白*/
	}

	/*レイアウトボックス
---------------------------------------------------------------------------*/

	.img_flex_box {
		flex-direction: column;
	}

	.img_flex_box img {
		width: 100%;
	}

	/*service.html内の各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
	/*各ボックスの設定*/
	#main .list1 {
		float: none;
		height: auto;
		/*ボックスの高さ*/
		width: auto;
		/*ボックスの幅*/
		margin-left: 0;
	}

	/*service.html内の各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
	/*各ボックスの設定*/
	#main .list2,
	#main .list2-2 {
		padding: 10px 10px 20px 10px;
		/*ボックス内の余白*/
	}

	#main .list2 a {
		margin: -10px;
		/*ボックス内の余白*/
		padding: 10px;
		/*ボックス内の余白*/
	}

	/*ボックスにリンク指定がされた場合に出る「→」マーク*/
	#main .list2 a::before {
		right: 10px;
		/*ボックスの右から10pxの場所に配置*/
		bottom: 10px;
		/*ボックスの下から10pxの場所に配置*/
	}

	#main .list2 h4 {
		font-size: 110%;
	}

	/*list4のレスポンシブ
---------------------------------------------------------------------------*/

	.list4_inner_box {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.list4_img {
		width: 100%;
	}

	.list4_text {
		width: 100%;
	}



	/*hotlineコンテンツ
---------------------------------------------------------------------------*/
	#hotline {
		height: auto;
	}

	#hotline h2,
	#hotline h3 {
		font-size: 14px;
		padding-left: 10px;
		padding-right: 10px;
	}

	/*段落タグ設定*/
	#hotline p {
		padding: 0px 10px 15px;
		/*上、左右、下への余白*/
	}


	/*サブコンテンツ　
---------------------------------------------------------------------------*/
	/*写真の設定*/
	#sub .box1 figure {
		width: 20%;
		/*画像の幅*/
	}

	/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
	/*ブロック全体の設定*/
	#new dl {
		padding: 0px 10px;
	}


	/*ボックス内の写真設定
---------------------------------------------------------------------------*/
	.image_m {
		width: 100%;
		margin-right: 0px;
	}

	/* 旧設定用 */
	#main .list4 figure img.image_m {
		margin-right: 0px;
		width: 100%;
	}

	/*写真とテキストのボックス設定（スマホ）
	----------------------------*/

	.f_container {
		flex-direction: column;
	}

	.f_image_box {
		width: 100%;
	}

	.f_text_box {
		width: 100%;
	}

	/*項目
		----------------------------*/
	.contact_data {
		flex-direction: column;
		gap: 0.2em;
	}


	/*テーブル（ta1）
---------------------------------------------------------------------------*/
	/*ta1設定*/
	.ta1,
	.ta1 td,
	.ta1 th {
		padding: 5px;
		/*ボックス内の余白*/
	}

	/*ta1の左側ボックス*/
	.ta1 th {
		width: 30%;
	}

	/*テーブル（ta2）
---------------------------------------------------------------------------*/
	/*ta2設定*/
	.ta2,
	.ta2 td,
	.ta2 th {
		padding: 5px;
		/*ボックス内の余白*/
	}

	/*ta2の左側ボックス*/
	.ta2 th {
		width: 30%;
	}



	/*テーブル(line)
---------------------------------------------------------------------------*/
	table.table_line {
		width: 100%;
		border-collapse: collapse;
		border: solid 1px #bbbbbb;
		padding: 8px 4px 8px 4px;
	}

	td.table_head {
		border-collapse: collapse;
		border: solid 1px #bbbbbb;
		padding: 12px 8px 12px 8px;
		background-color: #fff8e3;
		width: 80px;
	}

	td.table_left {
		border-collapse: collapse;
		border: solid 1px #bbbbbb;
		padding: 8px 4px 8px 4px;
		background-color: #fff8e3;
		width: 30%;
	}

	td.table_right {
		border-collapse: collapse;
		border: solid 1px #bbbbbb;
		padding: 8px 4px 8px 4px;
		background-color: #ffffff;
		width: 70%;
	}

	td.table_line {
		width: auto;
		border-collapse: collapse;
		border: solid 1px #bbbbbb;
		padding: 12px 8px 12px 8px;
	}

	/*その他
---------------------------------------------------------------------------*/
	.ws,
	.wl {
		width: 94%;
	}

	.big1 {
		font-size: 16px;
	}

	img.fr,
	img.fl {
		float: none;
		margin: 0;
		width: 100%;
	}

	/* ボタン 寄付で応援する */
	#sub .button-2 {
		position: fixed;
		flex-direction: row;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 95%;
		padding: 1.2em 1em;
		font-size: 1.5em;
		background-color: #1977F2;
		opacity: .9;
	}

}