@charset "utf-8";

/* ==========================================
   共通
========================================== */
/* フォント読み込み */
@font-face {
font-family: "genjyuuGB";
  src:url(../../../../images/main/ova_sfy/genjyuugothic_bold.eot) format("eot"),
      url(../../../../images/main/ova_sfy/genjyuugothic_bold.woff) format("woff");
}

/* レイアウト */
.wrapper {
  overflow: hidden;
}

.mainSection {
  text-align: center;
  padding: 60px 0;
}

.mainSection__inner {
  margin: 0 10px;
  max-width: 1000px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 40px 10px 45px;
  z-index: 2;
  overflow: hidden;
}

.mainSection__inner::before,
.mainSection__inner::after {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url(../../../../images/main/ova_sfy/flame_content.png) center center / contain no-repeat;
}

.mainSection__inner::before {
  left: 10px;
}

.mainSection__inner::after {
  right: 10px;
  transform: scale(-1, 1);
}

@media screen and (min-width: 900px) {
  .mainSection {
    padding: 60px 0;
  }

  .mainSection__inner {
    padding: 40px 20px 80px;
    margin: 0 auto;
  }

  .mainSection__inner::before,
  .mainSection__inner::after {
    top: 15px;
    width: 116px;
    height: 118px;
  }

  .mainSection__inner::before {
    left: 15px;
  }

  .mainSection__inner::after {
    right: 15px;
  }
}

/* タイトル */
.mainSectionTitle {
  margin: 0 auto 10px;
  text-align: center;
  position: relative;
  padding: 45px 0 25px;
}

.mainSectionTitle::before,
.mainSectionTitle::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

.mainSectionTitle::before {
  background: url(../../../../images/main/ova_sfy/head_content_top.png) center center / contain no-repeat;
  top: 0;
  width: 200px;
  height: 40px;
}

.mainSectionTitle::after {
  background: url(../../../../images/main/ova_sfy/head_content_bottom.png) center center / contain no-repeat;
  bottom: 0;
  width: 20px;
  height: 20px;
}

.mainSectionTitle__en {
  display: block;
  font-family: 'Alice', serif;
  font-weight: normal;
  color: #ec6f77;
  font-size: 4.5rem;
  line-height: 1.0;
}

.mainSectionTitle__ja {
  display: block;
  font-family: genjyuuGB, sans-serif;
  color: #6a2a0e;
  font-size: 1.4rem;
  font-weight: 1.0;
}

@media screen and (min-width: 900px) {
  .mainSectionTitle {
    margin: 0 auto 30px;
    padding: 65px 0 30px;
  }

  .mainSectionTitle::before {
    width: 280px;
    height: 60px;
  }

  .mainSectionTitle::after {
    width: 25px;
    height: 25px;
  }

  .mainSectionTitle__en {
    font-size: 6.0rem;
  }

  .mainSectionTitle__ja {
    font-size: 1.8rem;
  }
}

/* カスタムスクロールバー */
.customScrollArea::-webkit-scrollbar,
body::-webkit-scrollbar,
.infoListNews #nwu_001_c::-webkit-scrollbar,
.infoListTwitter .twitter__inner::-webkit-scrollbar {
  width: 15px;
}

.customScrollArea::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.infoListNews #nwu_001_c::-webkit-scrollbar-track,
.infoListTwitter .twitter__inner::-webkit-scrollbar-track {
  background: #fff;
}

.customScrollArea::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.infoListNews #nwu_001_c::-webkit-scrollbar-thumb,
.infoListTwitter .twitter__inner::-webkit-scrollbar-thumb {
  background: #F4C5A9;
}

/* 羽 パララックス */
.bgWing {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: -200%;
  background-repeat: repeat-y;
  background-size: 300%;
  z-index: 1;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  pointer-events: none;
}

.bgWing__large {
  background-image: url(../../../../images/main/ova_sfy/feather_b.png);
}

.bgWing__small {
  background-image: url(../../../../images/main/ova_sfy/feather_s.png);
}

@media screen and (min-width: 900px) {
  .bgWing {
    background-size: contain;
  }
}

/* sp表示 pc表示 */
@media screen and (min-width: 900px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 899px) {
  .pc-only {
    display: none !important;
  }
}

/* ==========================================
   ホバー効果
========================================== */
/* バウンド */
.is-bound:hover {
  animation: bound 1.0s linear 0s 1;
}

@keyframes bound {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  10%  { transform: scale(1.1, 0.9) translate(0%, 1%); }
  40%  { transform: scale(1.2, 0.8) translate(0%, 4%); }
  50%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
  60%  { transform: scale(0.9, 1.2) translate(0%, -50%); }
  75%  { transform: scale(0.9, 1.2) translate(0%, -5%); }
  85%  { transform: scale(1.2, 0.8) translate(0%, 4%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/* ==========================================
   ローディング
========================================== */
.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e9f4fb;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading > img {
  max-width: 70%;
}

/* ==========================================
   ヘッダー
========================================== */
.headerLogo {
  text-align: left;
  position: absolute;
  top: 10px;
  left: 10px;
}

.headerLogo img {
  max-width: 200px;
  margin: 0 auto;
}

#g_navi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  z-index: 9999;
}

.header {
  position: fixed;
  z-index: 1300;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  transform: translate3d(0,-100%,0);
  transition: transform 1.0s cubic-bezier(0.86, 0, 0.07, 1);
  background: url(../../../../images/main/ova_sfy/bg_menu.png) center center repeat;
}

#g_navi.is-open .header {
  transform: translate3d(0,0,0);
}

.globalNavi {
    padding: 150px 0;
    text-align: center;
}

.globalNavi>li {
    font-family: 'Alice','Noto Serif JP', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.globalNavi>li:last-child {
    margin-bottom: 0;
}

.globalNavi>li>a {
    text-decoration: none;
    padding: 5px 30px;
    color: #674333;
}

@media screen and (min-width: 900px) {
  .headerLogo img {
    max-width: 380px;
  }

  .globalNavi>li {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .globalNavi>li>a {
      padding: 5px 100px;
  }
}

/*
   メニューアイコン
========================================== */
.menuButton {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 1400;
  width: 75px;
  height: 75px;
  margin: auto;
  transform: translate3d(0,-15px,0);
  transition: transform .8s;
}

.menuIcon {
  position: relative;
  width: 100%;
  height: 100%;
}

.menuIcon::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: opacity .6s;
}

.menuIcon::before {
  background: url(../../../../images/main/ova_sfy/icon_menu.png) center center / contain no-repeat;
}

.menuIcon__text {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 1401;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: 'Alice', serif;
}

.menuIcon__text::before {
  content: "Menu";
}

#g_navi.is-open .menuIcon__text::before {
  content: "Close";
}

.menuButton:hover {
  transform: translate3d(0,0,0);
}

@media screen and (min-width: 900px) {
  .menuButton {
    top: 0;
    right: 15px;
    width: 90px;
    height: 90px;
    transform: translate3d(0,-15px,0);
  }

  .menuIcon__text {
    font-size: 2.0rem;
  }
}

/* ==========================================
   トップエリア
========================================== */
.topArea {
  background: url(../../../../images/main/ova_sfy/bg_rabbit.png) center center repeat;
  padding-top: 100px;
}

@media screen and (min-width: 900px) {
  .topArea {
    padding-top: 120px;
  }
}

/* メインビジュアル */
.mainVisualArea {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mainVisual__text {
  width: 90%;
  margin: 0 auto 10px;
}

.mainVisual__img img {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
  pointer-events: none;
}

@media screen and (min-width: 900px) {
  .mainVisualArea {
    margin: 0 auto 50px;
    border-width: 170px;
    border-style: solid;
    -moz-border-image: url('../../../../images/main/ova_sfy/flame_mainvisual.png') 170 repeat;
    -webkit-border-image: url('../../../../images/main/ova_sfy/flame_mainvisual.png') 170 repeat;
    -o-border-image: url('../../../../images/main/ova_sfy/flame_mainvisual.png') 170 repeat;
    border-image: url('../../../../images/main/ova_sfy/flame_mainvisual.png') 170 fill repeat;
  }

  .mainVisualWrapper {
    margin: -140px -160px -110px;
  }

  .mainVisual__text {
    width: 100%;
    margin: 0 auto 15px;
  }

  .mainVisual__img {
    padding: 0 50px;
  }
}

/* ==========================================
   NEWS & Twitter
========================================== */

/*
   テーブル リセット
========================================== */
.infoWrapper table,
.infoWrapper tbody,
.infoWrapper tr,
.infoWrapper td {
  display: block;
}

/*
   共通
========================================== */
.infoWrapper {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.infoListInfoTitle {
  text-align: center;
  margin: 0 0 8px;
  font-family: 'Alice', serif;
  font-weight: normal;
  color: #ec6f77;
  font-size: 3.8rem;
  line-height: 1.0;
  position: relative;
  padding-bottom: 15px;
}

.infoListInfoTitle::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  width: 42px;
  height: 8px;
}

.infoListInfoTitle::after {
  background: url(../../../../images/main/ova_sfy/head_info_bottom.png) center center / contain no-repeat;
  bottom: 0;
}

.infoList {
  margin: 0 10px;
}

.infoList>li {
  position: relative;
  margin: 0 auto 30px;
}

.infoList>li:last-child {
  margin-bottom: 0;
}

.infoList>li::before,
.infoList>li::after {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url(../../../../images/main/ova_sfy/flame_information.png) center center / contain no-repeat;
}

.infoList>li::before {
  left: 10px;
}

.infoList>li::after {
  right: 10px;
  transform: scale(-1, 1);
}

.infoListNews,
.infoListTwitter {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  background: #fff;
  padding: 30px 17px 25px;
}

.infoListNews #nwu_001_c,
.infoListTwitter .twitter__inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body[data-device="PC"] .infoListNews #nwu_001_c {
  height: 340px;
}

body[data-device="PC"] .infoListNews,
body[data-device="PC"] .infoListTwitter {
  padding-right: 10px;
}

.infoListTwitter .twitter__inner {
  height: 300px;
}

@media screen and (min-width: 900px) {
  .infoWrapper {
    padding-bottom: 0;
  }

  .infoListInfoTitle {
    margin: 0 0 10px;
    font-size: 4.8rem;
    padding-bottom: 15px;
  }

  .infoListInfoTitle::after {
    width: 62px;
    height: 12px;
  }

  .infoList {
    display: flex;
    padding: 45px 0 60px;
    margin: 0;
  }

  .infoList>li {
    margin: 0 auto;
  }

  .infoList>li::before,
  .infoList>li::after {
    top: 15px;
    width: 55px;
    height: 56px;
  }

  .infoList>li::before {
    left: 15px;
  }

  .infoList>li::after {
    right: 15px;
  }

  .infoListNews,
  .infoListTwitter {
    width: calc(100% / 2 - 20px);
  }

  .infoListNews #nwu_001_c {
    height: 340px;
  }

  .infoListTwitter .twitter__inner {
    height: 340px;
  }
}

/*
   NEWS
========================================== */
#n_cat {
  display: none;
}

.infoListNews {
  text-align: left;
}

.infoListNews tr {
  transition: .6s;
  cursor: pointer;
  border-bottom: 2px solid #f7e7df;
  padding: 12px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.infoListNews tr:first-child {
  padding-top: 0;
}

.infoListNews tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}

.infoListNews tr:not(.is-noLink):hover {
  opacity: .6;
}

.infoListNews tr.is-noLink {
  padding: 5px 0;
  margin-bottom: 25px;
  transition: .6s;
  cursor: default;
}

.infoListNews tr:last-of-type,
.infoListNews tr.is-noLink:last-of-type {
  margin-bottom: 0;
}

.infoListNews .day {
  font-size: 1.4rem;
  color: #674333;
}

.infoListNews .title,
.infoListNews .title a {
  color: #674333;
  font-size: 1.4rem;
}

.infoListNews .title a {
  text-decoration: none;
}

.infoListNews .title a:hover {
  opacity: 1.0;
}

/*
   Twitter
========================================== */
.twitterArea {

}

/* ==========================================
   あらすじ
========================================== */
.storyArea.mainSection {
  background: url(../../../../images/main/ova_sfy/bg_object.png) center center repeat;
}

.storyAreaText {
  margin: 0;
  color: #391404;
  line-height: 2.2;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  z-index: 3;
}

.storyAreaText__bgText {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 2;
}

.storyAreaText__bgText img {
  max-width: 320px;
}

@media screen and (min-width: 900px) {
  .storyAreaText {
    font-size: 2.0rem;
  }

  .storyAreaText__bgText {
    right: -75px;
    bottom: -75px;
  }

  .storyAreaText__bgText img {
    max-width: 100%;
  }
}
  
/* ==========================================
   スタッフ
========================================== */
.staffArea.mainSection {
  background: url(../../../../images/main/ova_sfy/bg_stripe.png) center center repeat;
}

.staffWrapper {
  margin: 20px 0 50px;
}

.staffAreaList {
  text-align: center;
  margin-bottom: 20px;
  color: #6a2a0e;
}

.staffAreaList:last-child {
  margin-bottom: 0;
}

.staffAreaList>li {
  font-size: 1.4rem;
  line-height: 1.6;
}

.staffAreaList>li:nth-child(2) {
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (min-width:900px) {

  .staffWrapper {
    margin: 30px 0 70px;
  }

  .staffAreaList {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-bottom: 18px;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .staffAreaList:last-child {
    margin-bottom: 0;
  }

  .staffAreaList>li {
    font-size: 1.6rem;
    line-height: 1.9;
    width: 50%;
  }

  .staffAreaList>li:nth-child(1) {
    padding-right: 10px;
    text-align: right;
  }

  .staffAreaList>li:nth-child(2) {
    padding-left: 10px;
    text-align: left;
    font-size: 1.8rem;
  }
}

/* ==========================================
   MOVIE
========================================== */
.movieArea__inner {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

#js-youtubeIframe {
  width: 100vw !important;
  height: calc(100vw * 9 / 16) !important;
}

@media screen and (min-width: 900px){
  .movieArea__inner {
    text-align: center;
  }

  .movieSection {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
    height: 350px;
  }

  .movieSection::before {
    transition: .3s;
  }

  .movieSection:hover::before {
    opacity: .8;
  }

  .movieSection__inner {
    position: relative;
    z-index: 2;
  }

  .movieSection::before,
  #js-youtubeIframe {
    min-height: 150px;
    position: absolute;
    top: calc((-100vw * 9 / 16) / 2 + (350px / 2));
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw !important;
    height: calc(100vw * 9 / 16) !important;
  }

  .movieSection::before {
    content: "";
    z-index: 1;
    background: repeating-linear-gradient(-45deg,
    rgba(255,255,255,1),
    rgba(255,255,255,1) 5px,
    rgba(255,255,255,.4) 0,
    rgba(255,255,255,.4) 10px);
  }
}

/* play button */
@media screen and (min-width: 900px){
  .playButton  {
    cursor: pointer;
  }

  .playButton::before,
  .playButton::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: .3s;
  }

  .playButton::before {
    content: "";
    background: rgba(255, 169, 58, 0.6);
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }

  .playButton::after {
    content: "▶";
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 4rem;
    line-height: 1;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 6px;
  }

  .playButton img,
  .playButton iframe {
    pointer-events: none;
    vertical-align: bottom;
  }

  .playButton:hover::before,
  .playButton:hover::after {
    transform: scale(1.2,1.2);
  }
}

/* ==========================================
   スクロール
========================================== */
.scrollButton {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 10px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 1.0s;
  max-width: 80px;
  cursor: pointer;
}

.scrollButton.is-show {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 900px) {
  .scrollButton {
    bottom: 100px;
    right: 7%;
    max-width: 100px;
  }

  .scrollButton img {
    padding: 0 10px;
  }
}

/* ==========================================
*
*  mfp
*
========================================== */
.mfp-bg {
  background: repeating-linear-gradient(-45deg,
  rgba(255,255,255,1),
  rgba(255,255,255,1) 5px,
  rgba(255,255,255,.8) 0,
  rgba(255,255,255,.8) 10px) !important;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFA93A !important;
  font-size: 50px !important;
  height: 5% !important;
}

.mfp-bg {
  z-index: 10000 !important;
}

.mfp-wrap {
  z-index: 10001 !important;
}

.mfp-content {
  z-index:  10003 !important;
}

.mfp-preloader {
  z-index:  10002 !important;
}

button.mfp-close,
button.mfp-arrow {
  z-index:  10004 !important;
}

/* ==========================================
   フッター
========================================== */
footer {
  padding: 50px 0;
  background: url(../../../../images/main/ova_sfy/bg_rabbit.png) center center repeat;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer__bannerList {
  margin-bottom: 30px;
  text-align: center;
}

.footer__bannerList>li {
  max-width: 300px;
  width: 80%;
  margin: 10px auto;
}

.socialList {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.socialList>li {
  max-width: 60px;
  margin-right: 30px;
  padding: 5px;
}

.socialList>li:last-child {
  margin-right: 0;
}

.socialList>li a:hover {
  opacity: 1.0;
}

.copyrights {
  color: #6a2a0e;
  margin: 0;
  font-size: 1.0rem;
  text-align: center;
  line-height: 2.5;
  font-family: 'Noto Sans JP', sans-serif;
}
.copyrights small {
  font-size: inherit;
}

@media screen and (min-width: 900px) {
  footer {
    padding: 60px 0 20px;
  }

  .footer__bannerList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 55px;
  }

  .footer__bannerList>li {
    flex-basis: 250px;
    width: 100%;
    margin: 10px;
  }

  .socialList {
    margin-bottom: 55px;
  }

  .copyrights {
    font-size: 1.2rem;
  }
}

/* ==========================================
   トップへ戻る
========================================== */
.top_button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 57px;
  height: 65px;
  cursor: pointer;
  transition: 0.5s;
}
.top_button:hover {
  filter: brightness(0.9);
}
.top_button img {
  width: 100%;
}