@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	text-shadow: 1px 1px 1px #ddf;	 /*影文字*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background-image: url(../images/background_siro.png); width: 100%;
	/*background: #ccc;	/*背景色*/*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: orange;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:hover {
	color: skyblue;			/*マウスオン時の文字色*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 400px;
	background-size:cover;
	background-image: url(../images/top_back.png);
	background-position: center;
	overflow: auto;
	position: relative;
	animation-name: opa1;
	animation-delay: 0.1S;
	animation-duration: 1.3S;
	animation-fill-mode: both;
}

/*ロゴ画像*/
header #logo img {
	display: block;
	width: 20%;	/*画像の幅*/
	position: absolute;
	left: 30%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 20%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
}

header #logo02 img {
	display: block;
	width: 50%;	/*画像の幅*/
	position: absolute;
	left: 25%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 25%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	animation-name: opa1;
	animation-delay: 0.5S;
	animation-duration: 0.5S;
	animation-fill-mode: both;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	position: absolute;
	bottom: 10%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: center;
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;
	margin: 0 %;
	animation-name: opa1;
	animation-delay: 1.0S;
	animation-duration: 1.0S;
	animation-fill-mode: both;
}
#menubar li a {
	text-decoration: none;
	display: block;
	text-align: center;
	width: 150px;	/*メニューの幅*/
	color: #fff;	/*文字色*/
	margin: 0px;
	border-radius: 30px;
	background-color: #3388aa;
	padding-bottom: 2px;	/*下線と文字の間にとる余白*/
}
/*マウスオン時の指定*/
#menubar li a:hover {
	text-decoration: underline;
	letter-spacing: 0.1em;			/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
	background-color: #55aabb;
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: auto;
	padding: 50px 3%;
}
#contents section + section {
	padding-top: 50px;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 20px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #000;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #333;	/*枠線の幅、線種、色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #111;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}

.list img{
	float: left;
	width: 20%;
	margin-right: 1.0em;
	border-radius:20px;
}

.list h4{
	font-size: 2.0em;
	color: #005578;
	text-decoration: underline;
	margin-bottom: 10px;
	font-weight: bold;
}

.list hr{
	background-image: url(../images/line.png);
	border: 0px;
	height: 20px;
	margin-left: 20%;
}

/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #111;
}


/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width:80%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 30%;			/*幅*/
	 background-color: rgba(230, 230, 230, 0.562);
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

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

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border: 1px solid #666;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #fcee21;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 30px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}




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

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 30%;	/*画像の幅*/
	left: 35%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

}



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

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo02 img {
	width: 90%;	/*画像の幅*/
	left: 5%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	font-size: 12px;
	font-size: 2.93vw;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;	/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*h4見出しの設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 35px;
}
ol {
	padding: 0 0px 20px 35px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 18px;letter-spacing: normal;}


}

/*class一覧
---------------------------------------------------------------------------*/
.fontinfo {font-size: 2.0em; color:#191970; text-decoration: underline; font-weight: bold; text-shadow: 0px 0px 0px #ddf;	 /*影文字*/}
/*画面幅スマホの追加指定*/
@media (max-width: 500px) {
	.fontinfo {font-size: 1.5em; color:#191970; text-decoration: underline; font-weight: bold; text-shadow: 0px 0px 0px #ddf;	 /*影文字*/
	}
}
.hrmargin{margin-top:50px; margin-bottom: 50px; }



/*スライドショーメイン画像
---------------------------------------------------------------------------*/
.mainimg-image2-slide-parts * {margin: 0;padding: 0;}
.mainimg-image2-slide-parts {width: 100%;position: relative;}
.mainimg-image2-slide-parts img {display: block;width: 100%;height: 100%;}
.mainimg-image2-slide-parts .slide-parts {display: block;width: 100%;height: 100%;}
.mainimg-image2-slide-parts .slide-parts img {width: 100%;height: 100%;object-fit: cover;object-position: center;}

/*テキストと画像全体を囲むブロック*/
.mainimg-image2-container {
	margin: var(--content-space-l);	/*ブロックの外側にスペースを空ける。theme.cssのcontent-space-lを読み込みます。*/
	position: relative;
	overflow: auto;
}

/*画面幅500px以上の追加指定*/
@media (min-width:500px) {
	.mainimg-image2-container {
		display: flex;
		align-items: center;
	}
}
	
/*画面幅スマホの追加指定*/
@media (max-width:500px) {
	.mainimg-image2-container {
		display: block;
		overflow: visible;
	}
}

/*テキストブロック*/
.mainimg-image2-container .text-parts {
	padding: 1rem;	/*ブロック内の余白。１文字分。*/
	text-shadow: 1px 1px 1px #ddf;	 /*影文字*/
	background-color: rgba(255, 255, 200, 0.2);
	border-radius: 30px;
}

/*画面幅500px以上の追加指定*/
@media (min-width:500px) {
	.mainimg-image2-container .text-parts {
		width: auto;top: auto;left: auto;transform: none;text-align: left;padding: 0;
	}
}
	
/*画面幅スマホの追加指定*/
@media (max-width: 500px) {
	.mainimg-image2-container .text-parts {
		display: block;
		width: 90vw;
	}
}


/*メイン画像*/
.mainimg-image2-slide-parts {
	border-radius: 3vw;	/*角丸のサイズ。お好みで。*/
	overflow: auto;
	aspect-ratio: 1.8;	/*正方形にする。画像の比率そのままがよければこの１行を削除。*/
}

/*画面幅500px以上の追加指定*/
@media (min-width:500px) {
	.mainimg-image2-slide-parts {
		margin-left: auto;	/*右によせる*/
		width: 50vw;		/*幅50%*/
	}
}

/*画面幅スマホの追加指定*/
@media (max-width: 500px) {
	.mainimg-image2-slide-parts {
		display: block;
		margin-left: 5%;
		width: 80vw;
	}
}	


/*３枚の画像の共通設定*/
.mainimg-image2-slide-parts .slide-parts {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。１枚が表示される時間はjsで指定できます。*/
	overflow: hidden;
}


/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.mainimg-image2-slide-parts .slide-parts {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.mainimg-image2-slide-parts .slide-parts.active {
    pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}


/*現在表示中（インジケーター）のボタン
---------------------------------------------------------------------------*/
/*全体*/
.mainimg-image2-slide-parts .slide-indicators {
    text-align: center;
	position: absolute;
	z-index: 3;
	width: 100%;
	bottom: 2vw;	/*ボタンの配置場所*/
	left: 0px;
}
/*１個あたり*/
.mainimg-image2-slide-parts .indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;	/*未アクティブ時のボタン色*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.mainimg-image2-slide-parts .indicator.active {
    background: #d00000;	/*アクティブ時のボタン色*/
}

.fadein {
  width: 100%;
  margin-left: auto;
  /* スクロールに応じてアニメーション */
  animation-name: fadeIn;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}

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

/*openclose1
---------------------------------------------------------------------------*/
/*質問*/
.others-openclose1-parts {
	display: flex;
	align-items: flex-start;
	border-radius: 30px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background-color:rgba(200, 220, 200, 0.6);
	border: 1px solid var(--border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのborder-colorを読み込みます。*/
	padding: 1rem;		/*ブロック内の余白。１文字分。*/
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.icon img{
	width: 1.5em;
	margin-right: 5px;
	float: left;
}

/*アイコン（閉じている場合）*/
.others-openclose1-parts::before {
	font-weight: bold;
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
}

/*回答*/
.others-openclose1-parts + * {
	padding: 1rem;
	background-color:rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	margin-bottom: 1rem;
}

