@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {width: 100%;height: 100%;}
body {
	color: #fff;		/*全体の文字色*/
	background: #000;
	margin: 0px;
	padding: 0px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-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%;}
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%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #0a8fe4;	/*リンクテキストの色*/
	-webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	transition: 0.3s;			/*同上*/
}
a:hover {
	color: #ff8008;			/*マウスオン時の文字色（全体）*/
}

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*最大幅。この行を外せば常にウィンドウ幅に対して100%表示になります。*/
	height: 100%;
	padding: 1% 5% 2% 30%;	/*上、右、下、左への余白。#subのwidthの値を変えた場合はここの23%を調整する。*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	line-height: 1;
	margin-bottom: 10px;
	font-size: 110%;
	position: relative;
	padding: 0.25em 0;
}
#main h2:after{
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(to right, #daa520, transparent);
	background: linear-gradient(to right, #daa520, transparent);
}
/*コンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	line-height: 1;
	margin-bottom: 20px;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#FFF, #eee);	/*グラデーション*/
	background: linear-gradient(#FFF, #eee);			/*同上*/
	padding: 12px 20px;	/*上下、左右への余白*/
	border-bottom: 5px solid #0a8fe4;	/*下線の幅、線種、色*/
	border-top: 1px solid #999;			/*上の線の幅、線種、色*/
	border-left: 1px solid #999;		/*左の線の幅、線種、色*/
	border-right: 1px solid #999;		/*右の線の幅、線種、色*/
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度30%の事。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);			/*同上*/
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 8px 20px 5px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	/*左に回り込み*/
	width: 23%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: -webkit-linear-gradient(#dcdcdc, #ffffff);	/*グラデーション*/
	background: linear-gradient(#dcdcdc, #ffffff);	/*グラデーション*/
	color: #000;		/*文字色*/
	margin-top: 20px;	/*ボックス同士の左右間の余白*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 200px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 200px;	/*高さ（上の「.list」の高さと揃える）*/
	color: #000;	/*文字色*/
}
.list a:hover {
	background: #ffe259;	/*マウスオン時の背景色*/
	background: -webkit-linear-gradient(#daa520, #ffff00);	/*グラデーション*/
	background: linear-gradient(#daa520, #ffff00);			/*同上*/
	color: #000;			/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク　（※list2も共通）*/
.list a::before,
.list2 a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の「→」マーク　（※list2も共通）*/
.list a:hover::before,
.list2 a:hover::before {
	background: #000;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
}
/*ボックス内の画像設定*/
.list .img {
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定　（※list2も共通）*/
.list h4,
.list2 h4 {
	padding-left: 20px;
}
/*ボックス内のp（段落）タグ設定　（※list2も共通）*/
.list p,
.list2 p {
	font-size: 80%;	/*文字サイズを少し小さく*/
}

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	width: 40%;
	background: #fff;	/*背景色*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	overflow: hidden;
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
	padding: 20px;	/*ボックス内の余白*/
	display: inline-block;
	color: #000;
}
.list2 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	padding: 40px;	/*ボックス内の余白*/
	margin: -40px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
.list2 a:hover {
	background: #fff7a3;	/*マウスオン時の背景色*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 30%;		/*画像の幅。ここを変える場合は下のh4とpのmargin-leftの数字も調整。*/
	height: auto;	/*画像の高さ*/
	float: left;	/*左に回り込み*/
	margin-bottom: 20px;
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-top:18px;
	margin-left: 33%;	/*画像のサイズを変更した場合はここも調整する*/
}

.list3 {
	width: 25%;
}
.autoli {
	height: auto;
	font-size: 150%;
}
.autoli h4 {
	margin-left: -20px;
}
.link_li {
	width: 25%;
	height: 190px;
	font-size: 110%;
}
.link_li img {
	width: auto;
	height: 85%;
}
.link_li h4 {
	margin-left: -20px;
}
.link_li2 {
	width: 40%;
	height: 280px;
}
.feature {
	display: block;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: absolute;	/*画面がスクロールしても移動させない為の設定。スクロールと共に移動させるならfixedをabsoluteに変える。*/
	left: 0px;top: 0px;
	overflow: none;	/*ウィンドウの高さ以上になった場合はスクロールを出す(auto)*/
	width: 25%;		/*幅。ここのサイズを変える場合、#containerの幅の23%の数字を調整する。*/
	height: 100%;
	background: rgba(135,206,235,0.3);
	background: transparent;	/*背景色を透明に*/
	color: #0a8fe4;			/*文字色*/
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #fff;	/*黒*/
	font-weight: bold;
}
/*subブロック内の段落タグ*/
#sub p {
}
#sub p a {
	color: #000;
}

/*subブロック内のお問い合わせ先*/
#contact {
	width: auto;
	height: auto;
	border: 1px solid #f2fcfe;
	margin: 10px 5px 10px 5px;
	background: #000;			/*同上*/
}
#contact h2 {
	background-color: -webkit-linear-gradient(#daa520, #ffff00);	/*グラデーション*/
	background: linear-gradient(#daa520, #ffffcc);	/*グラデーション*/
	padding: 3px;
	font-size: 110%;
	font-weight: bold;
	color: #000;
}
#contact p {
	padding: 10px 10px;
	color: #fff;
	line-height: 1.5;
}
#contact p a {
	color: #000;
	line-height: 1.5;
	font-weight: none;
}
#contact dl {
	position: relative;
	padding: 5px 10px;
	color: #fff;
}
#contact dl dt {
	position: relative;
	float: left;
	width: 5em;
	font-weight: bold;
}
#contact dl dd {
	position: relative;
	padding-left: 5em;
}
#contact img {
	height: 50px;
}
#contact img:hover {
	opacity: 0.8;
}
#contact .button {
	display: inline-block;
	background: #ffa751;
	background: url(../images/mail2.png) no-repeat left center,-webkit-linear-gradient(#ffa751, #ffe259);	/*全体の背景色*/
	background: url(../images/mail2.png) no-repeat left center,linear-gradient(#ffa751, #ffe259);	/*全体の背景色*/
	white-space: nowrap;
	color: #000;
	font-size: 110%;
	padding: 3px 10px 3px 60px;
	margin: 0px 0px 4px 5px;
	border-radius: 5px;
	text-decoration: none;
	transition: 1s;
}
#contact .button:hover {
	background: #daa520;
	background: url(../images/mail2.png) no-repeat left center,-webkit-linear-gradient(#daa520, #ffff00);	/*全体の背景色*/
	background: url(../images/mail2.png) no-repeat left center,linear-gradient(#daa520, #ffff00);	/*全体の背景色*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	overflow: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 20px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*マウスオン時と現在表示中メニュー(current)*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	background: #000;	/*背景色*/
	color: #f2fcfe;		/*文字色*/
	text-align: right;	/*文字を右寄せにする設定。左よせのままがよければこの１行削除。*/
}
/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: right;	/*文字を右寄せにする*/
}
#footermenu li {
	display: inline;
	font-size: 75%;
	padding: 0 10px;
}

/*フッター設定(copyrightが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*文字を右寄せにする*/
	width: 100%;
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	font-size: 12px;	/*文字サイズ*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 90px;	/*ブロックの高さ*/
	padding-left: 20px;
	margin-top: -6px;
	margin-bottom: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 7em;
}
/*記事設定*/
#new dd {
	padding-left: 7em;
}

/*よくある質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #ff99cc;	/*文字色*/
	font-size: 15px;
	font-weight: bold;	/*太字*/
	text-shadow: 1px 1px 2px #fff,
	-1px 1px 2px #fff,
	1px -1px 2px #fff,
	-1px -1px 2px #fff;	/*縁取り*/
	padding-top: 15px;
	letter-spacing: 1px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*テーブル　ta1
---------------------------------------------------------------------------*/
.ta1 {
	width: 95%;
	margin: 10px 10px 10px 15px;
	background: #000;	/*背景色*/
}

.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*枠外タイトル*/
.ta1 caption {
	font-size: 120%;
	font-weight: bold;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;
	background-color: -webkit-linear-gradient(#daa520, #ffff00);	/*グラデーション*/
	background: linear-gradient(#daa520, #ffffcc);	/*グラデーション*/
	color: #000;	/*文字色*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 130px;	/*幅*/
	padding: 5px;
	text-align: center;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 5px 10px 5px 10px;
}
/*アクセスページ運行時刻部分*/
.ta1 th.katamiti {
	width: 5em;
}

.ta1 td.event {
	width: 8em;
}


/*当日抽選ページ*/
.ta1 th.jikan {
	width: 9em;
}
.ta1 th.naiyou {
	width: 8em;
}
.ta1 th.tousensya {
	width: 8em;
}
/*アクセスマップページ*/
.ta3 {
	width: auto;
	background: #fff;	/*背景色*/
}
.ta3 th.w1 {
	width: 30px;
	background: #ffefda;
	line-height: 1.5;
}
.ta3 td.w2 {
	width: auto;
}

/*テーブル　横幅の調整
---------------------------------------------------------------------------*/
.autota {
	width: auto;
}

/*フローチャートの三角
---------------------------------------------------------------------------*/
#triangle {
	width: 0;
	height: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	border-top: 25px solid #ffcc99;
	border-right: 6vw solid transparent;
	border-left: 6vw solid transparent;
}

/*試乗(当日)キャプションと同一の見え方にするため
---------------------------------------------------------------------------*/
.sijou {
	font-size: 120%;
	font-weight: bold;
}

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
#pagetop {clear: both;}
#pagetop a {
	clear: both;
	font-size: 20px;
	display: block;
	background: #ccc;
	color: #FFF;
	float: right;
	text-decoration: none;
	line-height: 1;
	padding: 15px;
	border-radius: 50px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#pagetop a:hover {
	background: #333;
	color: #fff;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}

/*トップページのPDFアイコン
---------------------------------------------------------------------------*/
.pdficon {
	background: #FFF;
	color: #F00;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border: 1px solid #F00;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}
/*イベントマップページの数字
---------------------------------------------------------------------------*/
.suuji {
	background: #F00;
	color: #FFF;
	font-size: 90%;
	line-height: 1.5;
	border-radius: 2px;
	display: inline-block;
	padding: 0 5px;
	margin: 0 5px 0 0;
	vertical-align: text-top
}
.suuji2 {
	background: #00f;
	color: #FFF;
	font-size: 90%;
	line-height: 1.5;
	border-radius: 2px;
	display: inline-block;
	padding: 0 5px;
	margin: 0 5px 0 0;
	vertical-align: text-top
}

/*特集２のふきだし
---------------------------------------------------------------------------*/
.balloon {
	display: inline-block;
	width: auto;
	margin: 5px 0 0 20px;
	position: relative;
	float: left;
	padding: 5px 10px;
	background-color: #ffffff;
	border-radius: 8px;
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	color: #000;
}
.balloon::before {
	content: '';
	position: absolute;
	left: -14px;
	top: 10px;
	border-right: 15px solid #ffffff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	filter: drop-shadow(0px 1px 0px rgba(0,0,0,0.2));
}
.balloon:hover:before {
	border-right: 15px solid #d0a520;
	background: #ffe259;	/*マウスオン時の背景色*/
	background: -webkit-linear-gradient(#daa520, #ffff00);	/*グラデーション*/
	background: linear-gradient(#daa520, #ffff00);			/*同上*/
	color: #000;			/*マウスオン時の文字色*/
}
.balloon:hover{
	background: #ffe259;	/*マウスオン時の背景色*/
	background: -webkit-linear-gradient(#daa520, #ffff00);	/*グラデーション*/
	background: linear-gradient(#daa520, #ffff00);			/*同上*/
	color: #000;			/*マウスオン時の文字色*/
}

.dog {
	width: 100px;
	height: 100px;
	float: left;
	margin: 5px 5px 5px 30px;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}
.dog:hover{
	opacity: 0.9;
}
.dog2 {
	float: none;
	width: 100px;
	height: 100px;
	margin: 5px 5px 5px 30px;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}
.kesi {
	text-decoration: line-through;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #333;background:rgba(0,0,0,0.6);padding: 3px;border-radius: 3px;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 10px;}
.mb20 ul {
	display: block;
}
.mb30 {
	width: 60%;
}
.mb20 li {
	display: inline-block;
	width: 40%;
	margin: 5px;
}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
ul.decimal {padding: 0em 25px 15px;list-style: decimal;}
.color1 {color: #ff8008;}
.color2 {
	color: #000;
	line-height: 1.5;
}
.color2 a {
	color: #003366;
}
.color2 a:hover {
	color: #ff8008;
}
.color3 {
	color: #ff8008;
	font-weight: bold;	/*太字*/
	text-shadow: 1px 1px 1px #fff,
	-1px 1px 1px #fff,
	1px -1px 1px #fff,
	-1px -1px 1px #fff;	/*縁取り*/
}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.fr {float:right;width: 30%;margin:0 20px 20px;}
.fl {float:left;width: 30%;margin:0 20px 20px;}
.sh {display: none;}



/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px){
}



/*画面幅1250px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1250px){

/*リンク付きボックス（アクセス、アクセスマップ）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.link_li {
	width: 40%;
	height: 250px;
}
}



/*画面幅1090px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1090px){

/*リンク付きボックス（アクセス、アクセスマップ）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.link_li {
	width: 40%;
	height: 230px;
}
}



/*画面幅950px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:950px){

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 2% 2% 2% 31%;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 28%;
}

/*リンク付きボックス（アクセス、アクセスマップ）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.link_li {
	width: 40%;
	height: 210px;
}
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	display: block;
	width: 95%;
	height: auto;
	margin: 0 0 10px 0;
	padding: 10px;	/*ボックス内の余白*/
}
.list2 a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;	/*ボックス内の余白*/
	margin: -10px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
.link_li img{
	height: auto;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;
	margin-left: 0;
	height: auto;
}
.list a {
	height: auto;
}

/*figure設定
---------------------------------------------------------------------------*/
.mb30 {
	width: 95%;
}
}


/*画面幅750px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:750px){

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;	/*余白*/
	margin-top: 3%;
	padding-top: 200px;	/*上にとる余白。下のサブコンテンツのheightと合わせる。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: static;	/*fixed配置をやめる設定*/
	width: 100%;
	height: auto;
	background: transparent;	/*背景色を透明に*/
	color: #333;				/*文字色*/
	border-top: 1px solid #333;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #333;	/*下の線の幅、線種、色*/
	margin-bottom: 80px;	/*ボックスの外側＆下にあけるスペース*/
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #333;
}
/*subブロック内のinnnerブロック（ロゴ、文字サイズ変更ボタンなど囲むブロック）*/
#sub .inner {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	width: 100%;
	height: 200px;	/*下の#sub #logo imgのheightと数字を合わせる。ここを変える場合、下にある#menubar-sのtopの数字も合わせて変更する。*/
	background: #000;	/*背景色*/
}
#sub #logo img {
	height: 200px;	/*上の#subのheightと数字を合わせる*/
	float: left;
	text-align: center;
}

/*お問い合わせ先
---------------------------------------------------------------------------*/
.contact dl dt {
	clear: both;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*大きな端末用(画面幅751px以上)メニューを非表示にする*/
#menubar {
	display: none;
}
/*メニューブロック全体への設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅750px以下)メニューを非表示から表示に切り替える*/
	position: absolute;
	left: 0px;
	top: 200px;	/*#subのheightの数字と同じ数字にする*/
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	/*ボックスの影。右へ、左へ、広げる幅。0,0,0は黒のことで0.5は透明度50%のこと。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);			/*同上*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);		/*背景色。0,0,0は黒のことで0.6が透明度60%のこと。*/
}
/*メニュー１個ごとの設定*/
#menubar-s ul li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	line-height: 50px;	/*高さ*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	color: #fff;	/*文字色*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/

/*３本のバー（1本あたり）*/


#menubar_hdr,
#menubar_hdr span {
	display: inline-block;
	z-index: 2;
	transition: all 0.4s;
	box-sizing: border-box;
}
#menubar_hdr {
	position: absolute;
	z-index: 3;
	top: 158px;	/*上から158pxの場所に配置*/
	right: 3%;	/*左から3%の場所に配置*/
	width: 34px;
	height: 35px;
	background: transparent;	/*背景色を透明に*/
	/*background: #000;*/	/*確認用*/
}
#menubar_hdr span {
	position: absolute;
	z-index: 4;
	left: 3%;	/*左から3%の場所に配置*/
	width: 32px;
	height: 4px;
	background: #fff;
	border-radius: 2px;
}

#menubar_hdr::after {
	position: absolute;
	z-index: 4;
	top: 20px;
	content: 'MENU';
	display: inline-block;
	width: 34px;
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: all 0.4s;
}
#menubar_hdr.active::after {
	content: 'CLOSE';
}

#menubar_hdr span:nth-of-type(1) {
	top: 0px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 9px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 18px;
}
#menubar_hdr.active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
#menubar_hdr.active span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
/*テーブル
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
}
.ta3 td.w2 {
	font-size: 90%;
}
/*その他
---------------------------------------------------------------------------*/
.mb20 li {
	display: block;
	width: 99%;
	margin: 5px;
}

}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){
}



/*画面幅580px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:580px){
/*ふきだしを画像の下に
---------------------------------------------------------------------------*/
.balloon {
	clear: both;
	width: auto;
	top: 20px;
	margin: 0 0 10px 0;
}
.balloon:before {
	left: 15px;
	top: -22px;
	border-bottom: 15px solid #ffffff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.balloon:hover:before {
	border-bottom: 15px solid #daa520;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}
.dog {
	float: none;
	display: block;
}
.dog2 {
	margin-top: 150px;
	float: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
	line-height: 1.5;		/*行間*/
}
}



/*画面幅500px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 92%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 6em;
	padding: 5px;
	font-size: 90%;
	line-height: 1.5;		/*行間*/
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
	font-size: 90%;
	line-height: 1.5;		/*行間*/
}
/*テーブル 横幅調整*/
.autota th {
	width: auto;
}
.ta2 th {
	width: 5em;
}
/*当日抽選ページ*/
.ta1 th.jikan {
	width: 5em;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.fr {float:none;width: 100%;margin:0 0 20px;}
.fl {float:none;width: 100%;margin:0 0 20px;}

}



/*画面幅410px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:410px){

#sub #logo img {
	height: 200px;	/*上の#subのheightと数字を合わせる*/
	float: left; /*左に回り込み*/
}
/*特集２のふきだし部分3
---------------------------------------------------------------------------*/
.balloon3 {
	clear: both;
	width: auto;
	top: 20px;
	margin: 0 0 10px 0;
}
.balloon3::before {
	left: 15px;
	top: -22px;
	border-bottom: 15px solid #ffffff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	filter: drop-shadow(1px 0px 0px rgba(0,0,0,0.2));
}
.dog3 {
	float: none;
	display: block;
}
}

