@charset "utf-8";

/*=== COMMON ELEMENT ===*/

body {
  background: url(../images/whole_bg.png) top center repeat-y;
  background-size: 100%;
  background-attachment: fixed
}

h1, h2, h3, h4, h5,
p, ul, dl, a,
address, small {
	color: #000;
	line-height: 2;

	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;	
}

.font-bold,
h1, h2, h3, h4, h5 {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

h4 {
	display: inline-block;
    font-size: 25px;
    letter-spacing: 3px;
    color: #E50614;
    border-bottom: 5px solid #E50614;
    line-height: 1.6;
    padding-left: 3px;
    margin-bottom: 50px;
}

h5 {
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0;
}

.color-red {
	color: #E50614;
}

a {
	color: #000;
	text-decoration: none;
  transition: all .3s;
}

a img {
	transition: opacity .3s;
}

a:hover,
a:active {
	color: red;
}

a:hover img,
a:active img {
	opacity: 0.7;
}

/*=== NAV ===*

nav ul {
	right: 0;
	top: 0;
}

nav li {
	margin-left: 20px;
}

nav li a {
    padding-left: 20px;
    border-left: 1px solid #eee;
}


/*=== header ===*/

#header {
	width: 100%;
	max-width: 1900px;
	margin: auto;
	position: relative;
}

#header .section-inside {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index:100;
}

h1 {
	position: absolute;
	top: 2vw;
	left: 2vw;
	width: 36%;
}

h2 {
	position: absolute;
    top: 15vw;
    left: 6vw;
    font-size: 4.8vw;
    color: #fff;
    text-shadow: 1px 1px 8px #000;
    line-height: 1.5;
}

.entry-button {
	font-size: 14px;
	display: block;
    width: 9vw;
    height: 9vw;
    line-height: 9vw;
    text-align: center;
    letter-spacing: 2px;
}

.entry-button a {
	color: #fff;
	position: relative;
	display: block;
	width: 9vw;
	height: 9vw;
    border-radius: 200px;
	box-shadow: 1px 1px 6px #444;
}

.entry-button a:hover,
.entry-button a:active {
	color: yellow;
}
.entry-button a:hover .entry-bg,
.entry-button a:active .entry-bg {
  animation-duration: 1.5s;
}

.entry-button .entry-bg {
	background: url(../images/01_entrybutton.png);
	background-size: cover;
	display: block;
    width: 9vw;
    height: 9vw;
    border-radius: 200px;
}

.entry-button .entry-text {
	position: absolute;
	display: block;
	line-height: 9vw;
	text-align: center;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 1.1vw;
}

/* 回転 */
.entry-button .entry-bg {
  animation-name: rotate;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
  animation-iteration-count: infinite;
}

@keyframes rotate{
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}

#header .entry-button {
    position: absolute;
    top: 36vw;
    right: 6vw;
}


/*=== VEGAS SLIDE IMAGE ===*/

.swiper {
  width: 100%;
}

.swiper-slide img {
	width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*=== LAYOUT ===*/

#wrapper {
	margin: 0 auto;
}

section {
	width: 100%;
	background: #fff !important;
}

.section-inside {
	width: 1100px;
	padding: 60px 0;
	margin-top: 70px;
}


/*=== OVERVIEW ===*/

#header .section-inside {
	background: none;
	padding: 0;
	margin: 0;
}

#overview {
	background: none !important;
}

#overview .section-inside {
	background: none;
	padding: 0;
	margin: 0 auto;
}


#overview p {
	text-align: center;
	padding-bottom: 30px;
}

#overview img {
	width: 180px;
}


/*=== SCHEDULE ===*/

#schedule dl {
	width: 80%;
	margin: 0 auto;
}

#schedule dt {
	color: #545454;
    padding: 0 30px;
    font-size: 20px;
}

#schedule dd {
	border-bottom: 1.5px solid #000;
    padding: 0 30px 15px;
    margin: 0 0 15px;
}

.course-name {
	background: #E50614;
    color: #fff;
    width: 230px;
    text-align: center;
    padding: 3px;
    margin: 5px 20px 5px 0;
}

.course-day {
	font-weight: bold;
}

#schedule p.attention {
    width: 80% !important;
    display: block;
    margin: 0 auto;
    padding: 0 30px;
}


/*=== UV ===*/

#uv a {
    color: #E50614;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
    background: url(../images/link_icon.png) center right no-repeat;
    padding-right: 25px;
}

#uv a:hover,
#uv a:active {
	opacity: 0.6;
}

#uv .section-inside {
	background: url(../images/06_illust.png) center center no-repeat;
		background-size: 80%;
    height: 560px;
    padding-top: 40px;
    position: relative;
}

.uv-more {
	position: absolute;
    bottom: 70px;
    width: 100%;
}


/*=== PEOPLE ===*/

.link-icon {
    background: url(../images/link_icon.png) top right no-repeat;
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 10px;
    right: 10px;
}


/*=== COMPANY ===*/

#company dl {
    border-bottom: 1.5px solid #000;
}

#company dt {
	border-top: 1.5px solid #000;
    padding: 15px 0;
}

#company dd {
	border-top: 1.5px solid #000;
    padding: 15px 0;
}

#company dd a {
	color: #E50614;
	text-decoration: underline;
}


/*=== FIXED ENTRY BUTTON ===*/

#fix-button {
	position: fixed;
	right: 40px;
	bottom: -200px;
	transition: bottom .5s ease;
}

#fix-button.ondisplay {
	bottom: 40px;
}

.nopc {display: none !important;}
.nosp {display: block !important;}


/*=== FADE IN ===*/

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  animation-name: fadeins;
  animation-duration: 1s;
	animation-fill-mode: forwards;
}

.is-fadein.delay1 {
  animation-name: fadeins;
  animation-duration: 1s;
  animation-delay: .2s;
	animation-fill-mode: forwards;
}

.is-fadein.delay2 {
  animation-name: fadeins;
  animation-duration: 1s;
  animation-delay: .4s;
	animation-fill-mode: forwards;
}

@keyframes fadeins{
  from {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  }
}




/*=== FOR iPad (min-width: 1200px;) ===*
@media screen and (max-width: 1260px) {

body {
  min-width: 1260px; /* for iPad Layout *
}


/*=== VEGAS SLIDE IMAGE ===*

#topimage {
  height: 60vw !important
}

} /*=== @mediaquery FOR iPad ===*/





/*=== FOR UNDER 736px SMART PHONE ===*/

@media screen and (max-width: 736px) {
	
body {
	background: none;
	min-width: auto; /* for iPad Layout */
	background-size: 200% !important;
}

body::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100vw;
    height:100vh;
	  background: url(../images/whole_bg.png) top center repeat-y;
    -webkit-background-size: 200%;
    background-size: 200%;
    content:"";
}

/*=== VEGAS SLIDE IMAGE ===*/

#topimage {
	width: 100%;
	height: 68vw !important;
}

h1 {
    top: 3vw;
    left: 5vw;
    width: 55vw;
}

h2 {
    top: 35vw;
    left: 5vw;
    font-size: 5.5vw;
    line-height: 1.6;
    bottom: 5vw;
}

h3 {
    font-size: 6vw !important;
    line-height: 1.8;
    padding-bottom: 5vw;
}

h4 {
    font-size: 4.6vw;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-bottom: 6vw;
}

h5 {
    font-size: 4.6vw;
}

.entry-button {
	font-size: 14px;
    width: 20vw;
    height: 20vw;
    line-height: 20vw;
}

.entry-button a {
	width: 20vw;
	height: 20vw;
    border-radius: 20vw;
}

.entry-button .entry-bg {
    width: 20vw;
    height: 20vw;
    border-radius: 20vw;
}

.entry-button .entry-text {
	line-height: 20vw;
}

a:hover,
a:active {
	color: #000;
	opacity: 1 !important;
}

a:hover img,
a:active img {
	opacity: 1;
}


/*=== LAYOUT ===*/

#wrapper {
	width: 100%;
}

section {
    margin-top: 15vw;
}

.section-inside {
	width: 82%;
	padding: 8vw 0;
	margin: 0 auto;
}


/*=== HEADER ===*/

#header .entry-button {
    top: 23vw;
    bottom: auto;
    right: 5vw;
}

section#header  {
	margin-top: 0;
}

.entry-button .entry-text {
	font-size: 2.8vw;
}


/*=== OVERVIEW ===*/

#overview {
	margin-bottom: -8vw;
}

#overview p {
    padding-bottom: 8vw;
		font-size: 3.6vw;
}

#overview img {
		width: 38vw;
}

#overview .fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#overview .fadein.is-fadein {
  animation-name: fadeinss;
  animation-duration: 0s;
	animation-fill-mode: forwards;
}


/*=== SCHEDULE ===*/

#schedule dl {
    width: 100%;
}

#schedule dt {
    padding: 0;
    font-size: 4vw;
}

#schedule dd {
    padding: 0 0 3vw;
    margin: 0 0 3vw;
    font-size: 3.4vw;
}

#schedule p.attention {
    width: 100% !important;
    padding: 0;
    font-size: 2.5vw;
}

.course-name {
    /*width: 40vw;*/
    padding: 1vw;
    margin: 1vw 3vw 1vw 0;
    font-size: 3vw;
}

.course-day {
    font-size: 4vw;
		padding-bottom: 2vw;
}


/*=== UV ===*/

#uv .section-inside {
    background: url(../images/06_illust_sp.png) center center no-repeat;
    background-size: 100%;
    height: 220vw;
    padding-bottom: 0;
}

.uv-more {
    position: absolute;
    top: 188vw;
    bottom: auto;
}


/*=== FIXED ENTRY BUTTON ===*/

#fix-button {
	right: 4vw;
	bottom: -20vw;
}

#fix-button.ondisplay {
	bottom: 12vw;
}

.entry-button a:hover,
.entry-button a:active {
	color: #fff;
}
.entry-button a:hover .entry-bg,
.entry-button a:active .entry-bg {
  animation-duration: 10s;
}

.nopc {display: block !important;}
.nosp {display: none!important;}

} /*=== @mediaquery FOR SMART PHONE ===*/
