@charset "shift_jis";

/*-----------------------------------------------------------------------------
** content
-----------------------------------------------------------------------------*/
#content {
  margin: 0 auto;
}
/* SP */
@media (max-width: 767px) {
  #content {
    margin: 50px auto 0;
  }
}

/*-----------------------------------------------------------------------------
** swiper
-----------------------------------------------------------------------------*/
/*最大幅の指定と中央寄せ*/
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-pagination {
  bottom: -30px !important;
}
.swiper-button-prev,
.swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 8px;
}
.gallery-thumbs p {
  font-size: 12px;
  margin: 4px 0 0;
}
.gallery-top div.commentTxt {
  font-size: 11px;
  margin: 4px 10px 0;
}

/* SP */
@media (max-width: 767px) {
  .container {
    margin-bottom: 40px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    background-repeat: no-repeat;
    background-position: center;
    top: 36%;
  }
  .swiper-button-next.swiper-button-white,
  .swiper-button-prev.swiper-button-white {
    height: 30px;
    width: 20px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 828px;
  }
  .gallery-top div.commentTxt {
    display: none;
  }
}
/* ページネーションサイズと透明度 */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: #ccc;
  opacity: 0.4;
}
/* ページネーションアクティブ時 */
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}

/* サムネイル横幅 */
.gallery-thumbs {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin: 40px auto 50px;
  overflow: hidden;
  padding: 10px 0;
  width: 828px;
}
.gallery-thumbs img {
  width: 100%;
  height: auto;
}
.gallery-thumbs .swiper-slide {
  opacity: 0.5;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
/* sp */
@media (max-width: 767px) {
  .gallery-thumbs {
    display: none;
  }
}

/*-----------------------------------------------------------------------------
** section
-----------------------------------------------------------------------------*/
/* tablet&PC */
section h2 {
  background: url("https://www.movic.jp/img/freepage/tsukiprostage/img/common/icon_title.svg") no-repeat 2px 5px;
  background-size: 14px 14px;
  border-bottom: 1px solid #000;
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 18px;
}
section h2 span {
  margin-left: 10px;
  font-family: ivyjournal, sans-serif;
  font-weight: 400;
  font-style: normal;
}
section h3 {
  background: #eee;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  section,
  div.grad-wrap {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
  section h3 img {
    width: 40%;
  }
}
@media (min-width: 768px) {
  section,
  div.grad-wrap {
    margin: 0 auto;
    width: 828px;
  }
  section h2 {
    margin-bottom: 24px;
  }
}
/* grad-wrap */
.grad-wrap {
  position: relative;
  margin-bottom: 40px !important;
}
.grad-wrap h1 {
  margin-bottom: 16px;
  padding: 4px 0;
  text-align: center;
}
.grad-wrap h1 a {
  color: #000;
  text-decoration: none;
}
.grad-wrap h2 {
  color: #b88904;
  font-size: 20px;
  text-align: center;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 300px;
  margin: auto;
  padding: 0.5em 0;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.grad-trigger::after {
  content: "続きを読む";
}
.grad-trigger .fa {
  margin-right: 0.5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 260px;
}
.grad-item dl {
  margin-bottom: 16px;
}
.grad-item dl dt {
  font-weight: bold;
}
.grad-item dl li {
  font-size: 14px;
  text-indent: -1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .grad-wrap h2 {
    font-size: 16px;
  }
  .grad-item dl {
    font-size: 14px;
  }
  .grad-item dl li {
    font-size: 12px;
  }
}
.grad-item dl li span {
  color: #f00;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
}
.grad-trigger.is-show {
  bottom: -2em;
}
.grad-trigger.is-show::after {
  content: "閉じる";
}
.grad-trigger.is-show .fa {
  transform: rotate(180deg);
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}

/* #onlineShopping */
section#onlineShopping {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section#onlineShopping ul.logoBtn li {
    width: 40%;
  }
}
@media (min-width: 768px) {
  section#onlineShopping ul.logoBtn li {
    width: 45%;
    text-align: center;
  }
}

/* #stageSearch */
section#stageSearch {
  margin-bottom: 32px;
}
section#stageSearch p {
  font-size: 14px;
}
/* sp */
@media (max-width: 767px) {
  section#stageSearch p {
    padding-right: 10px;
    padding-left: 10px;
  }
}
section#stageSearch p.attTxt {
  font-size: 12px;
  margin-bottom: 8px;
  text-indent: -1rem;
  margin-left: 1rem;
}
section#stageSearch p.attTxt span {
  color: #ff0000;
}
/* ロゴエリア */
ul.logoBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
ul.logoBtn li {
  display: inline-block;
  background-color: #fff;
  padding: 8px 16px;
  border: 1px dashed #333;
  box-shadow: 0px 0px 0px 5px #fff; /* box-shadowで外枠を */
  margin-bottom: 10px;
  width: 28%;
}
@media (max-width: 767px) {
  ul.logoBtn li {
    padding: 2px 4px 4px;
  }
}
ul.logoBtn li.dark {
  display: inline-block;
  background-color: #000;
  padding: 8px 16px;
  border: 1px dashed #333;
  box-shadow: 0px 0px 0px 5px #fff; /* box-shadowで外枠を */
}
.logoBtn li:hover {
  border-style: solid;
}
@media (max-width: 767px) {
  ul.logoBtn {
    margin: 0 10px 40px;
  }
  ul.logoBtn li:not(:last-child) {
    margin-right: 8px;
  }
}

/* #linkWrap */
section#linkWrap {
  margin-bottom: 20px;
}
section#linkWrap ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
/* sp */
@media (max-width: 767px) {
  section#linkWrap ul {
    justify-content: space-between;
    margin: 0 auto;
    width: 96%;
  }
  section#linkWrap li {
    margin-bottom: 8px;
    width: 49%;
  }
}
/* tablet&PC */
@media (min-width: 768px) {
  section#linkWrap {
    margin-bottom: 40px;
  }
  section#linkWrap li {
    margin-right: 2.6%;
    margin-bottom: 24px;
    width: 23%;
  }
  section#linkWrap li:nth-child(4n) {
    margin-right: 0;
  }
}

/*-----------------------------------------------------------------------------
** 注意文
-----------------------------------------------------------------------------*/
.shopWrap h3 {
  font-size: 16px;
  /*border-bottom: 1px solid #000; SQS事後通販が終わったら復活*/
  margin-bottom: 8px;
  text-align: center;
}
.shopWrap {
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .shopWrap h3 {
    font-size: 14px;
  }
}
/*-----------------------------------------------------------------------------
** 他通販へのリンクボタン
-----------------------------------------------------------------------------*/
.flexBox {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  margin: 16px 0;
}
.flexBox p a {
  border-radius: 8px;
  font-size: 12px;
  background: #743c92;
  color: #fff;
  padding: 4px 10px !important;
  text-decoration: none;
}
@media (min-width: 768px) {
  .flexBox p a {
    font-size: 14px;
    padding: 4px 16px !important;
  }
}

/*-----------------------------------------------------------------------------
** 自動書き出し
-----------------------------------------------------------------------------*/
.StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
/* SP */
@media (max-width: 767px) {
  .StyleF_Frame_ {
    justify-content: space-between;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.StyleF_Item_ {
  border: 1px solid #e6e6e6;
  color: #646464;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 14px;
}
.StyleF_Item_ a {
  color: #333333;
}
.StyleF_Item_ .price_ {
  font-weight: bold;
}
/* SP */
@media (max-width: 767px) {
  .StyleF_Item_ {
    margin-bottom: 16px;
    width: 40%;
  }
}
/* iphone5 */
@media screen and (max-width: 320px) {
  .StyleF_Item_ {
    width: 38.5%;
  }
}

/* tablet&PC */
@media (min-width: 768px) {
  .StyleF_Item_ {
    font-size: 1.5rem;
    margin-right: 10px;
    margin-bottom: 20px;
    width: 20.4%;
  }
  .StyleF_Item_:nth-child(4n) {
    margin-right: 0;
  }
}
.StyleF_Item_ .img_ img {
  border: 1px solid #ccc;
}
.StyleF_Item_ .name_ {
  line-height: 1.4;
}
.StyleF_Item_ .img_,
.StyleF_Item_ .name_ {
  margin-bottom: 10px;
}
.StyleF_Item_ .rdt_,
.StyleF_Item_ .comment_,
.StyleF_Item_ .cart_,
.StyleF_Item_ .pre_sales_ {
  display: none;
}

/*-----------------------------------------------------------------------------
** 通販ポップアップ
-----------------------------------------------------------------------------*/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
  z-index: 2;
}
.popup-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 8px;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  font-size: 26px;
  color: #333;
}
.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

/*---------- イブステep3用スタイル ----------
@media (max-width: 767px) {
  section#onlineShopping {
    background: #F9BE44;
    width: 100%;
    padding: 16px 0 0;
  }
  section#onlineShopping .iveste_ep3 {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  section#onlineShopping {
    background: #F9BE44;
    width: 100%;
    padding: 16px 0 0;
  }
  section#onlineShopping .iveste_ep3 {
    margin: 0 auto;
    width: 828px;
  }
}
section#onlineShopping .iveste_ep3 .StyleF_Item_ {
  border: none;
  background: #FFF;
  border-radius: 7px;
  box-shadow: 4px 4px 0px 0px #f38b2e;
}
section#onlineShopping .iveste_ep3 .StyleF_Item_ .img_ img {
  border: none;
}
*/

/*-----------------------------------------------------------------------------
** 2024.5 商品一覧 画像高さ指定（アンカーリンク飛び先ずれの修正）
-----------------------------------------------------------------------------*/
.StyleF_Item_ .img_ {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.StyleF_Item_ .img_ img {
  width: 100%;
  height: auto;
  position: absolute;
}

/*-----------------------------------------------------------------------------
** 2024.12.25 スマホ ハンバーガーメニュー表示調整
-----------------------------------------------------------------------------*/
#nav-toggle {
  height: 32px;
}
#gloval-nav a {
  font-size: 15px;
  padding: 15px 0;
  line-height: 1.8;
}
#gloval-nav ul {
  width: 90%;
  margin: 0 auto;
}
#gloval-nav li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
