@charset "UTF-8"; /* CSS Document */
/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

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

* {
  box-sizing: border-box;
}

/* base */
html, body {
  width: 100%;
  height: 100%;
}

html {
}

body {
  overflow-y: scroll;
  /*  縦スクロールバーを表示します。 */
  overflow-x: hidden;
  /*  横スクロールバーを消します。 */
  height: 100%;
}

#portal-container {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 87.5%;
  line-height: 1.3;
}

#portal-container a {
  color: #213963;
  text-decoration: none;
}

#portal-container a:hover {
  color: #4c82e0;
  text-decoration: none;
}

.ttl-txt-hyde {
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.fadein {
  opacity: 0;
  -webkit-animation: fadein 0.75s ease-out forwards;
  animation: fadein 0.75s ease-out forwards;
}

/* menu */
#portal-menu-sp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: auto;
  display: none;
}

#portal-menu-openbtn, #portal-menu-closebtn {
  width: 60px;
  position: fixed;
  bottom: 24px;
  right: 12px;
  display: block;
  z-index: 5;
}

#portal-menu-closebtn {
  display: none;
}

.portal-menu-sp-inner {
  height: 100%;
}

.portal-menu-sp-bg {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url(/brand/disney/portal/images/menu/menu_bg_sp.png) no-repeat, -moz-linear-gradient(top, rgba(34, 86, 182, 0.9) 0%, rgba(8, 33, 112, 0.9) 41%, rgba(20, 70, 162, 0.9) 75%, rgba(20, 70, 162, 0.9) 100%);
  background: url(/brand/disney/portal/images/menu/menu_bg_sp.png) no-repeat, -webkit-linear-gradient(top, rgba(34, 86, 182, 0.9) 0%, rgba(8, 33, 112, 0.9) 41%, rgba(20, 70, 162, 0.9) 75%, rgba(20, 70, 162, 0.9) 100%);
  background: url(/brand/disney/portal/images/menu/menu_bg_sp.png) no-repeat, linear-gradient(to bottom, rgba(34, 86, 182, 0.9) 0%, rgba(8, 33, 112, 0.9) 41%, rgba(20, 70, 162, 0.9) 75%, rgba(20, 70, 162, 0.9) 100%);
  background-size: contain;
  background-position: center center;
  z-index: 4;
}

.portal-menu-sp-list {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: end;
  -webkit-box-pack: end;
  height: 100%;
  padding: 0 19px 0 0;
  overflow: scroll;
  z-index: 4;
  position: fixed;
  right: 0;
  bottom: 92px;
}

.portal-menu-sp-item {
  text-align: right;
  padding-top: 12px;
}

.portal-menu-sp-link {
  letter-spacing: -0.5em;
  display: inline-block;
  white-space: nowrap;
}

.portal-menu-sp-txt {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  color: #fff;
  text-shadow: 0px 0px 1px #ffffff, 0px 0px 10px #ffffff, 0px 0px 20px #ffffff, 0px 0px 30px #ffffff, 0px 0px 40px #ffffff;
  opacity: 0;
  -moz-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.portal-menu-sp-icon {
  background: url(/brand/disney/portal/images/menu/menu_bg.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 46px;
  height: 46px;
  padding: 6px;
  text-align: center;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -webkit-animation: spIconClose 0.5s ease forwards;
  animation: spIconClose 0.5s ease forwards;
}

.open .portal-menu-sp-bg {
  -webkit-animation: spMenuOpen 0.5s ease forwards;
  animation: spMenuOpen 0.5s ease forwards;
}

.open .portal-menu-sp-icon {
  opacity: 1;
  -webkit-animation: spIconOpen 0.4s ease-out forwards;
  animation: spIconOpen 0.4s ease-out forwards;
}

.open .portal-menu-sp-txt {
  -webkit-animation: spTxtOpen 0.5s ease-out forwards;
  animation: spTxtOpen 0.5s ease-out forwards;
}

@-webkit-keyframes spTxtOpen {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes spTxtOpen {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes spMenuOpen {
  0% {
    opacity: 0;
    height: 0%;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}

@keyframes spMenuOpen {
  0% {
    opacity: 0;
    height: 0%;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}

@-webkit-keyframes spIconOpen {
  0% {
    -webkit-transform: scale(0);
  }

  10%,30% {
    -webkit-transform: scale(.3);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes spIconOpen {
  0% {
    transform: scale(0);
  }

  10%,30% {
    transform: scale(.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes spIconClose {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
}

@keyframes spIconClose {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.portal-menu-sp-img {
  width: auto;
  height: 100%;
}

#portal-menu-pc {
  width: 100%;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: #1446a2;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 96px;
}

.portal-menu-pc-list {
  letter-spacing: -0.5em;
  width: 100%;
  height: 96px;
  vertical-align: middle;
  padding: 8px 0;
  text-align: center;
  background: url(/brand/disney/portal/images/menu/menu_bg_left_pc.png) no-repeat left bottom, url(/brand/disney/portal/images/menu/menu_bg_right_pc.png) no-repeat right top;
  background-size: contain, contain;
  white-space: nowrap;
}

.portal-menu-pc-item {
  display: inline-block;
  vertical-align: middle;
  padding-right: 12px;
  /* Safari用 */
}

.portal-menu-pc-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  margin-top: 8px;
}

.disney-logo.portal-menu-pc-item {
  padding-right: 0;
}

.disney-logo.portal-menu-pc-item:after {
  display: none;
}

.disney-logo.portal-menu-pc-item .portal-menu-pc-link {
  padding-right: 0;
}

.portal-menu-pc-item:last-of-type {
  margin-right: 0;
}

.portal-menu-pc-link {
  display: block;
  padding-right: 12px;
}

.portal-menu-pc-img {
  display: inline-block;
  height: 60px;
  width: auto;
  vertical-align: middle;
  margin-right: 12px;
}

.disney-logo .portal-menu-pc-img {
  height: 80px;
}

.portal-menu-pc-txt {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  letter-spacing: normal;
  font-size: 1.3em;
  line-height: 1.3;
  text-shadow: 0px 0px 1px #ffffff, 0px 0px 10px #ffffff, 0px 0px 20px #ffffff, 0px 0px 30px #ffffff, 0px 0px 40px #ffffff;
  text-align: center;
}

/* portal-caution */
.portal-caution {
  background: #1446a2;
  text-align: center;
  padding: 12px 0;
}

.portal-caution-frame {
  background: #fff;
  width: 90%;
  margin: 0 auto;
  padding: 8px 0;
  border-radius: 8px;
}

.portal-caution-pdfbtn {
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.3;
  background: #f00;
  padding: 12px;
  width: 95%;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0px 4px #555;
}

#portal-container .portal-caution-pdfbtn, #portal-container .portal-caution-pdfbtn:hover {
  color: #fff;
}

.portal-caution-pdfbtn:hover {
  margin-top: 2px;
  margin-bottom: 6px;
  box-shadow: 0px 2px #555;
}

.portal-caution-pdfbtn:hover {
  color: #fff;
}

.portal-caution-txt {
  color: #0e2d80;
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
}

.portal-caution-tel {
  display: inline-block;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
  color: #0e2d80;
  text-decoration: underline;
  -webkit-appearance: none;
}

.portal-caution-tel:hover {
  text-decoration: underline;
}

/* parallax */
.portal-banner-lists {
  position: relative;
  z-index: 3;
}

.portal-banner-list {
  padding-top: 56.25%;
  /* 高さの最小値を決めることで高さを確保させます。デバイスサイズに応じて数値を変更させると、背景画像もレスポンシブに変化します。　*/
  width: 100%;
  /* 背景画像をフルスクリーンにフィットさせます */
}

.portal-banner-link {
  display: block;
  margin-top: -56.25%;
}

.portal-banner-img {
  display: block;
  width: 100%;
}

.portal-banner-sptxt {
  background: #1c2d7b;
  color: #fff;
  text-align: center;
  padding: 8px;
  position: relative;
  min-height: 64px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
  -webkit-box-pack: center;
}

.portal-left-arrow:before, .portal-right-arrow:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -40px;
  left: 12px;
  border: 20px solid transparent;
  border-bottom: 20px solid #1c2d7b;
}

.portal-right-arrow:before {
  left: auto;
  right: 12px;
}

.portal-banner-sptxt-txt {
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 4px;
}

.portal-banner-sptxt-name {
  font-size: 0.75em;
  display: block;
}

/* lower */
#portal-lower {
  background: url("../images/bg/all_bg_bottom.png") no-repeat, -moz-linear-gradient(top, rgba(34, 86, 182, 1) 0%, rgba(8, 33, 112, 1) 41%, rgba(20, 70, 162, 1) 75%, rgba(20, 70, 162, 1) 100%);
  /* FF3.6-15 */
  background: url("../images/bg/all_bg_bottom.png") no-repeat, -webkit-linear-gradient(top, rgba(34, 86, 182, 1) 0%, rgba(8, 33, 112, 1) 41%, rgba(20, 70, 162, 1) 75%, rgba(20, 70, 162, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: url("../images/bg/all_bg_bottom.png") no-repeat, linear-gradient(to bottom, rgba(34, 86, 182, 1) 0%, rgba(8, 33, 112, 1) 41%, rgba(20, 70, 162, 1) 75%, rgba(20, 70, 162, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-position: right bottom;
  background-size: contain;
  padding-top: 16px;
  position: relative;
  z-index: 3;
}

/* whatsnew */
#portal-whatsnew {
  width: 90%;
  max-width: 414px;
  margin: 0 auto;
  background: url("../images/whatsnew/whatsnew_frame_star_top.png") right top no-repeat, url("../images/whatsnew/whatsnew_frame_star_bottom.png") left bottom no-repeat;
  background-size: contain, 76%;
}

.portal-whatsnew-frame-top {
  display: block;
}

.portal-whatsnew-frame-middle {
  display: block;
  width: 100%;
  background: url("../images/whatsnew/whatsnew_frame_middle.png");
  background-size: 100%;
  padding: 8px 0 16px;
}

.portal-whatsnew-frame-bottom {
  display: block;
}

#list-news,.portal-whatsnew-frame-list {
  overflow: auto;
  padding: 8px 0 0;
  width: 88%;
  max-width: 372px;
  margin: 0 auto;
  height: 200px;
}

#list-news li, .portal-whatsnew-frame-item {
  padding: 4px 0 0;
  margin-bottom: 6px;
}

#list-news li,.portal-whatsnew-frame-item:first-of-type {
  padding-top: 0;
}

#list-news li:after, .portal-whatsnew-frame-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -moz-linear-gradient(left, rgba(255, 245, 158, 0) 0%, rgba(115, 73, 6, 0.36) 18%, rgba(176, 126, 30, 0.68) 34%, rgba(255, 251, 222, 1) 50%, rgba(176, 126, 30, 0.68) 66%, rgba(115, 73, 6, 0.32) 84%, rgba(255, 245, 158, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(255, 245, 158, 0) 0%, rgba(115, 73, 6, 0.36) 18%, rgba(176, 126, 30, 0.68) 34%, rgba(255, 251, 222, 1) 50%, rgba(176, 126, 30, 0.68) 66%, rgba(115, 73, 6, 0.32) 84%, rgba(255, 245, 158, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 245, 158, 0) 0%, rgba(115, 73, 6, 0.36) 18%, rgba(176, 126, 30, 0.68) 34%, rgba(255, 251, 222, 1) 50%, rgba(176, 126, 30, 0.68) 66%, rgba(115, 73, 6, 0.32) 84%, rgba(255, 245, 158, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  margin-top: 6px;
}

.portal-whatsnew-link {
  display: block;
}

#list-news li .date, #list-news li .title a, .portal-whatsnew-date, .portal-whatsnew-txt {
  color: #fff;
  font-size: 1em;
  line-height: 1.3;
}

#list-news li .date, .portal-whatsnew-date {
  font-size: 0.9em;
  display: block;
}

#list-news li .title {
  color: #fff;
}

/* recharge_btn */
.recharge_btn {
  width: 50%;
  display: block;
  margin: 8% auto 9%;
}

/* share-btns */
#portal-share {
  margin: 24px 0 24px;
  position: relative;
  z-index: 2;
}

.portal-share-list {
  width: 100%;
  text-align: center;
  letter-spacing: -0.5em;
  position: relative;
}

.portal-share-item {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 8px;
}

.portal-share-item:last-fo-type {
  max-height: 0;
}

.portal-share-link {
  display: block;
  width: auto;
}

.portal-share-img {
  width: auto;
  height: 60px;
}

.portal-copy {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 58px;
}

/* pageTOP */
#page-top {
  position: fixed;
  bottom: 8px;
  left: 10px;
  font-size: 77%;
  z-index: 10;
}

#page-top a {
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}

#page-top a:hover {
  text-decoration: none;
}

.portal-page-top-img {
  width: 60px;
}

/* sp */
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }

  .portal-banner-list {
    background: none;
    padding: 0;
  }

  .portal-banner-link {
    margin-top: 0;
  }
}

/* pc */
@media screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }

  #portal-container {
    font-size: 13px;
  }

  /* portal-caution */
  .portal-caution {
    background: #1446a2;
    text-align: center;
    padding: 24px 0;
  }

  .portal-caution-frame {
    background: #fff;
    width: 60%;
    margin: 0 auto;
    padding: 12px;
    border-radius: 8px;
  }

  .portal-caution-pdfbtn {
    color: #fff;
    font-weight: bold;
    font-size: 2.4em;
    line-height: 1.3;
    background: #f00;
    padding: 12px;
    width: 70%;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0px 6px #470000;
  }

  .portal-caution-pdfbtn:hover {
    margin-top: 3px;
    margin-bottom: 13px;
    box-shadow: 0px 3px #470000;
  }

  .portal-caution-pdfbtn:hover {
    color: #fff;
  }

  .portal-caution-txt {
    color: #0e2d80;
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: bold;
  }

  .portal-caution-tel {
    display: inline-block;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    color: #0e2d80;
    text-decoration: underline;
  }

  .portal-caution-tel:hover {
    text-decoration: underline;
  }

  #portal-lower {
    padding-top: 88px;
  }

  #portal-whatsnew {
    width: 720px;
    max-width: none;
    background: url(/brand/disney/portal/images/whatsnew/whatsnew_frame_star_top.png) right top no-repeat, url(/brand/disney/portal/images/whatsnew/whatsnew_frame_star_bottom.png) left bottom no-repeat;
    background-size: contain, 76%;
  }

  #list-news li, .portal-whatsnew-frame-item {
    padding: 0;
    margin-bottom: 20px;
  }

  .portal-whatsnew-frame-middle {
    padding: 0 36px 36px 36px;
  }

  #list-news, .portal-whatsnew-frame-list {
    padding: 0;
    width: 648px;
    max-width: none;
    height: 272px;
  }

  #list-news li:after, .portal-whatsnew-frame-item:after {
    margin-top: 20px;
    height: 2px;
  }

  #list-news li .date, #list-news li .title a, .portal-whatsnew-date, .portal-whatsnew-txt {
    color: #fff;
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1.2;
  }

  .recharge_btn {
    width: 360px;
    margin: 72px auto 72px;
  }

  #portal-share {
    margin: 80px 0 40px;
  }

  .portal-copy {
    width: 938px;
    padding-bottom: 12px;
  }

  #page-top {
    left: auto;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
  }

  #page-top a {
    padding: 30px 0;
  }

  .portal-page-top-img {
    width: 112px;
  }
}

/* SEGATOYS */
.mouseCatcher {
  z-index: 10;
}

.common-footer {
  z-index: 9;
}

.common-menu__container {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.common-footer__copyright {
  z-index: 9;
}

#footer {
  padding: 0.83em 0 2em;
  background-color: #f0f0f0;
  zoom:1;position: relative;
  z-index: 3;
}

#footer ul {
  margin: 0 auto;
  width: 900px;
}

#footer ul:after {
  content: "";
  display: block;
  clear: both;
}

#footer ul li {
  float: left;
  background: url(/common/images/bg_nav_footer.png) no-repeat 0 50%;
  padding-left: 15px;
  margin-right: 13px;
}

#footer a:link, #footer a:visited {
  color: #333399;
  text-decoration: none;
}

#copyright {
  margin: -1.36em auto 0;
  width: 900px;
  text-align: right;
}

/*新 sns */
.sns_link {
  text-align: center;
  margin: 0 auto;
  padding: 70px 0;
}

.sns_link img {
  width: 50px;
  margin: 0 10px;
}

.sns_link a {
  text-decoration: none;
}

.sns_link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .footer.clearfix {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .footer {
    position: relative;
    z-index: 3;
  }

  .search-container, .header-menu-list, .common-footer, .common-footer__copyright {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .common-header:not(.clearfix) {
    display: none;
  }

  .footer.clearfix {
    display: none;
  }

  .footer__copyright {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp-header {
    display: none;
  }

  .search-catefory {
    display: none;
  }
}
