@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');

@import url("https://use.fontawesome.com/releases/v5.12.1/css/all.css");

/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*COLORS*/
/*
GOLD:#e1c81e
BACKGROUND:BLACK+GOLD:#1A1703
WHITE:WHITE+GOLD:#edece1
GLAY:GLAY+GOLD:#7C7A72;
BLUE:#1D37E0
*/

/*LOADING*/
/* ローディング画面 */
#loading {
  width: 100%;
  height: 100%;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
	bottom:0;
	right:0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  font-size: 10px;
  margin: auto;
  text-indent: -9999em;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e1c81e;
  background: -moz-linear-gradient(left, #e1c81e 10%, rgba(225, 200, 30, 0) 42%);
  background: -webkit-linear-gradient(left, #e1c81e 10%, rgba(225, 200, 30, 0) 42%);
  background: -o-linear-gradient(left, #e1c81e 10%, rgba(225, 200, 30, 0) 42%);
  background: -ms-linear-gradient(left, #e1c81e 10%, rgba(225, 200, 30, 0) 42%);
  background: linear-gradient(to right, #e1c81e 10%, rgba(225, 200, 30, 0) 42%);
	position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before {
  width: 50%;
  height: 50%;
  background: #e1c81e;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
	bottom: 0;
  right: 0;
  content: '';
}
.spinner:after {
  background: #FFF;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #edece1;	/*全体の文字色*/
	font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2em;		/*行間*/
	background: #1A1703;	/*背景色*/
	-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;}
video {max-width: 100%;}
iframe {width: 100%;}
textarea{width:100%;max-width: 500px;}

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

#container{
	width:100%;
	overflow-x:hidden;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1400px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 2%;
	padding-right: 2%;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	padding: 20px;	/*ヘッダー内の余白*/

}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	padding: 0px;	/*余白をなしに*/
}


/*ロゴ画像*/
header #logo {
	width: 300px;	/*画像幅*/
	margin: 0 auto;	/*中央配置*/
}
/*ロゴ画像（トップページへの追加設定）*/
.home header #logo {
	display: none;	/*スライドショーの邪魔なので非表示に*/
}

/*その他のページの設定*/
.manual header,
.other header,
.return header{
	background-color: #FFF;
	color:#7C7A72;
}

.manual header h1{
  text-align: center;
	font-size:1.5em;
}

/*表示しない*/
.other header h1,
.return header h1{
	display: none;
}

/*動画*/
.top_video {
  margin: 0;
  padding: 0;
  display: block;
  z-index: 1;
  width: 100%;
}
.top_video_pattern{
  background: url(../images/pattern.png);
  z-index: 99;
  position: absolute;
  top:0;
  left:0;
  height: 100%;
  width: 100%;
}

.top_video_pattern img{
  width: 100%;
}


/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #FFF;	/*背景色*/
	border-top: 1px solid #ccc;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	/*font-family: 'Questrial', sans-serif;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
	height: 105px;	/*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}

.manual #menubar{
	height: 85px;
}

/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 16.6%;		/*修正：幅。今回は５個なので、100÷5=20。*/
	font-size: 20px;	/*文字サイズ 固定*/
}

.manual.android #menubar ul li {
	width: 20%;
}

.return #menubar ul li {
	width: 50%;
}


#menubar ul li a {
	text-decoration: none;display: block;
	height: 85px;		/*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	padding-top: 20px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
	color: #7C7A72;		/*文字色*/
}
/*マウスオン時の文字色*/
#menubar ul li a:hover {
	color: #e1c81e;		/*文字色*/
	text-shadow: 0px 0px 16px rgba(225,200,30,0.5);
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ　固定*/
	color: #7C7A72;		/*文字色*/
	text-shadow: none;
}
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2 {display: none;}

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

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
	color: #edece1;		/*文字色*/
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	left: 0px;
	width: 94%;
	padding: 50px 3%;
	background: #000;	/*背景色。古いブラウザ用。*/
	background: rgba(0,0,0,0.85);	/*背景色。0,0,0は黒のことで0.85は色が85%出た状態のこと。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #edece1;	/*境界が見辛いので、下線の設定。*/
}
/*ドロップダウンメニューの出現アニメーション*/
#menubar li:hover ul.ddmenu {
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.1s;		/*出現するタイミング（秒後）*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 0.85em;	/*文字サイズ*/
}
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;	/*メニューテキスト同士の余白*/
	color: #edece1;	/*文字色*/
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;		/*透明度。色が100%出た状態。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	height: 60px;	/*メニューの高さを少し狭くする*/
}
body.is-fixed-menu #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed #contents {
	margin-top: 105px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}

/*装飾文字を非表示にする*/
body.is-fixed-menu #menubar ul li span {
	display: none;
}
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
	height: 50px;
	padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 100px 0 50px;	/*上、左右、下へのコンテンツ内の余白*/
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-delay: 0.5s;		/*出現するタイミング（秒後）*/
	animation-fill-mode: both;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 64px;
	font-size: 3em;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
	line-height: 1.25em;
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
	font-size: 0.3em;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 1.5em;	/*文字サイズ*/
	border-bottom: 1px solid #edece1;	/*下線の幅、線種、色*/
	padding-left: 1%;		/*左側に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
/*段落タグ*/
#contents p {
	padding: 0 3% 1.5em;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 10em;
}

#contents ul{
	padding: 0 6% 30px;	/*上、左右、下への余白*/
	list-style: circle;
}

#contents ul ul{
	padding: 0 3% 0;	/*上、左右、下への余白*/
	list-style: disc;
}

#contents div + h3{
	margin-top:4em;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
	flex-direction: row;/*追加*/
	align-s: center;			/*中のブロックの縦並びの揃え方*/
	/*background: #000;*/		/*背景色*/
	color: #edece1;			/*文字色*/
	margin: 0 3% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	border: 1px solid rgba(255,255,255,0.5);			/*枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #edece1;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 0.25em;	/*下のテキストとの間に空けるスペース*/
	font-size: 1.4em;		/*文字サイズ*/
	border-bottom: 1px dotted #edece1;
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	width: 40%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

#contents .list .text p + h4,
#contents .list .text ul + h4{
	margin-top: 20px;
}

#contents .list .text ul{
	list-style: circle;
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
#contents .list:nth-of-type(even) .text {
	order: 1;
}

/*ボックス内のボタン（共通）*/
.btn1 a {
	display: block;
	text-decoration: none;
	border: 1px solid #edece1;		/*枠線の幅、線種、色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 30px;			/*上下、左右へのボタン内の余白*/
	margin: 40px auto 0;		/*上、左右、下へのボックスの外側への余白*/
	font-size:1.5em;
	color:#edece1;
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
	background: #FFF;	/*背景色*/
	color: #e1c81e !important;		/*文字色*/
	text-shadow: 0px 0px 16px rgba(225,200,30,0.5);
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container {
	display: flex;
	flex-direction: row; /*追加*/
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 3%;
}
/*１カラムあたりの設定*/
#contents .list-column {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 32%;						/*ブロック幅*/
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	/*background: #000;*/				/*背景色*/
	color: #edece1;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	border: 1px solid rgba(255,255,255,0.5);			/*枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*リンクテキストの文字色*/
#contents .list-column a {
	color: #edece1;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 1.4em;		/*文字サイズ*/
	color: #e1c81e !important;		/*文字色*/
	text-shadow: 0px 0px 8px rgba(225,200,30,1);
}
/*ボックス内のp（段落）タグ*/
#contents .list-column p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-column .text {
	padding: 5%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}


/*IEバグ対応*/
#contents .list-column figure {
	min-height: 0%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 0.8em;	/*文字サイズ*/
	/*background: #111;*/	/*背景色*/
	color: #ccc;		/*文字色*/
	text-align: center;
}
footer a {color: #ccc;}
footer a:hover {color: #edece1;}
footer .pr {display: block;font-size: 0.8em;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 50px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/footer_logo.png) no-repeat right center / 20%;	/*背景画像の読み込み。*/
}
/*リンクテキスト*/
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu li a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	/*background: #000;*/	/*背景色*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
#copyright a {text-decoration: none;}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	margin-bottom: 20px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
}
ul.icon img:hover {
	opacity: 0.8;
}

/*追加-リンク*/
ul.pplink {
	margin-bottom: 20px;
}
/*アイコン１個あたりの設定*/
ul.pplink li {
	display: inline-block;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.pplink img {
	width: 150px;		/*画像の幅*/
}
ul.pplink img:hover {
	opacity: 0.8;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	/*background: rgba(0,0,0,0.5);*/	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
	font-size: 1.5em;
}

/*EDIT*/
.ta2 caption {
	text-align: center;
}

.ta2 caption img{
	width:100%;
	max-width: 320px;
}

.ta2 span {
	display: block;
	font-size:0.75em;
}

.ta2 caption small{
	display: block;
	font-size:0.75em;
}

/*ta1テーブル*/
.ta1,.ta2 {
	width: 94%;
	table-layout: fixed;
	margin: 0 3% 30px;
}
.ta1, .ta2, .ta1 td, .ta2 td, .ta1 th,.ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th,.ta2 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

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

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #edece1;	/*文字色*/
	border: 1px solid #edece1;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #edece1;border: 1px solid #ccc;display: inline-block;padding: 0px 10px !important;border-radius: 4px;}
p.look {margin: 0 3%;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ffd93f !important;}
.pr {font-size: 0.6em;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 2em;}
.mini1 {font-size: 0.7em;display: inline-block;line-height: 1.5;}
.sh {display: none;}

/*追加*/
/*キャラクター紹介*/

/*swiper*/
 #contents .slider,
 #contents .slider_g{
    width: 100%;
		max-width: 1280px;
 }

#contents .slider{
	height:720px;
	background-image: url(../images/gallery/g01.jpg);
	background-size: cover;
	background-position: center center;
}

#contents .thumbnail,
#contents .thumbnail_g{
	margin-top:1em;
}

#contents .thumbnail{
	max-width:720px;
}

#contents .thumbnail_g{
	max-width:1152px;
}


#contents .thumbnail img,
#contents .thumbnail_g img{
	border: 1px solid #edece1;
	border-radius: 8px;
	width:1152px;
}

#contents .swiper-button-prev,
#contents .swiper-button-next{
	color:#FFF;
}

 #contents .slider_g .swiper-slide{
	 text-align: center;
	 margin: 0 auto;
 }

 #contents .slider_g img{
	 width:100%;
	 max-width: 1000px;
 }

#contents .charaview {
	width:100%;
	height:100%;
}

#contents .charaview .charaimg{
	position: absolute;
	top:0;
	left:0;
	width:60%;
	height:100%;
	background-position: 50% 20%;
	background-size: 120%;
	background-repeat: no-repeat;
}

#contents .charaview .profile{
	width:50%;
	position: absolute;
	bottom: 0;
	left:50%;
	margin-bottom:2em;
}

#contents .charaview .profile h3{
	font-size:2em;
	margin:16px;
	border-bottom: 1px solid #FFF;
	text-shadow: 1px 1px 5px #000;
}

#contents .charaview .profile h3 > span{
	font-size:0.5em;
	text-shadow: 1px 1px 5px #000;
}

#contents .charaview .profile h3 > span::before{
	content:" - ";
}

#contents .charaview .profile dl,
#contents .charaview .profile p{
	margin:0 2em 1em;
	padding: 0;
}

#contents .charaview .profile dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}

#contents .charaview .profile dd {
	padding-left: 9em;
}

@media screen and (max-width:1000px){
	#contents .slider{
     width: 100%;
 		 height:960px;
		 position: relative;
		background-size: cover;
	 	background-position: center center;
  }
	 #contents .charaview .charaimg{
	 	position: absolute;
	 	top:0;
	 	left:0;
	 	width:100%;
		background-size: 200%;
		background-position: 50% 20%;
	}
	#contents .charaview .profile{
		margin-bottom:0;
		width:100%;
		height:auto;
		position: absolute;
		bottom:0;
		left:0;
		padding-top: 2em;
	 	background: linear-gradient(to bottom, rgba(26, 23, 3,0) 0%,rgba(26, 23, 3, 0.6) 20%);
	}
	#contents .charaview .profile h3{
		text-align: center;
	}
	#contents .charaview .profile h3 > span{
		display: block;
		font-size:0.5em;
	}
	#contents .charaview .profile h3 > span::before{
		content:"";
	}
	#contents .swiper-pagination{
		display: none;
	}
}

@media screen and (max-width:480px){
	#contents .charaview .profile dt {
		float: none;
	}
	#contents .charaview .profile dd {
		padding-left: 1em;
	}
}

/*製品情報*/

#contents .product{
	margin-bottom:5em;
}

#contents .product .icon {
	text-align: center;
}

#contents .product img{
	width:100%;
	max-width: 320px;
	padding: 0;
	margin: 0;
}

#contents .product h3{
	letter-spacing: 0.2em;
	border: none;
	padding: 0;
	margin: 0;
	margin-bottom: 32px;
}

#contents .product h3 span{
	display: block;
	letter-spacing: 0.2em;
	font-size: 0.75em;
}

#contents .product .dlicon,
#contents .product .dllink{
	max-width:480px;
	width:100%;
	margin: 0 auto 32px;
	display: flex;
}

#contents .product .dlicon{
	flex-direction: row;/*追加*/
}

#contents .product .dllink{
	flex-direction: column;
}

#contents .product .dlicon div,
#contents .product .dllink div{
	text-align: center;
}
#contents .product .dlicon div{
	width:50%;
}

#contents .product .dllink div{
	width:100%;
}

#contents .product .dlicon img{
	width:auto;
	max-height: 60px;
	height: 100%;
}

#contents .product .dllink .btn1{
	margin: 0;
	padding: 0;
}

#contents .product .dllink .btn1 a{
	margin: 4px auto;
}

/*intro*/

#intro{
	text-align: center;
}

@media screen and (max-width:480px){
	#intro{
		text-align: left;
	}
}

#intro img{
	width:100%;
	max-width: 480px;
	margin-bottom:32px;
}

/*story*/
#contents .storyimg{
	display: flex;
	flex-direction: row;
}

#contents .storyimg .cg{
	width:30%;
}

#contents .storyimg .cg img{
	width:100%;
	margin:16px;
}

#contents .storyimg .text{
	width:70%;

}

/*news*/
/*ボックスの設定*/
#contents .news {
  max-width:960px;
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	color: #edece1;			/*文字色*/
	margin: 0 auto 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	border: 1px solid rgba(255,255,255,0.5);			/*枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態の事。*/
	padding: 1.5em;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#contents .news .newshead{
	margin-bottom: 16px;
}
/*リンクテキストの文字色*/
#contents .news a {
	color: #edece1;
}
/*ボックス内のh4（見出し）タグ*/
#contents .news h3 {
	margin-bottom: 1em;	/*下のテキストとの間に空けるスペース*/
	font-size: 2em;		/*文字サイズ*/
	border-bottom: 1px dotted #edece1;
	padding:0 0 0.3em 0.5em;
  line-height: 1.5em;
}
/*ボックス内のp（段落）タグ*/
#contents .news p {
	padding: 0 1em;		/*余白のリセット*/
  line-height: 2.5em;
  margin:2em 0;
}

/*ボックス内のfigure画像*/
#contents .news img{
	width: 90%;		/*画像の幅*/
	padding: 5%;
}

#contents .news .date{
	font-size:1em;
	padding:0.5em 1em;
}

#contents .news big {
	font-size:2em;
}

@media screen and (max-width:480px){
  #contents .news {
  	margin: 0 1% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
    padding: 0;
  }
  #contents .news p {
  	padding: 0 0.5em;		/*余白のリセット*/
    line-height: 2.5em;
  }
  #contents .news big {
  	font-size:1.5em;
  }
}


#contents .category_info::after{
	background-color:#e1c81e;
	content: "お知らせ";
	color:#1A1703;
	padding: 0.2em 0.5em;
}

#contents .category_app::after{
	background-color:#e1c81e;
	content: "アプリ";
	color:#1A1703;
	padding: 0.2em 0.5em;
}

#contents .category_blog::after{
	background-color:#e1c81e;
	content: "制作ブログ";
	color:#1A1703;
	padding: 0.2em 0.5em;
}

#contents .newsfoot{
	text-align: center;
	margin: 1em;
}

#contents .newsfoot .btn1{
	width:50%;
	min-width: 200px;
	margin: 0 auto;
}

#contents #staff figure{
	text-align: center;
	width:50%;
	margin: 1em auto;
}

#contents #music h3{
	text-align: center;
	padding: 0;
	margin: 4em 0;
	font-size:2em;
	border-bottom: none;

}
#contents #music h3 span{
	text-align: center;
	padding: 0;
	font-size:0.6em;
	display: block;
}

#contents #music figure{
	text-align: center;
	width:80%;
	margin: 4em auto;
}

#contents #music .btn1{
	width:60%;
	min-width: 200px;
	margin: 0 auto;
}

#contents .video,
#contents .tweet{
	text-align: center;
	position: relative;
	width:100%;
	margin: 0 auto;
}

#contents .video{
	max-width:1000px;
	padding-top: 56.25%;
}

#contents .video iframe{
	position: absolute;
	top:0;
	right:0;
	width:100% !important;
	height: 100% !important;
}

#contents .ico_thumb{
  width:12.2%;
  min-width:82px;
}

#contents .hd_thumb{
  width:100%;
}


#contents .faqsec{
  margin-top: 2em;
}

#contents .faqsec h3{
  border:none;
  font-size:1em;
  padding-left:3%;
  margin-bottom: 1em;
  color:#e1c81e;
}

#contents .faqsec p{
  padding: 0 3%;
}

#contents .faqsec ul{
  padding: 0 6%;
}

#contents .faqsec p+h3{
  margin-top: 3em;
}

#contents .cf{
  text-align: center;
}

#contents .cf .mainimg{
  width:100%;
  max-width: 800px;
}

/*リターンページ（色彩逆）*/
.return #contents .col {
  	width: 48%;						/*ブロック幅*/
  	color: #1A1703;					/*文字色*/
  	border: none;
}

@media screen and (max-width:800px){
  .return #contents .col {
    	width: 96%;						/*ブロック幅*/
  }
}

.return #contents .col a{
  color: #7C7A72;
}

.return #contents {
	color: #1A1703;	/*全体の文字色*/
	background: #edece1;	/*背景色*/
}

.return a {
	color: #7C7A72;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
.return a:hover {
	color: #7C7A72;			/*マウスオン時の文字色*/
	text-shadow: 0px 0px 16px rgba(225,200,30,0.5);
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

.return .btn1 a {
	background: #FFF;	/*背景色*/
	border: 1px solid #7C7A72;		/*枠線の幅、線種、色*/
	color:#7C7A72;
  border-radius: 8px;
}
/*ボタンのマウスオン時（共通）*/
.return .btn1 a:hover {
	background: #FFF;	/*背景色*/
	color: #e1c81e !important;		/*文字色*/
	text-shadow: 0px 0px 16px rgba(225,200,30,0.5);
}

.return #item .thumbs,
.return #plan .thumbs{
  margin: 0 auto;
  width: 90%;
}
.return #item .thumbs span,
.return #plan .thumbs span{
	box-shadow: 1px 1px 5px #7C7A72;
}

.return #item .ico_item,
.return #plan .ico_item{
  border-radius: 8px;
}

.return #item .ico_item{
  width:11%;
  margin: 0.25%;
  padding: 0;
  min-width:72px;
}

.return #plan .ico_item{
  width:24%;
  margin: 0.25%;
  padding: 0;
  min-width:64px;
}

.return #item .data,
.return #plan .data{
  margin-top: 6em;
  width: 800px;
  margin: 6em auto 0;
  background-color: #FFF;
  border-radius: 16px;
}

.return #item .data div:nth-child(2),
.return #plan .data div:nth-child(2){
  text-align:center;
}

.return #plan .data div:nth-child(2){
  padding:3em 0;
}

.return #item .data .image,
.return #plan .data .image{
  width: 400px;
  border-radius: 16px;
  margin: 1%;
}

@media screen and (max-width:800px){

.return #item .data,
.return #plan .data{
  width:90%;
}

}

@media screen and (max-width:480px){

.return #item .data .image,
.return #plan .data .image{
  width:100%;
}

}

.return #item .data h3,
.return #plan .data h3 {
  text-align: center;
  width:100%;
  position: relative;
  padding: 1.5rem 0;
  color:#c4ab69;
  font-weight: bold;
  line-height: 1.5em;
}

.return #plan .data .highlight{
  background-color:#ffce08;
}

.return #item .data h3:before,
.return #item .data h3:after,
.return #plan .data h3:before,
.return #plan .data h3:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

.return #item .data h3:before,
.return #plan .data h3:before{
  top: 0;
}

.return #item .data h3:after,
.return #plan .data h3:after {
  bottom: 0;
}

.return #item .data h4,
.return #plan .data h4{
  padding-left: 3%;
}

.return #item .data ul,
.return #plan .data ul{
  padding-left: 6%;
}

.return #contents .category_cfdigi::after,
.return #contents .category_cfexp::after,
.return #contents .category_cfgoods::after{
	background-color:#e1c81e;
	color:#1A1703;
	padding: 0.2em 0.5em;
}

.return #contents .category_cfdigi::after{
	content: "デジタル";
}

.return #contents .category_cfexp::after{
	content: "体験型";
}

.return #contents .category_cfgoods::after{
	content: "グッズ";
}

.return #contents .data .data_top{
  text-align: right;

}

/*CFリターン画像の登録*/
/*アイテム別*/
.return #contents .item01{content:url(../images/cf/item01.jpg);}
.return #contents .item02{content:url(../images/cf/item02.jpg);}
.return #contents .item03{content:url(../images/cf/item03.jpg);}
.return #contents .item04{content:url(../images/cf/item04.jpg);}
.return #contents .item04or{content:url(../images/cf/item04or.jpg);}
.return #contents .item05{content:url(../images/cf/item05.jpg);}
.return #contents .item06{content:url(../images/cf/item06.jpg);}
.return #contents .item07{content:url(../images/cf/item07.jpg);}
.return #contents .item08{content:url(../images/cf/item08.jpg);}
.return #contents .item09{content:url(../images/cf/item09.jpg);}
.return #contents .item10{content:url(../images/cf/item10.jpg);}
.return #contents .item11{content:url(../images/cf/item11.jpg);}
.return #contents .item12{content:url(../images/cf/item12.jpg);}
.return #contents .item13{content:url(../images/cf/item13.jpg);}
.return #contents .item14{content:url(../images/cf/item14.jpg);}
.return #contents .item15{content:url(../images/cf/item15.jpg);}
.return #contents .item16{content:url(../images/cf/item16.jpg);}
.return #contents .item17{content:url(../images/cf/item17.jpg);}
.return #contents .item18{content:url(../images/cf/item18.jpg);}
.return #contents .item19{content:url(../images/cf/item19.jpg);}
.return #contents .item20{content:url(../images/cf/item20.jpg);}
.return #contents .item21{content:url(../images/cf/item21.jpg);}


.return #contents .item01st::after{content:"フィジクス・ポイントからお礼のメール＆エーヴィヒ制作ブログ閲覧権";}
.return #contents .item02st::after{content:"限定イベント「収録後日談」にご招待！";}
.return #contents .item03st::after{content:"特製サンクスカード（ポストカード）";}
.return #contents .item04st::after{content:"缶バッジ（２種）";}
.return #contents .item05st::after{content:"特製なんちゃってパッケージ（トールケース）番外小説が読めるQRコードつき";}
.return #contents .item06st::after{content:"フルボイス版先行プレイ権";}
.return #contents .item07st::after{content:"エキストラ出演権";}
.return #contents .item08st::after{content:"エキストラ出演お祝いイラスト（デジタル）";}
.return #contents .item09st::after{content:"平梅珠百合直筆イラスト色紙";}
.return #contents .item10st::after{content:"エーヴィヒ公式サイトにお名前掲載";}
.return #contents .item11st::after{content:"ゲーム内スタッフロールに「ゴールドサポーター」としてお名前掲載";}
.return #contents .item12st::after{content:"ゲーム内スタッフロールに「エキストラ」としてお名前掲載";}
.return #contents .item13st::after{content:"エーヴィヒがあなたの名前を呼んでくれる権";}
.return #contents .item14st::after{content:"シュテフィがあなたの名前を呼んでくれる権";}
.return #contents .item15st::after{content:"ベアテがあなたの名前を呼んでくれる権";}
.return #contents .item16st::after{content:"アーデルベルトがあなたの名前を呼んでくれる権";}
.return #contents .item17st::after{content:"トリシャがあなたの名前を呼んでくれる権";}
.return #contents .item18st::after{content:"レインがあなたの名前を呼んでくれる権";}
.return #contents .item19st::after{content:"キャラクターデザイン権（永遠の子、もしくはメメント・モリ）";}
.return #contents .item20st::after{content:"ゲーム内スタッフロールに「（デザインしたキャラ名）デザイン原案」としてお名前掲載";}
.return #contents .item21st::after{content:"ゲーム内スタッフロールに「エターナルゴールドサポーター」として、ものすごい大きさでお名前掲載";}

/*プラン別*/
.return #contents .plan01{content:url(../images/cf/plan01.png);}
.return #contents .plan02{content:url(../images/cf/plan02.png);}
.return #contents .plan03{content:url(../images/cf/plan03.png);}
.return #contents .plan04{content:url(../images/cf/plan04.png);}
.return #contents .plan05{content:url(../images/cf/plan05.png);}
.return #contents .plan06{content:url(../images/cf/plan06.png);}
.return #contents .plan07{content:url(../images/cf/plan07.png);}
.return #contents .plan08{content:url(../images/cf/plan08.png);}
.return #contents .plan09{content:url(../images/cf/plan09.png);}
.return #contents .plan10{content:url(../images/cf/plan10.png);}
.return #contents .plan11{content:url(../images/cf/plan11.png);}
.return #contents .plan12{content:url(../images/cf/plan12.png);}
.return #contents .plan13{content:url(../images/cf/plan13.png);}
.return #contents .plan14{content:url(../images/cf/plan14.png);}
.return #contents .plan15{content:url(../images/cf/plan15.png);}
.return #contents .plan08add{content:url(../images/cf/plan08add.png);}

.return #contents .plan01st::after{content:"サポータープラン";}
.return #contents .plan02st::after{content:"収録後日談";}
.return #contents .plan03st::after{content:"選べるグッズ＆お名前掲載";}
.return #contents .plan04st::after{content:"フルボイス版先行プレイ権";}
.return #contents .plan05st::after{content:"選べるグッズ＆先行プレイ権";}
.return #contents .plan06st::after{content:"黄金プラン";}
.return #contents .plan07st::after{content:"エキストラ出演プラン";}
.return #contents .plan08st::after{content:"エキストラ出演＆記念グッズ";}
.return #contents .plan09st::after{content:"エーヴィヒがあなたの名前を呼びます！！";}
.return #contents .plan10st::after{content:"シュテフィがあなたの名前を呼びます！！";}
.return #contents .plan11st::after{content:"ベアテがあなたの名前を呼びます！！";}
.return #contents .plan12st::after{content:"アーデルベルトがあなたの名前を呼びます！！";}
.return #contents .plan13st::after{content:"トリシャがあなたの名前を呼びます！！";}
.return #contents .plan14st::after{content:"レインがあなたの名前を呼びます！！";}
.return #contents .plan15st::after{content:"あなたも“家族”に！？キャラクターデザインプラン";}
.return #contents .plan08stadd::after{content:"直筆イラスト色紙プラン";}

.return #contents .pimage{
  padding:1%;
  margin: 0 auto;
  width:100%;
}

.return #contents .pimage span{
  width:18%;
  margin:0.5%;
  border-radius:8px;
  min-width: 48px;
	box-shadow: 1px 1px 5px #7C7A72;
}

#contents #pickup{
  width: 100%;
  text-align: center;
}

#contents #pickup img{
  width:100%;
  max-width: 800px;
}

#contents #pickup iframe{
  width: 245px;
  margin: 0 auto;
}

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	/*font-size: 2vw;*/	/*文字サイズ*/
	overflow-x: hidden;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #ccc;
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	border: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #edece1;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 0.8em;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #edece1;	/*下の線の幅、線種、色*/
	color: #edece1;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #edece1;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #edece1 !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 2%;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #edece1;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
body.is-fixed #contents {
	margin-top: 0px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 50px 0;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
#contents h2 {
	margin-bottom: 16px;
	font-size:2em;
}

#contents h2 span{
	font-size:0.4em;
}

/*EDIT*/
#contents .storyimg{
	display: flex;
	flex-direction: column-reverse;
}

#contents .storyimg .cg{
	margin: 0;
	margin-bottom:3em;
	width: 100%;
	padding: 0;
}

#contents .storyimg .cg img{
	padding: 0;
	margin-bottom:1em;
	width:90%;
}

#contents .storyimg .text{
	width:100%;
	margin: 0;
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
#contents .list-column {
	width: 45%;						/*ブロック幅*/
}

/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 0px;

}

/*3つ目は非表示にする*/
#contents .list-column-container .list-column:nth-child(3){
	display: none;
}

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
/*.big1 {font-size: 20px;}*/

/*追加*/
#contents .list {
	flex-direction: column;
}
#contents .list .text{
	width:84%;
	padding:8% 8%;
}
#contents .list .text:nth-child(1){
	order: 2;
}
#contents .list .text:nth-child(2){
	order: 1;
}
#contents .list figure {
	width: 100%;		/*画像の幅*/
}

}
/*800px*/


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	/*font-size: 3vw;*/
	overflow-x: hidden;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	margin-bottom: 30px;
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 20px;
}
#contents section + section {
	/*margin-top: 30px;*/
}

/*EDIT*/

#contents .list-column-container {
	flex-direction: column;
}

#contents .list-column {
	width: 100%;						/*ブロック幅*/
}

/*２～３つ目は非表示にする*/
#contents .list-column-container .list-column:nth-child(2){
	display: none;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のボタン（共通）*/
.btn1 a {
	padding: 5px 10px;			/*上下、左右へのボタン内の余白*/
}

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
/*.big1 {font-size: 16px;}*/
.sh {display:block;}
.pc {display:none;}

#contents .product .dlicon{
	flex-direction: column;
}

#contents .product .dlicon div{
	width: 100%;
}

#contents .product .dlicon img{
	width:100%;
	max-height: none;
	padding: 8px;
}

}
