/*
 *  Remodal - v1.0.6
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

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

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
}
/* Default theme styles of the overlay */

.remodal-overlay {
	background: rgba(139,219,255,0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
	-webkit-animation-name: remodal-overlay-opening-keyframes;
	animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
	-webkit-animation-name: remodal-overlay-closing-keyframes;
	animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
}
/* Default theme styles of the modal dialog */
.remodal {
	width: 100%;
	text-align: left;
	padding: 2rem 10px;
	color: #2b2e38;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: remodal-opening-keyframes;
	animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-name: remodal-closing-keyframes;
	animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */

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

/* モーダル：ヘッダー */
.modal-header {
	min-height: 50px;
	margin-bottom: 1rem;
	position: relative;
}
/* モーダル：コンテンツ */
.modal-content {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, .2) 0px 0px 2px 0px;
	padding: 20px 0;
	position: relative;
}

#Road-to-voice.modal-content {
	background-image: url(../imgs/line.png);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: repeat;
}

#Road-to-tv.modal-content {
	background-image: url(../imgs/line02.png);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: repeat;
}

#Road-to-actor.modal-content {
	background-image: url(../imgs/line03.png);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: repeat;
}

#Teacher.modal-content {
	background-image: url(../imgs/line04.png);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: repeat;
}

#Senpai.modal-content {
	background-image: url(../imgs/line05.png);
	background-size: 40px 40px;
	background-position: center;
	background-repeat: repeat;
}

#Women-working.modal-content {
	background-color:#9CC66A;
}

/* モーダル：フッター */
.modal-footer {
	min-height: 50px;
	margin-top: 1rem;
	position: relative;
	text-align: center;
}
/* 閉じるボタン */
.remodal-close {
	display: block;
	background: transparent;
	border-left: #FFF solid 1px;
	width: 50px;
	height: 50px;
	color: #FFF;
	font-size: 11px;
	text-decoration: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	overflow: visible;
	outline: 0;
}
.remodal-close::before,
.remodal-close::after {
	content: "";
	width: 30px;
	height: 0;
	border-top: #FFF solid 2px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.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 {
}
/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: background 0.2s;
	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
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 5%, 0);
 transform: translate3d(0, 5%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
 @keyframes remodal-opening-keyframes {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 5%, 0);
 transform: translate3d(0, 5%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
 @-webkit-keyframes remodal-closing-keyframes {
 from {
 -webkit-transform: scale3d(1,1,1);
 transform: scale3d(1,1,1);
 opacity: 1;
}
to {
	-webkit-transform: scale3d(0.9,0.9,1);
	transform: scale3d(0.9,0.9,1);
	opacity: 0;
}
}
 @keyframes remodal-closing-keyframes {
  from {
 -webkit-transform: scale3d(1,1,1);
 transform: scale3d(1,1,1);
 opacity: 1;
}
to {
	-webkit-transform: scale3d(0.9,0.9,1);
	transform: scale3d(0.9,0.9,1);
	opacity: 0;
}
}
 @-webkit-keyframes remodal-overlay-opening-keyframes {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes remodal-overlay-opening-keyframes {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
 @-webkit-keyframes remodal-overlay-closing-keyframes {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
 @keyframes remodal-overlay-closing-keyframes {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}

@media only screen and (min-width: 641px) {
.remodal {
	width: 100%;
	max-width: 760px;
}
}
/* ==============================================================
   #sp-navi：スマホナビゲーション
   ============================================================== */ 
#sp-navi.remodal,
#sp-navi.remodal-wrapper:after {
}

#sp-navi .modal-content {
	background-color: transparent;
	box-shadow: none;
	padding: 0;
}
#sp-navi ul {
	color: #FFF;
}
#sp-navi ul > li {
}
#sp-navi ul > li#Nav-2 {
}


#sp-navi ul > li > a {
	display: block;
	border-top: rgba(255,255,255,0.5) solid 1px;
	line-height: 64px;
	font-weight: bold;
	font-size: 16px;
}

#sp-navi ul > li > a:hover {
	color: #61c1e3;
	background-color:  rgba(255,255,255,0.75);
}

#sp-navi .accordion-switch + .accordion-item li {
	background-color: transparent;
}
#sp-navi .accordion-switch + .accordion-item li a {
	line-height: 1.6;
}
#sp-navi .accordion-switch + .accordion-item li a span {
	padding: 0;
}