@charset "UTF-8";

/*｡.｡:+* ﾟ ゜ﾟ *+:｡.｡:+* ﾟ ゜ﾟ *+:｡.｡.｡:+*ﾟ ゜ﾟ *+:｡.｡:+*ﾟ ゜ﾟ *+:｡.｡.｡:+*+:｡.｡
:*:・'゜☆.:*:・' .:*:・'゜☆' .:*:・'゜☆' .:*:・'゜☆' .:*:.:*:・'゜☆' .:*:

・‥…━━━☆ Disney fantasia CSS ・‥…━━━☆

.:*:・'゜☆' .:*:・'゜☆' .:*:・'゜☆' .:*:・'゜☆' .:*:・'゜.:*:・'゜☆' .:*:・'゜
｡.｡:+* ﾟ ゜ﾟ *+:｡.｡:+* ﾟ ゜ﾟ *+:｡.｡.｡:+*ﾟ ゜ﾟ *+:｡.｡:+*ﾟ ゜ﾟ *+:｡.｡.｡:+*+:｡.｡*/

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

/* #fantasia {
opacity: 0;
-webkit-animation: fade 1s cubic-bezier(0.65, 0.05, 0.36, 1) 9s forwards;
animation: fade 1s cubic-bezier(0.65, 0.05, 0.36, 1) 9s forwards;
}
#fantasia.skip {
animation: none;
opacity: 1;
} */

#loading {
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

#loading.ready {
  -webkit-animation: fade 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards,
    fadeOutAll 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  animation: fade 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards,
    fadeOutAll 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  position: fixed;
}

#loading.skip {
  animation: none;
}

.l-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.l-bg {
  background-image: url(/includes/disney/img/l/alice/dia.svg);
  position: relative;
  width: 376px;
  height: 543px;
  background-size: 10%;
  background-position-y: center;
  background-position-x: center;
  transform-origin: 50% 50%;
  opacity: 0;
}

.ready .l-bg {
  -webkit-animation: hello 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards,
    seeyou 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  animation: hello 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards,
    seeyou 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
}

.l-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 154px;
  height: 106px;
  z-index: 1;
  opacity: 0;
}

.ready .l-logo {
  -webkit-animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards;
  animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards;
}

.shadow {
  content: "";
  width: 220px;
  height: 170px;
  display: block;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #ffffff61;
  border-radius: 100%;
  opacity: 0;
}

.ready .shadow {
  -webkit-animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards;
  animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards;
}

.l-footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.l-skip {
  padding-top: 40px;
}

.l-skip a {
  position: relative;
  bottom: 0;
  left: 50%;
  width: 160px;
  margin-left: -80px;
  padding: 8px 0;
  border: 2px solid #e2eeec;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #fff;
  line-height: 1.6;
  text-align: center;
}

.l-skip a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  content: "";
  border-right: #4b4b4b 2px solid;
  border-top: #4b4b4b 2px solid;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@keyframes hello {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }

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

@keyframes seeyou {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOutAll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@media screen and (max-width: 800px) {

  .l-logo,
  .shadow,
  .l-bg {
    transform: none;
  }

  .l-bg,
  .l-wrap {
    width: 100%;
    height: 100%;
  }

  .ready .l-bg {
    -webkit-animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards;
    animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards;
  }

  .ready .l-logo,
  .ready .shadow {
    -webkit-animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 2.5s forwards;
    animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 2.5s forwards;
  }

  .l-skip {
    padding: 0;
  }

  .l-skip a {
    position: absolute;
    bottom: 20%;
  }

  @keyframes seeyou {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }
}

/* base-re
--------------------------------------- */
body {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "HGS明朝E", "メイリオ", "Meiryo", serif;
  color: #4b4b4b;
  font-size: 13px;
  font-size: 1.3rem;
}

p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.7;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", "Osaka", " ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.img {
  margin-bottom: 20px;
}

#container h1 {
  padding-top: 0;
}

#container #pankuzu {
  margin-bottom: 20px;
}

#container .attention {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.7;
}

#pankuzu {
  margin: 0 0 40px;
  padding: 20px 0 0;
  font-size: 1.3rem;
  font-size: 13px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", sans-serif;
}

/* flexBox2 */
#container .flexBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#container .flexBox2 .flexCell {
  width: 48.95%;
  margin-bottom: 0;
}

#container .flexBox2 .flexCell:nth-child(even) {
  margin-left: 2%;
}

#container .flexBox2 .flexCell.center {
  align-self: center;
}

.flexBox2 .flexCell.bottom {
  align-self: flex-end;
}

#container .flexBox2 .flexCell .imgBox {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  #container .flexBox2 {
    flex-wrap: wrap;
  }

  #container .flexBox2 .flexCell {
    width: 100%;
    margin-bottom: 20px;
  }

  #container .flexBox2 .flexCell:nth-child(even) {
    margin-left: 0;
  }

  #container .flexBox2 .flexCell p:last-child {
    margin-bottom: 20px;
  }

  #container .flexBox2 .flexCell:last-of-type,
  #container .flexBox2 .flexCell:last-of-type p:last-child {
    margin-bottom: 0;
  }
}

/* sp pc */
#container .sp {
  display: none !important;
}

#container .pc {
  display: block !important;
}

#container .pc_center {
  text-align: center !important;
}

@media screen and (max-width: 767px) {
  #container .pc {
    display: none !important;
  }

  #container .sp {
    display: block !important;
  }

  #container .pc_center {
    text-align: left !important;
  }
}

/* boxWrap */
#container .boxWrap {
  margin-bottom: 120px;
}

#container .boxWrap:last-of-type {
  margin-bottom: 150px;
}

@media screen and (max-width: 767px) {
  #container .boxWrap {
    margin-bottom: 90px;
  }
}

/* outerWrap */
.outerWrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

/* columnBox2 */
#container .columnBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#container .columnBox2 .columnCell {
  width: 48.95%;
}

#container .columnBox2 .columnCell.center {
  align-self: center;
}

#container .columnBox2 .columnCell:nth-child(even) {
  margin-left: 2%;
}

#container .columnBox2 .columnCell .imgBox {
  margin-bottom: 15px;
}

#container .columnBox2 .columnCell .img {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {

  #container .columnBox2 .columnCell:last-of-type,
  #container .columnBox2 .columnCell:last-of-type p:last-child {
    margin-bottom: 0;
  }
}

/* title
--------------------------------------- */

/* largeTitle */
#container .largeTitle {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #916500;
}

#container .largeTitle span,
#container .midTitle span {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,
    メイリオ, Meiryo, serif;
}

/* midTitle */
#container .midTitle {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

/*smallTitle*/
#container .smallTitle {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {

  /* largeTitle */
  #container .largeTitle {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,
      メイリオ, Meiryo, serif;
  }

  #container .largeTitle span {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 5px;
  }

  /* midTitle */
  #container .midTitle {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,
      メイリオ, Meiryo, serif;
  }

  /*smallTitle*/
  #container .smallTitle {
    font-size: 15px;
    font-size: 1.5rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,
      メイリオ, Meiryo, serif;
  }

  #container .flexBox2>.flexCell {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 370px) {
  #container .midTitle {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* slick
--------------------------------------- */
.slick-dotted.slick-slider {
  margin-bottom: 20px;
  padding-bottom: 50px;
  outline: none;
}

.slick-slide {
  outline: none;
}

.slick-dots {
  bottom: 10px;
}

.slider {
  margin-bottom: 20px;
}

.slider01.gSlider>ul,
.slider03.gSlider>ul {
  margin: 0 -10px;
}

.slider01.gSlider .slick-slide li,
.slider03.gSlider .slick-slide li {
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 35px;
  }

  .slick-dots {
    font-size: 0;
    bottom: -25px;
  }

  .slick-slide img {
    display: inline-block;
  }

  .gSlider .slick-prev,
  .gSlider .slick-next {
    top: 50% !important;
    bottom: auto;
  }

  .gSlider .slick-next {
    right: -15px !important;
  }

  .gSlider .slick-prev {
    left: -15px !important;
  }

  #container .gSlider>ul {
    margin: 0 1% 40px;
    padding: 0 0 5px 0;
  }

  #container .gSlider>ul .slick-slide li {
    padding: 0 2.4%;
  }
}

.link {
  margin-top: 20px;
}

/* txtLink
--------------------------------------- */
a.txtLink {
  text-decoration: none;
  position: relative;
  margin-right: 15px;
}

a.txtLink:after {
  content: "";
  background-image: url(/includes/img/common/btn-arrow.svg);
  width: 8px;
  height: 13.08px;
  position: absolute;
  bottom: 0;
  right: -15px;
  top: 0;
  margin: auto;
}

/* pageLink
--------------------------------------- */
a.pageLink {
  text-decoration: underline;
}

a.pageLink:before {
  content: "";
  background-image: url(/includes/img/common/link-arrow.svg);
  background-repeat: no-repeat;
  width: 9px;
  height: 11.38px;
  position: relative;
  bottom: 0;
  padding-right: 15px;
}

/* modalLink
--------------------------------------- */
a.modalLink {
  text-decoration: underline;
}

a.modalLink::before {
  content: "";
  background-image: url(/includes/img/common/modal.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: relative;
  bottom: 0;
  padding-right: 15px;
}

/*yotpoBlock
--------------------------------------- */
.yotpoBlock {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .yotpoBlock {
    margin-bottom: 60px;
  }
}

/*popup
--------------------------------------- */
a.popup {
  position: relative;
  display: block;
}

a.popup::after {
  bottom: 0px;
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  content: "";
  background-image: url(/includes/img/common/popup.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  padding: 0px 30px 30px 0px;
}

/*btn
--------------------------------------- */
#container .btnBox {
  margin: 40px auto 0px;
}

#container .btn {
  width: 240px;
  padding: 9px 0;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", "Osaka", " ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #1a275f;
  color: #fff;
}

#container .btn:after {
  content: "";
  background-image: url(/includes/disney/img/l/fantasia/btn-arrow-w.svg);
  width: 8px;
  height: 13.08px;
  position: absolute;
  right: 10px;
}

#container .btn::before {
  display: none;
}

/*other
--------------------------------------- */
@media screen and (max-width: 767px) {
  .sp_center {
    text-align: center;
  }
}

/* fantasia
--------------------------------------- */
#fantasia #container {}

#fantasia .outerWrap {
  max-width: 864px;
}

#fantasia .largeTitle {
  line-height: 1.7;
}

#fantasia .largeTitle span,
#container .midTitle span {
  margin-top: 5px;
}

#fantasia .largeTitle span.tall,
#container .midTitle span.tall {
  margin-top: 2px;
}

#fantasia a,
#fantasia p {
  color: #4b4b4b;
}

.img {
  margin-bottom: 0px;
}

@media screen and (max-width: 931px) {}

@media screen and (max-width: 767px) {
  #fantasia .outerWrap {
    box-sizing: border-box;
  }

  #fantasia .largeTitle {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  #fantasia #container img {
    max-width: 423px;
    margin: 0 auto;
  }

  #fantasia #container .img {
    text-align: center;
  }

  #fantasia #container {
    padding-bottom: 0;
    padding-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  #fantasia #container {}
}

/* pankuzu
--------------------------------------- */
#pankuzu .outerWrap {
  max-width: 1100px;
}

#container #pankuzu {
  padding: 0;
}

/* mainbox
--------------------------------------- */
#fantasia .mainBox .outerWrap {
  max-width: 1100px;
}

@media screen and (max-width: 767px) {
  .mainBox .outerWrap:first-of-type {
    padding: 0;
  }

  #fantasia #container .mainBox img {
    max-width: 750px;
    margin: 0 auto;
  }

  #fantasia #container .mainBox {
    margin-bottom: 60px;
  }

  #fantasia .mainBox .largeTitle {
    position: relative;
  }

  #fantasia .mainBox .largeTitle p.txt {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #fff;
    font-weight: normal;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━
:*:・'゜☆.:*:・' .:*:・'゜☆' .:*:・'゜☆' .:*:・'゜☆' .:*:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*fantasia
--------------------------------------- */
#container .largeTitle {
  margin-bottom: 40px;
}

.copy {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

#container .btnBox+.btnBox {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #container .btnBox+.btnBox {
    margin-top: 20px;
  }

  #container .largeTitle {
    margin-bottom: 25px;
  }
}

/*title
--------------------------------------- */
img[class*="title"] {
  margin: 0 auto;
}

#fantasia #container img.title01 {
  max-width: 179px;
}

.title01+span,
.title02+span,
.title03+span {
  color: #004d60;
}

#fantasia #container img.title02 {
  max-width: 96px;
}

#fantasia #container img.title03 {
  max-width: 135px;
}

#fantasia #container img.title04 {
  max-width: 252px;
}

.title04+span {
  color: #af790b;
}

#fantasia #container img.title05 {
  max-width: 168px;
}

.title05+span {
  color: #9e2242;
}

@media screen and (max-width: 767px) {
  #fantasia #container img.title01 {
    max-width: 178px;
  }
}

/*slider
--------------------------------------- */

.price {
  margin-top: 15px;
}

#container .gSlider .flexBox2 .flexCell:nth-child(even) {
  margin-left: 5%;
}

.slider01 .slick-dotted.slick-slider {
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #container .slider01 .flexBox2 .flexCell {
    margin-bottom: 0px;
  }

  #container .slider01>ul {
    padding: 0 0 10px 0;
  }

  #wear .slick-initialized .slick-slide {
    text-align: center;
  }
       #rhythm .flexBox2.nop {
    margin-bottom: 20px;
  }
}

/*about
--------------------------------------- */
@media screen and (max-width: 767px) {
  #fantasia .outerWrap {
    padding: 0 5%;
  }

  #container #about .midTitle {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 330px) {
  #fantasia #about .outerWrap {
    padding: 0 11%;
  }
}

/*newCollection
--------------------------------------- */
#newCollection .flexBox2 {
  margin-bottom: 60px;
}

#wear .slick-initialized .slick-slide {
  padding: 0 7px;
}

@media screen and (max-width: 767px) {
  #newCollection {
    margin-bottom: 60px;
  }
}

/*case
--------------------------------------- */
#container #case {
  padding-top: 130px;
  margin-top: -130px;
}

#container #case .outerWrap {
  max-width: 960px;
  border: 1px solid #dedede;
  box-sizing: border-box;
  padding: 40px 2.5%;
}

#container #case .largeTitle {
  margin-bottom: 40px;
}

#container #case .flexBox2 {
  margin: 40px auto;
}

#container #case .flexBox2.ac .flexCell:first-of-type {
  width: 66%;
}

#container #case .flexBox2.ac .flexCell:last-of-type {
  width: 33%;
}

#container #case .flexBox2.ac .flexCell:last-of-type .img {
  margin-bottom: 6%;
  border: 1px solid #dedede;
}

#container #case .flexBox2.ac .flexCell:last-of-type .img:last-of-type {
  margin-bottom: 0;
}

.cnsTxt {
  text-align: center;
}

#container #case .mickey .flexBox2 {
  padding: 30px;
  border: 1px solid #ccc;
  margin-top: 60px;
}

#container #case .mickey .flexBox2>.flexCell {
  width: 33%;
  align-self: center;
}

#container #case .mickey .flexBox2 .flexCell:nth-child(even) {
  width: 65%;
}

#container #case span.big {
  font-size: 20px;
  font-size: 2.0rem;
  color: #4b4b4b;
}

.fb {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.fb-fc {
  width: 48%;
}

.fb .fb-fc:nth-child(even) {
  margin-left: 15px;
}

@media screen and (max-width: 970px) {
  #container #case .outerWrap {
    padding: 35px 20px;
    width: 90%;
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 768px) {

  #container #case span.big,
  #container #case .largeTitle {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  #container #case .flexBox2 {
    margin: 15px auto;
  }

  #container #case .flexBox2.ac .flexCell:first-of-type {
    width: 100%;
    margin-bottom: 15px;
  }

  #container #case .flexBox2.ac .flexCell:last-of-type {
    width: 100%;
    max-width: 423px;
    margin: 0 auto;
  }

  #container #case .flexBox2.ac .flexCell:last-of-type .img {
    width: 47.5%;
    display: inline-block;
    margin-bottom: 0;
    float: left;
  }

  #container #case .flexBox2.ac .flexCell:last-of-type .img:last-of-type {
    float: right;
  }

  #container #case .mickey .flexBox2 {
    padding: 15px;
  }

  #container #case .mickey .flexBox2>.flexCell {
    width: 100%;
    order: 1;
    margin-bottom: 0;
  }

  #container #case .mickey p.link {
    margin-bottom: 0;
    margin-top: 10px;
    text-align: right;
  }

  #container #case .mickey .flexBox2 .flexCell:nth-child(even) {
    width: 100%;
    order: 0;
    margin-bottom: 20px;
  }

  .cnsTxt {
    text-align: left;
  }

  #container #case .cnsTxt .price {
    text-align: right;
  }
}

/*bridal ring
--------------------------------------- */
#br .wrap {
  margin-top: 20px;
  padding: 0 5%;
}

@media screen and (max-width: 767px) {
  #container #br .flexBox2 .flexCell {
    margin-bottom: 30px;
  }

  #br .wrap {
    padding: 0;
  }
}

/*fj
--------------------------------------- */
@media screen and (max-width: 767px) {
  #container #solobtn .btnBox2 {
    margin: 40px auto 0px;
  }

  #container #solobtn .btnBox2>.btn {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
  #fantasia .mainBox .outerWrap {
    padding: 0;
  }
}

.f_op-img {
  display: none;
}

.df-img {
  display: block;
}


/*optimize
--------------------------------------- */


#fantasia span.new {
  display: inline-block;
  color: #CBA34A;
  padding-right: 5px;
  margin-top: 0;
  font-size: unset;
}

#container #newCollection {
  padding-top: 130px;
  margin-top: -130px;
}

#container #rhythm {
  box-sizing: border-box;
  padding: 0;
  background-image: url(/includes/disney/img/l/fantasia/fantasia_bg_sp.webp);
  background-size: cover;
  padding: 0 0 40px 0;
}

#rhythm .flexBox3 div {
  width: 70%;
}
#rhythm p , #rhythm a , #rhythm h3 {
  color: #fff!important;
}
@media screen and (min-width:768px) {
  #rhythm .flexBox3 {
    display: flex;
  }

  #rhythm .flexBox3 div {
    padding: 0 10px;
  }

  #container #rhythm {
    background-image: url(/includes/disney/img/l/fantasia/fantasia_bg_pc.webp);
            max-width: 900px;
        margin: auto;
        padding-bottom: 10px;

  }
   #rhythm .flexBox2 {
    padding: 40px 5% 0;
  }
     #rhythm .flexBox2.nop {
    padding: 0;
  }
  #rhythm .outerWrap {
    box-sizing:border-box;
  }
}

#fantasia .flexBox3 div:nth-of-type(2) {
  margin-right: 0;
  margin-left: auto;
}

#fantasia #container img.w100p {
max-width: 100%;
}