@charset "UTF-8";
/***********************共通設定************************/
/*----------------------------------------------------
transition
----------------------------------------------------*/
/*----------------------------------------------------
transition
----------------------------------------------------*/
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  background-size: 100% auto;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    padding-top: 20px;
    font-size: 16px;
    background-size: 52px auto;
    background-size: 100% auto;
  }
}
body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
}
a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
label,
select,
textarea {
  vertical-align: middle;
}

/* SP コピーガード */
#main img {
  pointer-events: none;
  -webkit-touch-callout: none;
  /* default or none */
  -webkit-user-select: none;
  /* auto or none */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#main .controller img,
#main .prev img,
#main .next img {
  pointer-events: auto;
  -webkit-touch-callout: default;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/*----------------------------------------------------
fadeUp
----------------------------------------------------*/
.boxOpacity {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*----------------------------------------------------
表示
----------------------------------------------------*/
.hide {
  display: none;
}

@media all and (max-width: 751px) {
  .forSP {
    display: block;
  }
}
/* 751- */
@media all and (min-width: 751px) {
  .forSP {
    display: none;
  }
}
@media all and (max-width: 751px) {
  .forPC {
    display: none;
  }
}
/* 751- */
@media all and (min-width: 751px) {
  .forPC {
    display: block;
  }
}
/*----------------------------------------------------
inner
----------------------------------------------------*/
.inner,
.innerSP {
  margin: 0 16px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 751- */
@media all and (min-width: 751px) {
  .inner {
    margin: 0 40px;
  }
  .innerSP {
    margin: 0;
    width: 100%;
  }
}
/* 1297 */
@media all and (min-width: 1297px) {
  .inner {
    margin: 0 auto;
    width: 1200px;
  }
}
/*----------------------------------------------------
go_top
----------------------------------------------------*/
#go_top {
  display: none;
  position: relative;
  position: fixed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -200px;
  right: 60px;
  z-index: 10;
  text-align: center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
}
#go_top a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  line-height: 30px;
  padding-left: 65px;
}
#go_top a span {
  position: relative;
  z-index: 2;
}
#go_top a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #000000;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#go_top a:hover::before {
  margin-left: -20px;
}
#go_top a::after {
  position: absolute;
  top: -10px;
  left: 15px;
  content: "";
  display: block;
  width: calc(100% + 5px);
  height: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

/* 751- */
@media all and (min-width: 751px) {
  #go_top {
    display: block;
  }
}
body.scroll #go_top {
  bottom: 120px;
}

/*----------------------------------------------------
header
----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(145, 98, 7)), to(rgb(252, 213, 81)));
  background: linear-gradient(0deg, rgb(145, 98, 7) 0%, rgb(252, 213, 81) 100%);
  z-index: 20;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header {
    height: 76px;
  }
}
#header .inner {
  position: relative;
  height: 100%;
}
#header .menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 70px;
  height: 50px;
  background: transparent;
}
@media all and (max-width: 751px) {
  #header .menu {
    top: -3px;
  }
}
#header .menu span {
  display: inline-block;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  position: absolute;
  left: 20px;
  height: 3px;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  width: 30px;
}
#header .menu span:nth-of-type(1) {
  top: 18px;
}
#header .menu span:nth-of-type(2) {
  top: 26px;
}
#header .menu span:nth-of-type(3) {
  top: 34px;
}
#header .menu.open span {
  background-color: #ffffff;
}
#header .menu.open span:nth-of-type(1) {
  top: 20px;
  left: 20px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
#header .menu.open span:nth-of-type(2) {
  opacity: 0;
}
#header .menu.open span:nth-of-type(3) {
  top: 32px;
  left: 20px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
#header .sega {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  margin-top: -15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .sega {
    width: 100px;
    margin-top: -17px;
  }
}
#header .sega a {
  display: block;
}
#header .gNav {
  /* -750 */
}
@media all and (max-width: 750px) {
  #header .gNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #000000;
  }
}
#header .gNav .nav {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #header .gNav .nav {
    padding: 80px 0 20px;
  }
}
@media all and (min-width: 751px) {
  #header .gNav .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 76px;
    margin: 0px 160px 0 125px;
  }
}
@media screen and (min-width: 360px) and (max-width: 751px) {
  #header .gNav .nav {
    padding: 40px 0 10px;
  }
}
@media screen and (min-width: 360px) and (max-width: 751px) {
  #header .gNav .nav {
    padding: 40px 0 10px;
  }
}
#header .gNav .nav li a {
  padding: 15px 0;
  display: block;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 800;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .gNav .nav li a {
    line-height: 1;
    padding: 5px;
    font-size: 1.8vw;
  }
}
@media all and (min-width: 1061px) {
  #header .gNav .nav li a {
    padding: 10px;
  }
}
@media all and (min-width: 1281px) {
  #header .gNav .nav li a {
    font-size: 24px;
    padding: 10px 15px;
  }
}
#header .gNav .nav li a span {
  color: #ffffff;
  position: relative;
  display: inline-block;
}
#header .gNav .nav li a span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -7px;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .gNav .nav li a span::after {
    left: 50%;
    right: 50%;
    width: 0%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
}
@media (hover: hover) {
  #header .gNav .nav li a:hover span::after {
    left: 0;
    right: 0;
    width: 100%;
  }
}
#header .gNav .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .gNav .sns {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -21px;
  }
}
#header .gNav .sns li {
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .gNav .sns li {
    padding: 0 6px;
  }
}
#header .gNav .sns li.logo_x {
  position: relative;
  top: -2px;
}
#header .gNav .sns li.logo_x a img {
  width: 19px;
}
#header .gNav .sns li.logo_fb {
  position: relative;
  top: -2px;
}
#header .gNav .sns li.logo_fb a img {
  width: 12px;
}
#header .gNav .sns li.logo_ig a img {
  width: 24px;
}
#header .gNav .sns li a {
  display: block;
  padding: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #header .gNav .sns li a {
    padding: 9px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (hover: hover) {
  #header .gNav .sns li a:hover {
    padding: 0px 9px 18px;
  }
}

/*----------------------------------------------------
menu
----------------------------------------------------*/
/* 751- */
@media all and (min-width: 751px) {
  #header .menu {
    display: none;
  }
}
/*----------------------------------------------------
改行位置レスポンシブ
----------------------------------------------------*/
/* 751- */
@media all and (min-width: 751px) {
  .br_pc {
    display: block;
  }
  .br_sp {
    display: none;
  }
  .br_xs {
    display: none;
  }
}
/* -750 */
@media all and (max-width: 750px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .br_xs {
    display: none;
  }
}
/* -375 */
@media all and (max-width: 375px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: none;
  }
  .br_xs {
    display: block;
  }
}
/*----------------------------------------------------
ボタン
----------------------------------------------------*/
.ctabtn {
  cursor: pointer;
  height: 140px;
  max-width: 600px;
  position: relative;
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  /* -750 */
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .ctabtn {
    max-width: 500px;
  }
}
@media all and (max-width: 750px) {
  .ctabtn {
    max-width: 320px;
    height: 100px;
  }
}
.ctabtn:hover .ctabtn_txt,
.ctabtn:hover .ctabtn_bg {
  opacity: 0.78;
}
.ctabtn .ctabtn_txt {
  max-width: 362px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  /* -750 */
}
@media all and (max-width: 750px) {
  .ctabtn .ctabtn_txt {
    max-width: 180px;
  }
}
.ctabtn .ctabtn_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
}
.ctabtn .ctabtn_obj_light {
  mix-blend-mode: screen;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
}

/*----------------------------------------------------
背景色
----------------------------------------------------*/
.bg_bk {
  background-color: #000;
}

#mv {
  position: relative;
  margin-top: 56px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #mv {
    margin-top: 50px;
  }
}
#mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  #mv::after {
    height: 50px;
  }
}
#mv .title {
  width: 100%;
  margin: 0px auto 0;
}

#benefits {
  position: relative;
  padding-top: 40px;
}
#benefits .img_wrap {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
#benefits .img_wrap .img_ttl {
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 500px;
  z-index: 10;
  /* -750 */
}
@media all and (max-width: 750px) {
  #benefits .img_wrap .img_ttl {
    max-width: 210px;
    top: -2px;
  }
}
#benefits .ctabtn_wrap {
  padding: 60px 0 70px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #benefits .ctabtn_wrap {
    padding: 20px 0;
  }
}
#benefits .ctabtn_wrap .ctabtn {
  margin-right: auto;
  margin-left: auto;
}

/*----------------------------------------------------
apply
----------------------------------------------------*/
/*----------------------------------------------------
#maintenance【応募フォームメンテナンスのお知らせ】
----------------------------------------- -----------*/
.maintenance {
  padding-bottom: 50px;
}
.maintenance p {
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  .maintenance p {
    font-size: 24px;
    line-height: 1.8;
  }
}
.maintenance p .m_ttl {
  font-weight: 600;
}

/*----------------------------------------------------
overview
----------------------------------------------------*/
#overview {
  padding: 100px 0 130px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #overview {
    padding: 70px 0 40px 0;
  }
}
#overview .sec_ttl {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 48px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #overview .sec_ttl {
    max-width: 260px;
    margin-bottom: 32px;
  }
}
#overview .txt_wrap p {
  color: #fff;
  line-height: 2;
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  font-size: 26px;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 750px) {
  #overview .txt_wrap p {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
}
@media all and (max-width: 375px) {
  #overview .txt_wrap p {
    font-size: 15px;
  }
}
#overview .txt_wrap p + p {
  margin-top: 50px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #overview .txt_wrap p + p {
    margin-top: 30px;
  }
}

/*----------------------------------------------------
募集要項　#application
----------------------------------------------------*/
#application {
  padding-bottom: 70px;
  padding-top: 60px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #application {
    padding-bottom: 0;
  }
}
#application .contents {
  position: relative;
}
#application .sec_ttl {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 48px;
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* -750 */
}
@media all and (max-width: 750px) {
  #application .sec_ttl {
    max-width: 260px;
    top: -16px;
  }
}
#application .bg_red {
  background: url(../images/application_bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 100px 0 70px;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 750px) {
  #application .bg_red {
    height: 700px;
    background: url(../images/application_bg_sp.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 90px 14px 30px;
  }
}
@media all and (max-width: 375px) {
  #application .bg_red {
    height: 650px;
  }
}
#application .bg_red .bg_goldline {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 96%;
  height: 96%;
}
#application .application_list_wrap {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
#application .application_list_wrap .application_list .is_c_wh {
  color: #fff;
}
#application .application_list_wrap .application_list .is_c_gold {
  color: #fcd551;
}
#application .application_list_wrap .application_list .item + .item {
  margin-top: 46px;
}
#application .application_list_wrap .application_list .item_ttl {
  font-weight: 400;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #application .application_list_wrap .application_list .item_ttl {
    font-size: 18px;
  }
}
#application .application_list_wrap .application_list .item_ttl .obj_bright {
  display: inline-block;
  width: 20px;
  height: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .application_list_wrap .application_list .item_ttl .obj_bright {
    width: 40px;
    height: 40px;
  }
}
#application .application_list_wrap .application_list .item_ttl .obj_bright {
  max-width: 20px;
}
#application .application_list_wrap .application_list .item_ttl .obj_bright.is_left {
  margin-right: 6px;
}
#application .application_list_wrap .application_list .item_ttl .obj_bright.is_right {
  margin-left: 6px;
}
#application .application_list_wrap .application_list .item_txt {
  font-size: 21px;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 750px) {
  #application .application_list_wrap .application_list .item_txt {
    font-size: 16px;
    letter-spacing: -0.03em;
  }
}
@media all and (max-width: 375px) {
  #application .application_list_wrap .application_list .item_txt {
    font-size: 15px;
  }
}
#application .application_list_wrap .application_list .is_lg {
  display: block;
  font-size: 40px;
  /* -750 */
  /* -375 */
}
@media all and (max-width: 750px) {
  #application .application_list_wrap .application_list .is_lg {
    font-size: 23px;
  }
}
@media all and (max-width: 375px) {
  #application .application_list_wrap .application_list .is_lg {
    font-size: 21px;
  }
}
#application .application_list_wrap .application_list .is_sm {
  display: block;
  font-size: 18px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #application .application_list_wrap .application_list .is_sm {
    font-size: 14px;
  }
}
#application .application_list_wrap .application_list .has_mt4 {
  margin-top: 4px;
}
#application .application_list_wrap .application_list .is_list {
  margin-right: auto;
  margin-left: auto;
  max-width: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* -750 */
}
@media all and (max-width: 750px) {
  #application .application_list_wrap .application_list .is_list {
    max-width: 250px;
    text-align: left;
  }
}
#application .application_list_wrap .application_list .is_list li {
  padding-left: 1em;
  text-indent: -1.1em;
}
#application .application_list_wrap .application_list .is_list li::before {
  content: "・";
}
#application .application_list_wrap .application_list .is_list li + li {
  margin-top: 4px;
}

/*----------------------------------------------------
オーディションの流れ　#flow
----------------------------------------------------*/
#flow {
  padding-top: 40px;
  padding-bottom: 70px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #flow {
    padding-bottom: 40px;
  }
}
#flow .sec_ttl {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 48px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #flow .sec_ttl {
    max-width: 260px;
    margin-bottom: 36px;
  }
}
#flow .flow_list {
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .flow_list {
    margin: 0 auto;
    max-width: 1030px;
  }
}
#flow .flow_list .flow_list_item {
  margin-top: 30px;
  text-align: left;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .flow_list .flow_list_item {
    margin: 37px auto 0;
  }
}
#flow .flow_list .flow_list_item .flow_list_item_ttl {
  color: #fcd551;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .flow_list .flow_list_item .flow_list_item_ttl {
    font-size: 36px;
  }
}
#flow .flow_list .flow_list_item .flow_list_item_ttl .flow_list_item_subttl {
  font-size: 26px;
}
#flow .flow_list .flow_list_item .flow_list_item_ttl.is_2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* -750 */
}
#flow .flow_list .flow_list_item .flow_list_item_ttl.is_2col span {
  position: relative;
  left: -4px;
}
@media all and (max-width: 750px) {
  #flow .flow_list .flow_list_item .flow_list_item_ttl.is_2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #flow .flow_list .flow_list_item .flow_list_item_ttl.is_2col span {
    font-size: 15px;
    margin-left: 38px;
    position: unset;
    left: 0;
  }
}
#flow .flow_list .flow_list_item .txt_wrap {
  margin: 5px 0 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .flow_list .flow_list_item .txt_wrap {
    margin: 5px 0 0 50px;
  }
}
#flow .flow_list .flow_list_item .txt_wrap .text {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #flow .flow_list .flow_list_item .txt_wrap .text {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
#flow .flow_list .flow_list_item .txt_wrap .text.is_2row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#flow .flow_list .flow_list_item .txt_wrap .note_list {
  margin-top: 30px;
  max-width: 950px;
}
#flow .flow_list .flow_list_item .txt_wrap .note_list .note {
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
  padding-left: 1.3em;
  text-indent: -1.3em;
  /* 751- */
}
#flow .flow_list .flow_list_item .txt_wrap .note_list .note::before {
  content: "※";
}
@media all and (min-width: 751px) {
  #flow .flow_list .flow_list_item .txt_wrap .note_list .note {
    font-size: 18px;
  }
}
#flow .flow_list .flow_list_item .txt_wrap .note_list .note + .note {
  margin-top: 2px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #flow .flow_list .flow_list_item .txt_wrap .note_list .note + .note {
    margin-top: 5px;
  }
}

/*----------------------------------------------------
応募方法　#method
----------------------------------------------------*/
#method {
  padding-top: 80px;
  background: #000;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method {
    padding-top: 60px;
  }
}
#method .bg_red {
  border-top: 3px solid #fcd551;
  border-bottom: 2px solid #fcd551;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(153, 1, 0)), to(rgb(99, 4, 3)));
  background: linear-gradient(180deg, rgb(153, 1, 0) 0%, rgb(99, 4, 3) 100%);
  position: relative;
  padding-bottom: 40px;
}
#method .bg_red::before {
  content: "";
  width: 100%;
  background: #000;
  position: absolute;
  top: -10px;
  left: 0;
  display: block;
  border-bottom: 2px solid #fcd551;
  z-index: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .bg_red::before {
    top: -8px;
  }
}
#method .bg_red::after {
  content: "";
  width: 100%;
  height: 5px;
  background: #000;
  position: absolute;
  bottom: 0px;
  left: 0;
  display: block;
  border-top: 3px solid #fcd551;
  z-index: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .bg_red::after {
    bottom: -8px;
  }
}
#method .inner {
  margin: 0 auto;
  max-width: 1030px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
#method .sec_ttl {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 38px;
  position: relative;
  top: -42px;
  z-index: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .sec_ttl {
    max-width: 260px;
    top: -22px;
    margin-bottom: 20px;
  }
}
#method .txt_wrap .text {
  text-align: left;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #method .txt_wrap .text {
    font-size: 24px;
  }
}
#method .txt_wrap .text + .text {
  margin-top: 40px;
}
#method .txt_wrap .text .is_c_yellow {
  color: #fcd551;
}
#method .txt_wrap .text.is_2row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#method .txt_wrap .note_list {
  margin-top: 50px;
  max-width: 950px;
}
#method .txt_wrap .note_list .note {
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
  padding-left: 1.3em;
  text-indent: -1.3em;
  /* 751- */
}
#method .txt_wrap .note_list .note::before {
  content: "※";
}
@media all and (min-width: 751px) {
  #method .txt_wrap .note_list .note {
    font-size: 18px;
  }
}
#method .txt_wrap .note_list .note + .note {
  margin-top: 2px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .txt_wrap .note_list .note + .note {
    margin-top: 5px;
  }
}
#method .ctabtn_wrap {
  padding: 80px 0 70px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #method .ctabtn_wrap {
    padding: 40px 0 20px 0;
  }
}
#method .ctabtn_wrap .ctabtn {
  margin-right: auto;
  margin-left: auto;
}
#method .mail {
  margin: 25px 0;
  border: solid 1px #ffffff;
  /* 751- */
}
@media all and (min-width: 751px) {
  #method .mail {
    margin: 80px 0 20px;
  }
}
#method .mail a {
  display: block;
  font-size: 18px;
  text-align: center;
  padding: 6px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #method .mail a {
    font-size: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 971px) and (max-width: 1190px) {
  #method .mail a {
    font-size: 20px;
  }
}
@media (hover: hover) {
  #method .mail a:hover {
    color: #000000;
    background: #ffffff;
  }
}

/*----------------------------------------------------
terms
----------------------------------------------------*/
#terms {
  padding-top: 20px;
  padding-bottom: 70px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms {
    padding-bottom: 50px;
  }
}
#terms .terms_list .terms_item {
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  #terms .terms_list .terms_item {
    margin: 0 auto;
    max-width: 1000px;
    line-height: 1.3;
  }
}
#terms .terms_list .terms_item .ter_title {
  padding-top: 100px;
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: 400;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .terms_list .terms_item .ter_title {
    padding-top: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}
#terms .terms_list .terms_item p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  /* 751- */
}
@media all and (min-width: 751px) {
  #terms .terms_list .terms_item p {
    font-size: 18px;
  }
}
#terms .terms_list .terms_item p + p {
  margin-top: 20px;
}
#terms .terms_list .terms_item .item_list {
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .terms_list .terms_item .item_list {
    margin-top: 16px;
  }
}
#terms .terms_list .terms_item .item_list .item_detail {
  margin-top: 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .terms_list .terms_item .item_list .item_detail {
    margin-top: 12px;
  }
}
#terms .terms_list .terms_item .item_list .item_detail .privacy {
  color: #ffffff;
  cursor: pointer;
}
#terms .terms_list .terms_item .item_list .item_detail .privacy span {
  position: relative;
}
#terms .terms_list .terms_item .item_list .item_detail .privacy span::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: -0.5px;
  left: 0;
}
@media (hover: hover) {
  #terms .terms_list .terms_item .item_list .item_detail .privacy span:hover::after {
    width: 0;
  }
}
#terms .terms_item_list {
  color: #ffffff;
  margin-top: 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .terms_item_list {
    margin-top: 16px;
  }
}
#terms .terms_item_list .terms_item_detail {
  font-size: 18px;
  padding-left: 1em;
  text-indent: -1em;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .terms_item_list .terms_item_detail {
    font-size: 14px;
  }
}
#terms .terms_item_list .terms_item_detail::before {
  content: "・";
}
#terms .terms_item_list .terms_item_detail + .terms_item_detail {
  margin-top: 4px;
}
#terms .has_indent {
  display: block;
  padding-left: 1em;
}
#terms .apply {
  /* 751- */
}
@media all and (min-width: 751px) {
  #terms .apply {
    padding: 50px 0 0;
  }
}
#terms .apply.g_ap {
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .apply.g_ap {
    padding: 40px 0 0;
  }
}
#terms .maintenance {
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .maintenance {
    padding: 10px 0 0;
  }
}
#terms .maintenance p {
  color: #fff;
}
#terms .ctabtn_wrap {
  padding: 80px 0 70px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #terms .ctabtn_wrap {
    padding: 40px 0 20px;
  }
}
#terms .ctabtn_wrap .ctabtn {
  margin-right: auto;
  margin-left: auto;
}

/*----------------------------------------------------
go_top_static
----------------------------------------------------*/
.go_top_static {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: right;
  margin-bottom: -30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .go_top_static {
    font-size: 20px;
  }
}
.go_top_static a {
  display: inline-block;
  color: #fcd551;
  /* 751- */
}
@media all and (min-width: 751px) {
  .go_top_static a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 10px 0 0;
  }
}
.go_top_static a:hover {
  padding: 0 0 10px;
}

/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  background: #fff;
  color: #000;
  padding: 40px 0 20px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer {
    padding: 50px 0 40px;
  }
}
#footer a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#footer a.studio {
  margin: 0 auto;
  display: block;
  width: 80px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer a.studio {
    width: 146px;
  }
}
#footer a.sega {
  margin: 15px auto 10px;
  display: block;
  width: 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer a.sega {
    margin: 30px auto 20px;
    width: 100px;
  }
}
@media (hover: hover) {
  #footer a:hover {
    opacity: 0.9;
  }
}
#footer .fsns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .fsns li {
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .fsns li {
    padding: 0 4px;
  }
}
#footer .fsns li.logo_x a img {
  width: 22px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .fsns li.logo_x a img {
    width: 24px;
  }
}
#footer .fsns li.logo_fb a img {
  width: 12px;
  height: 24px;
}
#footer .fsns li.logo_ig a img {
  width: 24px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .fsns li.logo_ig a img {
    width: 24px;
  }
}
#footer .fsns li a {
  display: block;
  padding: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .fsns li a {
    padding: 9px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (hover: hover) {
  #footer .fsns li a:hover {
    padding: 0px 9px 18px;
  }
}
#footer .env {
  font-size: 13px;
  margin-top: 20px;
  display: inline-block;
  text-align: left;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .env {
    font-size: 14px;
    margin-top: 30px;
    text-align: left;
    line-height: 1.2;
  }
}
#footer .env .mark {
  position: relative;
  line-height: 1.5;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .env .mark {
    padding-left: 0;
    line-height: 1.3;
  }
}
#footer .env .mark.sptp::before {
  /* -750 */
}
@media all and (max-width: 750px) {
  #footer .env .mark.sptp::before {
    top: 12px;
  }
}
#footer .env .mark::before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#footer .env .mark span {
  padding-left: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .env .mark span {
    padding-left: 10px;
  }
}
#footer .copy {
  margin-top: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .copy {
    margin-top: 20px;
  }
}
#footer .copy .right {
  font-size: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #footer .copy .right {
    font-size: 16px;
  }
}
#footer .copy .text {
  margin-top: 10px;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */