@charset "utf-8";
/* ==============================================================
   #リセット
   ============================================================== */
html {
	box-sizing: border-box;
	overflow-y: scroll; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
*,
::before,
::after {
	box-sizing: inherit;
	position: relative;
}
::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit;
}
* {
	background-repeat: no-repeat; /* 1 */
	padding: 0; /* 2 */
	margin: 0;
	outline : none;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
hr {
	overflow: visible; /* 1 */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}
small {
	font-size: 80%; /* 1 */
}
[hidden], template {
 display: none; /* 1 */
}
abbr[title] {
	border-bottom: 1px dotted; /* 1 */
	text-decoration: none; /* 2 */
}
a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
}
a:active,
a:hover {
	outline-width: 0; /* 1 */
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace; /* 1 */
}
b,
strong {
	font-weight: bolder; /* 1 */
}
dfn {
	font-style: italic; /* 1 */
}
mark {
	background-color: #ff0;
	color: #000;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/* # =================================================================
   # forms
   # ================================================================= */

input {
	border-radius: 0;
}
[type="number"] {
 width: auto; /* 1 */
}
[type="search"] {
 -webkit-appearance: textfield; /* 1 */
}
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
 -webkit-appearance: none; /* 1 */
}
textarea {
	overflow: auto; /* 1 */
	resize: vertical; /* 2 */
}
button,
input,
optgroup,
select,
textarea {
	font: inherit; /* 1 */
	outline: none;
}
optgroup {
	font-weight: bold; /* 1 */
}
button {
	overflow: visible; /* 1 */
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
 border-style: 0;
 padding: 0;
}
button:-moz-focusring, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
 outline: 1px dotted buttontext;
}
button, html [type="button"], /* 1 */ [type="reset"], [type="submit"] {
 -webkit-appearance: button; /* 2 */
}
button,
select {
	text-transform: none; /* 1 */
}
button,
input,
select,
textarea {
	background-color: transparent;
	border-style: none;
	color: inherit;
}
select {
	-moz-appearance: none; /* 1*/
	-webkit-appearance: none; /* 2 */
}
select::-ms-expand {
 display: none; /* 1 */
}
select::-ms-value {
 color: currentcolor; /* 1 */
}
legend {
	border: 0; /* 1*/
	color: inherit; /* 2 */
	display: table; /* 3 */
	max-width: 100%; /* 4 */
	white-space: normal; /* 5 */
}
::-webkit-file-upload-button {
 -webkit-appearance: button; /* 1 */
 font: inherit; /* 2 */
}
::-webkit-input-placeholder {
 color: inherit;
 opacity: 0.54;
}
[type="search"] {
 -webkit-appearance: textfield; /* 1 */
 outline-offset: -2px; /* 2 */
}

/* ==============================================================
   #基本設定
   ============================================================== */
* {
	position: relative;
}
html {
	font-size: 12px;
}
@media screen and (min-width: 768px) { /*--- 768px ---*/
html {
	font-size: 14px;
}
}
body {
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.4;
	word-break: break-word;
}
hr {
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
	border: 0;
	border-top: transparent solid 1px;
	border-color: #e0e0e0;
}
/* ==============================================================
   #見出し
   ============================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	line-height: 1.4;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：.fw-h*は、任意のフォントサイズにしたい時に。
	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

h1,
.fw-h1 {
	font-size: 40px;
	font-size: 2.85rem;
}
h2,
.fw-h2 {
	font-size: 32px;
	font-size: 2.285rem;
}
h3,
.fw-h3 {
	font-size: 24px;
	font-size: 1.715rem;
}
h4,
.fw-h4 {
	font-size: 18px;
	font-size: 1.285rem;
}
h5,
.fw-h5 {
	font-size: 14px;
	font-size: 1rem;
}
h6,
.fw-h6 {
	font-size: 12px;
	font-size: 0.875rem;
}

/* ==============================================================
   #本文
   ============================================================== */

p {
	margin-top: 1rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}
@media (min-width: 960px) {
p {
	line-height: 1.8;
}
}

/* ==============================================================
   テキスト
   ============================================================== */
 /* 強調 */
strong {
	color: inherit;
	font-weight: 600;
}
/* 左寄せ */
.text-left {
	text-align: left;
}
/* 右寄せ */
.text-right {
	text-align: right;
}
/* センター寄せ */
.text-center {
	text-align: center;
}
/* ==============================================================
   #リンク
   ============================================================== */

a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: #dc446e;
	text-decoration: underline;
}
a:active {
	color: inherit;
}
a:focus {
	color: inherit;
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：ページ内リンク時、サイトが固定ヘッダー場合は、ヘッダーの高さをmargin-top、padding-topに設定する
	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.fw-anchor {
	margin-top: -120px;
	padding-top: 120px;
}
/* ==============================================================
   #リスト
   ============================================================== */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：リストアイコンは基本非表示
	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
ul,
ol {
	margin:0;
	padding: 0;
	list-style: none;
}
ul li,
ol li {
	margin:0;
	padding: 0;
}
ul li:last-child,
ol li:last-child {
	margin:0;
	padding: 0;
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：リストアイコンを表示させる場合は以下クラスを付ける
	//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
ul.fw-list {
	list-style: disc;
}
ol.fw-list {
	list-style: decimal;
}
ul.fw-list li,
ol.fw-list li {
	margin-left: 2em;
}

/* ==============================================================
   #画像
   ============================================================== */
img {
    vertical-align: middle;
}
img {
    border: 0;
}   
.img-responsive {
	display: block;
  max-width: 100%;
  height: auto;
}

/* ==============================================================
   #バナー
   ============================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：バナーを囲むリンク要素には、とりあえず下記クラスを付けとけば幸せになれる。
	例）
	<a class="fw-banner-item">
		<img src="" />
	</a>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.fw-banner-item {
	display: block;
	text-align: center;
	-webkit-transition: ease-out .2s;
	transition: ease-out .2s;
}
.fw-banner-item:hover {
	opacity: 0.7;
}
.fw-banner-item img {
	overflow: hidden;
}
/* ==============================================================
   #テーブル
   ============================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：レシポンシブ未対応。各プロジェクト毎に対応して下さい
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 1rem auto;
}
theader {
}
tbody {
}
tfooter {
}
th,
td {
	border: transparent solid 1px;
	border-color: #e0e0e0;
	padding: 0.8575rem;	
}
th {
	font-size: 14px;
	font-size: 1rem;
}
td {
	font-size: 12px;
	font-size: 0.8575rem;
}

@media screen and (max-width: 768px) { /*--- 768px未満 ---*/
.fw-table-responsive {
	min-width: 80px;
	overflow-y: hidden;
	margin: 1rem auto;
	-webkit-overflow-scrolling: touch;
}
.fw-table-responsive table {
	min-width: 800px;
	margin: auto;
}
}
/* ==============================================================
   #レイアウト
   ============================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：レイアウトの組み方は下記例を基本にする事
	例）
	<div clas="fw-container">＊コンテンツ幅の設定
		<div clas="fw-row">＊セルの並びを設定
			<div class="fw-col-70"></div>
			<div class="fw-col-30"></div>＊セルの合計値が100になるように
		</div>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#content-wrap {
	width: 100%;
}
.fw-container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	
}
/*---サイト幅 100% ---*/
.fw-container.fix {
	max-width: 100%;
}
/*--- タブレット ---*/
@media screen and (min-width: 768px) { /*--- 768px ---*/
.fw-container {
	max-width: calc(100% + 30px);
}
}
/*--- タブレット横 ---*/
@media screen and (min-width: 1024px) { /*--- 1024px ---*/
.fw-container {
	max-width: calc(900px + 30px);
}
}
/*--- デスクトップ ---*/
@media screen and (min-width: 1200px) { /*--- 1200px ---*/
.fw-container {
	max-width: calc(900px + 30px);
}
/*---サイト幅 100% ---*/
.fw-container.fix {
	max-width: 100%;
}
}

/* ==============================================================
   #カラム設定
   ============================================================== */
.fw-row {
	box-sizing: border-box;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
/*Safariだけに適用されるCSSハック*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, .fw-row {
 display: -webkit-box;
}
}

/*--- セル横並び逆順 ---*/
.reverse {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
/*--- セル縦並び逆順 ---*/

.vertical-reverse {
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   スマートフォン（最小）
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
 [class*="fw-col-"] {
 -webkit-box-flex: 1;
 -webkit-flex-grow: 1;
 -ms-flex-positive: 1;
 flex-grow: 1;
 padding-right: 15px;
 padding-left: 15px;
 width: 100%;
}   
.fw-col-100 {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.fw-col-90 {
	-ms-flex-preferred-size: 90%;
	-webkit-flex-basis: 90%;
	flex-basis: 90%;
	max-width: 90%;
}
.fw-col-83 {
	-ms-flex-preferred-size: 83.333%;
	-webkit-flex-basis: 83.333%;
	flex-basis: 83.333%;
	max-width: 83.333%;
}
.fw-col-80 {
	-ms-flex-preferred-size: 80%;
	-webkit-flex-basis: 80%;
	flex-basis: 80%;
	max-width: 80%;
}
.fw-col-75 {
	-ms-flex-preferred-size: 75%;
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.fw-col-70 {
	-ms-flex-preferred-size: 70%;
	-webkit-flex-basis: 70%;
	flex-basis: 70%;
	max-width: 70%;
}
.fw-col-66 {
	-ms-flex-preferred-size: 66.666%;
	-webkit-flex-basis: 66.666%;
	flex-basis: 66.666%;
	max-width: 66.666%;
}
.fw-col-60 {
	-ms-flex-preferred-size: 60%;
	-webkit-flex-basis: 60%;
	flex-basis: 60%;
	max-width: 60%;
}
.fw-col-50 {
	-ms-flex-preferred-size: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.fw-col-40 {
	-ms-flex-preferred-size: 40%;
	-webkit-flex-basis: 40%;
	flex-basis: 40%;
	max-width: 40%;
}
.fw-col-33 {
	-ms-flex-preferred-size: 33.333%;
	-webkit-flex-basis: 33.333%;
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.fw-col-30 {
	-ms-flex-preferred-size: 30%;
	-webkit-flex-basis: 30%;
	flex-basis: 30%;
	max-width: 30%;
}
.fw-col-25 {
	-ms-flex-preferred-size: 25%;
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.fw-col-20 {
	-ms-flex-preferred-size: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
	max-width: 20%;
}
.fw-col-16 {
	-ms-flex-preferred-size: 16.667%;
	-webkit-flex-basis: 16.667%;
	flex-basis: 16.667%;
	max-width: 16.667%;
}
.fw-col-10 {
	-ms-flex-preferred-size: 10%;
	-webkit-flex-basis: 10%;
	flex-basis: 10%;
	max-width: 10%;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：.fw-rowに付けることで、セルの位置を調整できる
	例）
	<div clas="fw-row fw-center">＊セルを中央寄せにする
		<div class="fw-col-50"></div>
		<div class="fw-col-50"></div>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*--- セル左寄せ ---*/
.fw-start {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	text-align: start;
}
/*--- セル中央寄せ ---*/
.fw-center {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}
/*--- セル右寄せ ---*/
.fw-end {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	text-align: end;
}
/*--- セル上付き ---*/
.fw-top {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}
/*--- セル天地中央 ---*/
.fw-middle {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}
/*--- セル下付き ---*/
.fw-bottom {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}
/*--- セル中央寄せの均等配置 ---*/
.fw-around {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
/*--- セル横幅いっぱいの均等配置 ---*/
.fw-between {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.fw-first {
	-webkit-order: -1;
	-ms-flex-order: -1;
	-webkit-box-ordinal-group: 0;
	order: -1;
}
.fw-last {
	-webkit-order: 1;
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   タブレット（縦768px以上）
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) { /*--- 768px ---*/
.fw-col-100-sm {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.fw-col-90-sm {
	-ms-flex-preferred-size: 90%;
	-webkit-flex-basis: 90%;
	flex-basis: 90%;
	max-width: 90%;
}
.fw-col-83-sm {
	-ms-flex-preferred-size: 83.333%;
	-webkit-flex-basis: 83.333%;
	flex-basis: 83.333%;
	max-width: 83.333%;
}
.fw-col-80-sm {
	-ms-flex-preferred-size: 80%;
	-webkit-flex-basis: 80%;
	flex-basis: 80%;
	max-width: 80%;
}
.fw-col-75-sm {
	-ms-flex-preferred-size: 75%;
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.fw-col-70-sm {
	-ms-flex-preferred-size: 70%;
	-webkit-flex-basis: 70%;
	flex-basis: 70%;
	max-width: 70%;
}
.fw-col-66-sm {
	-ms-flex-preferred-size: 66.666%;
	-webkit-flex-basis: 66.666%;
	flex-basis: 66.666%;
	max-width: 66.666%;
}
.fw-col-60-sm {
	-ms-flex-preferred-size: 60%;
	-webkit-flex-basis: 60%;
	flex-basis: 60%;
	max-width: 60%;
}
.fw-col-50-sm {
	-ms-flex-preferred-size: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.fw-col-40-sm {
	-ms-flex-preferred-size: 40%;
	-webkit-flex-basis: 40%;
	flex-basis: 40%;
	max-width: 40%;
}
.fw-col-33-sm {
	-ms-flex-preferred-size: 33.333%;
	-webkit-flex-basis: 33.333%;
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.fw-col-30-sm {
	-ms-flex-preferred-size: 30%;
	-webkit-flex-basis: 30%;
	flex-basis: 30%;
	max-width: 30%;
}
.fw-col-25-sm {
	-ms-flex-preferred-size: 25%;
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.fw-col-20-sm {
	-ms-flex-preferred-size: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
	max-width: 20%;
}
.fw-col-16-sm {
	-ms-flex-preferred-size: 16.667%;
	-webkit-flex-basis: 16.667%;
	flex-basis: 16.667%;
	max-width: 16.667%;
}
.fw-col-10-sm {
	-ms-flex-preferred-size: 10%;
	-webkit-flex-basis: 10%;
	flex-basis: 10%;
	max-width: 10%;
}
/*--- スマートフォン（大）の場合、非表示 ---*/
.fw-col-hidden-sm {
	display: none;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：.fw-rowに付けることで、セルの位置を調整できる
	例）
	<div clas="fw-row fw-center">＊セルを中央寄せにする
		<div class="fw-col-50"></div>
		<div class="fw-col-50"></div>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*--- セル左寄せ ---*/
.fw-start-sm {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	text-align: start;
}
/*--- セル中央寄せ ---*/
.fw-center-sm {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}
/*--- セル右寄せ ---*/
.fw-end-sm {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	text-align: end;
}
/*--- セル上付き ---*/
.fw-top-sm {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}
/*--- セル天地中央 ---*/
.fw-middle-sm {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}
/*--- セル下付き ---*/
.fw-bottom-sm {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}
/*--- セル中央寄せの均等配置 ---*/
.fw-around-sm {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
/*--- セル横幅いっぱいの均等配置 ---*/
.fw-between-sm {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.fw-first-sm {
	-webkit-order: -1;
	-ms-flex-order: -1;
	-webkit-box-ordinal-group: 0;
	order: -1;
}
.fw-last-sm {
	-webkit-order: 1;
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	タブレット（横1024px以上）
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 1024px) { /*--- 1024px ---*/
 [class*="fw-col-"] {
 -webkit-box-flex: 1;
 -webkit-flex-grow: 1;
 -ms-flex-positive: 1;
 flex-grow: 1;
 width: 100%;
}	 
.fw-col-100-md {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.fw-col-90-md {
	-ms-flex-preferred-size: 90%;
	-webkit-flex-basis: 90%;
	flex-basis: 90%;
	max-width: 90%;
}
.fw-col-83-md {
	-ms-flex-preferred-size: 83.333%;
	-webkit-flex-basis: 83.333%;
	flex-basis: 83.333%;
	max-width: 83.333%;
}
.fw-col-80-md {
	-ms-flex-preferred-size: 80%;
	-webkit-flex-basis: 80%;
	flex-basis: 80%;
	max-width: 80%;
}
.fw-col-75-md {
	-ms-flex-preferred-size: 75%;
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.fw-col-70-md {
	-ms-flex-preferred-size: 70%;
	-webkit-flex-basis: 70%;
	flex-basis: 70%;
	max-width: 70%;
}
.fw-col-66-md {
	-ms-flex-preferred-size: 66.666%;
	-webkit-flex-basis: 66.666%;
	flex-basis: 66.666%;
	max-width: 66.666%;
}
.fw-col-60-md {
	-ms-flex-preferred-size: 60%;
	-webkit-flex-basis: 60%;
	flex-basis: 60%;
	max-width: 60%;
}
.fw-col-50-md {
	-ms-flex-preferred-size: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.fw-col-40-md {
	-ms-flex-preferred-size: 40%;
	-webkit-flex-basis: 40%;
	flex-basis: 40%;
	max-width: 40%;
}
.fw-col-33-md {
	-ms-flex-preferred-size: 33.333%;
	-webkit-flex-basis: 33.333%;
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.fw-col-30-md {
	-ms-flex-preferred-size: 30%;
	-webkit-flex-basis: 30%;
	flex-basis: 30%;
	max-width: 30%;
}
.fw-col-25-md {
	-ms-flex-preferred-size: 25%;
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.fw-col-20-md {
	-ms-flex-preferred-size: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
	max-width: 20%;
}
.fw-col-16-md {
	-ms-flex-preferred-size: 16.667%;
	-webkit-flex-basis: 16.667%;
	flex-basis: 16.667%;
	max-width: 16.667%;
}
.fw-col-10-md {
	-ms-flex-preferred-size: 10%;
	-webkit-flex-basis: 10%;
	flex-basis: 10%;
	max-width: 10%;
}
/*--- タブレットの場合、非表示 ---*/
.fw-col-hidden-md {
	display: none;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：.fw-rowに付けることで、セルの位置を調整できる
	例）
	<div clas="fw-row fw-center">＊セルを中央寄せにする
		<div class="fw-col-50"></div>
		<div class="fw-col-50"></div>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*--- セル左寄せ ---*/
.fw-start-md {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	text-align: start;
}
/*--- セル中央寄せ ---*/
.fw-center-md {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}
/*--- セル右寄せ ---*/
.fw-end-md {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	text-align: end;
}
/*--- セル上付き ---*/
.fw-top-md {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}
/*--- セル天地中央 ---*/
.fw-middle-md {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}
/*--- セル下付き ---*/
.fw-bottom-md {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}
/*--- セル中央寄せの均等配置 ---*/
.fw-around-md {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
/*--- セル横幅いっぱいの均等配置 ---*/
.fw-between-md {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.fw-first-md {
	-webkit-order: -1;
	-ms-flex-order: -1;
	-webkit-box-ordinal-group: 0;
	order: -1;
}
.fw-last-md {
	-webkit-order: 1;
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	デスクトップ（横1200px以上）
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 1200px) { /*--- 1200px ---*/
.fw-col-100-lg {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 100%;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.fw-col-90-lg {
	-ms-flex-preferred-size: 90%;
	-webkit-flex-basis: 90%;
	flex-basis: 90%;
	max-width: 90%;
}
.fw-col-83-lg {
	-ms-flex-preferred-size: 83.333%;
	-webkit-flex-basis: 83.333%;
	flex-basis: 83.333%;
	max-width: 83.333%;
}
.fw-col-80-lg {
	-ms-flex-preferred-size: 80%;
	-webkit-flex-basis: 80%;
	flex-basis: 80%;
	max-width: 80%;
}
.fw-col-75-lg {
	-ms-flex-preferred-size: 75%;
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.fw-col-70-lg {
	-ms-flex-preferred-size: 70%;
	-webkit-flex-basis: 70%;
	flex-basis: 70%;
	max-width: 70%;
}
.fw-col-66-lg {
	-ms-flex-preferred-size: 66.666%;
	-webkit-flex-basis: 66.666%;
	flex-basis: 66.666%;
	max-width: 66.666%;
}
.fw-col-60-lg {
	-ms-flex-preferred-size: 60%;
	-webkit-flex-basis: 60%;
	flex-basis: 60%;
	max-width: 60%;
}
.fw-col-50-lg {
	-ms-flex-preferred-size: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.fw-col-40-lg {
	-ms-flex-preferred-size: 40%;
	-webkit-flex-basis: 40%;
	flex-basis: 40%;
	max-width: 40%;
}
.fw-col-33-lg {
	-ms-flex-preferred-size: 33.333%;
	-webkit-flex-basis: 33.333%;
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.fw-col-30-lg {
	-ms-flex-preferred-size: 30%;
	-webkit-flex-basis: 30%;
	flex-basis: 30%;
	max-width: 30%;
}
.fw-col-25-lg {
	-ms-flex-preferred-size: 25%;
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.fw-col-20-lg {
	-ms-flex-preferred-size: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
	max-width: 20%;
}
.fw-col-16-lg {
	-ms-flex-preferred-size: 16.667%;
	-webkit-flex-basis: 16.667%;
	flex-basis: 16.667%;
	max-width: 16.667%;
}
.fw-col-10-lg {
	-ms-flex-preferred-size: 10%;
	-webkit-flex-basis: 10%;
	flex-basis: 10%;
	max-width: 10%;
}
/*--- デスクトップの場合、非表示 ---*/
.fw-col-hidden-lg {
	display: none;
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：.fw-rowに付けることで、セルの位置を調整できる
	例）
	<div clas="fw-row fw-center">＊セルを中央寄せにする
		<div class="fw-col-50"></div>
		<div class="fw-col-50"></div>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*--- セル左寄せ ---*/
.fw-start-lg {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	text-align: start;
}
/*--- セル中央寄せ ---*/
.fw-center-lg {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}
/*--- セル右寄せ ---*/
.fw-end-lg {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
	text-align: end;
}
/*--- セル上付き ---*/
.fw-top-lg {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}
/*--- セル天地中央 ---*/
.fw-middle-lg {
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}
/*--- セル下付き ---*/
.fw-bottom-lg {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}
/*--- セル中央寄せの均等配置 ---*/
.fw-around-lg {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
/*--- セル横幅いっぱいの均等配置 ---*/
.fw-between-lg {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.fw-first-lg {
	-webkit-order: -1;
	-ms-flex-order: -1;
	-webkit-box-ordinal-group: 0;
	order: -1;
}
.fw-last-lg {
	-webkit-order: 1;
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}
}
/* ==============================================================
   #ボタン
   ============================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：ボタンを複数並べる時は、.fw-btn-groupeで囲む
	例）
	<div clas="fw-btn-groupe">
		<a class="fw-btn">ボタンです</a>
		<a class="fw-btn">ボタンです</a>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.fw-btn-groupe {
}
.fw-btn {
	display: inline-block;
	vertical-align: middle;
	background-color: transparent;
	border: transparent solid 1px;
	border-color: #404d57;
	border-radius: 2px;
	font-weight: bold;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 15px;
	cursor: pointer;
	overflow: hidden;
}
.fw-btn.large {
	display: block;
	line-height: 30px;
	width: 100%;
	max-width: 480px;
	margin: auto;
	text-align: center;
}
.fw-btn:hover {
	background-color: rgba(0,0,0,0.87);
	color: #FFF;
}


/* ==============================================================
   #ヘッダー
   ============================================================== */

header {
	background-color: #FFF;
	width: 100%;
	height: 60px;	
	z-index: 900;
}
@media screen and (min-width: 1200px) { /*--- 1200px ---*/
header {
	height: 120px;
}
}
/* ==============================================================
   #パンくずリスト
   ============================================================== */
.fw-breadcrumb {
	display: none;
}
@media screen and (min-width: 768px) { /*--- 768px ---*/
.fw-breadcrumb {
	display: inherit;
}
}
.fw-breadcrumb ul {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	list-style: none;
}
@media screen and (min-width: 768px) { /*--- 768px ---*/
.fw-breadcrumb ul {
	max-width: 1200px; /*---サイト幅 1200px ---*/
}
}
.fw-breadcrumb ul li {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.75rem;
	line-height: 50px;
}
.fw-breadcrumb ul li + li {
	padding-left: 40px;
}
/* ==============================================================
   #ナビゲーション設定
   ============================================================== */
nav li {
	margin-bottom: 0;
}
.fw-navi {
	margin: 0 auto;
}
.fw-navi > ul {
	height: 100%;
	list-style: none;
	display: -webkit-box; /*--- androidブラウザ用 ---*/
	display: -ms-flexbox; /*--- ie10 ---*/
	display: -webkit-flex; /*--- safari（pc）用 ---*/
	display: flex;
	-webkit-flex-wrap: wrap; /*--- safari（pc）用 ---*/
	flex-wrap: wrap;
	margin: auto;
}
.fw-navi > ul > li > a {
	display: block;
}

/* ==============================================================
   #フッター
   ============================================================== */

footer {
	width: 100%;
}

/* ==============================================================
コピーライト
   ============================================================== */
.fw-copyright {
	display: block;
	text-align: center;
	font-size: 11px;
	margin-top: 20px;
}
/* ==============================================================
   #ページの先頭に戻る
   ============================================================== */

.fw-return-top {
	position: fixed;
	margin: auto;
	right: 20px;
	bottom: 20px;
	z-index: 300;
}
.fw-return-top a {
	display: block;
	background-color: #fff;
	border: transparent solid 2px;
	border-color: #000;
	border-radius: 50%;
	width: 64px;
	height: 64px;
}

/* ==============================================================
   #Youtube埋込
   ============================================================== */
.fw-youtube {
  position: relative;
  width: 100%;
  margin: 1rem auto;
  padding-top: 56.25%;
}
.fw-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}  
 
/* ==============================================================
   #ディスプレイ毎に隠す
   ============================================================== */
/* スマホのみ隠す */
@media screen and (max-width: 768px) {
.fw-hidden-sp {
	display: none;
	visibility: hidden;
}
}
/* タブレットのみ隠す */
@media screen and (min-width: 768px) and (max-width: 1200px) {
.fw-hidden-tablet {
	display: none;
	visibility: hidden;
}
}
/* デスクトップのみ隠す */
@media screen and (min-width: 1200px) { /*--- 1200px ---*/
.fw-hidden-pc {
	display: none;
	visibility: hidden;
}
}
/* ==============================================================
   #クリアフィックス
   ============================================================== */

.cf:before,
.cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
 *zoom: 1;
}
/* ==============================================================
   #スライダー基本設定
   ============================================================== */

.slick-slider {	
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {	
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.slick-track {	
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	/*border: 1px solid transparent;*/
}
.slick-arrow.slick-hidden {
	display: none;
}
.slick-arrow {
	background-color: transparent;
	border-radius: 2px;
	width: 60px;
	height: 60px;
	margin: auto;
	cursor: pointer;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transition: all ease-out .3s;
	transition: all ease-out .3s;
	z-index: 12;
}
.slick-prev {
	left: 0;
}
.slick-next {
	right: 0;
}
.slick-prev i,
.slick-next i {
	width: 16px;
	height: 16px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.slick-prev i::before,
.slick-next i::before,
.slick-prev i::after,
.slick-next i::after {
	content: "";
	border-color: #292828;
	margin: auto;
}
.slick-prev:hover i::before,
.slick-next:hover i::before,
.slick-prev:hover i::after,
.slick-next:hover i::after {
	border-color: #FF80C0;
}
.slick-prev i::before,
.slick-next i::before {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.slick-prev i::before {
	border-top: solid 2px;
	border-left: solid 2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.slick-next i::before {
	border-top: solid 2px;
	border-right: solid 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.slick-prev i::after,
.slick-next i::after {
	border-top: solid 2px;
	width: 14px;
	height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
}
.slick-prev i::after {
	right: 0;
}
.slick-next i::after {
	left: 0;
}

/* ドット */
ul.slick-dots {
	width: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 12;
}
@media screen and (min-width: 768px) { /*-- 768px --*/
ul.slick-dots {
	bottom: 20px;
}
}
.slick-dots li {
	background-color: transparent;
	list-style: none;
	display: block;
	float: left;
	padding: 0;
	margin: 0;	
	bottom: 0;
	left: -50%;
}
.slick-dots li + li {
	margin-left: 15px;
	margin-bottom: 0;
}
.slick-dots li > i,
.slick-dots li.slick-active > i {
	background-color: #FFF;
	border-radius: 50%;
	color: transparent;
	cursor: pointer;
	display: block;
	font-size: 0;
	line-height: 0;
	padding: 0;
	margin: auto;
	outline: none;
}
.slick-dots li > i {
	height: 16px;
	width: 16px;
	-webkit-transform: scale(0.5,0.5);
	transform: scale(0.5,0.5);
	-webkit-transition: 200ms;
	transition: 200ms;
}
.slick-dots li.slick-active > i {
	-webkit-transform: none;
	transform: none;
}

.slide-item {
	overflow: hidden;
}

/* ==============================================================
   #モーダルウィンドウ
   ============================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
	overflow: hidden;
	touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
 display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
	content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
	/*backface-visibility: hidden;*/
}
/* Necessary styles of the modal dialog */
.remodal {
	position: relative;
	outline: none;
	text-size-adjust: 100%;
}
.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}

/* ==========================================================================
   モーダルウィンドウ：テーマ
   ========================================================================== */

/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
	filter: blur(3px);
}
/* Default theme styles of the overlay */
.remodal-overlay {
	background-color: transparent;
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
	animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
	animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
	background-color: #FFF;
	padding: 0;
	left: 20%;
}
/* Default theme styles of the modal dialog */
.remodal {
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	transform: translate3d(0, 0, 0);
	background-color: transparent;
	overflow: hidden;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
	-webkit-animation-duration: 400ms;
	animation-duration: 400ms;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
.remodal.remodal-is-opening {
	animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
	animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
	vertical-align: middle;
}
/* Close button */
.remodal-close {
	display: block;
    background: transparent;
    width: 50px;
    height: 50px;
    color: rgba(0,0,0,0.84);
    font-size: 11px;
    text-decoration: none;
    margin: auto;
    padding: 0;
    /* position: absolute; */
    /* bottom: 0; */
    /* right: 0; */
    overflow: visible;
    outline: 0;
}
.remodal-close.min {
	position: absolute;
	top: 5px;
	right: 0px;
}
.remodal-close::before,
.remodal-close::after {
	content: "";
	width: 30px;
	height: 0;
	border-top: rgba(0,0,0,0.84) solid 2px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.remodal-close.min::before,
.remodal-close.min::after {
	border-top: rgba(0,0,0,0.84) solid 1px;
	width: 16px;
}
.remodal-close::before {
	-webkit-transform: rotate3d(0,0,1,-45deg);
	transform: rotate3d(0,0,1,-45deg);
}
.remodal-close::after {
	-webkit-transform: rotate3d(0,0,1,45deg);
	transform: rotate3d(0,0,1,45deg);
}

.modal-footer .remodal-close {
	margin: auto;
	position: relative;
	border-left: none;
}

.remodal-close:hover,
.remodal-close:focus {
	color: #FFF;
}
.remodal-close:before {
}


/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
 padding: 0;
 border: 0;
}
/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
 from {
	 -webkit-transform: translateY(50px);
 transform: translateY(50px);
 opacity: 0;
}
to {
	-webkit-transform: none;
	transform: none;
	opacity: 1;
}
}
 @keyframes remodal-closing-keyframes {
 from {
	 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 1;
}
to {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
}
}
 @keyframes remodal-overlay-opening-keyframes {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes remodal-overlay-closing-keyframes {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
.remodal {
	max-width: 700px;
}
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}
.lt-ie9 .remodal {
	width: 700px;
}

