﻿@charset 'utf-8'; /*文字コード指定*/
/* =============================================================================
▼dream company 2016.05.30▼
=============================================================================*/
/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}
html, body {
	height: 100%; /*領域の高さ指定100%*/
}
body {
	font-size: 75%; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 2; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	background: #fff; /*背景指定*/
	font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro'; /*フォントの種類指定(左から優先順位)*/
	color: #333; /*文字色指定,黒#333*/
}
ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}
a {
	color: #333; /*文字色指定1,黒#333*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
a:hover {
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
.color1 {
	line-height: 45px; /*行の高さ指定(追加)*/
	color: #990000; /*文字色指定,エンジ色#990000*/
}


/* ボタン（タイプ1） */
.btn01 a {
	display:block;
	padding:2% 2% 2% 50px;
	color:#fff;
	text-decoration:none;
	border-radius:5px;
	background:#3bcbff url('http://time-trip.jp/ttest/images/bg_arrow_white.png') 20px 50% no-repeat;/* 黒#1b1b1b */
	transition:all 0.2s ease 0s;
}
.btn01 a:hover {
	background:#6ed9ff url('http://time-trip.jp/ttest/images/bg_arrow_white.png') 20px 50% no-repeat;/* 薄黒#2e2e2e */
	transition:all 0.2s ease 0s;
}

/* ボタン（タイプ2） */
.btn02 a {
	display:block;
	padding:2%;
	color:#1b1b1b;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #1b1b1b;
	background:#fff;
	transition:all 0.2s ease 0s;
}
.btn02 a:hover {
	color:#fff;
	background:#1b1b1b;
	transition:all 0.2s ease 0s;
}

/* ========button======== */
.smp1 {
	cursor:pointer;/*カーソルを指先型にします*/
	font-size:130%;
	font-weight: bold;
	width:150px;
	padding: 5px 0;
	margin:0.5em 0.5em 0 0;
	border-style:none;/*デフォルトのボーダーを消す。ボーダーの指定を上書きしてもOK*/
	color: #fff;
	background:#90E733;/*背景色を指定*/
/*↓ボックスの角丸の指定です*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
/*↓ボックスのシャドウの指定です*/
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
/*↓テキストシャドウの指定です*/
	text-shadow: 1px 1px 2px #000; 
}
/*↓「:hover」で、ロールオーバー時に変えたい指定をします。ここでは背景色だけ変更*/
.smp1:hover {
	background-color: #54980C;
}

.smp2 {
	cursor:pointer;/*カーソルを指先型にします*/
	font-size:130%;
	font-weight: bold;
	width:150px;
	padding: 5px 0;
	margin:0.5em 0.5em 0 0;
	border-style:none;/*デフォルトのボーダーを消す。ボーダーの指定を上書きしてもOK*/
	color: #fff;
	background:#5DD0EA;/*背景色を指定*/
/*↓ボックスの角丸の指定です*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
/*↓ボックスのシャドウの指定です*/
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
/*↓テキストシャドウの指定です*/
	text-shadow: 1px 1px 2px #000; 
}
/*↓「:hover」で、ロールオーバー時に変えたい指定をします。ここでは背景色だけ変更*/
.smp2:hover {
	background-color: #4CAABF;
}

/*レイアウト設定*/

.top_wrapper {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 100%; /*領域の高さ指定100%*/
}
.top_content {
	margin-left: 200px; /*ボックス外側左の余白,200px*/
	height: 100%; /*領域の高さ指定,100%*/
}
.wrapper {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: auto; /*ボックス外側の余白*/
	height: ; /*領域の高さ指定,100%,なし*/
	overflow: hidden; /*floatの解除*/
}
.main {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-right: -340px; /*ボックス外側右の余白*/
}
.content {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-left: -200px; /*ボックス外側左の余白*/
}
.content_inner {
	margin: 0px 340px 50px 200px; /*ボックス外側の上、右、下、左,140px 340px 50px 200pxの余白*/
}
/*header　ページ上の内容*/

header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 200px; /*左からの距離(positionで指定している場合に適用)*/
	right: 340px; /*左からの距離(positionで指定している場合に適用)*/
	height: 100px; /*領域の高さ指定*/
	background: #fff; /*背景指定*/
	z-index: 1000; /*ボックス重なり順序指定*/
}
/*左上のロゴ*/

h1 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)100px*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	font-family: 'Amatic SC', cursive; /*フォントの種類指定(googleのwebフォント)*/
	font-size: 4em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 40px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	padding: 10px; /*ボックス内側の余白*/
	width: 200px; /*幅指定*/
}
h1 a {
	color: #8b0000; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
h1 a:hover {
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; /*ここまで時間的変化指定*/
	/*透明度設定*/
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6; /*ここまで透明度設定*/
}
/*中央上の見出し*/

header h2 {
	color: #EF7517;/*フォン色指定,オレンジ色(追加)*/
	font-size: 4em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-family: 'Norican', cursive; /*フォントの種類指定(左から優先順位)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	text-shadow: 1px 1px 0 #FFF, 2px 2px 5px #99ccff, 4px 4px 10px #b2d8ff, 6px 6px 15px #dbedff, 8px 8px 20px #eaf4ff;/*シャドー(追加)*/
}
h3 {
	color: #EF7517;/*フォン色指定,オレンジ色(追加)*/
	font-size: 2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-family: 'Norican', cursive; /*フォントの種類指定(左から優先順位)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	text-shadow: 1px 1px 0 #FFF, 2px 2px 5px #99ccff, 4px 4px 10px #b2d8ff, 6px 6px 15px #dbedff, 8px 8px 20px #eaf4ff;/*シャドー(追加)*/
}
/*▼追加▼*/
h4 {
	color: #EF7517;/*フォン色指定,オレンジ色(追加)*/
	font-size: 1.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-family: 'Norican', cursive; /*フォントの種類指定(左から優先順位)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}
/*メインの内容*/

.top_section {
	margin: 200px auto 0; /*ボックス外側の余白*/
	width: 60%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
.top_h2 img {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
article {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
article h3 {
	font-size: 2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	margin-bottom: 10px; /*ボックス外側下の余白*/
}
article li, p {
	font-size: 1.6em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定1.5em)*/
}
section {
	margin: 0 auto; /*ボックス外側の余白*/
	width: 60%; /*幅指定(100%は画面横幅いっぱいに表示)*/

}
/*左下の内容,未使用*/
.copyright {
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 15px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	bottom: 20px; /*下からの距離(positionで指定している場合に適用)*/
	left: 20px; /*左からの距離(positionで指定している場合に適用)*/
	width: 180px; /*幅指定*/
}
/*フッター内容追加*/
div#footer{
    position: absolute
    bottom: 0
    width: 100%
    height: 50px
    margin: auto; /*ボックス外側の上、右、下、左,140px 340px 50px 200pxの余白*/
}
/*googlesearch*/
.search {
	width: 300px; /*幅指定*/
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 20px; /*上からの距離(positionで指定している場合に適用)*/
	right: 20px; /*右からの距離(positionで指定している場合に適用)*/
}
.search input[type="text"] {
	width: 80%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	padding: 8px !important; /*ボックス内側の余白*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	/*ボックス角丸設定*/
	border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px; /*ここまでボックス角丸設定*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	/*ボックス境界線設定*/
	border-top: 1px solid #a5a5a5;
	border-left: 1px solid #a5a5a5;
	border-bottom: 1px solid #a5a5a5;
	border-right: none !important; /*ボックス境界線設定*/
}
.search button {
	width: 20%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	/*背景グラデーション指定*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #cecece));
	background: -webkit-linear-gradient(#fff, #cecece);
	background: -moz-linear-gradient(#fff, #cecece);
	background: -o-linear-gradient(#fff, #cecece);
	background: -ms-linear-gradient(#fff, #cecece);
	background: linear-gradient(#fff, #cecece); /*ここまで背景グラデーション指定*/
	border: 1px solid #a5a5a5; /*境界線の一括指定*/
	padding: 7px; /*ボックス内側の余白*/
	color: #666; /*文字色指定*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	cursor: pointer; /*マウスカーソルの形状指定(pointerはリンクカーソル)*/
}
.search button:hover {
	/*透明度設定*/
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7; /*ここまで透明度設定*/
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
 -o-transition: 0.s;
	transition: 0.5s; /*ここまで時間的変化指定*/
}
/*右側の内容*/

.right_content {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 120px; /*上からの距離(positionで指定している場合に適用)*/
	right: 20px; /*右からの距離(positionで指定している場合に適用)*/
	width: 300px; /*幅指定*/
}
.ad {
	width: 300px; /*幅指定*/
	height: ; /*領域の高さ指定,250px*/
	background: ; /*背景指定,濃オレンジ#ff4500,ピンク#EC78B4*/
}

/* ▼ページトップに戻るアイコン▼ */

.pagetop:hover {
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; /*ここまで時間的変化指定*/

	color: #EC78B4; /*文字色指定#000,#FF9ECE*/
	/*透明度設定*/
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6; /*ここまで透明度設定*/
}

/* =============================================================================
▼戻る,進むボタン,http://tips.nishishi.com/css/design-only-button.html▼
============================================================================= */
input[type="button"] {
   background-color: #ff99cc;/* パウダー・ブルー#B0E0E6 */
   color: #111111;
   padding-top: 0.4em;
   padding-bottom: 0.4em;
   padding-left: 0.4em;
   padding-right: 0.4em;
   border: 1px solid #FF8CC5;/* パウダー・ブルー#99DDE5 */
   border-radius: 5px;
}
input[type="button2"] {
   width: 100%; /*幅指定(追加)*/
   background-color: #FCA235;/* パウダー・ブルー#B0E0E6 */
   font-weight: bold;/*文字太字(追加)*/
   color: #ffffff;/* #111111 */
   padding-top: 0.2em;/* 0.4em */
   padding-bottom: 0.2em;/* 0.4em */
   padding-left: 1em;/* 0.4em */
   padding-right: 2em;/* 0.4em */
   border: 1px solid #F9992A;/* パウダー・ブルー#99DDE5 */
   border-radius: 5px;
}
input[type="button3"] {
   width: 100%; /*幅指定(追加)*/
   background-color: #FCA235;/* パウダー・ブルー#B0E0E6 */
   font-size: 110%;/*文字サイズ(追加)*/
   font-weight: bold;/*文字太字(追加)*/
   color: #ffffff;/* #111111 */
   padding-top: 0.2em;/* 0.4em */
   padding-bottom: 0.2em;/* 0.4em */
   padding-left: 1em;/* 0.4em */
   padding-right: 2em;/* 0.4em */
   border: 1px solid #F9992A;/* パウダー・ブルー#99DDE5 */
   border-radius: 5px;
}
/* ===▲戻る,進むボタン▲=== */
/* =============================================================================
▼蛍光ラインマーカー(細)http://itbenricho.com/highlighter-marker-css.html▼
============================================================================= */
/* ----▼桃色の蛍光ペン(細)▼---- */
.marker_p {
background: linear-gradient(transparent 60%, #FFBFFF 60%);/* -#ff66ff- */
}
/* ----▼黄色の蛍光ペン(細)▼---- */
.marker_y {
background: linear-gradient(transparent 60%, #ffff66 60%);
}
/* ----▼水色の蛍光ペン(細)▼---- */
.marker_w {
background: linear-gradient(transparent 60%, #66ccff 60%);
}

/* =============================================================================
▼共有ボタン▼
============================================================================= */

.video-share-wrapper {
    clear: both;
    text-align: center;
}

.social-list {
    display: inline-block
}

.social-list li2 {
    font-size: 15px;/*--19px--*/
    line-height: 30px;/*--38px--*/
    float: left;
    margin: 0 9px;/*ボックス外側の4つ上,右,下,左、2つ[上下][左右]0 9px、3つ[上][左右][下]の余白*/
}

.social-list li2 a {
    font-size: 12px;/*--文字大きさ15px--*/
    line-height: 30px;/*--38px--*/
    display: block;
    width: 100px;/*--160px--*/
    height: 30px;/*--38px--*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #3bcbff;/*--水色--*/
    color: white;
    text-align: center;
    -moz-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
    -ms-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
    -o-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
    -webkit-transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
    transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear;
}

.social-list li2 a:hover {
    background-color: #6ed9ff/*--薄い水色--*/
}

.social-list li2 a:active {
    background-color: #08bdff/*--くすんだ水色--*/
}

.social-list li2 a.social-facebook {
    background-color: #1e3aa6/*--濃青色--*/
}

.social-list li2 a.social-facebook:hover {
    background-color: #2649d1/*--青色--*/
}

.social-list li2 a.social-facebook:active {
    background-color: #162b7b/*--くすんだ青色--*/
}

.social-list li2 a.social-google {
    background-color: #d72d26
}

.social-list li2 a.social-google:hover {
    background-color: #e05650
}

.social-list li2 a.social-google:active {
    background-color: #ac241e
}

.social-list li2 a.social-line {
    background-color: #3aa61e/*--濃緑色#3aa61e--*/
}

.social-list li2 a.social-line:hover {
    background-color: ＃89ff6e/*--緑色--*/
}

.social-list li2 a.social-line:active {
    background-color: #08ff08/*--くすんだ緑色--*/
}
/* --▲共有ボタン▲-- */
/* =============================================================================
▼お知らせbox▼
============================================================================= */

.post2 {
	clear: both; /*floatの回り込みを解除*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
}

.post2 h2 {
	padding-left: 10px; /*ボックス内側左の余白*/
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	margin-bottom: 10px; /*ボックス外側下の余白*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: 900;
	color: #ffffff; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	background-image: url(http://secouezpas921.web.fc2.com/images/h2.png); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
	border: 1px #808080 solid;/* 枠線追加 */
}

.newlist {
	border: 1px #808080 dotted;/* 枠線追加 */
	margin-bottom: 15px; /*ボックス外側下の余白*/

}

.newlist dl {
	width: auto; /*幅指定(autoは初期値に戻す)*/
	height: 200px; /*領域の高さ指定*/
	overflow: auto; /*領域に入りきらない内容の処理(autoはブラウザに依存(通常はみ出す場合はスクロール表示))*/
	padding-left: 5px; /*ボックス内側左の余白*/
	text-align: left; /*行の水平方向の揃え方(leftは左寄せ)*/
}

.newlist dt {
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	color: #F00000; /*文字色指定*/
}

.newlist dd {
	border-bottom: 1px solid #cccccc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	margin: 5px 10px 10px 5px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
}

.img {
	padding: 10px; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
}
/* ----- ▲追加お知らせbox▲ ----- */
/* =============================================================================
▼CSSで吹き出しデザイン▼
============================================================================= */

.bubble {
 display:inline-block;
color: #ffffff;/*フォン色指定,オレンジ色(追加)*/
font-size: 1.4em; /*フォントサイズ指定(追加)(emはフォントの高さを１とした相対指定)*/
font-weight: bold; /*フォントの太さ指定(normalは標準)*/
 position: relative;
 padding:1em;
 border-radius:5px;
 background: #A4D4DD;/* #fff */
}
.bubble:after {
 position: absolute;
 content: " ";
 height: 0;
 width: 0;
}
/* 下中央 */
.bubble-bottom:after {
 top: 100%;
 left: 50%;
 border:10px solid transparent;
 border-top:10px solid #A4D4DD;/* #fff */
 margin-left: -10px;
}
/* 上中央 */
.bubble-top:after {
 bottom: 100%;
 left: 50%;
 border:10px solid transparent;
 border-bottom:10px solid #fff;
 margin-left: -10px;
}
/* 左中央*/
.bubble-left:after {
 right: 100%;
 top: 50%;
 border:10px solid transparent;
 border-right:10px solid #fff;
 margin-top: -10px;
}
/* 右中央 */
.bubble-right:after {
 left: 100%;
 top: 50%;
 border:10px solid transparent;
 border-left:10px solid #fff;
 margin-top: -10px;
}
/* 下三角半分 */
.bubble-half-bottom:after {
 top: 100%;
 left: 5%;
 border-top:10px solid #A4D4DD;/* #fff */
 border-right:10px solid transparent;
}
/* 上三角半分 */
.bubble-half-top:after {
 bottom: 100%;
 left: 5%;
 border-bottom:10px solid #fff;
 border-right:10px solid transparent;
}
/* 左三角半分 */
.bubble-half-left:after {
 right: 100%;
 top: 10%;
 border-top:10px solid #fff;
 border-left:10px solid transparent;
}
/* 右三角半分 */
.bubble-half-right:after {
 left: 100%;
 top: 10%;
 border-top:10px solid #fff;
 border-right:10px solid transparent;
}
/* ▲CSSで吹き出しデザイン▲ */
/* =============================================================================
▼レスポンシブ設定▼
============================================================================= */
/*　画面サイズが768pxまではここを読み込む　*/
/*max-width: 979px,max-width: 768px,max-width: 479px*/
@media screen and (max-width: 768px) {
h3, p, ol, li, th, td, dl {
	font-size: 1.2em !important; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.top_wrapper {
	padding-top: 50px; /*ボックス内側上の余白*/
}
.top_content {
	margin-left: 0; /*ボックス外側左の余白*/
}
h1 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 5px; /*上からの距離(positionで指定している場合に適用)*/
	left: 50px; /*左からの距離(positionで指定している場合に適用)*/
	font-size: 2.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	width: auto; /*幅指定*/
	padding: 0; /*ボックス内側の余白*/
}
header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 90px; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	right: 0; /*左からの距離(positionで指定している場合に適用)*/
	height: 50px; /*領域の高さ指定*/
}
.mov_header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 50px; /*領域の高さ指定*/
	z-index: 1000; /*ボックス重なり順序指定*/
	background: #fff; /*背景指定*/
}
.mov_header2 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 50px; /*領域の高さ指定*/
	z-index: 2000; /*ボックス重なり順序指定*/
	background: #fff; /*背景指定*/
}
header h2 {
	font-size: 2.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.wrapper {
	overflow: visible; /*floatの解除を初期値に戻す*/
}
.content {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: none; /*要素を左か右に寄せて配置(noneはなし)*/
	margin: 120px 0 20px; /*ボックス外側の余白*/
}
.content_inner {
	margin: 0;/*ボックス外側の余白*/
}
article h3 {
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.top_section {
	margin: 100px auto 0; /*ボックス外側の余白,100px auto 0;*/
	width: 80%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
section {
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
form {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
.search {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)*/
	left: 5%; /*左からの距離(positionで指定している場合に適用)*/
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
.search input[type="text"] {
	padding: 10px !important; /*ボックス内側の余白*/
	width: 85%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}
.search button {
	width: 15%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	padding: 10px; /*ボックス内側の余白*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.right_content {
	clear: both; /*floatの回り込み解除*/
	position: static; /*ボックスの配置方法(staticは指定なし)*/
	margin: 20px auto; /*ボックス外側上の余白*/
}
.copyright {
	width: 220px; /*幅指定*/
	/*透明度設定*/
	opacity: 0.3;
	filter: alpha(opacity=30);
	-moz-opacity: 0.3; /*ここまで透明度設定*/
}
}
/*　画面サイズが768pxから1200pxまではここを読み込む　*/
@media screen and (min-width: 787px) and (max-width: 1200px) {
section {
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
}

