@charset "utf-8";
/* CSS Document */
@charset "utf-8";
/* ==============================================================
   #フォント設定
   ============================================================== */
@font-face {
	font-family: 'Happy';
	font-style: normal;
	font-weight: bold;
	src: url(../fonts/Happy-B.woff) format('woff'), url(../fonts/Happy-B.eot) format('eot');
}
.Happy-font {
	font-family: 'Happy';
}
/* ==============================================================
   #ページ設定
   ============================================================== */
html,
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	height: 100%;
	color: #222;
}
 @media screen and (min-width: 1024px) {
.max1400 {
	width: calc(100% - 50px);
	max-width: 1400px;
}
 }
/* ==============================================================
   #ローディング
   ============================================================== */
#fade {
	display: block;
	background-color: #FFF;
	height: 100%;
	width: 100%;
	margin: auto;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	-webkit-transition: linear 1s;
	transition: linear 1s;
}
#fade p {
	background-image: url(../imgs/lo.png);
	background-size: 240px auto;
	background-position: center;
	height: 100%;
	width: 100%;
	text-align: center;
	line-height: 50px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	
}
@media (min-width: 1024px) {
#fade p {
	background-size: 480px auto;
}
}
#fade.clear {
	background-color: transparent;
	opacity: 0;
	-webkit-transition: linear .8s;
	transition: linear .8s;
}
/* ==============================================================
   #カラー設定
   ============================================================== */
/*声優科カラー*/
.pink {
	color: #EB6D9A
}
/*俳優タレント科カラー*/
.orange {
	color: #F29839
}
/*テレビ制作科カラー*/
.green {
	color: #8EC31E
}
/*映画プロデユース科カラー*/
.brue {
	color: #8ADAFB
}
/* ==============================================================
   #画像
   ============================================================== */
.tile-box {
	margin: -10px;
}
.tile-box [class*="fw-col-"] {
	padding: 10px;
}
/* ==============================================================
   #ディスクリプション
   ============================================================== */
#logo {
	background-image: url(../imgs/logo.png);
	background-position: center;
	background-size: 202px 20px;
	width: 202px;
	height: 68px;
	display: block;
	position: absolute;
	top: 0;
	left: 20px;
	backface-visibility: hidden;
	max-width: 400px;
}
@media (min-width: 1024px) {
#logo {
	background-size: 242px 24px;
	width: 242px;
	height: 68px;
}
}
#Header.scroll #logo {
	background-image: url(../imgs/logo2.png);
}
#Description {
	width: 100%;
	height: 40px;
	color: #FFF;
	font-size: 11px;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 40px;
	margin: 0;
	padding-left: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	overflow: hidden;
	visibility: hidden;
}
@media (min-width: 768px) {
#Description {
	visibility: inherit;
}
}
#Description:before,
 #Description:after {
	content: "";
	background-color: rgba(255,255,255,.5);
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: background-color 1s;
}
#Description:after {
	background-color: transparent;
}
#Description.chenge:after {
	background-color: #FFF;
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: chenge;
	animation-name: chenge;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
	z-index: 6;
}
@-webkit-keyframes chenge {
 from {
 -webkit-transform: scaleX(0);
 transform: scaleX(0);
}
to {
	-webkit-transform: scaleX(100%);
	transform: scaleX(100%);
}
}
@keyframes chenge {
 from {
 -webkit-transform: scaleX(0);
 transform: scaleX(0);
}
to {
	-webkit-transform: scaleX(100%);
	transform: scaleX(100%);
}
}
/* ==============================================================
   #ヘッダー
   ============================================================== */
#Header {
	background-color: rgba(0,0,0,0);
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
}
@media (min-width: 768px) {
#Header {
	top: 80px;
}
}
/*ノートPC解像度*/
@media screen and (min-width: 1200px) and (max-height: 800px) {
#Header {
	top: 60px;
}
}
#Logo {
	display: block;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 40px;
	height: 24px;
}
#Logo img {
	height: 24px;
	width: auto;
}
#Header.scroll {
	background-color: #FFF;
	box-shadow: rgba(0, 0, 0, .2) 0px 0px 2px 0px;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 300ms;
	animation-duration: 300ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
@keyframes fadeInDown {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
@-webkit-keyframes fadeInUp {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
@keyframes fadeInUp {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 100%, 0);
 transform: translate3d(0, 100%, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
@-webkit-keyframes fadeInRight {
 from {
 opacity: 0;
 -webkit-transform: translate3d(100%, 0, 0);
 transform: translate3d(100%, 0, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
@keyframes fadeInRight {
 from {
 opacity: 0;
 -webkit-transform: translate3d(100%, 0, 0);
 transform: translate3d(100%, 0, 0);
}
to {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
}
/*--- スクロール時ヘッダーメニュー ---*/
#Header.scroll #Head-top {
	display: none;
}
#Head-bottom {
	height: 60px;
}
/* ==============================================================
   #グローバルナビ
   ============================================================== */ 
#Global-Navi {
	display: none;
}
@media (min-width: 1200px) {
#Global-Navi {
	display: block;
}
#Global-Navi > ul {
}
#Global-Navi > ul > li {
	position: relative;
}
#Global-Navi > ul > li > a {
	color: #FFF;
	font-size: 9px;
	font-weight: normal;
	position: relative;
	line-height: 16px;
	text-align: left;
	padding: 18px 36px;
	z-index: 2;
}
#Global-Navi > ul > li > a > span {
	display: block;
	font-size: 1rem;
	font-weight: bold;
}
#Global-Navi > ul > li:hover > a {
	color: #FFF;
}
#Global-Navi > ul > li > a:after {
	content: "";
	height: 16px;
	width: 0;
	border-left: #FFF solid 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: rotate3d(0, 0, 1, 24deg);
	transform: rotate3d(0, 0, 1, 24deg);
}
#Global-Navi > ul > li:last-child > a:after {
	display: none;
}
/*--- スクロール時設定 ---*/
#Header.scroll #Global-Navi > ul > li > a {
	color: #222;
}
#Header.scroll #Global-Navi > ul > li:hover > a {
	color: #FFF;
}
#Header.scroll #Global-Navi > ul > li > a:after {
	border-color: #1D1F21;
}
#Global-Navi > ul > li::before {
	content: "";
	display: block;
	background-color: #8BDBFF;
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: skewX(-24deg);
	transform: skewX(-24deg);
	-webkit-transition: ease 200ms;
	transition: ease 200ms;
}
#Global-Navi > ul > li:hover::before {
	background-color: rgba(139,219,255,0.5);
	width: 100%;
}
#Global-Navi > ul > li.on::before {
	width: 100%;
}
#Global-Navi > ul > li.on:hover:before {
	background-color: #EB6D9A;
}
#Header.scroll #Global-Navi > ul > li.on a,
#Global-Navi > ul > li.on a {
	color: #FFF;
}
}
/* ==============================================================
   #キービジュアルエリア
   ============================================================== */
.spacer {
	width: 100%;
	min-height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
#Billborad {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

@media (min-width: 1200px) {
#Billborad {
	height: 100%;
}

}
/*ノートPC解像度*/
@media screen and (min-width: 1200px) and (max-height: 800px) {
}
.slide-area,
.slide-area div {
	height: 100%;
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：スライダー設定
   ////////////////////////////////////////////////////////////////// */
#Billboard-slider {
}
#Billboard-slider .slick-dots {
	bottom: 44px;
}
#Billboard-slider .slick-dots li button {
	border: 0;
	background-color: #FFF;
	padding: 4px;
	border: none;
	display: block;
	height: 8px;
	width: 8px;
	outline: none;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 0;
	cursor: pointer;
	outline: none;
	border-radius: 50%;
	transition: border ease-out 0.2s;
}
#Billboard-slider .slick-dots li.slick-active button {
	background-color: #8BDBFF;
	padding: 0;
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：キービジュアル画像設定
   ////////////////////////////////////////////////////////////////// */
#kv01,
#kv02,
#kv03,
#kv04 {
	width: 25%;
	height: 100%;
	float: left;
	background-size: cover;
	background-position: center;
	position: relative;
	-webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: linear 0.4s;
  transition: linear 0.4s;
}
.color #kv01,
.color #kv02,
.color #kv03,
.color #kv04 {
-webkit-filter: none;
  filter: none;
}
#kv01 {
	background-image: url(../imgs/vol_10/kv_bg_01_pc.jpg);
}
#kv02 {
	background-image: url(../imgs/vol_10/kv_bg_02_pc.jpg);
}
#kv03 {
	background-image: url(../imgs/vol_10/kv_bg_03_pc.jpg);
}
#kv04 {
	background-image: url(../imgs/vol_10/kv_bg_04_pc.jpg);
}
#Billboard-02 {
	background-image: url(../imgs/billboard/billboard01@pc.jpg);
	background-size: cover;
	background-position: center;
}
#Billboard-03 {
	background-image: url(../imgs/billboard/billboard02@pc.jpg);
	background-size: cover;
	background-position: center;
}
#Billboard-04 {
	background-image: url(../imgs/billboard/billboard03@pc.jpg);
	background-size: cover;
	background-position: center;
}
/*Retina用指定*/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
#kv01 {
	background-image: url(../imgs/vol_10/kv_bg_01_sp.jpg);
}
#kv02 {
	background-image: url(../imgs/vol_10/kv_bg_02_sp.jpg);
}
#kv03 {
	background-image: url(../imgs/vol_10/kv_bg_03_sp.jpg);
}
#kv04 {
	background-image: url(../imgs/vol_10/kv_bg_04_sp.jpg);
}
 #Billboard-02 {
 background-image: url(../imgs/billboard_01.jpg);
 background-size: cover;
 background-position: center;
}
#Billboard-03 {
 background-image: url(../imgs/billboard_02.jpg);
 background-size: cover;
 background-position: center;
}
#Billboard-04 {
 background-image: url(../imgs/billboard_03.jpg);
 background-size: cover;
 background-position: center;
}
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：学科コピー
   ////////////////////////////////////////////////////////////////// */
#Copy-voice,
#Copy-actor,
#Copy-tv,
#Copy-movie {
	width: auto;
	height: 240px;
	margin: auto;
	padding: 20px 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: ease-out 200ms;
	transition: ease-out 200ms;
	z-index: 2;
}
 @media (min-width: 768px) {
#Copy-voice,
 #Copy-actor,
 #Copy-tv,
 #Copy-movie {
	height: 600px;
}
}
/*---ノートPC ---*/
@media screen and (min-width: 1200px) and (max-height: 800px) {
#Copy-voice,
 #Copy-actor,
 #Copy-tv,
 #Copy-movie {
	height: 400px;
}
}
#Copy-voice img,
#Copy-actor img,
#Copy-tv img,
#Copy-movie img {
	width: auto;
	height: 100%;
}
#Kv-Anime.show #Copy-voice,
#Kv-Anime.show #Copy-actor,
#Kv-Anime.show #Copy-tv,
#Kv-Anime.show #Copy-movie {
	opacity: 0;
	-webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
	transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: gelatine;
	animation-name: gelatine;
	-webkit-animation-duration: 300ms;
	animation-duration: 300ms;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
#Kv-Anime.show #Copy-voice {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
#Kv-Anime.show #Copy-actor {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
#Kv-Anime.show #Copy-tv {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
#Kv-Anime.show #Copy-movie {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s;
}
@-webkit-keyframes gelatine {
 from {
 opacity: 1;
}
 10%, 90% {
 -webkit-transform: scale3d(1);
 transform: scale3d(1);
}
 25% {
 -webkit-transform: scale3d(0.9, 1.5, 1);
 transform: scale3d(0.9, 1.5, 1);
}
 50% {
 -webkit-transform: scale3d(1.5, 0.9, 1);
 transform: scale3d(1.5, 0.9, 1);
}
 75% {
 -webkit-transform: scale3d(0.95, 1.05, 1);
 transform: scale3d(0.95, 1.05, 1);
}
 10%, 90% {
 -webkit-transform: scale3d(1);
 transform: scale3d(1);
}
 25% {
 -webkit-transform: scale3d(0.9, 1.5, 1);
 transform: scale3d(0.9, 1.5, 1);
}
 50% {
 -webkit-transform: scale3d(1.5, 0.9, 1);
 transform: scale3d(1.5, 0.9, 1);
}
 75% {
 -webkit-transform: scale3d(0.95, 1.05, 1);
 transform: scale3d(0.95, 1.05, 1);
}
to {
	opacity: 1;
}
}
@keyframes gelatine {
 from {
 opacity: 1;
}
 10%, 90% {
 -webkit-transform: scale3d(1);
 transform: scale3d(1);
}
 25% {
 -webkit-transform: scale3d(0.9, 1.5, 1);
 transform: scale3d(0.9, 1.5, 1);
}
 50% {
 -webkit-transform: scale3d(1.5, 0.9, 1);
 transform: scale3d(1.5, 0.9, 1);
}
 75% {
 -webkit-transform: scale3d(0.95, 1.05, 1);
 transform: scale3d(0.95, 1.05, 1);
}
 10%, 90% {
 -webkit-transform: scale3d(1);
 transform: scale3d(1);
}
 25% {
 -webkit-transform: scale3d(0.9, 1.5, 1);
 transform: scale3d(0.9, 1.5, 1);
}
 50% {
 -webkit-transform: scale3d(1.5, 0.9, 1);
 transform: scale3d(1.5, 0.9, 1);
}
 75% {
 -webkit-transform: scale3d(0.95, 1.05, 1);
 transform: scale3d(0.95, 1.05, 1);
}
to {
	opacity: 1;
}
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：カーテン
   ////////////////////////////////////////////////////////////////// */
#Kv-Anime {
	background-color: rgba(29,31,33,.5);
	/*background-image: url(../imgs/dot.png);
	background-position: left bottom;
	background-repeat: repeat;*/
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
/*Retina用指定*/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
 #Kv-Anime {
 background-image: none;
}
}
#Kv-Anime.show {
	-webkit-animation-delay: 7s;
	animation-delay: 7s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: brightly;
	animation-name: brightly;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes brightly {
 from {
 background-color: rgba(29,31,33,0.5);
}
to {
	background-color: rgba(29,31,33,0.1);
}
}
@keyframes brightly {
from {
 background-color: rgba(29,31,33,0.5);
}
to {
	background-color: rgba(29,31,33,0.1);
}
}
#Kv-Anime #ka01,
#Kv-Anime #ka02,
#Kv-Anime #ka03,
#Kv-Anime #ka04 {
	width: 25%;
	height: 100%;
	float: left;
	position: relative;
	text-align: center;
}
#Kv-Anime #ka01::before,
#Kv-Anime #ka02::before,
#Kv-Anime #ka03::before,
#Kv-Anime #ka04::before,
#Kv-Anime #ka01::after,
#Kv-Anime #ka02::after,
#Kv-Anime #ka03::after,
#Kv-Anime #ka04::after {
	content: "";
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: -60%;
	left: 0;
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transform: skewY(-24deg);
	transform: skewY(-24deg);
	z-index: 0;
}
#Kv-Anime #ka01::after,
#Kv-Anime #ka02::after,
#Kv-Anime #ka03::after,
#Kv-Anime #ka04::after {
	top: 60%;
	-webkit-transform-origin: right;
	transform-origin: right;
}
#Kv-Anime #ka01::before {
	background-color: #F8B3CA
}
#Kv-Anime #ka02::before {
	background-color: #FEBD5C
}
#Kv-Anime #ka03::before {
	background-color: #76F4D5
}
#Kv-Anime #ka04::before {
	background-color: #8BDBFF
}
#Kv-Anime #ka01::after {
	background-color: #F8B3CA
}
#Kv-Anime #ka02::after {
	background-color: #FEBD5C
}
#Kv-Anime #ka03::after {
	background-color: #76F4D5
}
#Kv-Anime #ka04::after {
	background-color: #8BDBFF
}
#Kv-Anime.show #ka01::before,
#Kv-Anime.show #ka02::before,
#Kv-Anime.show #ka03::before,
#Kv-Anime.show #ka04::before,
#Kv-Anime.show #ka01::after,
#Kv-Anime.show #ka02::after,
#Kv-Anime.show #ka03::after,
#Kv-Anime.show #ka04::after {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: curtain;
	animation-name: curtain;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
#Kv-Anime.show #ka01,
#Kv-Anime.show #ka02,
#Kv-Anime.show #ka03,
#Kv-Anime.show #ka04 {
	-webkit-animation-delay: 4.5s;
	animation-delay: 4.5s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: hide;
	animation-name: hide;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes curtain {
 from {
 -webkit-transform: skewY(-24deg) scale3d(1, 1, 0);
 transform: skewY(-24deg) scale3d(1, 1, 0);
}
to {
	-webkit-transform: skewY(-24deg) scale3d(0, 1, 0);
	transform: skewY(-24deg) scale3d(0, 1, 0);
}
}
@keyframes curtain {
 from {
 -webkit-transform: skewY(-24deg) scale3d(1, 1, 0);
 transform: skewY(-24deg) scale3d(1, 1, 0);
}
to {
	-webkit-transform: skewY(-24deg) scale3d(0, 1, 0);
	transform: skewY(-24deg) scale3d(0, 1, 0);
}
}
@-webkit-keyframes hide {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
@keyframes hide {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：キャッチコピー
   ////////////////////////////////////////////////////////////////// */
#Copy01,
#Copy02 {
	width: 100%;
	max-width: 840px;
	padding: 0 20px;
	margin: auto;
	position: absolute;
	top: 68%;
	right: 0;
	left: 0;
	opacity: 0;
}
#Kv-Anime.show #Copy01 {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: copy-up;
	animation-name: copy-up;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes copy-up {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -30%, 0);
 transform: translate3d(0, -30%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
}
@keyframes copy-up {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -30%, 0);
 transform: translate3d(0, -30%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
}
#Kv-Anime.show #Copy02 {
	-webkit-animation-delay: 7s;
	animation-delay: 7s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: copy-show;
	animation-name: copy-show;
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes copy-show {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -50%, 0);
 transform: translate3d(0, -50%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
}
@keyframes copy-show {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, -50%, 0);
 transform: translate3d(0, -50%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：マウスアイコン
   ////////////////////////////////////////////////////////////////// */
#Mouse {
	display: block;
	background-color: #FFF;
	border: transparent solid 2px!important;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding-top: 30px;
	margin: auto;
	position: absolute;
	bottom: 48px;
	right: 0;
	left: 0;
	opacity: 0;
	display: none;
}
@media (min-width: 768px) {
#Mouse {
	width: 48px;
	height: 48px;
	bottom: 72px;
}
}
#Kv-Anime.show #Mouse {
	opacity: 0;
	-webkit-animation-delay: 6.5s;
	animation-delay: 6.5s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: mouse;
	animation-name: mouse;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes mouse {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 10%, 0);
 transform: translate3d(0, 10%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
@keyframes mouse {
 from {
 opacity: 0;
 -webkit-transform: translate3d(0, 10%, 0);
 transform: translate3d(0, 10%, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
.mouse-icon {
	display: block;
	width: 0px;
	height: 24px;
	border-radius: 2px;
	border: transparent solid 2px;
	margin: auto;
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
}
/*マウスホイール*/
.mouse-icon:after {
	content: "";
	width: 16px;
	height: 16px;
	border-top: transparent solid 4px;
	border-right: transparent solid 4px;
	border-radius: 2px;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: -8px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.mouse,
.mouse-icon,
.mouse-icon:before,
.mouse-icon:after {
	border-color: #1D1F21;
}
/* //////////////////////////////////////////////////////////////////
   アニメーション：バナー
   ////////////////////////////////////////////////////////////////// */

/* ==============================================================
   #マーキー
   ============================================================== */

#Electric-Bulletin-Board {
	background-color: rgba(0,0,0,.8);
	width: 100%;
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s;
	overflow: hidden;
	z-index: 10;
}
#Electric-Bulletin-Board.show {
	opacity: 1;
}
/*---記事一覧ボタン ---*/
#Electric-Bulletin-Board .more-btn {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	padding: 8px;
	margin: 0;
}
#Electric-Bulletin-Board .more-btn:after {
	content: "";
	background-image: -moz-linear-gradient(right, #000, transparent);
	background-image: -ms-linear-gradient(right, #000, transparent);
	background-image: -o-linear-gradient(right, #000, transparent);
	background-image: -webkit-linear-gradient(right, #000, transparent);
	background-image: linear-gradient(right, #000, transparent);
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: -40px;
}
#Electric-Bulletin-Board .more-btn a {
	display: block;
	height: 100%;
	border: #FFF solid 2px;
	border-radius: 1px;
}
/*---スライダー ---*/
#News-slider {
	max-width: 1200px;
	margin: 0 auto;
}
#News-slider p {
	padding: 0 3rem;
	color: inherit;
	font-size: 12px;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: inherit;
	margin: 0;
}
#News-slider p.new {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode : forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes fadeOut {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
@keyframes fadeOut {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}
#News-slider a {
	color: #FFF;
	display: block;
}
#News-slider a:hover {
	color: #FFF;
	text-decoration: underline;
}
#News-slider p time {
	margin-right: 1em;
}
#News-slider p i {
	font-style: normal;
	margin-right: 1em;
}
/* ==============================================================
   #見出し
   ============================================================== */
.section-title {
	text-align: center;
	position: relative;
	width: calc(100% - 40px);
	margin: auto auto 1rem;
}
.section-title img {
	height: 32px;
	width: auto;
	margin: auto;
	margin-bottom: 1rem;
	display: block;
}
.section-title small {
	display: block;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: .1em;
    text-indent: .1em;
}
.section-title + h4 {
	text-align: center;
	width: calc(100% - 40px);
	margin: auto auto 30px;
	position: relative;
}
.section-title + h4 span {
	display: inline-block;
	position: relative;
}
@media (min-width: 768px) {
.section-title img {
	height: 36px;
	width: auto;
	margin: auto;
	margin-bottom: 1rem;
	display: block;
}
}
@media (min-width: 1024px) {
.section-title + h4 {
	margin: auto auto 60px;
}
.section-title + h4  span {
	padding: 0 24px;
	font-size: 24px;
    letter-spacing: .1em;
    text-indent: .1em;
	font-weight: normal;
}

}
.heading {
	letter-spacing: .1em;
}
#Action {
	padding: 30px 0;
	position: relative;
}
.big {
	width: 100%;
	font-size: 16px;
	padding: 1.2rem 0;
	position: relative;
}
@media (min-width: 1024px) {
.big {
	font-size: 18px;
	padding: 2rem 0;
}
}

 @media (min-width: 1200px) {
.tex-box {
	width: 80%;
	margin: 0 auto;
}
}
/* ==============================================================
   #コンテンツ設定
   ============================================================== */
#Container .skew-box {
	/*min-height: 100%;*/
	margin: auto;
	padding: 50px 0;
	position: relative;
}
@media (min-width: 768px) {
#Container .skew-box {
	padding: 100px 0;
}
}


.content-kv {
	padding-right: 0;
	padding-left: 0;
}
/* ==============================================================
   #決めた
   ============================================================== */
#kimeta {
}
/*#kimeta::before {
	content: "";
	border: #7FD6DC solid 10px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}*/
#kimeta::before {
	content: "";
    background-image: linear-gradient( -45deg, transparent 25%, #222 25%, #222 50%, transparent 50%, transparent 75%, #222 75%, #222 );
    background-size: 4px 4px;
    background-repeat: repeat;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: -3;
}
#kimeta::after {
    content: "";
    background-color: #FFF;
	margin: auto;
	position: absolute;
	top: 3px;
	bottom: 3px;
	right: 0;
	left: 0;
	z-index: -2;
}


.kimeta-flow + .kimeta-flow {
	margin-top: 20px;
}

.kimeta-flow h2 {
	background-color: #222;
	color: #FFF;
	font-size: 18px;
	text-align: center;
	padding: 10px;
}
.kimeta-flow h2 small {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 5px;
}
.kimeta-flow h2::before {
    content: "";
    background-image: linear-gradient( -45deg, transparent 25%, #222 25%, #222 50%, transparent 50%, transparent 75%, #222 75%, #222 );
    background-size: 4px 4px;
    background-repeat: repeat;
    margin: auto;
    position: absolute;
    top: 5px;
	left: 5px;
	bottom: -5px;
	right: -5px;
	z-index: -1;
}
.kimeta-flow h3 {
	font-size: 16px;
	margin-top: auto;
}
.kimeta-flow h3 span {
    background-image: url(../imgs/vol_9/line_dot.svg);
    background-size: auto 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding-bottom: 5px;
}
.kimeta-flow p {
	line-height: 1.6;
}

.kimeta-photo {
	width: auto;
	max-height: 360px;
}
 @media screen and (min-width: 768px) {
	 .kimeta-photo {
	max-height: 480px;
}
 }
 
 .interview-prof {
	 background-color: #FE87B0;
	 margin-bottom: 30px;
	 color: #FFF;
	 padding: 20px;
 }
  .interview-prof h3 {
	  text-align: center;
	  margin-top: auto;
  }
 
.interview-prof small {
	display: block;
	font-size: 12px;
	margin-bottom: 10px;
	line-height: 1;
}
.interview-prof li {
	padding-left: 20px;
	position: relative;
	line-height: 20px;
}
.interview-prof li + li {
	margin-top: 10px;
}
.interview-prof li::before {
	content: "";
	background-color: #FFF;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.interview-prof li::after {
	content: "";
	border-left: #FFF solid 2px;
	width: 0;
	height: 30px;
	margin: auto;
	position: absolute;
	bottom: -20px;
	left: 4px;
}
.interview-prof li:last-child::after {
	display: none;
}
 @media screen and (min-width: 768px) {
 .interview-prof {
	 margin-bottom: auto;
 }
 }
/* ==============================================================
   #就職内定者インタビュー
   ============================================================== */
#recruit {
	background-image: url(../imgs/vol_9/bg_interview.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
#recruit::before {
	content: "";
    background-image: linear-gradient( -45deg, transparent 25%, #F4F4F4 25%, #F4F4F4 50%, transparent 50%, transparent 75%, #F4F4F4 75%, #F4F4F4 );
    background-size: 4px 4px;
    background-repeat: repeat;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* =============================================================
   #QアンドA
   ============================================================== */
.question {
	font-size: 16px;
	padding-left: 56px;
	position: relative;
	margin-top: auto;
	color: #FE87B0;
}
.question::before {
	content: "Q";
	background-color: #FE87B0;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	margin: auto;
	bottom: 0;
	z-index: 4;
}

.answer-box {
	padding-bottom: 1rem;
	position: relative;
}


.answer-box p {
	margin-top: auto;
	line-height: 1.6;
	}
.answer-box img {
	margin-bottom: 1rem;
}
 @media screen and (min-width: 1024px) {
.question {
	padding-left: 64px;
	font-size: 18px;
}
.question::before {
	width: 48px;
	height: 48px;
	line-height: 48px;
}
.answer-box {
}

.answer-box p {
	position: relative;
	padding-left: 64px;
}
.answer-box p span {
	line-height: 1.6;
    background-color: #FFF;
    border-radius: 4px;
    padding: 16px;
    font-size: 12px;
	display: block;
	position: relative;
	z-index: 4;
}
}

/* ==============================================================
   #映像女子
   ============================================================== */
#joshikai {
	background-color: #FBE1E7;
	    background-image: linear-gradient( -90deg, transparent 25%, rgba(204,204,204,0.14) 25%, rgba(204,204,204,0.14) 50%, transparent 50%, transparent 75%, rgba(204,204,204,0.14) 75%, rgba(204,204,204,0.14) );
    background-size: 96px 96px;
    background-repeat: repeat;
	overflow: hidden;
}
.joshikai-inner {
	background-image: url(../imgs/vol_10/joshi_bg_02.png);
	background-size: 100% auto;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 140px!important;
}

.member-name {
	font-size: 10px;
	transform-origin: center top;
	transform: scale(0.9);
	text-align: center;
	margin-left: -2rem;
	margin-right: -2rem;
}

.member-photo {
	max-width: 90px;
	margin: auto;
	display: block;
}
.member-photo img {
	border-radius: 100%;
}
.member-photo::before {
	content: "";
	border: #121314 dashed 1px;
	border-radius: 100%;
	margin: auto;
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}


.talk-title {
	max-width: 320px;
	margin: 30px auto auto;
}
.joshi-kv p {
	font-weight: bold;
	margin-top: -30px;
	margin-bottom: 60px;
}

.joshi-kv .joshi-title {
	max-width: 70%;
	margin: auto;
	margin-bottom: 30px;
}
.joshi-photo {
	margin: auto;
	margin-left: -40px;
	margin-right: -40px;
	margin-bottom: 30px;
}

.joshi-q {
	color: #EB6D9A;
	margin-top: 30px;
}
.joshi-q small {
	font-size: 12px;
}

.talk-joshi {
	margin: auto;
}

.talk-joshi + .talk-joshi {
	margin-top: 2rem;
}

.joshi-name {
	display: block;
	float: left;
}
.joshi-con {
	display: block;
	overflow: hidden;
	padding-left: 1rem;
}
@media (min-width: 640px) {
.joshikai-inner {
	background-size: 640px auto;
	padding-bottom: 240px!important;
}	
/*	.joshi-kv {
	background-image: url(../imgs/vol_9/joshi_bg_01.png), url(../imgs/vol_9/joshi_bg_03.png);
	background-size: 300px auto, 300px auto;
	background-position: left top, right top;
	background-repeat: no-repeat, no-repeat;
}*/
.joshi-kv .joshi-title {
	max-width: 380px;
}
.joshi-kv p {
	    font-size: 16px;
    letter-spacing: .1em;
    margin-left: -.1em;
}

}
@media (min-width: 1024px) {
.member-name {
	font-size: 11px;
	transform: none;
	text-align: center;
}
.joshi-photo {
	max-width: 80%;
margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
.member-photo {
	max-width: 120px;
}
}

/* ==============================================================
   #i-MEDIAスナップ
   ============================================================== */
#snap {
	background-color: #FFF;
	background-image: url(../imgs/vol_9/bg_dot_8.svg);
	background-size: 32px 32px;
	background-repeat: repeat;
	background-attachment: fixed;
	overflow: hidden;
}
/* i-MEDIAスナップのスライダーの設定 */
#Snap-slider {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
#Snap-slider .slick-list {
	overflow: inherit;
}
#Snap-slider .slick-arrow {
	background-color: #FFF;
	border-color: transparent;
	border-radius: 50%;
	width: 80px;
	height: 80px;
}
#Snap-slider .slick-prev {
	left: 20px;
}
#Snap-slider .slick-next {
	right: 20px;
}
#Snap-slider .slick-dots {
	top: 0;
}
#Snap-slider .slick-dots li button {
}
/* i-MEDIAスナップの設定 */
.snap-box {
	width: 25%;
	float: left;
}
.snap-box img {
	border-radius: 6px;
}
.snap-box figure {
	position: relative;
	padding: 1px;
}
.snap-box p {
	background-color: transparent;
	border-radius: 50%;
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px -2px;
	box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px -2px;
	text-align: center;
	margin: 0;
	position: absolute;
	top: -30px;
	left: -15px;
	width: 60px;
	height: 60px;
	-webkit-transform: rotate(-16deg);
	transform: rotate(-16deg);
}
.snap-box p i {
	display: block;
	color: #FFF;
	font-size: 15px;
	font-style: normal;
	font-weight: bold;
	line-height: 60px;
}
.snap-box figure.pink p {
	background-color: #EB6D9A;
}
.snap-box figure.orange p {
	background-color: #F29839;
}
.snap-box figure.green p {
	background-color: #8EC31E;
}
.snap-box figure.blue p {
	background-color: #8ADAFB;
}
/* スナップモデルプロフィール */

.snap-box figcaption {
	text-align: center;
	padding: 0 20px;
	font-weight: bold;
	margin: 10px 0;
}
.snap-box figcaption small {
	display: block;
	font-weight: normal;
	font-size: 11px;
	color: #222;
	margin-top: 5px;
}
.snap-box figure.pink figcaption {
	color: #EB6D9A;
}
.snap-box figure.orange figcaption {
	color: #F29839;
}
.snap-box figure.green figcaption {
	color: #8EC31E;
}
.snap-box figure.blue figcaption {
	color: #8ADAFB;
}
.snap-box ul {
	text-align: left;
	margin-bottom: 2rem;
}
.snap-box ul li {
	display: inline;
	position: relative;
	font-size: 12px;
	margin-bottom: 0.5em;
}
.snap-box ul li span {
	color: #00ADBA;
}
.snap-box ul li:last-child {
	margin-bottom: 0;
}
/*.snap-box ul li:after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #1D1F21;
	border-radius: 50%;
}*/

.bg-pink {
	background-color: #FEC2D8;
	background-image: url(../imgs/vol_10/bg_dot_8_clear.svg), url(../imgs/vol_10/texture.png);
	background-size: 20px auto, 400px auto;
	background-position: center, center;
	background-repeat: repeat, repeat;
}
.bg-pink::before {
	content: "";
	border: #343536 solid 2px;
	max-width: 1200px;
	margin: auto;
	position: absolute;
	top: 20px;
	right: 5px;
	bottom: 20px;
	left: 5px;
}

.advice-kv div:first-child {
	order: 2;
}
.advice-kv div:nth-child(2) {
	order: 1;
}
.advice-kv div:last-child {
	order: 3;
}
.advice-kv div:first-child img,
.advice-kv div:last-child img {
	padding-top: 20px;
}
@media (min-width: 1024px) {
	.bg-pink::before {
		border: #343536 solid 3px;
	top: 50px;
	right: 20px;
	bottom: 50px;
	left: 20px;
}
.advice-kv div:first-child {
	order: 1;
}
.advice-kv div:nth-child(2) {
	order: 2;
}
.advice-kv div:last-child {
	order: 3;
}
.advice-kv div:first-child img,
.advice-kv div:last-child img {
	padding-top: 0;
}
}

.advice-wrap {
	margin-top: 30px;
}
.advice-q h3 {
	color: #FFF;
	text-align: center;
	font-size: 18px;
}
.advice-q h3 span {
	display: block;
	font-size: 28px;
}
.advice-q h3 small {
	background-color: #343536;
	border-radius: 20px;
	line-height: 24px;
	height: 24px;
	font-size: 12px;
	font-size: 0.85rem;
	padding: 0 1em;
	display: inline-block;
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.advice-q h3 {
	font-size: 16px;
}
	.advice-q h3 span {
	font-size: 20px;
}
}
.advice-a + .advice-a {
	margin-top: 30px;
}

.advice-a p {
	/*background-color: #FFF;*/
	font-weight: bold;
	padding-left: 96px;
   /* padding: 20px;
    border-radius: 4px;*/
	line-height: 1.6;
}
.advice-wrap .advice-a:nth-child(3) p {
	padding-left: 0;
	padding-right: 96px;
}

.advice-a p em {
	color: #E74E83;
	font-style: normal;
	text-decoration: underline;
}
.advice-a p span {
	display: block;
}

.advice-a i {
	margin: auto;
	border-radius: 100%;
	width: 88px;
	height: 88px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	font-style: normal;
}
.advice-wrap .advice-a:nth-child(3)  i {
	right: 0;
	left: auto;
}
@media (min-width: 768px) {
.advice-a + .advice-a {
	margin-top: 0;
}
.advice-wrap .advice-a:nth-child(3) p {
	padding-left: 96px;
	padding-right: 0;
}
	
	.advice-wrap .advice-a:nth-child(3)  i {
	right: auto;
	left: 0;
}
}

.advice-a i::before {	
	background-color: #343536;
	border-radius: 20px;
	line-height: 24px;
	height: 24px;
	font-size: 12px;
	font-size: 0.85rem;
	padding: 0 1em;
	display: inline-block;
	margin: auto;
	position: absolute;
	bottom: -16px;
	left: 0;
	right: 0;
	text-align: center;
	color: #FFF;
	z-index: 10;
}
.advice-a i.nakano::before {
	content: "中野";
}
.advice-a i.kaneko::before {
	content: "金子";
}
.advice-a i img {
	border-radius: 100%;
}


.fukidashi {
	background-color: #FFF;
	font-weight: bold;
	border-radius: 6px;
	margin: 50px auto 80px auto;
	font-size: 18px;
	line-height: 1.4;
	max-width: 100%;
	padding: 1em;
}
.fukidashi::before {
	content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 30px 6px 0 6px;
border-color: #ffffff transparent transparent transparent;
margin: auto;
position: absolute;
bottom: -24px;
right: 0;
left: 0;
}
.fukidashi small {
	display: block;
	font-size: 12px;
	margin-top: 5px;
}

.fukidashi + .fukidashi-img {
	width: 140px;
	margin: auto;
	position: absolute;
	bottom: -140px;
	right: 0;
	left: 0;
}

@media (min-width: 768px) {
	.fukidashi {
	background-color: #FFF;
	font-weight: bold;
	border-radius: 8px;
	margin: 50px auto 80px auto;
	font-size: 22px;
	line-height: 1.4;
	max-width: 90%;
	padding: 1em;
}
.fukidashi small {
	display: block;
	margin-top: 5px;
	font-size: 1rem;
}
.fukidashi + .fukidashi-img {
	width: 120px;
	margin: auto;
	position: absolute;
	bottom: -140px;
	right: 0;
	left: 0;
}
}

/* ==========================================================================
フッター
========================================================================== */
#Footer {
	position: relative;
}
/* ==========================================================================
フッターナビゲーション
========================================================================== */

#Foota-navi {
	background-color: #FFF;
	border-top: #E0E0E0 solid 1px;
	max-width: 100%;
}
#Foota-navi > ul {
}
#Foota-navi > ul > li {
}
#Foota-navi > ul > li > a {
	padding-left: 20px;
	padding-right: 20px;
	font-size: 0.75rem; /* 12px */
	line-height: 40px;
}
#Footer-Action {
	background-color: #1D1F21;
	height: 54px;
	padding-top: 5px;
	margin: auto;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	-webkit-transform: translate3d(0, 0, 0) translateZ(0);
	transform: translate3d(0, 0, 0) translateZ(0);
	-webkit-transition: ease-out 400ms;
	transition: ease-out 400ms;
}
#Footer-Action P {
	margin: 0;
	height: 44px;
}
#Footer-Action.slideup {
	-webkit-transform: translate3d(0, 100%, 0) translateZ(0);
	transform: translate3d(0, 100%, 0) translateZ(0);
}
/* ==========================================================================
トップもどる
========================================================================== */
a#Page-Top {
	background-color: transparent;
	position: fixed;
	display: block;
	right: -20px;
	bottom: 0px;
	height: 80px;
	width: 73px;
	overflow: hidden;
	z-index: 99999;
	cursor: pointer;
}
@media (min-width: 640px) {
a#Page-Top {
	right: -20px;
	height: 132px;
	width: 120px;
}
}
@media (min-width: 1200px) {
a#Page-Top {
	right: -50px;
	height: 220px;
	width: 200px;
}
}
/* ==============================================================
   #スマホメニューボタン
   ============================================================== */ 
#Sp-btn {
	background-color: #FFF;
	border: #FFF solid 2px;
	border-radius: 2px;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 5px;
	right: 5px;
}
@media (min-width: 1200px) {
#Sp-btn {
	display: none;
}
}
#Sp-btn button {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
#Sp-btn button span {
	display: block;
	width: 24px;
	height: 0;
	border-top: #111 solid 2px;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
#Sp-btn button span:first-child {
	margin-bottom: 5px;
}
#Sp-btn button span:last-child {
	margin-top: 5px;
}
/* ==========================================================================
スマホメニュー
========================================================================== */
/* メニューOPEN時の背景 */
.menu-overlay {
	background: rgba(139,219,255, 0.95);
	position: fixed;
	width: -webkit-calc(100% - 20px);
	width: calc(100% - 20px);
	height: -webkit-calc(100% - 20px);
	height: calc(100% - 20px);
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
}
/* Overlay closing cross */
.menu-overlay .overlay-close {
	width: 80px;
	height: 80px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}
/* Menu style */
.menu-overlay nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.menu-overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}
.menu-overlay ul li {
	display: block;
	width: 50%;
	height: 20%;
	height: calc(100% / 8);
	float: left;
}
.menu-overlay ul li a {
	font-weight: bold;
	display: block;
	color: #fff;
	text-align: left;
	padding: 0 20px;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
.menu-overlay ul li a span {
	display: block;
}
.menu-overlay ul li a:hover,
.menu-overlay ul li a:focus {
	color: #e3fcb1;
}
/* Effects */
.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.overlay-hugeinc nav {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}
.overlay-hugeinc nav ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}
.overlay-hugeinc.open nav ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}
.overlay-hugeinc.close nav ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}

/* ==============================================================
   #ボタン
   ============================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
	tips：ボタンを複数並べる時は、.fw-btn-groupeで囲む
	例）
	<div clas="fw-btn-groupe">
		<a class="fw-btn">ボタンです</a>
		<a class="fw-btn">ボタンです</a>
	</div>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.fw-btn-groupe {
	margin: 1rem auto;
}
.fw-btn {
	display: inline-block;
	vertical-align: middle;
	background-color: #FE87B0;
	border-radius: 2px;
	font-weight: bold;
	font-size: 14px;
	color: #FFF;
	line-height: 1.4;
	letter-spacing: .1em;
	text-indent: .1em;
	padding: 12px 20px;
	cursor: pointer;
	/*-webkit-box-shadow: 0px 2px 0px 0px #C45E82;
    box-shadow: 0px 2px 0px 0px #C45E82;*/
}
.fw-btn.large {
	display: block;
	border-radius: 2px;
    font-size: 1rem;
	text-indent: .1em;
	width: 100%;
	max-width: 480px;
	padding: 20px 0;
	margin: auto;
	text-align: center;
}
.fw-btn:hover {
	background-color: #E383A5;
	color: #FFF;
	transform: translateY(3px);
	-webkit-transform: translateY(3px);
	transition: transform linear .1s;
	-webkit-transition: transform linear .1s;
}
.fw-btn-groupe .fw-btn {
	display: block;
	float: left;
	width: 50%;
	padding: 9px 0;
}

.fw-btn.large::before {
	content: "";
    border-top: solid 2px;
    border-left: solid 2px;
    border-color: #FFF;
    height: 8px;
    width: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
	transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

@media screen and (min-width: 768px) {
	.fw-btn.large {
	font-size: 16px;
    font-size: 1.145rem;
	}
	.fw-btn.large::before {
    right: 1.2vw;
    bottom: 0;
}
}
/* ==============================================================
   #お申込み
   ============================================================== */
#action-btn-area {
	background-color: #121314;
	background-image: url(../imgs/bg_slide.jpg);
	background-size: auto 720px;
	background-position: center;
	background-repeat: repeat;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	color: #FFF;
	text-align: center;
	padding: 50px 0;
	animation: billboard-2 90s linear infinite;
	-webkit-animation: billboard-2 90s linear infinite;
	-moz-animation: billboard-2 90s linear infinite;

}
#action-btn-area::before {
	content: "";
	background-color: #FE87B0;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.95;
	-webkit-transition: opacity ease .4s;
	transition: opacity ease .4s;
}
#action-btn-area:hover::before {
	opacity: 0.7;
}
@-webkit-keyframes billboard-2 {
 from {
 background-position: 720px -720px;
}
to {
	background-position: -720px 720px;
}
}
@keyframes billboard-2 {
 from {
 background-position: 720px -720px;
}
to {
	background-position: -720px 720px;
}
}

#action-btn-area h2 {
	font-size: 18px;
	font-size: 1.285rem;
	font-weight: bold;
	margin-top: auto;
}
#action-btn-area h2 span {
	display: inline-block;
}
/*#action-btn-area h2 span::before,
#action-btn-area h2 span::after {
	content: "";
	border-left: #FFF solid 3px;
	height: 100%;
	width: 0;
	margin: auto;
	position: absolute;
	top: -4px;
	bottom: -4px;
}
#action-btn-area h2 span::before {
	left: -1em;
	-webkit-transform: rotate(-16deg);
	transform: rotate(-16deg);
}*/
#action-btn-area h2 span::after {
	right: -1em;
	-webkit-transform: rotate(16deg);
	transform: rotate(16deg);
}
#action-btn-area .fw-btn.large {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#action-btn-area .oc-form {
	margin: auto;
}
#action-btn-area .enq-form {
	margin: auto;
	margin-top: 1rem;
}
#action-btn-area .oc-form .fw-btn.large:hover,
#action-btn-area .enq-form .fw-btn.large:hover {
	background-color: #FFF;
	color: #FE87B0;
}
#action-btn-area .oc-form .fw-btn.large:hover::before,
#action-btn-area .enq-form .fw-btn.large:hover::before {
	border-color: #FE87B0;
}
#action-btn-area .contact-phone {
	margin: auto;
	margin-top: 1rem;
}
#action-btn-area .oc-form a,
#action-btn-area .enq-form a {
	border: #FFF solid 2px;
}
#action-btn-area .oc-form a {
	line-height: 20px;
	padding: 12px 0;
	letter-spacing: .2em;
	text-indent: .2em;
}
#action-btn-area .oc-form a small {
	font-size: 1rem;
	display: block;
	letter-spacing: 0;
	text-indent: 0;
}
#action-btn-area .enq-form a {
	letter-spacing: .4em;
	text-indent: .4em;
	line-height: 64px;
	padding: 0;
}
#action-btn-area .contact-phone a:before {
	display: none;
}
#action-btn-area .contact-phone small {
	font-size: 16px;
	font-size: 1.145rem;
	line-height: 24px;
	display: block;
}
#action-btn-area .contact-phone span {
	font-size: 28px;
	font-size: 2rem;
	line-height: 44px;
	letter-spacing: 0;
	text-indent: 0;
	display: inline-block;
	padding-left: 24px;
}
#action-btn-area .contact-phone time {
	font-size: 11px;
	font-size: 0.78575rem;
	font-weight: normal;
	display: block;
	letter-spacing: 0;
}
#action-btn-area .contact-phone span .icon-phone {
	background-size: auto 60px;
	background-position: -140px -20px;
	height: 20px;
	width: 20px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
@media screen and (min-width: 768px) {
#action-btn-area h2 {
	font-size: 24px;
	font-size: 1.715rem;
}
#action-btn-area .oc-form,
#action-btn-area .enq-form,
#action-btn-area .contact-phone {
	margin: auto;
}
#action-btn-area .contact-phone span {
	font-size: 36px;
	font-size: 2.575rem;
	line-height: 44px;
	padding-left: 32px;
}
#action-btn-area .contact-phone span .icon-phone {
	background-size: auto 72px;
	background-position: -168px -24px;
	height: 24px;
	width: 24px;
}
#action-btn-area .contact-phone time {
	font-size: 12px;
	font-size: 0.875rem;
}
}
 @media screen and (min-width: 1200px) {
#action-btn-area {
	height: 280px;
	padding: 0;
}
}

hr {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 0;
    border-top: transparent dashed 1px;
    border-color: #222;
}
