@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
*, *:before, *:after {
box-sizing: border-box;
}
a{
  outline: none;
  text-decoration:none;
}
img{
	vertical-align: bottom;
}
/* ------ */

html{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
/*	scroll-behavior: smooth;*/
}

body {
	font-family: "BIZ UDPGothic", "Josefin Sans", sans-serif;
	width: 100%;
	color: #000;
  font-size: 2.1rem;/*body内基本フォントサイズ*/
	background-color: #000;
}

.inner{
	width: 1000px;
  margin: 0 auto;
}

button{
  outline: none;
}
/* Firefox */
button::-moz-focus-inner {
  border: 0;
}

.clearfix:after {
 visibility: hidden;
 display: block;
 font-size: 0;
 content: " ";
 clear: both;
 height: 0;
}

.sp{
  display: none;
}

@media screen and (max-width:960px) {
  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }
}


/*------------------------------------------------------------------------------------------------
moonrabi-Menu
------------------------------------------------------------------------------------------------*/
.bgColor{
	background-color: #fff;
}

#moonrabi-nav{
  font-family: Meiryo, "sans-serif";
  color: #fff;
  background-color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.5rem;
  width: 1000px;
  height: 50px;
}
#moonrabi-nav ul{
  list-style: none;
  position: relative;
  font-weight: bold;
  margin-top: 5px;
  display: flex;
  align-items: center;
  float: right;
}


#moonrabi-nav ul li{
 margin-left: 7px;
}

#moonrabi-nav .moonrabi-btn{
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
	text-decoration: none;
	width: auto;
	padding: 0.7rem 1rem;
	font-weight: bold;
	background: #39b89f;
	color: #fff;
	position: relative;
}

#moonrabi-nav .moonrabi-btn-non{
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
	text-decoration: none;
	width: auto;
	padding: 0.7rem 1rem;
	font-weight: bold;
	background: #d0d0d0;
	color: #fff;
	position: relative;
}
#moonrabi-nav h1{
  float: left;
}
#moonrabi-nav .moonrabi-btn::before {
	content: '';
	width: 0.7rem;
	height: 0.7rem;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
  margin-right: 1.5rem;
}

#moonrabi-nav ul li .moonrabi-btn:hover {
	background: #595656;
}

/*------------------------------------------------------------------------------------------------
loading
------------------------------------------------------------------------------------------------*/
.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
 background: radial-gradient(ellipse at center, #fff 0%, #fef6fe 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
	z-index: 1100;
	
}

.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}


@keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-moz-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-webkit-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-o-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }
        .loading-container,
        .load {
            height: 200px;
            position: relative;
            width: 200px;
            border-radius: 100%;
        }


        .loading-container { margin: 40px auto }

        .load {
            border: 2px solid transparent;
            border-color: transparent #d6a7c9 transparent #d6a7c9;
            -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
            -moz-transform-origin: 50% 50%;
            -o-animation: rotate-loading 1.5s linear 0s infinite normal;
            -o-transform-origin: 50% 50%;
            -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
            -webkit-transform-origin: 50% 50%;
            animation: rotate-loading 1.5s linear 0s infinite normal;
            transform-origin: 50% 50%;
        }

        .loading-container:hover .load {
            border-color: transparent #E45635 transparent #E45635;
        }
        .loading-container:hover .load,
        .loading-container .load {
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
        }

        #loading-text {
            -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
            -o-animation: loading-text-opacity 2s linear 0s infinite normal;
            -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
            animation: loading-text-opacity 2s linear 0s infinite normal;
            color: #d6a7c9;
            font-family: "Helvetica Neue, "Helvetica", ""arial";
            font-size: 14px;
            font-weight: bold;
            margin-top: 90px;
            opacity: 0;
            position: absolute;
            text-align: center;
            text-transform: uppercase;
            top: 0;
            width: 200px;
        }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/*----

/*------------------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------------------*/

header{
  background: url("../images/header-bg.jpg") no-repeat top center;
	overflow: hidden;
  height: 911px;
}

header .inner{
  position: relative;
}

header .inner h1{
  position: absolute;
  top: 5px;
  left: 37px;
  z-index: 2;
	animation-name: fadeIn;
	animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: both;
　opacity: 0;
}

header .inner h2{
  position: absolute;
  top: 358px;
  left: 30px;
  z-index: 2;
	animation-name: fadeIn;
	  animation-duration: 1.5s;
  animation-delay: 2s;
  animation-fill-mode: both;
　opacity: 0;
}

header .inner .header-sns{
  position: absolute;
  top: 3px;
  right: 20px;
  z-index: 2;
	animation-name: fadeIn;
	animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: both;
　opacity: 0;
}

/* ============
animation
============*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadein {
  animation-name: fadeIn;
}

.fade_in {
  opacity: 0.1;
  transform: translate(0, 80px);
  transition: all 500ms; }

.fade_in.left_side {
  transform: translate(-160px, 0); }

.fade_in.right_side {
  transform: translate(160px, 0); }

.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0); }


/*------------------------------------------------------------------------------------------------
letter
------------------------------------------------------------------------------------------------*/

#letter{
  position: relative;
  background: url("../images/letter-bg.jpg") repeat top center;
}

#letter .inner{
	height: 316px;
	position: relative;
}

#letter p{
  padding: 29px 0 0 24px;
}

#letter .chara li{
	position: absolute;
	z-index: 1;
}

#letter .chara li:nth-of-type(1){
	top: 29px;
	left: -358px;
}

#letter .chara li:nth-of-type(2){
	top: 29px;
	right: -358px;
}
/*------------------------------------------------------------------------------------------------
register
------------------------------------------------------------------------------------------------*/

.register{
  position: relative;
  background: url("../images/register-bg.jpg") no-repeat top center;
  height: 170px;
}

.register ul{
  padding-top: 36px;
  display: flex;
  justify-content: center;
}

.register ul li{
  margin-right: 40px;
}

.register ul li:last-child{
  margin-right: 0;
}

/*------------------------------------------------------------------------------------------------
jobs
------------------------------------------------------------------------------------------------*/
#jobs{
  background: url("../images/job-bg.jpg") no-repeat top center;
  background-attachment: fixed;
  overflow: hidden;
}

#jobs .inner{
  height: 2290px;
  position: relative;
}

#jobs .inner h2 {
  position: absolute;
  top: 70px;
  left: 35px;
	z-index: 1;
}

#jobs .inner .jobs-1{
	background: url("../images/job-1-bg.png") no-repeat top center;
	width: 566px;
	height: 974px;
	position: relative;
	position: absolute;
	top: 210px;
	right: 0;
	z-index: 1;
}

#jobs .inner .jobs-1 h3, 
#jobs .inner .jobs-2 h3,
.txt, .skill{
	position: absolute;
}

#jobs .inner .jobs-1 h3{
	top: 52px;
	left: 55px;
}

#jobs .inner .jobs-1 .txt{
	top: 212px;
	left: 22px;
}

#jobs .inner .jobs-1 .skill{
	top: 408px;
	left: 22px;
}

#jobs .inner .jobs-1 .skill li{
	padding-bottom: 19px;
}

#jobs .inner .chara-1{
	position: absolute;
	top: 109px;
	left: -182px;
}

#jobs .inner .jobs-2{
	background: url("../images/job-2-bg.png") no-repeat top center;
	width: 566px;
	height: 1013px;
	position: relative;
	position: absolute;
	top: 1210px;
	left: 0;
}

#jobs .inner .chara-2{
	position: absolute;
	top: 1066px;
	left: -264px;
}

#jobs .inner .jobs-2 h3{
	top: 52px;
	left: 54px;
}

#jobs .inner .jobs-2 .txt{
	top: 211px;
	left: 20px;
}

#jobs .inner .jobs-2 .skill{
	top: 408px;
	left: 20px;
}

#jobs .inner .jobs-2 .skill li{
	padding-bottom: 18px;
}
/*------------------------------------------------------------------------------------------------
map
------------------------------------------------------------------------------------------------*/
#map{
  background: url("../images/map-bg.jpg") no-repeat top center;
  position: relative;
  overflow: hidden;
}

#map .inner{
  height: 931px;
  position: relative;
  text-align: center;
}

#map .inner h2{
	position: absolute;
	top: 69px;
	left: 35px;
}

#map .inner .txt{
	position: absolute;
	top: 223px;
	left: 0;
	display: flex;
	justify-content: flex-end;
}

#map .inner .txt li{
	padding-right: 16px;
}

#map .inner .txt li:last-of-type{
	padding-right: 0;
}
/*------------------------------------------------------------------------------------------------
event
------------------------------------------------------------------------------------------------*/
#campaing{
  background: url("../images/campaing-bg.jpg") no-repeat top center;
}

#campaing .inner{
  height: 871px;
  text-align: center;
  position: relative;
}

#campaing .title{
  position: absolute;
	top: 68px;
	left: -200px;
}

#campaing .banner{
  position: absolute;
	top: 118px;
	right: 0;
}

#campaing .banner li{
	padding-bottom: 8px;
}
/*------------------------------------------------------------------------------------------------
about
------------------------------------------------------------------------------------------------*/
#about{
  background-color: rgba(228,8,95,0.50);
  height: 943px;
  position: relative;
  overflow: hidden;
}

#about .inner{
  position: relative;
}

#about .inner .title{
	position: absolute;
	top: 57px;
	left: 35px;
}

#about .inner .txt{
  position: absolute;
	top: 205px;
	left: 24px;
}

#about .inner .chara li{
  position: absolute;
}

#about .inner .chara li:nth-of-type(1){
	top: 332px;
	right: -285px;
}

#about .inner .chara li:nth-of-type(2){
	top: 503px;
	right: 45px;
}

#about .inner .chara li:nth-of-type(3){
	top: 414px;
	left: -424px;
}

#about .inner .chara li:nth-of-type(4){
	top: 593px;
	left: -34px;
}

.background video{
	display: block;
	min-width: 100%;
	height: auto;
	margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

#about .btn-top{
	background: url("../images/about-bottom.png") repeat top center;
	height: 18px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
/*------------------------------------------------------------------------------------------------
btn
------------------------------------------------------------------------------------------------*/
#btn{
  background: url("../images/register2-bg.jpg") no-repeat top center;
  height: 170px;
}

#btn ul{
  padding: 37px 0 0 57px;
  display: flex;
  justify-content: center;
}

#btn ul li{
  margin-right: 17px;
}

#btn ul li:last-child{
  margin-right: 0;
}
/*------------------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------------------*/
footer{
  background-color: #fff;
  height: 225px;
  text-align: center;
}

footer ul{
  padding: 30px 0;
  display: flex;
  justify-content: center;
    align-items: center;
}

footer li{
  padding: 0 10px 0 0;
}

footer p{
    padding-top: 16px;
}

footer #copyright{
    font-size: 14px;
    color: #959aad;
    line-height: 1.5;
    letter-spacing: normal;
}

/*------------------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------------------*/
#loading-container {
            text-align: center;
            z-index: 10;
            position: relative;
        }

        /* 2. 1st Anniversary ロゴ風テキスト */
        .anniversary-logo {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(to bottom, #fff3a0 0%, #ffca28 50%, #ff8f00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(255, 202, 40, 0.6));
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        /* 3. プログレス数値 */
        .percentage {
            font-size: 1.5rem;
            color: #ffffff;
            font-weight: 300;
            text-shadow: 0 0 5px #ff00ff;
        }

        /* 4. ローディングバー */
        .progress-border {
            width: 300px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin: 20px auto;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            box-shadow: 0 0 15px #00ffff;
            transition: width 0.1s linear;
        }

        /* 5. 花火のエフェクト用 */
        .firework {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            pointer-events: none;
        }

        @keyframes explode {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(25); opacity: 0; }
        }

        .particle {
            position: absolute;
            background: white;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            animation: fly 1s ease-out forwards;
        }

        @keyframes fly {
            to {
                transform: translate(var(--x), var(--y));
                opacity: 0;
            }
        }