@charset "shift_jis";

/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

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

body {
	margin: 0px;padding: 0px;
	color: #222;	/*全体の文字色*/
	font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff url(../gif/i4b1.gif);	/*背景色*/
	-webkit-text-size-adjust: none;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,figure,form,input,textarea,select {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;}

iframe {width: 100%;}
table, tr, td {
    font-size: 18px;
    line-height: 145%;
    border-collapse:collapse;
}

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

a:visited {
    color: #006666;
    text-decoration:none;
}

a:hover {
    color: #5f9a4f;
    text-decoration:underline;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0px auto 0px;	/*上、左右、下への余白。autoにすると中央に配置されます。*/
	max-width: 1100px;	/*最大幅*/
	padding: 0 3%;		/*ボックス内の余白。上下、左右への設定。ウィンドウ幅を狭くした時にブラウザ枠とHP枠の間にとる余白です。*/
}

/*ヘッダーブロック*/
header {
	text-align: center;
	padding: 20px;
}
/*ロゴ画像*/
header #logo img {
	width: 25%;		/*画像の幅*/
}

.contents2 {
	clear: both;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	height: 60px;	/*高さ*/
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	border-radius: 20px;	/*角丸のサイズ*/
	margin-bottom: 40px;	/*下のコンテンツとの間にあけるスペース*/
	background: url(../gif/i4g2.gif);	/*背景画像の読み込み。*/
	position: relative;
	overflow: hidden;
}
#top #menubar {
	margin-bottom: 0px;	/*下のコンテンツとの間にあけるスペース*/
}

#menubar ul {
	margin: 0px auto 0px;	/*上、左右、下への余白。autoにすると中央に配置されます。*/
	width: 100%;
	background: url(../gif/i4g2.gif);
		/*背景画像の読み込み*/
	padding: 10px 50px;	/*上下、左右への余白*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
}
#menubar a {
	display: block;
	text-decoration: none;
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズを大きくする設定。全体の文字サイズは冒頭のbodyで設定(14px)しています。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*テキストの影。右へ、下へ、広げる幅、rgbaは色の事で0,0,0は黒で0.2は透明度20%の事。*/
	background: url(../png/icon_heart.png) no-repeat 15px bottom;	/*ハートアイコンの読み込み。リピートせず(no-repeat)、左から15pxの場所に配置、画像の下半分(bottom)を表示。*/
	line-height: 40px;	/*高さ*/
	padding: 0px 20px 0px 40px;	/*上、右、下、左への余白*/
	margin-right: 5px;	/*右側にとるメニュー外側の余白。currentの隣のメニューのマウスオン時にくっつかないようにする為。*/
}
/*現在表示中(#menubar li.current a)の設定*/
#menubar li.current a {
	text-shadow: none;
	background: #fff url(../png/icon_heart.png) no-repeat 15px top;	/*ハートアイコンの読み込み。リピートせず(no-repeat)、左から15pxの場所に配置、画像の上半分(top)を表示。*/
	color: #5f9a4f;	/*文字色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
#toendarticle {
	display: none;
}

/*コンテンツ（ヘッダーより下の大きなブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 20px;	/*ボックス内の余白*/
	background: url(../gif/i4b3.gif);	/*背景の水玉画像の読み込み*/
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);	/*ボックスの影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	overflow: hidden;
	background: url(../gif/i4pu.gif);
	border-radius: 20px;	/*角丸のサイズ*/
	padding: 20px;	/*ボックス内の余白*/
}
.main + .main {
	margin-top: 20px;	/*mainボックス同士の余白。※上でtext-shadowを10px使っているので、それにプラスして(10px以上で)設定する。*/
}

/*h2タグ*/
.main h2 {
	clear: both;
	margin-bottom: 20px;
	background: #0a7889;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#0c97ac, #0a7889);	/*グラデーション*/
	border-radius: 6px;	/*角丸のサイズ*/
	box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	color: #FFF;	/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
}
/*h3タグ*/
.main h3 {
	clear: both;
	margin-bottom: 20px;
	border-radius: 6px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2px 20px;	/*上下、左右への余白*/
}

/*段落タグ*/
.main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
/*他*/
.main h2 + p,
.main h3 + p {
	margin-top: -5px;
}

/*ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#secondarticle {
	width: 29%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: url(../gif/i4g1.gif);	/*背景画像の読み込み*/
	padding: 2%;	/*ボックス内の余白*/
	float: left;
	margin: 0px 0px 20px;
	border: 1px solid #CCC;
	position: relative;
}
#thirdarticle {
	width: 58%;	/*ボックスの幅*/
	background: url(../gif/i4b2.gif);	/*背景画像の読み込み*/
	padding: 2%;	/*ボックス内の余白*/
	float: right;
	margin: 0px 0px 20px auto;
	border: 1px solid #CCC;
	position: relative;
}

.list {
	float: none;
	width: auto;
	height: auto;
	background: url(../gif/i4b2.gif);	/*背景画像の読み込み*/
	padding: 2%;	/*ボックス内の余白*/
	margin: 0px 0px 10px;
	border: 1px solid #CCC;
	position: relative;
}

/*ボックス内の段落タグ設定*/
#thirdarticle p,
.list p {
	padding: 0px;
	color: #222;		/*文字色*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	color: #ff6315;	/*文字色*/
	border-bottom: 2px dotted #ff6315;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
.gdot {
	background: url(../gif/i4g1.gif);	/*背景画像の変更*/
}
.touch {
	margin-bottom: -2px;	/*listボックス同士の余白。ボックスを接合する。*/
}

#endarticle {
	display: none;
	float: none;
	width: auto;
	height: auto;
	border-radius: 10px;	/*角丸のサイズ*/
	background: url(../gif/i4g1.gif);	/*背景画像の読み込み*/
	padding: 2%;	/*ボックス内の余白*/
	margin: 0px 0px 10px;
	border: 1px solid #CCC;
	position: relative;
}

/*menubox内のページ内メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
ul.navmenu {
	padding-bottom: 10px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
/*メニュー１個あたりの設定*/
ul.navmenu li {
	display: inline-block;
	margin: 5px;
}
/*「→」のマーク*/
ul.navmenu li a::before {
	display: inline-block;line-height: 1;
	content: "→";	/*表示させる文字。変更しても構いませんが機種依存文字は化けるので使わないように。*/
	background: #fff;	/*背景色*/
	color: #e06926;	/*文字色*/
	padding: 2px;	/*中の余白*/
	border-radius: 50%;	/*角丸のサイズ*/
	margin-right: 5px;	/*マークの右側に空けるスペース*/
}
ul.navmenu li a:hover::before {
	background: #ebcd26;	/*マウスオン時の「→」の背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #62c7b5;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 20px;
	height: 110px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*2021年以前の更新履歴用
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#hist20 dl, #hist19 dl, #hist18 dl, #hist17 dl, 
#hist16 dl, #hist15 dl, #hist14 dl, #hist13 dl, #hist12 dl, #hist11 dl, #hist10 dl, #hist09 dl,
#hist08 dl, #hist07 dl, #hist06 dl, #hist05 dl, #hist04 dl, #hist02 dl, #hist01 dl, #hist00 dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 20px 0px;
}

/* 2021年以前のマイレージ表用
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#mile20 dl, 
#mile19 dl, #mile18 dl, #mile17 dl, #mile16 dl, #mile15 dl, #mile14 dl,
#mile13 dl, #mile12 dl, #mile11 dl, #mile10 dl, #mile09 dl, #mile08 dl {
	margin: 5px 20px 0px;
}

/*日付設定*/
#hist20 dt, #hist19 dt, #hist18 dt, #hist17 dt, 
#hist16 dt, #hist15 dt, #hist14 dt, #hist13 dt, #hist12 dt, #hist11 dt, #hist10 dt, #hist09 dt,
#hist08 dt, #hist07 dt, #hist06 dt, #hist05 dt, #hist04 dt, #hist02 dt, #hist01 dt, #hist00 dt{
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
	color: #222;	/*文字色*/
}
/*記事設定*/
#hist20 dd, #hist19 dd, #hist18 dd, #hist17 dd,
#hist16 dd, #hist15 dd, #hist14 dd, #hist13 dd, #hist12 dd, #hist11 dd, #hist10 dd, #hist09 dd,
#hist08 dd, #hist07 dd, #hist06 dd, #hist05 dd, #hist04 dd, #hist02 dd, #hist01 dd, #hist00 dd{
	border-bottom: 1px solid #888;	/*下線の幅、線種、色*/
	padding-left: 8em;
	color: #222;	/*文字色*/
}

#hist20 h2.open, #hist19 h2.open, #hist18 h2.open, #hist17 h2.open, 
#hist16 h2.open, #hist15 h2.open, #hist14 h2.open, #hist13 h2.open,
#hist12 h2.open, #hist11 h2.open, #hist10 h2.open, #hist09 h2.open,
#hist08 h2.open, #hist07 h2.open, #hist06 h2.open, #hist05 h2.open,
#hist04 h2.open, #hist02 h2.open, #hist01 h2.open, #hist00 h2.open,
#mile20 h2.open, #mile19 h2.open, #mile18 h2.open, #mile17 h2.open, 
#mile16 h2.open, #mile15 h2.open, #mile14 h2.open, #mile13 h2.open,
#mile12 h2.open, #mile11 h2.open, #mile10 h2.open, #mile09 h2.open, #mile08 h2.open {
	background: #0a7889 url(../png/btn_minus.png) no-repeat right center/34px 34px;
	background: url(../png/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#0c97ac, #0a7889);
	background: url(../png/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#0c97ac, #0a7889);
}

#hist20 h2.close, #hist19 h2.close, #hist18 h2.close, #hist17 h2.close,
#hist16 h2.close, #hist15 h2.close, #hist14 h2.close, #hist13 h2.close,
#hist12 h2.close, #hist11 h2.close, #hist10 h2.close, #hist09 h2.close,
#hist08 h2.close, #hist07 h2.close, #hist06 h2.close, #hist05 h2.close,
#hist04 h2.close, #hist02 h2.close, #hist01 h2.close, #hist00 h2.close,
#mile20 h2.close, #mile19 h2.close, #mile18 h2.close, #mile17 h2.close, 
#mile16 h2.close, #mile15 h2.close, #mile14 h2.close, #mile13 h2.close,
#mile12 h2.close, #mile11 h2.close, #mile10 h2.close, #mile09 h2.close, #mile08 h2.close {
background: #0a7889 url(../png/btn_plus.png) no-repeat right center/34px 34px;
	background: url(../png/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#0c97ac, #0a7889);
	background: url(../png/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#0c97ac, #0a7889);
}

/*テーブル ta1
---------------------------------------------------------------------------*/
.ta1 {
	width: 94%;
	margin: 0 auto;
	margin-bottom: 15px;
	background: #fff;					/*背景色*/
	border: 5px solid #ccc;				/*テーブルの枠線の幅、線種、色*/
	font-size: 12px;
}
.ta1 td, .ta1 th {
	border: 1px dashed #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;				/*ボックス内の余白*/
	word-break: break-all;
	font-size: 12px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*センタリング*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 50%;	/*幅*/
	padding: 10px;
	text-align: center;	/*センタリング*/
	background: #f7f7f7;	/*背景色*/
}
/*段落タグのpadding変更*/
.ta1 p {
	padding: 0px !important;
}

.ta2, .ta2 td{
	font-size: 8px !important;
}

.ta3, .ta3 td{
	font-size: 11px !important;
	font-family: Arial !important;
}

/*テーブル ta6
---------------------------------------------------------------------------*/
/*ta6設定*/
.ta6 {
	margin: 0 2% 15px;
	border-left: 1px dashed #ccc;	/*左の線の幅、線種、色*/
	vertical-align: top;
}
.ta6 td {
	padding: 10px;	/*ボックス内の余白*/
	border-right: 1px dashed #ccc;	/*右の線の幅、線種、色*/
	min-width: 125px;	/*ボックスの幅*/
	max-width: 125px;	/*ボックスの幅*/
	height: 240px;	/*ボックスの高さ*/
	background: #fff;
}
.ta6 td:nth-child(odd) {
	background: #f7f6f3;	/*奇数番目の項目にだけ色をつける。古いブラウザは未対応。*/
}
/*ボックス内のh4見出し*/
.ta6 td h4 {
	color: #5f9a4f;	/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	margin-top: 10px;
}
/*ボックス内のp段落タグ*/
.ta6 td p {
	padding: 0;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

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

/*menuページで使っている各メニューブロック間の「PAGE TOP」設定
---------------------------------------------------------------------------*/
.pagetop {
	clear: both;
	text-align: right;
	margin: 0px 0px 10px;
}
.pagetop a {
	background: #fff;	/*背景色*/
	color: #333;	/*文字色*/
	text-decoration: none;
	text-align: center;
	width: 14em;		/*ボックスの幅*/
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 10px;	/*角丸のサイズ*/
}

/*メニュー１個ごとの設定*/
#menubar2 ul li {
	float: left;
	width: 18%;
	margin: 0px 1%;
}
#menubar2 ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	background: url(../gif/i4b2.gif);
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar2 ul li a:hover {
	background-color: #dbdfff;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
#menubar2 ul li:last-child {
	margin-bottom: 20px;
}

/*メニューブロック全体の設定*/
#submenu6 {
	margin-top: 20px;
	margin-bottom: 15px;	/*ブロックの下にスペースを空ける設定*/
}
#submenu6 ul li {
	float: left;
	width: 18%;
	margin: 0px 1%;
}
/*メニュー１個ごとの設定*/
#submenu6 ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	background: url(../gif/i4b2.gif);
	padding: 5px 0px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#submenu6 ul li a:hover {
	background-color: #dbdfff;	/*マウスオン時の背景色*/
}

/*メニュー（menu）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.menu {
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	line-height: 1.5;		/*行間をすこし狭く。デフォルトは冒頭のbody内にあります。*/
	font-size: 30px;		/*文字サイズ*/
	text-shadow: 1px 1px #000;	/*テキストの影。右に、下に、色。*/
}
.menu a {
	display: block;text-decoration: none;
	padding: 30px;	/*ボックス内の余白*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%でた状態のこと。*/
	color: #fff;	/*文字色*/
	border: 15px solid rgba(0,0,0,0.2);	/*枠線の幅、線種、色。*/
}
/*マウスオン時*/
.menu a:hover {
	background: transparent;	/*上で指定したbackgroundを透明にする。つまり、下で読み込んでいる写真が鮮明に出ます。*/
}
/*ボックス内の段落タグ設定*/
.menu p {
	padding: 0px;
}
/*ボックス内の段落タグ内のspanタグ*/
.menu p span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔をすこしだけ広く*/
}

/*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;
}

.color_a0 {
    background-color: #cccccc;
    color: #222;
}
 
.color_a1 {
    background-color: #00eeee;
    color: #222;
}

.color_a2 {
    background-color: #ffc0ff;
    color: #222;
}

.color_c3 {
    background-color: #88ffff;
    color: #222;
}
 
.color_e0 {
    background-color: #ffff00;
    color: #222;
}

.PETIT {
}

.PETIT .color_a0, .PETIT .color_a1, .PETIT .color_a2, .PETIT .color_c3, .PETIT .color_e0 {
    font-size: 12px;
}

/*---------------------------------------------------------------------------*/
#pra {
	float: right;	/*右に回り込み*/
	width: 650px;	/*ブロックの幅*/
}

#prf {
	float: left;	/*左に回り込み*/
	width: 146px;	/*ブロックの幅*/
	height: auto;
	border-radius: 10px;	/*角丸のサイズ*/
	background: url(../gif/i4g1.gif);	/*背景画像の読み込み*/
	padding: 15px;	/*ボックス内の余白*/
	margin: 0px 0px 10px;
	border: 1px solid #CCC;
	position: relative;
}

.blb {
	float: left;	/*左に回り込み*/
}

.prs {
    float: none;
    font-size: 12px;
    line-height:125%;
    width: 29px;
    text-align: center;
    vertical-align: middle;
    height: 35px;
   padding: 10px 0px 0px 0px;
}

.prl {
    float: none;
    font-size: 12px;
    line-height:125%;
    width: 29px;
    text-align: center;
    vertical-align: middle;
    height: 80px;
   padding: 10px 0px 0px 0px;
}

.prb {
    float: none;
    background-color: white;
    width: 29px;
    height: 45px;
}

.col_0 {
    background-color: white;
    color: black;
}

.col_1 {
    background-color: #f4f4f4;
    color: black;
}

.col_2 {
    background-color: gray;
    color: black;
}

.col_3 {
    background-color: black;
    color: white;
}

.erasebr {
     display: inline;
}

.clear2 {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.p3p {padding: 3%;}
.pt70 {padding-top: 70px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #62c7b5 !important;}
.color2 {color: #1C00EF;}
.color3 {color: #ff0000;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w30p {width: 30% !important;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 1%;margin-bottom: 15px;width: 45%;}
.fl {float: left;margin-right: 1%;margin-bottom: 15px;width: 45%;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.dn {display: none;}
.fs1 {font-size: 18px;}
.menu-top {text-align: right;}
.link {display: block;margin-top: -80px;padding-top: 80px;}

/*CSSスライドショー設定
---------------------------------------------------------------------------*/
/*１枚目*/
@keyframes slide1 {
	0% {opacity: 0;}
	10% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 0;}
}
/*２枚目*/
@keyframes slide2 {
	0% {opacity: 0;}
	15% {opacity: 0;}
	25% {opacity: 1;}
	55% {opacity: 1;}
	65% {opacity: 0;}
	100% {opacity: 0;}
}
/*3枚目*/
@keyframes slide3 {
	0% {opacity: 0;}
	35% {opacity: 0;}
	45% {opacity: 1;}
	65% {opacity: 1;}
	75% {opacity: 0;}
	100% {opacity: 0;}
}
/*4枚目*/
@keyframes slide4 {
	0% {opacity: 0;}
	55% {opacity: 0;}
	65% {opacity: 1;}
	85% {opacity: 1;}
	95% {opacity: 0;}
	100% {opacity: 0;}
}

/*PC用スタイル・2日目以降のスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: auto;
	width: 50%;	/*ボックスの幅*/
	margin-bottom: 20px;
	border-radius: 10px;	/*角丸のサイズ*/
	z-index: 99;
	float: right;
}

#top #mainimg {
	clear: left;
	float: none;
	width: 100%;
	margin: 0 auto 40;
}

/*４枚画像の共通設定*/
#slide1,#slide2,#slide3,#slide4 {
	-webkit-animation-duration: 15s;	/*実行する時間。「s」は秒の事。*/
	animation-duration: 15s;			/*同上*/
	-webkit-animation-iteration-count:infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-iteration-count:infinite;			/*同上*/
	position: absolute;left:0px;top:0px;width: auto;height: auto;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
/*土台画像*/
#slide0 {
	position: relative;width: 100%;height: auto;
}
/*１枚目*/
#slide1 {
	-webkit-animation-name: slide1;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide1;				/*同上*/
}
/*２枚目*/
#slide2 {
	-webkit-animation-name: slide2;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide2;				/*同上*/
}
/*３枚目*/
#slide3 {
	-webkit-animation-name: slide3;
	animation-name: slide3;
}
/*４枚目*/
#slide4 {
	-webkit-animation-name: slide4;
	animation-name: slide4;
}


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

.contents2 {
	padding: 40px 0 0;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	display: block;	/*小さな端末用メニューを非表示から表示に切り替える*/
	margin-bottom: 30px;	/*ブロックの下にあけるスペース*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*幅*/
}
#menubar-s a {
	display: block;
	text-decoration: none;
	line-height: 40px;	/*高さ*/
	text-align: left;
	border-radius: 20px;	/*角丸のサイズ*/
	color: #5f9a4f;		/*文字色*/
	border: 3px solid #5f9a4f;	/*枠線の幅、線種、色*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	margin: 1%;	/*上下左右へのメニューボタンの外側にとるスペース*/
	background: #fff url(../png/icon_heart.png) no-repeat 15px top;	/*ハートアイコンの読み込み。リピートせず(no-repeat)、左から15pxの場所に配置、画像の上半分(top)を表示。*/
	padding-left: 40px;	/*左への余白*/
}
/*大きな端末用メニューを非表示にする*/
#menubar{
	display: none;
}
/*大きな端末用メニューを非表示にする*/
#mainimg {
	display: none;
}
#top #mainimg {
	display: block;
}
#toendarticle {
	display: inline;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 100;
	top: 50px;	/*上から50pxの場所に配置*/
	right: 50px;	/*右から50pxの場所に配置*/
	border-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;
}
#top #menubar_hdr {
	top: 64px;	/*上から64pxの場所に配置*/
	right: 100px;	/*右から100pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}

/*三本バーアイコン*/
#menubar_hdr.close {
	background: #1030f1 url(../png/icon_menu.png) no-repeat center top/50px;
		/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #1030f1 url(../png/icon_menu.png) no-repeat center bottom/50px;
		/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*見出しのタイプ違い設定（トップページの挨拶で使っている大きな見出し）*/
.type1 {
	font-size: 40px !important;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #0a7889 url(../png/btn_minus.png) no-repeat right center/34px 34px;
	background: url(../png/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#0c97ac, #0a7889);
	background: url(../png/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#0c97ac, #0a7889);
}
section#new h2.close {
	background: #0a7889 url(../png/btn_plus.png) no-repeat right center/34px 34px;
	background: url(../png/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#0c97ac, #0a7889);
	background: url(../png/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#0c97ac, #0a7889);
}

/*メニューブロック
---------------------------------------------------------------------------*/
#secondarticle {
	display: none;
}
#endarticle {
	display: block;
}
#thirdarticle,
#endarticle,
.list {
	float: none;
	width: auto;
	height: auto;
	margin: 0px 0px 10px;
	padding: 2%;	/*ボックス内の余白*/
}

.touch {
	margin-bottom: -2px;	/*listボックス同士の余白。ボックスを接合する。*/
}

/*---------------------------------------------------------------------------*/
#pra, #prf {
	float: none;
	width: auto;
}

.blb {
	float: none;	/*回り込み解除*/
}

.prs {
    float: right;
    font-size: 18px;
    line-height:125%;
    width: 40px;
    text-align: center;
    vertical-align: middle;
    height: 52px;
   padding: 10px 0px 0px 0px;
}

.prl {
    float: right;
    font-size: 18px;
    line-height:125%;
    width: 80px;
    text-align: center;
    vertical-align: middle;
    height: 52px;
   padding: 10px 0px 0px 0px;
}

.prb {
    float: right;
    width: 40px;
    height: 62px;
}

.erasebr {
     display: none;
}

.clear2 {
	display: block;
	clear: both;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub {display: none;}
.pt70 {padding-top: 0px;}
.link {display: block;margin-top: 0px;padding-top: 0px;}

}


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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	text-align: left;	/*内容を左寄せに変更*/
}
/*ロゴ画像*/
#logo img {
	width: 220px;	/*画像幅*/
	padding-top: 38px;	/*画像の上にあける余白*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
.fr,.fl {float: none;margin: 0;margin-bottom: 10px;width: 100%;}
.sh {display: block;}
.pc {display: none;}

}


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

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

/*ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#thirdarticle,
#endarticle,
.list {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 10px;
	padding: 5%;	/*ボックス内の余白*/
}

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

/*MENUページのページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding: 0px;
	text-align: left;
}
ul.navmenu li a {
	display: block;
	padding: 5px 10px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

#menubar2 {
	display: none;
}
#submenu6 {
	display: none;
}

/*2021年以前の更新履歴・マイレージ表用
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#hist20 dl, #hist19 dl, #hist18 dl, #hist17 dl, 
#hist16 dl, #hist15 dl, #hist14 dl, #hist13 dl, #hist12 dl, #hist11 dl, #hist10 dl, #hist09 dl,
#hist08 dl, #hist07 dl, #hist06 dl, #hist05 dl, #hist04 dl, #hist02 dl, #hist01 dl, #hist00 dl, 
#mile20 dl, 
#mile19 dl, #mile18 dl, #mile17 dl, #mile16 dl, #mile15 dl, #mile14 dl,
#mile13 dl, #mile12 dl, #mile11 dl, #mile10 dl, #mile09 dl, #mile08 dl {
	height: auto;
	padding-left: 0;
}

/*日付設定*/
#hist20 dt, #hist19 dt, #hist18 dt, #hist17 dt, 
#hist16 dt, #hist15 dt, #hist14 dt, #hist13 dt, #hist12 dt, #hist11 dt, #hist10 dt, #hist09 dt,
#hist08 dt, #hist07 dt, #hist06 dt, #hist05 dt, #hist04 dt, #hist02 dt, #hist01 dt, #hist00 dt{
	float: none;
	width: auto;
}

/*記事設定*/
#hist20 dd, #hist19 dd, #hist18 dd, #hist17 dd,
#hist16 dd, #hist15 dd, #hist14 dd, #hist13 dd, #hist12 dd, #hist11 dd, #hist10 dd, #hist09 dd,
#hist08 dd, #hist07 dd, #hist06 dd, #hist05 dd, #hist04 dd, #hist02 dd, #hist01 dd, #hist00 dd{
	padding-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
.fs1 {font-size: 14px;}

}
