﻿@charset "UTF-8";

/* ----全体レイアウト---- */

.wrapper {
  width: 100%;
  min-width: 1200px;
}

.pane-header {
  background-color: #000000;
  color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  min-width: 1200px;
}

.pane-header .container {
  height: 50px;
}

/* .inversion-header-base  */

/* ハンバーガーメニューのスタイル */
.pane-header .menu {
  width: 74px;
  z-index: 11;
}

.pane-header .menu a {
  display: block;
  padding: 10px;
  position: relative;
}

.pane-header .menu-bar {
  display: block;
  position: absolute;
  left: 10px;
  width: 16px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pane-header .menu-bar:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -6px;
  width: 16px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pane-header .menu-bar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* 追従headerの反転 */
.pane-header .menu-bar-inversion {
  display: block;
  position: absolute;
  left: 10px;
  width: 16px;
  height: 1px;
  background-color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pane-header .menu-bar-inversion:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -6px;
  width: 16px;
  height: 1px;
  background-color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pane-header .menu-bar-inversion:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 1px;
  background-color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ハンバーガーメニュー アニメーション */
.pane-header .menu.is-open span {
  background-color: rgba(255, 255, 255, 0);
}

.pane-header .menu.is-open span:before {
  width: 22px;
  -webkit-transform: translate(-4px, 12px) rotate(30deg);
  transform: translate(-5px, 6px) rotate(35deg);
  background-color: #fff;
}

.pane-header .menu.is-open span:after {
  width: 22px;
  -webkit-transform: translate(-4px, -8px) rotate(-30deg);
  transform: translate(-5px, -6px) rotate(-35deg);
  background-color: #fff;
}

.pane-global {
  padding-top: 50px;
  margin-bottom: 40px;
}
/* ハンバーガーメニュー アニメーション  end*/

.pane-global-title {
  text-align: center;
  margin-top: 38px;
}

.inversion-header .pane-global-title {
  margin-top: 0;
  margin-left: 30px;
  width: 192px;
}

#pane-global-category .pane-global-title h1 a {
  font-size: 32px;
  line-height: 14px;
}

#pane-global-category .pane-global-title h1 a:hover {
  text-decoration: none;
}


.inversion-header .pane-global-title h1 {
  width: auto;
  font-size: 20px;
  margin: 0;
}

.inversion-header .pane-global-title img {
  vertical-align: baseline;
}

.pane-globalnav {
  width: 100%;
}

.pane-contents {
  min-height: 600px;
  padding-bottom: 50px;
}

.page-logout .pane-contents,
.page-salescancelcomplete .pane-contents {
  min-height: 370px;
  padding-bottom: 50px;
}

/* ----商品詳細レイアウト---- */

.page-goodspreview .pane-left-menu,
.page-goodspreview .pane-right-menu,
.page-goods .pane-left-menu {
  display: none;
}

.block-goods-detail {
  /* display: grid; */
  grid-template-columns: 1fr 400px;
  grid-template-rows: auto auto auto auto;
  /* IE11 */
  /* display: -ms-grid; */
  -ms-grid-columns: 1fr 400px;
  -ms-grid-rows: auto auto auto auto;
}

.pane-goods-header {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  /* IE11 */
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 1;
  width: 100%;
  margin: 30px 0 0 0;
}

.pane-goods-left-side {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  /* IE11 */
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  width: 600px;
  margin: 0 auto;
}

.pane-goods-left-side .block-src-l {
  position: relative;
}

.pane-goods-left-side .block-variation--item-list {
  position: absolute;
  top: 0;
  right: -180px;
}

.pane-goods-right-side {
  margin-top: 100px;
  padding-top: 100px;
  background-color: #f9f9f9;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  /* IE11 */
  -ms-grid-column: 2;
  -ms-grid-row: 2;
  /* width: 400px; */
}

.pane-goods-center {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
  /* IE11 */
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 3;
  margin-top: 30px;
}

.pane-goods-right-side--left .pane-goods-center ul {
  display: flex;
  justify-content: flex-end;
}

.pane-goods-right-side--left .pane-goods-center ul li {
  margin-right: 15px;
}

.pane-goods-right-side--left .pane-goods-center ul li:before {
  content: url("../../img/usr/common/right-arrow-nav.png");
  margin-right: 9px;
}

.pane-goods-right-side--left .pane-goods-center ul li a {
  text-decoration: underline;
}

.pane-goods-right-side--left .pane-goods-center ul li a:hover {
  text-decoration: none;
}

/* ----注文フロー---- */

.pane-goods-right-side--box {
  display: flex;
  justify-content: center;
  padding-bottom: 85px;
}

.pane-order-header .container {
  display: flex;
  align-items: center;
  height: 40px;
}

.pane-order-contents {
  min-height: 600px;
  padding-bottom: 50px;
  background: #fff;
}

.block-icon-auto-icon {
  display: flex;
}

.block-icon-line-icon--box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pane-goods-right-side--right {
  margin-right: 65px;
  width: calc(50% - 65px);
}

.block-goods-user-review {
  width: 1200px;
  margin: 0 auto;
}

.block-variation--item-list.block-size--item-list {
  display: none;
}

.goods-detail-description:last-child dd ul li a {
  display: inline-block;
  margin-top: 30px;
  cursor: pointer;
  text-decoration: none;
}

.goods-detail-description:last-child dd ul li a:before {
  content: url("../../img/usr/common/right-arrow-nav.png");
  margin-right: 5px;
  color: #333333;
}

.goods-detail-description:last-child dd ul li a:after {
  content: "";
  display: block;
  width: 98px;
  height: 1px;
  background-color: #333333;
  margin-left: 20px;
}

.block-free-1 .action .btn {
  padding: 0;
  width: 52px;
  height: 32px;
}

.block-free-1 .action-buttons {
  margin: 0;
}

.block-order-cancellation-completed {
  text-align: center;
}

.block-order-cancellation-completed--message {
  margin-bottom: 50px;
}

.block-withdrawal--forward,
.block-shipping-address--forward {
  border: none;
}

.block-src-l .block-goods-gallery--src-l .img-center {
  width: 600px;
  height: 720px;
}

.block-src-l .block-goods-gallery--src-l p{
  text-align: center;
  padding-top: 10px;
}