@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  font-family: 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  background: #0b060d;
  color: #f9f7e9;
  font-weight: 300;
}

#load {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 30;
  background: #000;
}

.container {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .container {
    min-width: 1444px;
  }
}

.wrap {
  width: 100%;
  max-width: 1444px;
  margin: 0 auto;
  position: relative;
}

a, a img {
  transition: 0.4s;
}

a:hover, a:hover img {
  opacity: 0.7;
}

header {
  height: 40px;
  background: #ff7244;
  display: flex;
}
@media only screen and (min-width: 641px) {
  header {
    justify-content: space-between;
  }
}
header .news {
  display: flex;
}
header .news > p {
  width: 120px;
  height: 40px;
  background: #fff58f;
  text-align: center;
  line-height: 34px;
  position: relative;
  vertical-align: top;
}
header .news > p:after {
  content: "";
  width: 45px;
  height: 28px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff58f;
  display: block;
  position: absolute;
  top: 0;
  right: -17px;
  z-index: 3;
}
header .news > p img {
  vertical-align: middle;
}
header .news > p + div {
  width: 680px;
  font-weight: 500;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  color: #f9f7e9;
  box-sizing: border-box;
  display: flex;
  position: relative;
}
header .news ul.news-content {
  width: 100%;
  max-width: 640px;
  padding-bottom: 13px;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  transition: max-height 0.4s;
}
header .news ul.news-content:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff7244;
  /* Old browsers */
  background: -moz-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff7244 0%, #ff9f40 75%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f41', endColorstr='#ff7244',GradientType=0 );
  /* IE6-9 */
  transition: 0.6s;
  opacity: 0.98;
  z-index: 0;
}
header .news ul.news-content:not(.open):after {
  opacity: 0;
}
header .news ul.news-content li {
  padding: 13px 16px 0 40px;
  display: flex;
  position: relative;
  z-index: 1;
}
header .news ul.news-content li:nth-child(2) {
  padding-top: 26px;
}
header .news ul.news-content li:nth-child(n+2) {
  display: none;
  padding-bottom: 13px;
}
header .news ul.news-content li span {
  box-sizing: border-box;
  display: inline-block;
  line-height: 1.25em;
}
header .news ul.news-content li span:first-child {
  width: 30%;
  padding-right: 40px;
}
header .news ul.news-content li span:first-child + span {
  width: 70%;
}
header .news ul.news-content li.sim {
  padding-top: 0;
}
header .news .nopen {
  padding-left: 28px;
  position: relative;
  line-height: 44px;
  cursor: pointer;
  position: absolute;
  left: 664px;
}
header .news .nopen span {
  display: block;
  transition: 0.4s;
}
header .news .nopen:hover span {
  transform: translate3d(0, -2px, 0);
}
header .news .nopen:before {
  content: "";
  width: 30px;
  height: 2px;
  background: #ffcba5;
  transform: rotate(124deg);
  display: block;
  border-radius: 6px;
  position: absolute;
  left: 0px;
  top: 18px;
}
header .news a, header .news a:visited, header .news a:link, header .news a:active {
  color: #f9f7e9;
}
header .lang {
  width: 160px;
  text-align: right;
  color: #f9f7e9;
}
@media only screen and (min-width: 641px) {
  header .lang {
    order: 2;
  }
}
header .lang > * {
  display: inline-block;
  vertical-align: middle;
}
header .lang a {
  text-decoration: none;
}
header .lang p {
  font-size: 0.7em;
}
header .lang ul {
  width: 72px;
  height: 34px;
  margin: 3px 18px;
  border-radius: 20px;
  color: #f9f7e9;
  background: #b03b1a;
  display: table;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
header .lang ul:before {
  content: "";
  width: 28px;
  height: 28px;
  background: #ff7244;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto 0;
  border-radius: 20px;
  z-index: 0;
  transition: 0.4s;
}
header .lang ul.en:before {
  left: auto;
  right: 4px;
}
header .lang ul:hover:before {
  transform: translateX(4px);
}
header .lang ul.en:hover:before {
  transform: translateX(-4px);
}
header .lang ul li {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  padding: 2px 4px;
  z-index: 1;
  position: relative;
  font-size: 0.8em;
}
header .menu {
  width: 100%;
  z-index: 10;
  justify-content: center;
  line-height: 40px;
  margin-left: auto;
  position: relative;
}
@media only screen and (min-width: 641px) {
  header .menu {
    width: 240px;
    order: 1;
    border-right: 1px solid #b03b1a;
    border-left: 1px solid #b03b1a;
  }
}
header .openNav {
  display: none;
}
header .openNav ~ ul {
  height: auto;
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: #ff7244;
  background: -moz-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  background: -webkit-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  background: linear-gradient(to bottom, #ff7244 0%, #ff9f40 75%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f41', endColorstr='#ff7244',GradientType=0 );
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
header .openNav ~ ul a {
  color: #f9f7e9;
  text-decoration: none;
  display: block;
}
header .openNav:checked ~ ul {
  height: auto;
  line-height: 2.5;
}
header .openNav.open ~ label > span:first-child, header .openNav.open ~ label > p {
  opacity: 0;
}
header .openNav.open ~ label > span:first-child + span:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 30%;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
header .openNav.open ~ label > span:first-child + span:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 30%;
}
header .openNavIcon {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .openNavIcon p {
  display: inline-block;
}
header .openNavIcon > span {
  margin-right: 8px;
}
header .openNavIcon > span:first-child:before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #f9f7e9;
  border-bottom: 2px solid #f9f7e9;
  transform: rotate(-45deg);
  display: block;
  margin: auto 0;
}
header .openNavIcon > span:first-child + span {
  width: 28px;
  height: 24px;
  position: relative;
  margin-top: 6px;
}
header .openNavIcon > span:first-child + span:before, header .openNavIcon > span:first-child + span:after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 3px;
  background: #f9f7e9;
}
header .openNavIcon > span:first-child + span:before {
  -moz-box-shadow: #f9f7e9 0 7px 0;
  -webkit-box-shadow: #f9f7e9 0 7px 0;
  box-shadow: #f9f7e9 0 7px 0;
}
header .openNavIcon > span:first-child + span:after {
  bottom: 7px;
}
@media only screen and (max-width: 640px) {
  header {
    height: auto;
    flex-wrap: wrap-reverse;
  }
  header > * {
    width: 100%;
  }
  header .news {
    width: 100%;
    margin-top: -30px;
    display: block;
  }
  header .news p {
    width: 60px;
    height: 26px;
    line-height: 20px;
  }
  header .news p:after {
    width: 15px;
    height: 15px;
    top: auto;
    bottom: -4px;
    left: 10%;
    right: auto;
    z-index: 0;
  }
  header .news p img {
    z-index: 1;
    position: relative;
  }
  header .news > p + div {
    width: 100%;
    padding: 12px 0 !important;
    box-sizing: border-box;
    display: block;
  }
  header .news ul.news-content {
    position: relative;
  }
  header .news ul.news-content li {
    padding-left: 24px;
    padding-top: 0;
  }
  header .news .nopen {
    position: relative;
    width: 100%;
  }
  header .news .nopen {
    padding-left: 0;
    left: 0;
    text-align: center;
  }
  header .news .nopen:before {
    width: 0;
    height: 0;
    border-top: 6px solid #f9f7e9;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    transform: rotate(0);
  }
  header .lang {
    margin-left: auto;
  }
  header .lang ul {
    width: 62px;
    height: 24px;
    margin: 3px 10px;
  }
  header .lang ul:before {
    width: 24px;
    height: 18px;
  }
  header .openNavIcon {
    border-bottom: 1px solid #b03b1a;
  }
}

#hero {
  height: 100vh;
  min-height: 680px;
  padding-left: 120px;
  position: relative;
  box-sizing: border-box;
  display: flex;
}
#hero .side {
  width: 120px;
  height: 100%;
  background: #ff7244;
  /* Old browsers */
  background: -moz-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom, #ff7244 0%, #ff9f40 75%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff7244 0%, #ff9f40 75%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f41', endColorstr='#ff7244',GradientType=0 );
  /* IE6-9 */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#hero ul.mark {
  position: absolute;
  bottom: 56px;
  right: 0;
  left: 0;
  text-align: center;
}
#hero ul.mark li {
  margin-top: 40px;
}
#hero ul.mark li a {
  position: relative;
  display: block;
}
#hero ul.mark li a.music {
  -moz-animation-name: flow_;
  -webkit-animation-name: flow_;
  animation-name: flow_;
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
#hero ul.mark li a.music:before {
  -moz-animation-name: show_;
  -webkit-animation-name: show_;
  animation-name: show_;
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
#hero ul.mark li a:before {
  content: "";
  padding: 8px 12px;
  position: absolute;
  top: -26px;
  left: 84px;
  color: #2699ac;
  font-size: 0.85em;
  font-weight: 600;
  white-space: nowrap;
  background: #fff58f;
  border-radius: 12px 12px 12px 0;
  z-index: 2;
}
#hero ul.mark li a.letter:before {
  content: "Creator Message";
}
#hero ul.mark li a.music:before {
  content: "Promotion Music";
}
#hero .pv {
  position: absolute;
  right: 16px;
  bottom: 56px;
}
#hero .pv .txt-next {
  max-width: 244px;
}
#hero .pv li {
  margin-top: 16px;
}
#hero .pv li:before {
  margin-top: 0;
}
#hero .pv li div {
  padding-top: 16px;
}
#hero .pv li div a {
  max-width: 100%;
}
#hero .pv li div a:first-child {
  margin-right: 7%;
}
#hero .pv li div a img {
  width: 100%;
}
#hero .pv img {
  display: block;
}
#hero .pv img + img {
  margin-top: 8px;
}
#hero .main {
  width: 100%;
}
#hero .main h1 {
  padding: 0 60px 1% 0;
  background-size: auto;
  text-align: center;
  /*
  &:before {
  	content: "";
  	background: url("../img/bg-logo.png") left 0 no-repeat;
  	background-size: auto;
  	width: 100%;
  	height: 100%;
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: 0;
  	opacity: 0.6;
  	z-index: 0;
  	@media only screen and (max-width:640px) { 
  		background-size: 150%;
  		top: 20vh;
  	}
  }
  */
}
#hero .main h1 img {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
}
@media only screen and (max-width: 640px) {
  #hero .main h1 img {
    margin: 0 auto;
  }
}
#hero .main h1 .img-logo {
  max-width: 1395px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 640px) {
  #hero .main h1 .img-logo {
    width: 120%;
  }
}
#hero .main h1 .txt-head {
  max-width: 612px;
  margin-left: 40px;
}
@media only screen and (max-width: 640px) {
  #hero .main h1 .txt-head {
    width: 60%;
    margin-left: auto;
  }
}
#hero .next {
  width: 72%;
  max-width: 244px;
  padding-left: 4px;
  display: block;
}
#hero .next img {
  width: 100%;
}
#hero .hinfo {
  margin-top: 0;
  margin-left: 46px;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  font-size: 1.05em;
  transition: 0.4s;
}
#hero .hinfo a {
  color: #f9f7e9 !important;
  text-decoration: none;
}
#hero .hinfo p {
  padding: 24px;
  line-height: 1.65;
  display: table;
}
#hero .hinfo p > * {
  display: table-cell;
}
#hero .hinfo p > span {
  vertical-align: middle;
}
#hero .hinfo p > span:first-child {
  padding-right: 24px;
}
#hero .hinfo strong {
  color: #fff58f;
  font-weight: 600;
}
#hero .hinfo img {
  width: 100px;
  vertical-align: middle;
}
#hero .hinfo img:hover {
  opacity: 1;
}
#hero .hinfo .button {
  margin: 0 24px 16px 24px;
  display: block;
}
#hero .hinfo .button p {
  padding: 6px;
  width: 100%;
  text-align: center;
}
#hero .scroll {
  width: 83px;
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  #hero {
    height: auto;
    min-height: auto;
    padding-left: 0;
    /* 1st*/
    /*.pv { width: 70%; right: 5%;  }
    .side { display: none; }*/
  }
  #hero .main h1 {
    /*padding: 24vh 0;*/
    padding: 0 0;
    overflow: hidden;
  }
  #hero .side {
    max-width: 80px;
    width: 20%;
    height: 116vw;
    top: auto;
    bottom: -50px;
  }
  #hero .side ul.mark {
    position: relative;
    bottom: 0;
    margin-bottom: 10vh;
  }
  #hero .side ul.mark li {
    margin: 40% 0;
  }
  #hero .side ul.mark li:first-child + li {
    margin-bottom: 56px;
  }
  #hero .side ul.mark li img {
    width: 40px;
  }
  #hero .side ul.mark li a:before {
    left: 54px;
    white-space: normal;
    font-size: 0.65em;
  }
  #hero .pv {
    width: 54%;
    margin: 0 8px 16px auto;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #hero .pv img:not(.txt-check) {
    width: 100%;
  }
  #hero .head-content {
    position: relative;
    height: 46vh;
  }
  #hero .scroll {
    display: none;
  }
  #hero .next {
    width: 100%;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding-right: 8px;
    padding-left: 8px;
    box-sizing: border-box;
  }
  #hero .hinfo {
    margin: 32px 8px 0;
    position: relative;
  }
  #hero .hinfo p {
    padding: 10px;
    font-size: 0.85em;
  }
  #hero .hinfo img {
    width: 80px;
  }
  #hero .hinfo .button {
    margin: 0 10px 10px 10px;
  }
}

@-moz-keyframes flow_ {
  40% {
    transform: translate(0, -10px);
  }
  80% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes flow_ {
  40% {
    transform: translate(0, -10px);
  }
  80% {
    transform: translate(0, 0);
  }
}
@keyframes flow_ {
  40% {
    transform: translate(0, -10px);
  }
  80% {
    transform: translate(0, 0);
  }
}
@-moz-keyframes show_ {
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes show_ {
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show_ {
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#bgv {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -2;
}
#bgv:before {
  content: "";
  background: url("../img/bg-video.png") 0 0 repeat rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.86;
}
#bgv:after {
  content: "";
  background: url("../img/bg-shadow_w_.png") 0 -80px repeat-x;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.9;
}
#bgv .bg-sp {
  height: 100%;
  position: absolute;
  z-index: -2;
  display: none;
}
#bgv .mbYTP_wrapper {
  z-index: -2 !important;
}
@media only screen and (max-width: 640px) {
  #bgv {
    		/*
    		&:after {
    			content: "";
    			background: url(../img/bg-sp.gif) 0 0px no-repeat;
        		background-size: auto 100%;
    			width: 100%;
    			height: 100%;
    			position: absolute;
    			top: 0;
    			left: 0;
    			z-index: -2;
    		}
    		*/
  }
  #bgv .mbYTP_wrapper {
    display: none;
  }
  #bgv .bg-sp {
    display: block;
  }
}

#spec {
  width: 100%;
  padding-bottom: 32px;
  color: #2699ac;
  position: relative;
}
#spec > .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
}
#spec section {
  padding: 56px 80px;
  background: rgba(255, 255, 255, 0.9);
}
#spec h2 {
  margin: 0 0 -17px 6px;
  z-index: 1;
  position: relative;
}
#spec dl {
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
#spec dt, #spec dd {
  margin-top: 1.4em;
  box-sizing: border-box;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 641px) {
  #spec dt:first-child, #spec dt:nth-child(2), #spec dd:first-child, #spec dd:nth-child(2) {
    margin-top: 0;
  }
}
#spec dt {
  width: 46%;
  padding-right: 64px;
  text-align: right;
}
#spec dd {
  width: 54%;
  text-align: left;
  line-height: 1.25;
}
#spec section + section > div > div {
  padding-top: 24px;
  background: #FFF;
  overflow-y: scroll;
  box-sizing: border-box;
}
@media only screen and (min-width: 641px) {
  #spec .spec-content {
    width: 560px;
    height: 330px;
  }
}
#spec .top {
  width: 100%;
  height: 120px;
  background: #f5464a;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ff7244 0%, #ff9f40 75%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ff7244 0%, #ff9f40 75%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, #ff7244 0%, #ff9f40 75%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f41', endColorstr='#ff7244',GradientType=1 );
  /* IE6-9 */
  top: 0;
  left: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  #spec {
    padding-bottom: 0;
  }
  #spec section {
    width: 100%;
    padding: 8% 6%;
  }
  #spec dl {
    padding: 6% 10% 10% 10%;
    display: block;
  }
  #spec dt, #spec dd {
    width: 100%;
    text-align: left;
  }
  #spec dt {
    font-weight: 600;
    margin-top: 2em;
  }
  #spec dd {
    margin-top: 0.4em;
  }
  #spec section + section > div {
    overflow: hidden;
  }
  #spec section + section .spec-content {
    height: 330px;
    position: relative;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
  }
  #spec section + section .spec-content iframe {
    width: 800px !important;
  }
  #spec .share {
    height: 100px;
  }
}

.share {
  width: 100%;
  padding: 32px;
  display: table;
}
.share h2 {
  text-align: right;
  padding-right: 44px;
  box-sizing: border-box;
}
.share > * {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
.share ul li {
  display: inline-block;
  margin-left: 32px;
  vertical-align: middle;
}
.share ul li:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 640px) {
  .share {
    padding: 0;
  }
  .share h2 {
    width: 50%;
    padding: 0 0 0 4%;
  }
  .share h2 img {
    width: 100%;
  }
  .share ul {
    width: 50%;
    text-align: center;
  }
  .share ul li img {
    width: 50px;
  }
}

.gradbg {
  background: #f5464a;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ff7244 0%, #ff9f40 75%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ff7244 0%, #ff9f40 75%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ff7244 0%, #ff9f40 75%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f41', endColorstr='#ff7244',GradientType=1 );
  /* IE6-9 */
}

.gradbd {
  border-left: 1px solid #fea24b;
  border-right: 1px solid #f5464a;
}
.gradbd:before, .gradbd:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmOWY0MSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmNzI0NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #ff9f41), color-stop(100%, #ff7244));
  background: -moz-linear-gradient(left, #ff9f41, #ff7244);
  background: -webkit-linear-gradient(left, #ff9f41, #ff7244);
  background: linear-gradient(to right, #ff9f41, #ff7244);
}

footer {
  width: 100%;
  box-sizing: border-box;
}
footer ul {
  width: 100%;
  text-align: center;
}
footer ul li {
  display: inline-block;
  margin-left: 32px;
  vertical-align: middle;
}
footer ul li:first-child {
  margin-left: 0;
}
footer small {
  padding-top: 16px;
  display: block;
  text-align: center;
  vertical-align: bottom;
  color: #000;
}
footer .link {
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}
footer .credit {
  padding: 18px 0 24px;
  text-align: center;
  background: #FFF;
}
footer .credit a {
  display: inline-block;
}
footer .credit p > * {
  margin-right: 24px;
  vertical-align: middle;
}
@media only screen and (max-width: 640px) {
  footer {
    display: block;
    text-align: center;
  }
  footer > * {
    display: block;
  }
  footer small {
    text-align: center;
    padding-top: 8px;
  }
  footer ul li {
    width: 40%;
  }
  footer ul li img {
    width: 100%;
  }
  footer .link {
    padding: 40px 0;
  }
}

.modal a {
  color: #FF8215;
}
.modal img {
  width: 100%;
}
.modal img.img-music {
  max-width: 480px;
}
.modal > div {
  width: 100%;
  margin: 10% auto 10%;
}
.modal .modal-content {
  padding: 32px 40px;
  background: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.01em;
}
.modal .modal-content h2 {
  font-size: 1.4em;
  padding-bottom: 32px;
}
.modal .modal-content p {
  line-height: 1.65;
}
@media only screen and (max-width: 640px) {
  .modal .modal-content {
    padding: 32px 16px;
  }
  .modal .modal-content h2 {
    font-size: 0.95em;
    line-height: 1.25;
  }
  .modal .modal-content p {
    font-size: 0.85em;
  }
}
.modal .close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-bottom: 8px;
  display: block;
}
@media only screen and (max-width: 640px) {
  .modal .close {
    margin-bottom: 24px;
    margin-right: 16px;
  }
}
.modal .close:before, .modal .close:after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #FFF;
}
.modal .close:before {
  transform: rotate(-45deg);
}
.modal .close:after {
  transform: rotate(45deg);
}
.modal#letter > div {
  max-width: 866.4px;
}
.modal#music > div {
  max-width: 866.4px;
}
.modal#init > div {
  max-width: 866.4px;
}
.modal#init p {
  padding-bottom: 56px;
}
.modal#init p + p {
  border-top: 1px solid #f9f7e9;
  padding-top: 40px;
}
.modal#video .modal-content > div {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.modal#video ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.modal#video ul li {
  width: 47%;
  max-width: 242px;
  margin-bottom: 24px;
}
.modal#video ul li img {
  width: 100%;
}
.modal#video .current {
  position: relative;
  width: 100%;
  margin: 0 auto 80px;
  padding-top: 56.25%;
}
.modal#video .current iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.modal#box > div {
  margin: 2% auto 2%;
  max-width: 1024px;
  text-align: center;
}
.modal#box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal#box ul li {
  margin: 0 24px;
  text-align: center;
}
.modal#box ul li:first-child {
  width: 64%;
}
.modal#box ul li:first-child + li {
  width: 36%;
}
.modal#box a, .modal#box a:active, .modal#box a:visited, .modal#box a:link {
  padding: 16px 24px;
  margin: 32px auto 32px;
  display: block;
  font-size: 1.25em;
  color: #f9f7e9;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

@media only screen and (min-width: 641px) {
  .jsMvDisp {
    opacity: 0;
    transition: 0.8s;
    transform: translate(0, 20px);
  }

  .jsMvDisp.disp {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 640px) {
  .spb {
    display: none;
  }
}
.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  transition: 0.5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
