﻿/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* 背景のデフォルトのテーマスタイル */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
	filter: blur(3px);
}

/* オーバーレイのデフォルトテーマのスタイル */

.remodal-overlay {
	background: rgba(255, 255, 255, 0.97);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
	animation-duration: 0.8s;
	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;
}

/* ラッパーのデフォルトテーマのスタイル */

.remodal-wrapper {
	padding: 0;
}

/* モーダルダイアログのデフォルトテーマのスタイル */


.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
	animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
	animation-name: remodal-closing-keyframes;
}

/* モーダルダイアログの垂直整列 */

.remodal,
.remodal-wrapper:after {
	vertical-align: middle;
}


/* 閉じるボタン */

@media only screen and (min-width: 641px) {

.remodal {
	width: 100%;
	box-sizing: border-box;
	transform: translate3d(0, 0, 0);
}

.modal_inner {
	max-width: 1000px;
	width: 80%;
	margin: 0 auto;
	box-sizing: border-box;
	color: #2b2e38;

}

.remodal-close {
	position: fixed;
	top: 5%;
	right: 5%;
	display: block;
	overflow: visible;
	width: 35px;
	height: 34px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	z-index: 500;
	background: transparent;
	background-image: url("../img/close.svg");
}


}


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

.remodal {
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto 10px;
  padding-top: 50px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;

}

.remodal-close {
  position: fixed;
  top: 1em;
  right: 1em;

  display: block;
  overflow: visible;

  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  background-image: url("../img/close.svg");
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

}


/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
}

.remodal-confirm {
	color: #fff;
	background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
	background: #66bb6a;
}

.remodal-cancel {
	color: #fff;
	background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
	background: #ef5350;
}

/* 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 {
		opacity: 0;
	}
	to {
		transform: none;
		opacity: 1;
	}
}

@keyframes remodal-closing-keyframes {
	from {
		opacity: 1;
	}
	to {
		 opacity: 0;
	}
}

@keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}



/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}

.lt-ie9 .remodal {
	width: 700px;
}
