@charset "UTF-8";

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
body {
  -moz-osx-font-smoothing: grayscale;
}

.spOnly {
  display: none !important;
}

a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
}

.wrap {
  min-width: 1200px;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
@-webkit-keyframes jsUpShow {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jsUpShow {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes jsDownShow {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jsDownShow {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }

  50% {
    opacity: 0.8;
  }

  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jsStanby {
  visibility: hidden;
}

.jsStanby.jsShow {
  -webkit-animation-name: jsUpShow;
          animation-name: jsUpShow;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

  100% {
    visibility: visible;
    opacity: 1;
  }
}

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

  100% {
    visibility: visible;
    opacity: 1;
  }
}

.jsStanbyFade {
  visibility: hidden;
}

.jsStanbyFade.jsShow {
  -webkit-animation-name: jsFedeShow;
          animation-name: jsFedeShow;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes popDownShow {
  0% {
    visibility: visible;
    opacity: 0;
    pointer-events: none;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes popDownShow {
  0% {
    visibility: visible;
    opacity: 0;
    pointer-events: none;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes popDownHide {
  0% {
    visibility: visible;
  }

  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes popDownHide {
  0% {
    visibility: visible;
  }

  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes menuNext {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    pointer-events: none;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: default;
  }
}

@keyframes menuNext {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    pointer-events: none;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: default;
  }
}

@-webkit-keyframes menuPrev {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: none;
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}

@keyframes menuPrev {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: none;
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}

@-webkit-keyframes moveToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

@keyframes moveToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

@-webkit-keyframes moveToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

@keyframes moveToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

@-webkit-keyframes moveFromRight {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }

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

@keyframes moveFromRight {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }

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

@-webkit-keyframes moveFromLeft {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }

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

@keyframes moveFromLeft {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }

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

@-webkit-keyframes modalShow {
  0% {
    top: 100px;
    visibility: visible;
    opacity: 0;
    pointer-events: none;
  }

  100% {
    top: 0;
    opacity: 1;
    pointer-events: default;
  }
}

@keyframes modalShow {
  0% {
    top: 100px;
    visibility: visible;
    opacity: 0;
    pointer-events: none;
  }

  100% {
    top: 0;
    opacity: 1;
    pointer-events: default;
  }
}

@-webkit-keyframes modalHide {
  0% {
    top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
  }

  100% {
    top: 100px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes modalHide {
  0% {
    top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
  }

  100% {
    top: 100px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

.lds-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
  width: 64px;
  height: 64px;
  color: #fff;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}

.lds-spinner div {
  -webkit-transform-origin: 32px 32px;
          transform-origin: 32px 32px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  position: absolute;
  top: 3px;
  left: 29px;
  display: block;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #2d2f33;
  content: " ";
}

.movie-holder .lds-spinner div:after {
  background: #fff;
}

.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* GROUND override
***********************************/
html {
  font-size: 62.5%;
}

body {
  color: #393c41;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Roboto, "Droid Sans", sans-serif;

  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: #393c41;
  text-decoration: none;
}

a:hover {
  color: #393c41;
  text-decoration: none;
}

i {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

html.chrome.desktop img {
  -webkit-backface-visibility: unset;
          backface-visibility: unset;
}

canvas, video {
  vertical-align: top;
}

button {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  letter-spacing: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;

  -webkit-appearance: none;
          appearance: none;
}

input, textarea {
  padding: 0.2em 0.5em;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: unset;
  letter-spacing: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;

  -webkit-appearance: none;
          appearance: none;
}

button:focus {
  outline: 0;
}

.lang-en {
  font-family: "TTCommons-Regular";
}

.lang-en-tt-d {
  font-family: "TTCommons-DemiBold";
}

.lang-en-tt-b {
  font-family: "TTCommons-Bold";
}

.lang-en-tt-m {
  font-family: "TTCommons-Medium";
}

.lang-en-tt-r {
  font-family: "TTCommons-Regular";
}

.lang-en-tt-l {
  font-family: "TTCommons-Light";
}

.title-svg {
  width: auto;
}

.bg-color {
  background-color: #000021;
}

.ws-pl {
  white-space: pre-line;
  word-wrap: break-word;
}

.eng {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hide {
  display: none;
}

.bgDarkGlay {
  background-color: #e6e6e6;
}

.bgLightGlay {
  background-color: #eee;
}

.wrap {
  -webkit-transition: opacity 0.6s;
          transition: opacity 0.6s;
}

.wrap.standBy {
  opacity: 0;
}

.enter-transition {
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

.leave-transition {
  opacity: 0;
  -webkit-animation: fadeOut 0.5s;
          animation: fadeOut 0.5s;
}

/*テキストカラー指定*/
.text-color-white {
  color: #ececec;
}

#wovn-translate-widget {
  display: none !important;
}

.script-attention {
  margin: 20px auto;
  padding: 15px;
  color: #924c54;
  text-align: center;
}

.dib {
  display: inline-block;
}

.wrap {
  background-color: #eee;
}

.green {
  color: #79888b;
}

.bg-white {
  background-color: #fff;
}

.bg-wh {
  background: #fff;
}

.tategaki {
      -ms-writing-mode: tb-rl;

  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.ws-pl {
  white-space: pre-line;
  word-wrap: break-word;
}

.ai-center {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

@font-face {
  font-family: "TTCommons-DemiBold";
  src: url("./webfonts/TT-Commons-DemiBold.eot");
  src: url("./webfonts/TT-Commons-DemiBold.eot?#iefix") format("embedded-opentype"), url("./webfonts/f51y7-1zjlk.woff2") format("woff2"), url("./webfonts/TT-Commons-DemiBold.woff") format("woff"), url("./webfonts/TT-Commons-DemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "TTCommons-Bold";
  src: url("./webfonts/TT-Commons-Bold.eot");
  src: url("./webfonts/TT-Commons-Bold.eot?#iefix") format("embedded-opentype"), url("./webfonts/tbyje-cssgz.woff2") format("woff2"), url("./webfonts/TT-Commons-Bold.woff") format("woff"), url("./webfonts/TT-Commons-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "TTCommons-Medium";
  src: url("./webfonts/TT-Commons-Medium.eot");
  src: url("./webfonts/TT-Commons-Medium.eot?#iefix") format("embedded-opentype"), url("./webfonts/172q6-egza8.woff2") format("woff2"), url("./webfonts/TT-Commons-Medium.woff") format("woff"), url("./webfonts/TT-Commons-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "TTCommons-Regular";
  src: url("webfonts/37BD21_0_0.eot");
  src: url("webfonts/37BD21_0_0.eot?#iefix") format("embedded-opentype"), url("webfonts/37BD21_0_0.woff2") format("woff2"), url("webfonts/37BD21_0_0.woff") format("woff"), url("webfonts/37BD21_0_0.ttf") format("truetype");
}

@font-face {
  font-family: "TTCommons-Light";
  src: url("webfonts/3A0AD4_0_0.eot");
  src: url("webfonts/3A0AD4_0_0.eot?#iefix") format("embedded-opentype"), url("webfonts/3A0AD4_0_0.woff2") format("woff2"), url("webfonts/3A0AD4_0_0.woff") format("woff"), url("webfonts/3A0AD4_0_0.ttf") format("truetype");
}

/* swiper共通
************************/
.swiper-container .swiper-button-prev, .swiper-container .swiper-button-next {
  outline: none;
}

.swiper-container .swiper-button-prev.swiper-button-disabled, .swiper-container .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

img[src$="indicator.gif"] {
  width: 16px;
  height: 16px;
}

img[src$="loader_icon_pc.gif"] {
  width: 16px;
  height: 16px;
}

.sns-sticky-banner {
  position: fixed;
  right: 43px;
  bottom: 100px;
  z-index: 100;
  display: inline-block;
  padding: 0;
  width: 283px;
  border-radius: 0;
  background-color: #c3a794;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
          transition: opacity 0.5s;
  pointer-events: none;
}

.sns-sticky-banner.show {
  opacity: 1;
  pointer-events: unset;
}

.sns-sticky-banner .text {
  margin: -2px auto;
  font-size: 12px;
}

.sns-sticky-banner .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 15px;
}

.sns-sticky-banner .btn-icon {
  box-sizing: content-box;
  margin: 0 5px;
  padding: 0;
  padding: 7px;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  font-size: 0;
}

.sns-sticky-banner .btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-color: white;
  border-radius: 21px;
  background-color: #0d0d0d;
  background-size: 12px;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/*  フォーム類部品
-------------------------------------------------------------*/
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], textarea {
  display: block;
  width: 100%;
  border: solid 1px #dadada;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  vertical-align: middle;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  vertical-align: middle;
}

html.android input[type="text"]::-webkit-input-placeholder, html.android input[type="email"]::-webkit-input-placeholder, html.android input[type="password"]::-webkit-input-placeholder, html.android input[type="tel"]::-webkit-input-placeholder, html.android input[type="number"]::-webkit-input-placeholder, html.android textarea::-webkit-input-placeholder {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="number"]:-moz-placeholder, textarea:-moz-placeholder {
  color: #999;
  vertical-align: middle;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="number"]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  vertical-align: middle;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  vertical-align: middle;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"] {
  padding: 17px 10px;
  line-height: 1.5;
}

textarea {
  padding: 10px;
  line-height: 1.5;
}

input, textarea, select, button {
  font-size: 1.6rem;
}

.validated-e-mail {
  display: block;
  padding: 17px 10px;
  width: 100%;
  border-radius: 4px;
  background-color: #dadada;
  color: rgba(57, 60, 65, 0.5);
  vertical-align: middle;
  line-height: 1.5;
}

select[style=" background-color:#FFC0CB;"], input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"], input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"], input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"], input[type="text"].error, textarea[style=" background-color:#FFC0CB; ime-mode:active;"] {
  border: 1px solid #963e56 !important;
  background-color: #dfc5cc !important;
}

select[style=" background-color:#FFC0CB;"]::-webkit-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"]::-webkit-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"]::-webkit-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"]::-webkit-input-placeholder, input[type="text"].error::-webkit-input-placeholder, textarea[style=" background-color:#FFC0CB; ime-mode:active;"]::-webkit-input-placeholder {
  color: #963e56 !important;
}

html.android select[style=" background-color:#FFC0CB;"]::-webkit-input-placeholder, html.android input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"]::-webkit-input-placeholder, html.android input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"]::-webkit-input-placeholder, html.android input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"]::-webkit-input-placeholder, html.android input[type="text"].error::-webkit-input-placeholder, html.android textarea[style=" background-color:#FFC0CB; ime-mode:active;"]::-webkit-input-placeholder {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

select[style=" background-color:#FFC0CB;"]:-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"]:-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"]:-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"]:-moz-placeholder, input[type="text"].error:-moz-placeholder, textarea[style=" background-color:#FFC0CB; ime-mode:active;"]:-moz-placeholder {
  color: #963e56 !important;
}

select[style=" background-color:#FFC0CB;"]::-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"]::-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"]::-moz-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"]::-moz-placeholder, input[type="text"].error::-moz-placeholder, textarea[style=" background-color:#FFC0CB; ime-mode:active;"]::-moz-placeholder {
  color: #963e56 !important;
}

select[style=" background-color:#FFC0CB;"]:-ms-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:active;"]:-ms-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:inactive;"]:-ms-input-placeholder, input[type="text"][style=" background-color:#FFC0CB; ime-mode:disabled;"]:-ms-input-placeholder, input[type="text"].error:-ms-input-placeholder, textarea[style=" background-color:#FFC0CB; ime-mode:active;"]:-ms-input-placeholder {
  color: #963e56 !important;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding-left: 40px;
  min-height: 30px;
  font-weight: bold;
  font-size: 1.4rem;
}

input[type="radio"] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border: solid 1px #dadada;
  border-radius: 50%;
  background: #fff url("../images/icon/check-white.svg") no-repeat center center;
  background-color: rgba(255, 255, 255, 0.7);
  background-size: contain;
  content: "";

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

input[type="radio"]:checked + label:before {
  background-color: #79888b;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + input[type="hidden"] + label, input[type="checkbox"] + label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding-left: 40px;
  min-height: 30px;
  font-weight: bold;
  font-size: 1.4rem;
  font-size: 1.4rem;
}

input[type="checkbox"] + input[type="hidden"] + label:before, input[type="checkbox"] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border: solid 1px #dadada;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7) url("../images/icon/check-white.svg") no-repeat center center;
  background-size: contain;
  content: "";

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

input[type="checkbox"]:checked + input[type="hidden"] + label:before, input[type="checkbox"]:checked + label:before {
  background-color: #79888b;
}

.el-radio-holder {
  font-size: 0;
}

.el-radio-holder .HTMLFORM_ELEMENT + .HTMLFORM_ELEMENT {
  display: block;
  margin-top: 15px;
}

.el-radio-holder + .el-radio-holder {
  margin-top: 15px;
}

.card-number .col + .col {
  position: relative;
}

.card-number .col + .col:before {
  position: absolute;
  top: 50%;
  left: -0.15em;
  margin-top: -0.5em;
  content: "-";
}

.mail-devide .col:first-child {
  padding-right: 15px;
}

.mail-devide .col:last-child {
  position: relative;
  padding-left: 15px;
}

.mail-devide .col:last-child:before {
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -8px;
  content: "@";
}

.check-label {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 10px;
}

.check-label label {
  margin-bottom: 0 !important;
}

.el-select-holder {
  position: relative;
  padding: 0;
  height: 60px;
  border: 1px solid #dadada;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
}

.el-select-holder.el-select-holder-small {
  margin: auto;
  padding: 0;
  width: 90px;
  height: 40px;
}

.el-select-holder.el-select-holder-small select {
  padding: 7px 38px 7px 18px;
}

.el-select-holder select {
  padding: 8px 38px 8px 18px;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  color: #393c41;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;

  -webkit-appearance: none;
  /* autoprefixer: off */
     -moz-appearance: none;
          appearance: none;
}

.el-select-holder select::-ms-expand {
  display: none;
}

.el-select-holder:before {
  position: absolute;
  top: 50%;
  right: 0.9em;
  margin-top: -3px;
  width: 10px;
  height: 6px;
  background: url("../images/icon/arrow_down_black.svg") no-repeat center center;
  content: "";
  content: "";
  pointer-events: none;
}

.error {
  color: #924c54 !important;
}

.error_color:empty {
  display: none;
}

.text-input-comment {
  margin-top: 20px;
  font-size: 1.4rem;
}

.sp-col .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sp-col .col:first-child {
  padding-left: 20px;
}

.sp-col .col:last-child {
  padding-right: 20px;
}

.loginArea {
  display: flex;
  flex-direction: row;
}


#giftWrapping[data-wrappingtype="ギフトBOX"] .giftbox.box-wrapping {
  display: none;
}

#giftWrapping .pc-row .col .title-form {
  margin-top: 0;
}

#giftWrapping .pc-row .col:first-child {
  padding-right: 20px;
}

#giftWrapping .pc-row .col:last-child {
  padding-left: 20px;
}

#giftWrapping .giftbox .row + .row {
  margin-top: 15px;
}

#noshi-image .noshi {
  position: relative;
  width: calc(50% - 15px);
}

#noshi-image .name {
  position: absolute;
  top: 40%;
  left: 50%;
  height: 74%;
  font-size: 1.5rem;
  -webkit-transform: translateX(-50%) scale(0.6, 0.6);
          transform: translateX(-50%) scale(0.6, 0.6);
}

#noshi-image .disc {
  margin-top: 10px;
  min-height: 1.5em;
}

/* 共通
************************/
.confirm-list {
  margin-top: -15px;
  padding: 0 100px;
}

.confirm-list .row:has(.title-th) {
  position: relative;
  padding: 16px 0;
}

.confirm-list .row + .row:has(.title-th):before, .confirm-list .row.row-border-top:before {
  position: absolute;
  top: -1px;
  right: 10px;
  left: 10px;
  width: auto;
  height: 2px;
  background-color: #eee;
  content: "";
}

.nav-mypage-list--top .nav-maypage {
  margin: 0 auto 60px;
  text-align: center;
}

.nav-mypage-list--top .nav-maypage .list {
  margin: -10px auto;
  font-size: 0;
}

.nav-mypage-list--top .nav-maypage .nav {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
}

.nav-mypage-list--top .nav-maypage .nav a {
  display: block;
  padding: 10px 45px;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
}

.nav-mypage-list--top .nav-maypage .nav a:hover {
  opacity: 0.75;
}

.nav-mypage-list--top .nav-maypage .nav + .nav:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #c0c1c2;
  content: "";
}

.member_input .nav-mypage-list--top .nav-maypage .nav.nav-member a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.member_credit_entry_input .nav-mypage-list--top .nav-maypage .nav.nav-creditcard a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.address_list .nav-mypage-list--top .nav-maypage .nav.nav-address a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.member_history .nav-mypage-list--top .nav-maypage .nav.nav-history a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.wishlist .nav-mypage-list--top .nav-maypage .nav.nav-favorite a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.member_review .nav-mypage-list--top .nav-maypage .nav.nav-review a {
  color: #c0c1c2;
  cursor: default;
  pointer-events: none;
}

.nav-mypage-list--bottom {
  margin-top: 120px;
  margin-bottom: 80px;
}

.nav-mypage-list--bottom .member-item-holder a {
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
}

.nav-mypage-list--bottom .member-item-holder a:hover {
  opacity: 0.75;
}

.member_input .nav-mypage-list--bottom .member-item-holder .nav-member a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.member_credit_entry_input .nav-mypage-list--bottom .member-item-holder .nav-creditcard a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.address_list .nav-mypage-list--bottom .member-item-holder .nav-address a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.member_history .nav-mypage-list--bottom .member-item-holder .nav-history a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.wishlist .nav-mypage-list--bottom .member-item-holder .nav-favorite a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.member_review .nav-mypage-list--bottom .member-item-holder .nav-review a {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.nav-mypage-list--bottom .btn-secondary {
  margin: auto;
  width: 380px;
}

.nav-mypage-list--bottom .icon-logout {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* カートまわり
************************/
.ShopAccount .customerOnly {
  display: none;
}

.ShopAccount .container .mail:not(.customer) {
  display: none;
}

.ShopAccount .cart-payment {
  display: none;
}

.ShopAccount .quantity.container .option-price-holder {
  display: none;
}

.ShopAccount .cart-shipping-date {
  display: none;
}

.wrap:not(.ShopAccount) .shopOnly {
  display: none;
}

.cart-step {
  background-color: #eee;
}

.cart-step .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: auto;
  max-width: 1240px;
  width: 100%;
  height: 160px;
}

.cart-step .inner .step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 34.74576%;
  height: 100px;
  color: #c0c1c2;
  font-size: 18px;
}

.cart-step .inner .step .text {
  position: relative;
}

.cart-step .inner .step .number {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #c0c1c2;
  color: #fff;
  font-style: normal;
}

.cart-step .inner .step:before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  height: 100%;
  background-color: #f9f9f9;
  content: "";
}

.cart-step .inner .step:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100px;
  background: url("../images/icon/step-arrow-gray-pc.svg") no-repeat center center;
  background-size: auto 100%;
  content: "";
}

.cart-step .inner .step.active {
  color: #79888b;
}

.cart-step .inner .step.active .number {
  background-color: #79888b;
}

.cart-step .inner .step.active:before {
  background-color: #fff;
}

.cart-step .inner .step.active:after {
  background-image: url("../images/icon/step-arrow-white-pc.svg");
}

.cart-step .inner .step:nth-child(1) {
  z-index: 3;
  margin-right: -50px;
  padding-right: 50px;
}

.cart-step .inner .step:nth-child(2) {
  z-index: 2;
  margin-right: -50px;
  width: 38.98305%;
}

.cart-step .inner .step:nth-child(3) {
  z-index: 1;
  padding-left: 50px;
}

.cart-step .inner .step:nth-child(3):before {
  width: 100%;
}

.cart-step .inner .step:nth-child(3):after {
  content: none;
}

.empty-block {
  margin-bottom: 40px;
  text-align: center;
}

.empty-block .empty-inner {
  margin: auto;
  padding: 60px 100px;
  width: 800px;
  border-radius: 4px;
  background: #fff;
}

.empty-block .btn-cart-continue {
  margin: auto;
  width: 600px;
}

.cart-item-th {
  margin: auto;
  max-width: 1180px;
}

.cart-item-th .container {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  padding: 0;
}

.cart-item-th .th {
  padding: 40px 0 20px;
  border-bottom: #eee solid 2px;
  text-align: center;
  font-weight: bold;
}

.cart-item-th .th + .th {
  margin-left: 20px;
}

.cart-item-th .item-name {
  width: 730px;
}

.cart-index .cart-item-th .item-name {
  width: 580px;
}

.cart-item-th .item-amount {
  width: 130px;
}

.cart-item-th .item-unit {
  width: 120px;
}

.cart-item-th .item-delete {
  width: 130px;
}

.cart-item-th .item-total {
  width: 130px;
}

.cart-item {
  margin: auto;
  max-width: 1180px;
}

.cart-item .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: #eee solid 2px;
}

.cart-item .item.delete .pic, .cart-item .item.delete .info {
  opacity: 0.3;
}

.cart-item .pic {
  -webkit-flex-basis: 200px;
          flex-basis: 200px;
  width: 130px;
}

.cart-item .info {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-basis: auto;
          flex-basis: auto;
  min-width: 225px;
  width: 1050px;
  font-size: 14px;
}

.cart-item .name {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.cart-item .ttl {
  display: none;
}

.cart-item .item-name {
  padding-left: 20px;
  width: 580px;
}

.cart-index .cart-item .item-name {
  width: 400px;
}

.cart-item .item-name .desc {
  margin-bottom: 12px;
  font-size: 12px;
}

.cart-item .item-name a {
  display: block;
}

.cart-item .item-unit {
  width: 130px;
  text-align: center;
}

.cart-item .item-delete {
  margin-left: 20px;
  width: 130px;
  text-align: center;
}

.cart-item .item-amount {
  margin-left: 20px;
  width: 130px;
  text-align: center;
}

.cart-item .item-total {
  position: relative;
  margin-left: 20px;
  width: 130px;
  height: 100%;
  text-align: center;
}

.cart-item .item-total .tax-price {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 100%;
  font-size: 11px;
}

.cart-price {
  padding-top: 20px;
  padding-right: 0;
  padding-bottom: 40px;
  padding-left: 0;
}

.cart-price .inner {
  margin-left: auto;
  width: 280px;
}

.cart-price .desc {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 3px 15px;
}

.cart-price .ttl {
  font-weight: bold;
  font-size: 14px;
}

.cart-price .text {
  font-size: 14px;
}

.cart-price hr {
  margin-top: 18px;
  margin-bottom: 16px;
  border-top: solid 2px #eee;
}

.cart-price .subtotal .desc {
  padding: 3px 0;
}

.cart-price .total {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 4px 0;
}

.cart-price .total .ttl {
  font-weight: bold;
  font-size: 16px;
}

.cart-price .total .text {
  font-size: 16px;
}

.cart_confirm .cart-price .total .ttl,
.member_history .cart-price .total .ttl {
  font-size: 14px;
}

.cart-price .total.total--storecredit {
  margin-top: 24px;
}

.cart-price .total:not(.total--storecredit) + .total.total--bill {
  margin-top: 24px;
}

.cart-price .total.total--bill .ttl {
  font-size: 16px;
}

.cart-price .total.total--bill .price {
  font-size: 16px;
}

.areaPullDown {
  position: absolute;
  bottom: 0;
  visibility: hidden;
  margin: auto;
  padding: 1px 0 10px 50px;
  width: 600px;
}

.areaPullDown.show {
  position: relative;
  visibility: visible;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

.areaPullDown:before {
  position: absolute;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100%;
  background-color: #dadada;
  content: "";
}

.areaPullDown.bg-light-gray {
  margin: 20px auto;
  padding: 1px 0 30px;
  width: 680px;
  background-color: #f9f9f9;
}

.areaPullDown.bg-light-gray:before {
  content: none;
}

.areaPullDown.creditcard {
  padding: 1px 0 30px;
}

.areaPullDown.creditcard .text-input-comment {
  margin-top: 30px;
}

.areaPullDown.creditcard .text-card {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.areaPullDown.creditcard .el-radio-holder + .el-radio-holder {
  margin-top: 10px;
}

.areaPullDown.creditcard .creditCard-paymentsTimes {
  display: none !important;
}

.areaPullDown.plain {
  padding: 1px 0;
}

.areaPullDown.plain:before {
  content: none;
}

.areaPullDown[data-pulldown-id="paper-bag-items"] .option-price-holder {
  display: none;
}

.select-payment {
  font-size: 0;
}

.select-payment div[rank_id="1"] {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.select-payment .el-radio-holder.loop {
  margin-top: 15px;
}

/* アドレス帳
************************/
.card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: -20px;
}

.card-block {
  display: block;
  margin: 20px 10px;
  padding: 40px 30px;
  max-width: 400px;
  width: calc(33.33333333333% - (10px * 2));
  border-radius: 4px;
  background-color: #fff;
  text-align: left;
  font-size: 1.4rem;
}

.card-block .buttonarea {
  margin-top: 0;
}

.card-info-holder {
  margin-top: 30px;
  padding: 0;
}

/* レビュー
************************/
.review-list .review-ttl {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.review-list .review-ttl a {
  font-weight: bold;
}

.review-list .review-date {
  margin-bottom: 5px;
}

.review-list .buttonarea {
  margin-top: 30px;
}

.border-round {
  border: #79888b solid 1px;
  border-radius: 4px;
}

.review-confirm .border-round {
  padding: 30px;
}

.review-confirm .border-round .ttl {
  margin-bottom: 10px;
}

.review-confirm .border-round .date {
  margin-left: 10px;
}

/* ヒストリー
************************/
.order-items-header {
  margin: auto;
  padding: 1px 100px 0;
  max-width: 1240px;
  border-radius: 4px;
}

.order-delete .delete-checkbox {
  position: absolute;
  top: 0;
  left: -50px;
  width: 180px;
  height: 100%;
}

.order-delete .delete-checkbox label {
  width: 100%;
  height: 100%;
}

.order-delete .delete-checkbox label:before {
  top: 50%;
  margin-top: -20px;
}

.order-delete .delete-checkbox .text {
  display: none;
}

.order-delete .cart-item-th {
  padding-left: 50px;
}

.order-delete .cart-item {
  padding-left: 50px;
}

.order-history {
  margin: auto;
  margin-bottom: 30px;
  padding: 1px 100px 60px;
  max-width: 1240px;
  border-radius: 4px;
}

.order-history .cart-item-from {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
}

.order-history .cart-item.top .cart-item-from {
  display: none;
}

.order-history .cart-item.top .item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  border-bottom: 0;
}

.order-history .cart-item.top .item + .item {
  border-top: 2px solid #eee;
}

.order-history .cart-item.top .pic {
  width: 250px;
  border: 1px solid #eee;
}

.order-history .cart-item.top .link-item {
  position: relative;
  padding-left: 10px;
}

.order-history .cart-item.top .link-item + .link-item {
  margin-top: 5px;
}

.order-history .cart-item.top .link-item:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: 1px;
  width: 6px;
  height: 10px;
  background: url("../images/icon/arrow_right_green.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.order-history .cart-item.top .copy-url {
  margin-top: 5px;
}

.order-history .cart-item.top .copy-url:before {
  background-image: url(../images/icon/chain-thin.svg);
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.order-history .cart-item.top .balloon-top {
  top: 30px;
}

.order-history .cart-item.top .info {
  width: 450px;
}

.order-history .order-info p {
  margin: 5px auto;
}

.order-history .order-info .title-form {
  margin: 5px 0;
  font-weight: normal;
}

.order-history .order-info .title-form.order-number {
  position: relative;
}

.order-history .order-info .title-form.order-number:after {
  display: block;
  margin: 15px auto;
  height: 2px;
  background-color: #eee;
  content: "";
}

.order-history .cart-price {
  padding-bottom: 0;
}

.order-history .buttonarea .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  margin: 0 -20px;
  width: 640px;
}

.order-history .buttonarea .item {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  padding: 20px;
  width: 200px;
}

.order-history .accordion {
  margin-top: 30px;
}

.order-history .accordion .accordion-area {
  position: absolute;
  display: none;
  visibility: hidden;
  margin-top: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
          transition: opacity 0.4s;
}

.order-history .accordion .btn-accordion-history .col .flex {
  font-weight: normal;
  font-size: 1.4rem;
}

.order-history .accordion .btn-accordion-history .col.open {
  display: block;
}

.order-history .accordion .btn-accordion-history .col.close {
  display: none;
}

.order-history .accordion.show .btn-accordion-history .flex:before {
  right: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.order-history .accordion.show .btn-accordion-history .col.open {
  display: none;
}

.order-history .accordion.show .btn-accordion-history .col.close {
  display: block;
}

.order-history .accordion.show .accordion-area {
  position: relative;
  display: block;
  visibility: visible;
  opacity: 1;
}

.order-history .order-cancel-message-group > *:last-child {
  margin-bottom: 0;
}

.order-history .order-cancel-message {
  margin-bottom: 8px;
}
/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* utils
***********************************/
.spOnly {
  display: none;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.swap-img {
  opacity: 0;
}

.swap-img[src] {
  opacity: 1;
}

#TOP {
  position: absolute;
  top: 0;
  left: 0;
}

.force3d {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.btn {
  display: inline-block;
  white-space: normal;
  cursor: pointer;
  -webkit-transition: opacity 0.2s linear;
          transition: opacity 0.2s linear;
}

.btn:hover {
  opacity: 0.5;
}

.block-message i, .block-attention i {
  vertical-align: top;
}

.block-message .message, .block-attention .message {
  display: inline-block;
  vertical-align: top;
}

.block-attention {
  color: #963e56;
}

.block-attention a {
  color: #79888b;
}

.block-attention a:hover {
  color: #79888b;
}

.icon-alert {
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(../images/icon/ban-red.svg) no-repeat center center/contain;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.icon-attention {
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(../images/icon/exclamation-triangle-red.svg) no-repeat center center/contain;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.icon-info {
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(../images/icon/info-circle.svg) no-repeat center center/contain;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.btn {
  position: relative;
  padding: 0;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.5;
}

.btn-primary, .btn-outline-primary, .btn-secondary, .btn-outline-secondary, .btn-light, .btn-outline-light, .btn-white, .btn-outline-white {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0;
  min-height: 58px;
  width: 100%;
  border-radius: 4px;
  white-space: normal;
  font-size: 1.4rem;
  line-height: 1.3;
}

.btn-primary.soldout, .btn-outline-primary.soldout, .btn-secondary.soldout, .btn-outline-secondary.soldout, .btn-light.soldout, .btn-outline-light.soldout, .btn-white.soldout, .btn-outline-white.soldout {
  min-height: 60px;
}

html.IE .btn-primary, html.IE .btn-outline-primary, html.IE .btn-secondary, html.IE .btn-outline-secondary, html.IE .btn-light, html.IE .btn-outline-light, html.IE .btn-white, html.IE .btn-outline-white {
  padding-top: 3px;
  height: 58px;
}

.btn-primary .flex, .btn-outline-primary .flex, .btn-secondary .flex, .btn-outline-secondary .flex, .btn-light .flex, .btn-outline-light .flex, .btn-white .flex, .btn-outline-white .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 5px;
  min-height: 58px;
  width: 100%;
}

html.IE .btn-primary .flex, html.IE .btn-outline-primary .flex, html.IE .btn-secondary .flex, html.IE .btn-outline-secondary .flex, html.IE .btn-light .flex, html.IE .btn-outline-light .flex, html.IE .btn-white .flex, html.IE .btn-outline-white .flex {
  padding-top: 3px;
  height: 58px;
}

.btn-primary.btn-sm, .btn-outline-primary.btn-sm, .btn-secondary.btn-sm, .btn-outline-secondary.btn-sm, .btn-light.btn-sm, .btn-outline-light.btn-sm, .btn-white.btn-sm, .btn-outline-white.btn-sm {
  min-height: 38px;
  font-size: 1.2rem;
}

.wishilist-item-holder .btn-primary.btn-sm, .wishilist-item-holder .btn-outline-primary.btn-sm, .wishilist-item-holder .btn-secondary.btn-sm, .wishilist-item-holder .btn-outline-secondary.btn-sm, .wishilist-item-holder .btn-light.btn-sm, .wishilist-item-holder .btn-outline-light.btn-sm, .wishilist-item-holder .btn-white.btn-sm, .wishilist-item-holder .btn-outline-white.btn-sm {
  min-height: 40px;
}

html.IE .btn-primary.btn-sm, html.IE .btn-outline-primary.btn-sm, html.IE .btn-secondary.btn-sm, html.IE .btn-outline-secondary.btn-sm, html.IE .btn-light.btn-sm, html.IE .btn-outline-light.btn-sm, html.IE .btn-white.btn-sm, html.IE .btn-outline-white.btn-sm {
  padding-top: 3px;
  height: 38px;
}

.btn-primary.btn-sm .flex, .btn-outline-primary.btn-sm .flex, .btn-secondary.btn-sm .flex, .btn-outline-secondary.btn-sm .flex, .btn-light.btn-sm .flex, .btn-outline-light.btn-sm .flex, .btn-white.btn-sm .flex, .btn-outline-white.btn-sm .flex {
  min-height: 38px;
  font-size: 1.2rem;
}

html.IE .btn-primary.btn-sm .flex, html.IE .btn-outline-primary.btn-sm .flex, html.IE .btn-secondary.btn-sm .flex, html.IE .btn-outline-secondary.btn-sm .flex, html.IE .btn-light.btn-sm .flex, html.IE .btn-outline-light.btn-sm .flex, html.IE .btn-white.btn-sm .flex, html.IE .btn-outline-white.btn-sm .flex {
  padding-top: 3px;
  height: 38px;
}

.btn-primary.disabled, .btn-primary.nosale, .btn-outline-primary.disabled, .btn-outline-primary.nosale, .btn-secondary.disabled, .btn-secondary.nosale, .btn-outline-secondary.disabled, .btn-outline-secondary.nosale, .btn-light.disabled, .btn-light.nosale, .btn-outline-light.disabled, .btn-outline-light.nosale, .btn-white.disabled, .btn-white.nosale, .btn-outline-white.disabled, .btn-outline-white.nosale {
  border-color: #c0c1c2 !important;
  background-color: #c0c1c2 !important;
  pointer-events: none;
}

.btn-primary:hover, .btn-outline-primary:hover, .btn-secondary:hover, .btn-outline-secondary:hover, .btn-light:hover, .btn-outline-light:hover, .btn-white:hover, .btn-outline-white:hover {
  opacity: 0.75;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled):active {
  box-shadow: none;
}

.btn-primary:focus, .btn-outline-primary:focus, .btn-secondary:focus, .btn-outline-secondary:focus, .btn-light:focus, .btn-outline-light:focus, .btn-white:focus, .btn-outline-white:focus {
  box-shadow: none;
  opacity: 0.75;
}

.btn-primary, .btn-primary.disabled {
  border-color: #2c2e33;
  background-color: #2c2e33;
  color: #fff;
}

.btn-primary a, .btn-primary.disabled a {
  color: #fff;
}

.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary.disabled:hover, .btn-primary.disabled:not(:disabled):not(.disabled):active {
  background-color: #2c2e33;
  color: #fff;
}

.btn-primary.disabled:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 136, 139, 0.5);
}

.btn-outline-primary, .btn-outline-primary.disabled {
  border-color: #2c2e33;
  background-color: transparent;
  color: #2c2e33;
}

.btn-outline-primary:hover, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.disabled:hover, .btn-outline-primary.disabled:not(:disabled):not(.disabled):active {
  border-color: #2c2e33;
  background-color: transparent;
  color: #2c2e33;
}

.btn-secondary, .btn-secondary.disabled {
  border-color: #79888b;
  background-color: #79888b;
  color: #fff;
}

.btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary.disabled:hover, .btn-secondary.disabled:not(:disabled):not(.disabled):active {
  border-color: #79888b;
  background-color: #79888b;
  color: #fff;
}

.btn-outline-secondary, .btn-outline-secondary.disabled {
  border-color: #79888b;
  background-color: transparent;
  color: #79888b;
}

.btn-outline-secondary:hover, .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary.disabled:hover, .btn-outline-secondary.disabled:not(:disabled):not(.disabled):active {
  border-color: #79888b;
  background-color: transparent;
  color: #79888b;
}

.btn-light, .btn-light.disabled {
  border-color: #dadada;
  background-color: #dadada;
  color: #2c2e33;
}

.btn-light:hover, .btn-light:not(:disabled):not(.disabled):active, .btn-light.disabled:hover, .btn-light.disabled:not(:disabled):not(.disabled):active {
  border-color: #dadada;
  background-color: #dadada;
  color: #2c2e33;
}

.btn-outline-light, .btn-outline-light.disabled {
  border-color: #dadada;
  background-color: transparent;
  color: #2c2e33;
}

.btn-outline-light:hover, .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light.disabled:hover, .btn-outline-light.disabled:not(:disabled):not(.disabled):active {
  border-color: #dadada;
  background-color: transparent;
  color: #2c2e33;
}

.btn-white, .btn-white.disabled {
  border-color: #fff;
  background-color: #fff;
  color: #2c2e33;
}

.btn-white:hover, .btn-white:not(:disabled):not(.disabled):active, .btn-white.disabled:hover, .btn-white.disabled:not(:disabled):not(.disabled):active {
  border-color: #fff;
  background-color: #fff;
  color: #2c2e33;
}

.btn-outline-white, .btn-outline-white.disabled {
  border-color: #fff;
  background-color: transparent;
  color: #2c2e33;
}

.btn-outline-white:hover, .btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white.disabled:hover, .btn-outline-white.disabled:not(:disabled):not(.disabled):active {
  border-color: #fff;
  background-color: transparent;
  color: #2c2e33;
}

.btn-accordion {
  background-image: url(../images/icon/arrow_down_white.svg);
  background-position: 93% center;
  background-size: 16px auto;
  background-repeat: no-repeat;
}

.open .btn-accordion {
  background-image: url(../images/icon/arrow_up_white.svg);
}

.btn-review-submit {
  margin: auto;
  width: 280px;
}

.btn-back .flex {
  position: relative;
}

.btn-back .flex:before {
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/arrow_left_white.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-back.btn-outline-primary .flex:before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/arrow_left_black.svg);
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-next .flex {
  position: relative;
}

.btn-next .flex:before {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/arrow_right_white.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-accordion-history .row {
  width: 100%;
}

.btn-accordion-history .flex {
  position: relative;
}

.btn-accordion-history .flex:before {
  position: absolute;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/arrow_left_black.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: rotate(-90deg) translateY(-50%);
          transform: rotate(-90deg) translateY(-50%);
}

html.IE .btn-accordion-history .flex:before {
  top: 15%;
}

.btn-external .flex {
  position: relative;
}

.btn-external .flex:before {
  position: absolute;
  top: 50%;
  right: 10%;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/external.svg);
  background-position: center center;
  background-size: 19px auto;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-cart .flex {
  position: relative;
}

.btn-cart .flex:before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/cart_white.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header.header .btn-cart {
  background: none;
}

.btn-delete {
  margin: auto;
}

.cart_index .btn-delete {
  width: 90px;
}

.del .btn-delete {
  width: 100%;
}

.btn-delete .flex:before {
  margin-right: 6px;
  width: 10px;
  height: 10px;
  background: url(../images/icon/btn-close-gray.svg) no-repeat center center/contain;
  content: "";
}

.wishlist .btn-delete .flex:before {
  margin-right: 0;
}

.btn-close {
  width: 60px;
  height: 60px;
  background: #2d2f33 url(../images/icon/btn-close-white.svg) no-repeat center center/20px;
}

.copy-url:before {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/chain.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.btn-secondary.rearrange {
  overflow: hidden;
}

.btn-secondary .el-select-holder {
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
}

.btn-secondary .el-select-holder:before {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  margin-top: 0;
  width: 16px;
  height: 9px;
  background: url(../images/icon/arrow_down_white.svg) no-repeat center center/contain;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-secondary select {
  padding: 0 20px;
  height: 100%;
  color: #fff;

  -webkit-appearance: none;
          appearance: none;
}

.btn-secondary option {
  background: #fff;
  color: #2c2e33;
}

.btn-refine {
  border-color: #2c2e33;
  background-color: #2c2e33;
  text-align: center;
  font-size: 1.4rem;
}

.btn-refine:before {
  position: absolute;
  top: 50%;
  left: 4%;
  display: block;
  width: 20px;
  height: 18px;
  background: url(../images/icon/search_white_2.svg) no-repeat center center/contain;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-back--shoulder {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 25px;
  min-height: 20px;
  background: url(../images/icon/back-black.svg) no-repeat 0 center/20px;
  color: #393c41;
  font-size: 1.4rem;
  font-family: "TTCommons-Regular";
  line-height: 20px;
}

.btn-back--shoulder.mt--0{
  margin-top: 0px;
  display: inline-block;
}
.btn-back--shoulder.mb--0{
  margin-bottom: 0px;
  display: inline-block;
}

.btn-back--shoulder.white {
  background-image: url(../images/icon/back-white.svg);
  color: #fff;
}

.header-brand .btn-back--shoulder {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  margin: auto;
}

.relative {
  position: relative;
}

.balloon-top {
  position: absolute;
  top: 64px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 7px 10px;
  height: 42px;
  border-radius: 4px;
  background: #79888b;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
  font-size: 12px;
}

.balloon-top:before {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 10px 5px;
  border-style: solid;
  border-color: transparent transparent #79888b transparent;
  content: "";
}

.copy-done {
  visibility: hidden;
}

.copy-done.popDownShow {
  visibility: visible;
  -webkit-animation: popDownShow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
          animation: popDownShow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.copy-done.popDownHide {
  -webkit-animation: popDownHide 0.6s both;
          animation: popDownHide 0.6s both;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* テキスト系
***********************************/
.em-1after {
  margin-right: -0.5em;
}

.em-1before {
  margin-left: -0.5em;
}

.bold {
  font-weight: bold;
}

.under-line {
  text-decoration: underline;
}

.font-size-0 {
  font-size: 0;
}

.ttl-sec-left {
  margin-bottom: 16px;
  color: #393c41;
  text-align: left;
  font-weight: normal !important;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}

.price {
  font-family: "TTCommons-Regular", "Noto Sans JP";
}

.number {
  font-family: "TTCommons-Regular";
}

.font-tt {
  font-family: "TTCommons-Regular";
}

.font-ttL {
  font-family: "TTCommons-Light";
}

/* テキスト
******************/
.attention_text {
  font-size: 12px;
}

.form_attention {
  font-size: 14px;
}

.text-sm {
  font-size: 12px;
}

.text-md {
  font-size: 14px;
}

.text-lg {
  font-size: 16px;
}

.text-lead {
  font-size: 16px;
}

.txt-gray {
  color: #79888b;
}

.text-line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-mgt {
  margin-top: 30px;
}

/* タイトル
******************/
.icon-required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  background-color: #79888b;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.5;
}

.title-page {
  margin: 0 15px 60px;
  background-color: transparent;
  text-align: center;
  font-size: 6.4rem;
  line-height: 1;
}

.title-page--2 {
  margin: 60px 15px 0;
}

.title-page--white {
  color: #fff;
}

.title-page .sub {
  display: block;
  margin-top: 20px;
  font-size: 1.4rem;
}

body.lang-en .title-page .sub {
  display: none;
}

.btn-back--shoulder + .title-page {
  margin-top: 30px;
}

.title-section {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
}

#cookie-policy {
  margin-top: -120px;
  padding-top: 180px;
}

.area-form .title-section {
  margin-bottom: 40px;
  font-weight: bold;
}

.title-block {
  margin-top: 60px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 2.2rem;
}

.area-form .title-block {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.cart-giftwrapping .title-block, .cart-shipping-date .title-block {
  margin-bottom: 20px;
}

.title-form {
  margin: 30px 0 10px;
  font-weight: bold;
  font-size: 1.4rem;
}

.title-form-element {
  margin: 10px 0 10px;
  font-weight: bold;
  font-size: 1.4rem;
}

.title-th {
  font-weight: bold;
}

/* テキスト リンク系
*******************/
a {
  color: #393c41;
  text-decoration: none;
}

a:hover {
  color: #393c41;
}

/* ボタン リンク系
*******************/
.link-text, .link-text-underline {
  position: relative;
  display: inline-block;
  color: #79888b;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.link-text:hover, .link-text-underline:hover {
  color: #79888b;
  opacity: 0.75;
}

.link-text-underline {
  padding-bottom: 4px;
}

.link-text-underline:before {
  margin-right: 5px;
  content: url("../images/icon/arrow_right_green.svg");
}

.link-text-underline:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #79888b;
  content: "";
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.link-text-underline:hover:after {
  opacity: 0;
}

.link-anchor {
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
  color: #79888b;
  font-size: 1.4rem;
}

.link-anchor:after {
  position: absolute;
  top: 50%;
  right: 0.0em;
  margin-top: -3px;
  width: 10px;
  height: 6px;
  background: url("../images/icon/arrow_down_green.svg") no-repeat center center;
  content: "";
  content: "";
  pointer-events: none;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
.cart_index #error .confirm, .apply_result #error .confirm {
  display: none;
}

.wishlist #error .message {
  display: none;
}

.member_history #error {
  margin-bottom: 60px;
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

#error + .order-items-header {
  margin-top: 40px;
}

#error + div, #error + section {
  margin-top: 40px;
}

/* ヘッダー
******************/
@-webkit-keyframes fadeBlockIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeBlockIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

header.header {
  position: -webkit-sticky;
  position:         sticky;
  top: 0;
  left: 0;
  z-index: 5;
  margin-bottom: 30px;
  width: 100%;
  background-color: rgba(238, 238, 238);
}

.wrap.top header.header {
  position: relative;
  background-color: transparent;
}

header.header .menu-area {
  background-color: transparent;
}

.wrap.top header.header .menu-area .brand-name {
  width: 260px;
  background: url(../images/logo/logo_white.svg) no-repeat center center;
  background-size: 195px auto;
}

.wrap.top header.header .menu-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
}

.wrap.cart_seisan header.header .menu-inner, .wrap.cart_result header.header .menu-inner {
  display: none;
}

header.header .menu-inner .sub {
  color: #393c41;
}

header.header .menu-inner .title-en {
  color: #393c41;
  font-size: 0;
  font-size: 1.5rem;
  line-height: 1;
}

header.header .menu-inner .nav-product {
  width: 70px;
}

header.header .menu-inner .nav-makeup {
  width: 70px;
}

header.header .menu-inner .nav-skincare {
  width: 78px;
}

header.header .menu-inner .nav-perfume {
  width: 70px;
}

header.header .menu-inner .nav-fragrance {
  width: 90px;
}

header.header .menu-inner .nav-home {
  width: 89px;
}

header.header .menu-inner .nav-hand {
  width: 90px;
}

header.header .menu-inner .nav-grocery {
  width: 72px;
}

header.header .menu-inner .nav-shop {
  width: 46px;
}

header.header .menu-inner .nav-live {
  width: 110px;
}

header.header .menu-inner .nav-newproducts {
  width: 118px;
}

header.header .spOnly {
  display: none;
}

.menu-area {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0;
}

.menu-area.menu-area--top {
  position: relative;
  padding-top: 30px;
  background-color: #000021;
}

.menu-area .menu-area--top-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  /*padding-left: 158px;*/
  width: 100%;
  background-color: #000021;
}

.onScrTrigger .menu-area .menu-area--top-inner {
  /* position: fixed; */
}

.onScrTrigger .menu-area .menu-area--top-inner .brand-name {
  visibility: visible;
  opacity: 1;
}

.menu-area .menu-area--top-inner .brand-name {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  visibility: hidden;
  padding-top: 96px;
  background-image: url("../images/logo/logo_white.svg");
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
          transition: visibility 0.3s, opacity 0.3s;
}

.menu-area .menu-area--top-inner .user-func .num-holder {
  background-color: #fff;
}

.menu-area .menu-area--top-inner .user-func .num {
  color: #000021;
}

.menu-area .menu-area--top-inner .user-func .btn.btn-user .icon {
  background-image: url("../images/icon/user_white.svg");
}

.menu-area .menu-area--top-inner .user-func .btn.btn-cart .icon {
  background-image: url("../images/icon/cart_white.svg");
}

.menu-area .menu-area--top-inner .user-func .btn .icon:before {
  border: solid 1px #fff !important;
}

.contents-inner .menu-area {
  /*position: sticky;*/
  top: 0;
  z-index: 2;
  padding-left: 158px;
  background-color: #000021;
}

.menu-area .btn-back {
  display: none;
}

.menu-area .brand-name {
  width: 171px;
  background: url(../images/logo/logo_black.svg) no-repeat center center;
  background-size: 122px auto;
}

.menu-area .brand-name .btn {
  display: block;
  padding: 45px;
  width: 100%;
}

.menu-area .user-func {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 158px;
}

.menu-area .user-func .num-holder {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: #eee solid 1px;
  border-radius: 50%;
  background-color: #000021;
  text-align: center;
}

.menu-area .user-func .num {
  display: block;
  color: #fff;
  letter-spacing: 0;
  font-size: 1rem;
  font-family: "TTCommons-Regular";
  line-height: 1;
}

.menu-area .user-func .btn {
  width: 36px;
  height: 36px;
}

.menu-area .user-func .btn + .btn {
  margin-left: 18px;
}

.menu-area .user-func .btn .icon {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  font-size: 0;
}

.menu-area .user-func .btn .icon:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #000021;
  border-radius: 50%;
  content: "";
}

.menu-area .user-func .btn.btn-user .icon {
  background-image: url("../images/icon/user_navy.svg");
}

.menu-area .user-func .btn.btn-cart .icon {
  background-image: url("../images/icon/cart_navy.svg");
}

.menu-area .menu-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  margin: auto;
  max-width: 921px;
  width: 100%;
  height: 96px;
}

.menu-area .menu-inner .link {
  display: block;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  box-sizing: content-box;
  padding: 10px;
  text-align: center;
  font-size: 0;
}

.menu-area .menu-inner .title-en {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-area .menu-inner .sub {
  display: block;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}

.lang-en .menu-area .menu-inner .title-en {
  padding-bottom: 0;
}

.lang-en .menu-area .menu-inner .sub {
  display: none;
}

.wrap.top header.header .menu-inner {
  display: none;
}

.wrap.top header.header .user-func {
  display: none;
}

.wrap.top header.header .sns-holder .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 256px;
}

.wrap.top header.header .sns-holder .link-list .btn-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 6px;
  padding: 7px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background-color: #000021;
}

/***/
.IE .contents-inner {
  padding-top: 126px;
}

.IE .wrap.top .contents-inner {
  padding-top: 0;
}

.IE .wrap.notHeaderPage .contents-inner {
  padding-top: 0;
}

.IE .wrap.top .menu-area--top {
  position: relative;
  padding-top: 96px;
}

.IE .wrap.top .menu-area--top-inner {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 158px;
  width: 100%;
  background-color: #0f1e31;
}

.IE .wrap.top.onScrTrigger .menu-area--top-inner {
  position: fixed;
}

.IE header.header {
  position: fixed;
}

.wrap.top .IE header.header {
  position: relative;
  background-color: transparent;
}

/* ページトップ等のフッター上のコンテンツ
******************/
.pagetop {
  position: absolute;
  right: 39px;
  display: block;
  width: 68px;
  height: 68px;
  -webkit-transform: translateY(44%);
          transform: translateY(44%);
}

footer.footer {
  position: relative;
  padding: 56px 40px 20px;
  background-color: #0d0d0d;
  text-align: center;
}

footer.footer .container {
  padding: 0;
  max-width: 1310px;
  width: 100%;
}

footer.footer .brand-name {
  margin: auto;
  width: 124px;
}

footer.footer .brand-name .btn {
  width: 100%;
}

footer.footer .brand-name .set {
  display: block;
  width: 100%;
}

footer.footer .brand-name .set img {
  width: 100%;
}

footer.footer .brand-name .set.sub-logo {
  margin: 10px auto 0;
  width: 92px;
}

footer.footer .menu-language {
  margin: 40px auto;
}

footer.footer .menu-language .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: -10px 0;
}

footer.footer .menu-language .btn {
  padding: 10px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-family: "TTCommons-Regular";
  line-height: 1;
  opacity: 0.5;
}

footer.footer .menu-language .btn:hover {
  opacity: 1;
}

footer.footer .menu-language .btn.active {
  font-weight: bold;
  opacity: 1;
  pointer-events: none;
}

footer.footer .footer-menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  margin-top: 40px;
  justify-content: space-between;
}

footer.footer .subdivision-list {
  text-align: left;
}

footer.footer .inline-list-item {
  width: 205px;
  text-align: left;
}

footer.footer .inline-list-item:first-of-type {
  margin-left: 0;
}

footer.footer .inline-list-item .list-item {
  margin-bottom: 20px;
}

footer.footer .inline-list-item .item-title, footer.footer .inline-list-item .item {
  display: block;
  padding: 3px 5px;
  color: #fff;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
}

footer.footer .inline-list-item .item-title {
  font-weight: bold;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
}

footer.footer .inline-list-item .item-title:hover {
  opacity: 0.5;
}

footer.footer .inline-list-item span.item-title:hover {
  opacity: 1;
}

footer.footer .inline-list-item .icon-target {
  display: inline-block;
  margin-left: 5px;
  width: 9px;
  height: 9px;
  background: url(../images/icon/icon-target.svg) no-repeat center center/contain;
}

.footer-link-list {
  margin-top: 40px;
}

.footer-link-list .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: -5px;
}

.footer-link-list .btn-icon {
  box-sizing: content-box;
  margin: 0 5px;
  padding: 0;
  padding: 5px;
  width: 20px;
  border: none;
}

.footer-company-info {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 40px;
}

.footer-company-info .copy {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 0.9rem;
}

@keyframes modalShow {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    pointer-events: none;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: default;
  }
}

@keyframes modalHide {
  0% {
    top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
  }

  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    pointer-events: none;
  }
}

/** 絞り込みモーダル **/
.modal-refine {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  visibility: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  min-height: 690px;
  width: 100%;
  height: 100vh;
}

.refineShow .modal-refine {
  position: absolute;
  visibility: visible;
}

.refineHide .modal-refine {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
}

.modal-refine .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-refine .modal-refine-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  width: 100%;
  height: 690px;
  border-radius: 4px;
  background-color: #eee;
}

.refineShow .modal-refine .modal-refine-inner {
  -webkit-animation: modalShow 0.5s both;
          animation: modalShow 0.5s both;
}

.refineHide .modal-refine .modal-refine-inner {
  -webkit-animation: modalHide 0.5s both;
          animation: modalHide 0.5s both;
}

.modal-refine .modal-refine-header {
  position: relative;
  height: 90px;
}

.modal-refine .modal-refine-header .btn-prev {
  display: none;
}

.modal-refine .modal-refine-header .title-refine {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 90px;
  font-size: 2.0rem;
}

.modal-refine .modal-refine-header .title-refine .itemCnt {
  margin-left: 10px;
  font-size: 1.4rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.modal-refine .modal-refine-header .title-refine .itemCnt:before {
  content: "(";
}

.modal-refine .modal-refine-header .title-refine .itemCnt:after {
  content: "件)";
}

.modal-refine .modal-refine-header .ctrl {
  position: absolute;
  top: 50%;
  right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.modal-refine .modal-refine-header .btn-clear {
  margin-right: 20px;
  min-height: 48px;
  width: 100px;
}

.modal-refine .modal-refine-header .btn-decide-search {
  margin-right: 20px;
  min-height: 48px;
  width: 200px;
}

.modal-refine .modal-refine-header .btn-close {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.modal-refine .modal-refine-body {
  position: relative;
  height: 600px;
}

.modal-refine .modal-refine-body:before {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  content: "";
}

.modal-refine .modal-refine-footer {
  display: none;
}

.modal-refine .list-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 2px;
  padding-left: 20px;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-weight: normal;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}

.modal-refine .list-item.active {
  background-color: #79888b;
  color: #fff;
}

.modal-refine input[type="checkbox"]:disabled + label .label-text {
  opacity: 0.3;
}

.modal-refine input[type="checkbox"]:disabled + label:after {
  opacity: 0.3;
}

.modal-refine .firstCategory {
  width: calc(50% - 1px);
}

.modal-refine .firstCategory .list-item {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-right: 53px;
}

.modal-refine .firstCategory .list-item .label-text {
  min-width: 102px;
}

.modal-refine .firstCategory .list-item .selectedItems {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  padding-left: 5px;
  text-align: right;
  font-size: 1rem;
}

.modal-refine .firstCategory .list-item:before {
  content: none;
}

.modal-refine .firstCategory .list-item:after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background: url("../images/icon/arrow_right_black.svg") left top no-repeat;
  background-size: contain;
  content: "";
}

.modal-refine .firstCategory .list-item.active:after {
  background-image: url("../images/icon/arrow_right_white.svg");
}

.modal-refine .secondCategory .list-item:before {
  content: none;
}

.modal-refine .secondCategory input[type="checkbox"]:checked + label {
  background-color: #79888b;
  color: #fff;
}

.modal-refine .secondCategory input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("../images/icon/check-green.svg") no-repeat center center;
  background-color: #fff;
  background-size: contain;
  content: "";
}

.modal-refine .secondCategoryHolder {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
  overflow-y: auto;
  width: calc(50% - 1px);
  height: 600px;
}

.modal-refine .secondCategoryHolder.active {
  display: block;
}

.modal-refine .secondCategoryToggle .list-item {
  position: relative;
  background: #fff;
  color: #393c41;
}

.modal-refine .secondCategoryToggle .list-item:after {
  position: absolute;
  top: 23px;
  right: 22px;
  width: 15px;
  height: 15px;
  background: url("../images/icon/plus.svg") center no-repeat;
  content: "";
  -webkit-transition: background 0.1s;
          transition: background 0.1s;
}

.modal-refine .secondCategoryToggle .list-item.active:after {
  background-image: url("../images/icon/minus.svg");
}

.modal-refine .secondCategoryToggle .list-item:before {
  content: none;
}

.modal-refine .secondCategoryHolderToggle .list-item {
  padding-left: 60px;
  background-color: #fff;
}

.modal-refine .secondCategoryHolderToggle.active .secondCategory {
  display: block;
}

.modal-refine .secondCategoryHolderToggle .secondCategory {
  display: none;
}

.modal-refine .loading {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: calc(100% - 90px);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* モーダル
******************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  visibility: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}

.modal.modalShow {
  position: absolute;
  visibility: visible;
}

.modal.modalShow .modal-inner {
  -webkit-animation: modalShow 0.5s both;
          animation: modalShow 0.5s both;
}

.modal.modalHide {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
}

.modal.modalHide .modal-inner {
  -webkit-animation: modalHide 0.5s both;
          animation: modalHide 0.5s both;
}

.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal .modal-inner {
  position: relative;
  z-index: 1;
}

.modal .section-body-nerrow {
  width: 800px;
}

.modal .movie-holder {
  margin: auto;
  width: calc((405/720*100vh) - 80px);
}

/* ムービーモーダル
******************/
#movieModal {
  padding: 20px;
}

#movieModal .btn-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

#movieModal .btn-close:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/icon/btn-close-gray.svg") no-repeat center center/14px;
  content: "";
}

#movieModal .movie-holder {
  position: relative;
}

#movieModal .movie-holder .modal-ytPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#movieModal .movie-holder .icon-play {
  width: 44px;
  height: 51px;
}

.movie-tab-block {
  margin: 0 auto 60px;
  width: 600px;
  text-align: center;
}

.movie-tab-block .tab-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.movie-tab-block .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 280px;
  height: 60px;
  border: 1px solid #79888b;
  border-radius: 4px;
  color: #79888b;
  font-size: 14px;
}

.movie-tab-block .tab.active {
  border: 1px solid #79888b;
  background: #79888b;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.round-thumb {
  overflow: hidden;
  border-radius: 4px;
}

.btn-movie-modal {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: auto;
  border-radius: 4px;
  background-color: #f9f9f9;
  text-align: left;
}

.movie-button-area .btn-movie-modal {
  padding: 15px;
}

.btn-movie-modal:hover:before {
  background-color: rgba(0, 0, 0, 0);
}

.btn-movie-modal .round-thumb {
  position: relative;
  width: 125px;
  height: 125px;
}

.btn-movie-modal .round-thumb img {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";

  object-fit: cover;
}

.btn-movie-modal .round-thumb:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  content: "";
  -webkit-transition: background-color 0.6s;
          transition: background-color 0.6s;
}

.btn-movie-modal .round-thumb .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 19px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn-movie-modal .item-info {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  margin-left: 20px;
  font-size: 1.6rem;
  line-height: 1.3;
}

.btn-movie-modal .item-info .item-title {
  margin: 5px 0;
}

.movie-list {
  margin: -30px;
}

.movie-list .movie-item {
  padding: 30px;
  width: 33.33333333%;
}

.movie-list .movie-item .movie-item-inner {
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
}

.movie-list .item-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: auto 15px;
  padding: 15px 0;
  min-height: 84px;
  text-align: center;
  font-size: 14px;
}

.movie-list .product-list {
  padding: 20px 15px;
}

.product-list .movie-info-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding: 15px;
  border-radius: 4px;
  background-color: #f9f9f9;
  text-align: left;
}

.product-list .movie-info-holder + .movie-info-holder {
  margin-top: 10px;
}

.product-list .movie-info-holder .round-thumb {
  width: 64px;
  border: 1px solid #eee;
  background-color: #fff;
}

.product-list .movie-info-holder .item-info {
  padding-left: 15px;
  width: 240px;
  font-size: 12px;
}

.product-list .movie-info-holder .item-name {
  word-break: break-all;
}

.movie-holder {
  position: relative;
}

.movie-holder .thumb {
  position: relative;
  margin: auto;
  cursor: pointer;
}

.movie-holder .thumb:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  content: "";
  -webkit-transition: background-color 0.6s;
          transition: background-color 0.6s;
}

.movie-holder .ytPlayer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.movie-holder .lds-spinner {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.movie-holder .time-code {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
}

.movie-holder .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 44px;
  height: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

.movie-holder.pause .icon-play {
  opacity: 1;
  cursor: pointer;
}

.movie-holder.pause .ytPlayer {
  opacity: 0;
  pointer-events: none;
}

.movie-holder.loading .icon-play {
  opacity: 0;
}

.movie-holder.loading .lds-spinner {
  opacity: 1;
}

.movie-holder:hover .thumb:before {
  background-color: transparent;
}

/* 商品レイアウト
******************/
.section-itemlist {
  background: none !important;
}

.section-itemlist .top-block {
  position: relative;
  margin: 60px auto;
  max-width: 1280px;
}

.section-itemlist .top-block .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.section-itemlist .title-area {
  position: relative;
}

.section-itemlist .section-title {
  margin-bottom: 0;
}

.section-itemlist .item-count {
  margin-top: 20px;
  white-space: nowrap;
  font-size: 14px;
}

.section-itemlist .section-body.notfound, .section-itemlist .notfound.section-body-nerrow {
  margin: 0 auto 40px;
}

.section-itemlist .content.notfound {
  display: block;
  margin: auto;
  max-width: 600px;
}

.section-itemlist .content.notfound .icon {
  display: block;
  margin: 0 auto 40px;
  width: 100px;
}

.section-itemlist .content.notfound .area-form {
  width: 600px;
}

.section-itemlist .content.notfound .area-form .block-attention {
  color: #393c41;
  font-size: 16px;
  line-height: 1.6;
}

.section-itemlist .content.notfound .buttonarea {
  display: block;
  margin: 40px auto;
  width: 600px;
}

.section-itemlist .content.notfound .buttonarea .col:first-child {
  padding-left: 10px;
}

.section-itemlist .content.notfound .buttonarea .col:last-child {
  padding-right: 10px;
}

.item-more-info {
  display: inline-block;
  width: 580px;
}

.item-more-info .rearrange-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  margin: 0 -10px;
  align-items: center;
}

.item-more-info .rearrange-block .col {
  width: auto;
  flex: 0 0 auto;
}

.item-more-info .btn {
  width: 280px;
  height: 60px;
}

.item-more-info .btn-refine {
  width: auto;
  height: auto;
  min-height: auto;
  font-size: 1.4rem;
}

.item-more-info .btn-refine .flex {
  min-height: auto;
  padding: 1rem 1rem 1rem 2.8rem;
}

.sortLink-block .sortLink-list {
  display: flex;
}

.sortLink-block .sortLink-list .sortLink-list__item {
  padding: 0.2rem 1rem;
}

.sortLink.active {
  pointer-events: none;
  border-bottom: 2px solid currentColor;
  font-weight: 700;
}

.item-holder {
  margin: auto;
  max-width: 1280px;
}

.item_detail .item-holder, .nav-mypage-list--bottom .item-holder {
  max-width: 1240px;
}

.item-holder .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
  margin: -1.5625%;
  padding: 0;
}

.item-holder .item {
  position: relative;
  display: block;
  padding: 1.5625%;
  width: 25%;
  vertical-align: top;
}

.item-holder .link, .item-holder .base {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 4px;
  background-color: #fafafa;
}

section:not(.section-itemlist) .item-holder a.link {
  display: flex;
  flex-direction: column;
}

section:not(.section-itemlist) .item-holder a.link .text-area {
  display: flex;
  flex-direction: column;
  flex: 1;
}

section:not(.section-itemlist) .item-holder a.link .text-area .name {
  margin-bottom: auto;
}

.item-holder a.link .text-area {
  margin-top: auto;
}

.item-holder .base {
  overflow: hidden;
}

.item-holder .link {
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.item-holder .link:hover {
  opacity: 0.5;
}

.item-holder .pic {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
}

.item-holder .text-area {
  display: block;
  padding: 20px;
  text-align: left;
}

.item-holder .text-area .price {
  font-size: 1.3rem;
}

.item-holder .text-area .price-box {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.item-holder .text-area .price-box .icon-soldout, .item-holder .text-area .price-box .icon-nyuka {
  display: block;
  margin-top: 5px;
  margin-right: 10px;
  padding: 5px;
  border-radius: 4px;
  background: #c0c1c2;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}

.item-holder .text-area .price-box .icon-soldout img, .item-holder .text-area .price-box .icon-nyuka img {
  margin-top: -3px;
}

.item-holder .text-area .price-box .icon-soldout + .price, .item-holder .text-area .price-box .icon-nyuka + .price {
  text-decoration: line-through;
}

.item-holder .text-area .price-box .icon-nyuka {
  padding: 6px 13px;
  font-size: 1rem;
}

.item-holder.member-item-holder .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  margin: -15px;
}

.item-holder.member-item-holder .item {
  padding: 15px;
  width: 16.66667%;
}

.item-holder.member-item-holder .pic {
  position: relative;
  padding-top: 100%;
  width: 100%;
}

.item-holder.member-item-holder .pic .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 51.66667%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.item-holder.member-item-holder .product-name {
  margin-bottom: 0;
  text-align: center;
}

.nav-mypage-list--bottom .item-holder .text-area {
  padding: 15px 10px;
}

.item-holder .buttonarea {
  margin-top: 0;
  padding: 0 20px 20px;
}

.item-holder .buttonarea .row {
  margin: 0 -7.5px;
}

.item-holder .buttonarea .row .col {
  padding: 0 7.5px;
}

.item-holder .buttonarea .row .del {
  padding: 0 7.5px;
  width: 55px;
}

.icon-holder {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 9.67742%;
  padding-left: 4.83871%;
  width: 100%;
}

.icon-holder .icon {
  float: left;
  margin: 0;
  padding: 12px 10px;
  min-width: 47px;
  border-radius: 0 3px 3px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}

.icon-holder .icon + .icon {
  display: none;
}

html.IE .icon-holder .icon {
  padding: 14px 10px 11px;
}

.icon-holder .icon:empty {
  display: none;
}

.icon-holder .icon-new {
  background-color: rgba(121, 136, 139, 0.85);
  color: #fff;
}

.icon-holder .icon-status {
  background-color: rgba(45, 47, 51, 0.85);
  color: #fff;
}

.icon-holder .icon-status span + span {
  display: none;
  margin-left: 5px;
}

.icon-holder .icon-soldout {
  background-color: rgba(192, 193, 194, 0.85);
  color: #fff;
}

.icon-holder-two {
  position: absolute;
  top: 0;
  right: 16px;
  padding-top: 9.67742%;
  padding-right: 4.83871%;
}

.icon-holder-two .icon {
  float: left;
  margin: 0;
  padding: 8px 10px;
  min-width: 47px;
  border-radius: 3px;
  background-color: beige;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;;
}

.icon-holder-two .icon + .icon {
  display: none;
}

html.IE .icon-holder-two .icon {
  padding: 14px 10px 11px;
}

.icon-holder .icon:empty {
  display: none;
}

/*Keywords item_detail page*/
.icon-holder-product {
}

.icon-holder-product .icon {
  margin: 0;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}

.icon-holder-product .icon + .icon {
  display: none;
}

html.IE .icon-holder-product .icon {
  padding: 14px 10px 11px;
}

.icon-holder .icon:empty {
  display: none;
}

.icon-holder-product .icon.free-tag {
  justify-content: center;
  margin-bottom: 8px;
  padding: 8px 14px;
  letter-spacing: 0;
  font-size: 100px;
  line-height: 1.2;
}

.icon-holder-product .icon.free-tag + .icon {
  display: block;
}

.icon-holder-product .status-icon-two .icon {
  border-radius: 3px;
  background-color: beige;
  color: #2c2e33;
  font-size: 15px;
}

.icon-holder-product .status-icon-two {
  position: absolute;
  top: 25px;
  right: 10px;
  z-index: 3;
}

/* 枠とマージン
******************/
.wide-wrap {
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
  max-width: 1290px;
}

.wide-wrap + .area-form {
  margin-top: 60px;
}

.section {
  margin: auto;
  background-color: #fff;
}

.section + .section {
  margin-top: 40px;
}

.section-title-group {
  margin-bottom: 48px;
  text-align: center;
}
.section-title-group .section-title {
  font-size: 3rem;
}
.section-title-group .section-subtitle {
  font-size: 1.4rem;
  margin-top: 24px;
}

.modal .section-body, .modal .section-body-nerrow, .modal .section-body-wide {
  margin-top: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.modal .buttonarea {
  margin-top: 60px;
}

.section-body, .section-body-nerrow, .section-body-wide {
  margin: auto;
  margin-top: 20px;
  border-radius: 4px;
  background-color: #fff;
}

.section-body:before, .section-body-nerrow:before, .section-body-wide:before {
  display: block;
  margin-top: -1px;
  margin-bottom: 60px;
  width: 100%;
  height: 1px;
  content: "";
}

.section-body:after, .section-body-nerrow:after, .section-body-wide:after {
  display: block;
  margin-top: 60px;
  margin-bottom: -1px;
  width: 100%;
  height: 1px;
  content: "";
}

.wrap.cart_seisan .section-body, .wrap.cart_seisan .section-body-nerrow, .wrap.cart_confirm .section-body, .wrap.cart_confirm .section-body-nerrow {
  margin-top: 15px;
}

.wrap.cart_seisan .section-body.top, .wrap.cart_seisan .top.section-body-nerrow, .wrap.cart_confirm .section-body.top, .wrap.cart_confirm .top.section-body-nerrow {
  margin-top: 60px;
}

/** border付き枠css **/
.section-body-nerrow .info-block, .wrap.item_detail .item-detail-block .border {
  padding: 22px;
  width: 100%;
  border: 2px solid #dadada;
  border-radius: 4px;
}

.section-body-wide {
  padding: 0 100px;
  max-width: 1290px;
}

.section-body-wide + .section-body-wide {
  margin-top: 30px;
}

.section-body-wide .title {
  font-weight: normal;
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-body-nerrow {
  padding: 0 100px;
  max-width: 800px;
}

.section-body-nerrow + .section-body-nerrow {
  margin-top: 30px;
}

.section-body-nerrow .sub-ttl, .section-body-nerrow .text {
  font-size: 1.6rem;
}

.section-body-nerrow .container + .container {
  margin-top: 65px;
}

.section-body-nerrow .title {
  font-weight: normal;
  font-size: 1.6rem;
}

.section-body-nerrow .title-section {
  font-weight: normal;
}

.section-body-nerrow .ttl {
  margin: 20px auto;
  font-size: 1.8rem;
}

.section-body-nerrow .ttl.center {
  text-align: center;
}

.section-body-nerrow .text {
  margin: 20px auto 0;
}

.section-body-nerrow .text + .text {
  margin: 0;
}

.section-body-nerrow .text + .text.mt15 {
  margin-top: 15px;
}

.section-body-nerrow .text + .attention {
  margin-top: 20px;
}

.wrap.company .section-body-nerrow .text, .wrap.about_shiro .section-body-nerrow .text, .wrap.tokushou .section-body-nerrow .text {
  margin: 0;
}

.section-body-nerrow .attention, .section-body-nerrow .text {
  font-size: 1.6rem;
}

.section-body-nerrow .min-attention {
  margin: 20px auto 0;
  font-size: 1.4rem;
}

.section-body-nerrow .min-attention + .min-attention {
  margin-top: 0;
}

.section-body-nerrow .text-link {
  display: inline-block;
  margin: 20px auto;
  font-size: 1.4rem;
}

.section-body-nerrow .btn-gray {
  margin-top: 30px;
}

.section-body-nerrow .article-block a.blog {
  text-decoration: underline;
}

.section-body-nerrow .article-block a.blog:hover {
  text-decoration: none;
}

.section-body-nerrow .article-block .title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
}

.section-body-nerrow .col-block {
  display: block;
  width: 100%;
}

.section-body-nerrow .col-block tr {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 15px 0;
  width: 100%;
  border-bottom: 2px solid #dadada;
  font-size: 1.6rem;
  line-height: 1.6;
}

.section-body-nerrow .col-block tr:last-of-type {
  border-bottom: 0;
}

.section-body-nerrow .col-block .left {
  width: 210px;
}

.section-body-nerrow .col-block .right {
  width: 390px;
}

.section-body-nerrow .col-block .right .text.list {
  padding-left: 1em;
  text-indent: -1em;
}

.section-body-nerrow .col-block .right .attention {
  margin: 10px auto 15px;
  padding-left: 2.5em;
  text-indent: -1.5em;
  font-size: 1.4rem;
}

.section-body-nerrow .info-block {
  margin: 20px auto 0;
}

.section-body-nerrow .info-block .text {
  margin: 0;
}

.section-body-nerrow .info-block .text.top {
  font-weight: bold;
}

.section-body-nerrow .info-block.mini {
  width: 300px;
}

.section-body-nerrow .cost-block {
  margin: 20px auto;
  border: 2px solid #dadada;
  border-radius: 4px;
}

.section-body-nerrow .cost-block.mini {
  width: 300px;
}

.section-body-nerrow .cost-block .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.section-body-nerrow .cost-block .inner.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin: auto;
  width: 100%;
}

.section-body-nerrow .cost-block .inner.row .top {
  border-bottom: 2px solid #dadada;
}

.section-body-nerrow .cost-block .inner + .inner {
  border-top: 2px solid #dadada;
}

.section-body-nerrow .cost-block .inner .top, .section-body-nerrow .cost-block .inner .bottom {
  width: 100%;
}

.section-body-nerrow .cost-block .inner .left, .section-body-nerrow .cost-block .inner .right {
  width: 50%;
}

.section-body-nerrow .cost-block .inner .top, .section-body-nerrow .cost-block .inner .bottom, .section-body-nerrow .cost-block .inner .left, .section-body-nerrow .cost-block .inner .right {
  display: block;
  padding: 15px;
  text-align: center;
}

.section-body-nerrow .cost-block .inner .top.two-line, .section-body-nerrow .cost-block .inner .bottom.two-line, .section-body-nerrow .cost-block .inner .left.two-line, .section-body-nerrow .cost-block .inner .right.two-line {
  padding-top: 0;
  padding-bottom: 0;
}

.section-body-nerrow .cost-block .inner .left {
  border-right: 2px solid #dadada;
}

/** border付き枠 **/
.link-ext:not(.btn-def) {
  margin: 0 3px;
  text-decoration: underline;
}

.link-ext:not(.btn-def):hover {
  text-decoration: none;
}

.link-ext:not(.btn-def) .icon-target {
  margin-left: 2px;
}

.link-ext .icon-target {
  display: inline-block;
  margin-left: 5px;
  width: 9px;
  height: 9px;
  background: url(../images/icon/icon-target-black.svg) no-repeat center center/contain;
}

.link-ext .icon-target.white {
  background: url(../images/icon/icon-target.svg) no-repeat center center/contain;
}

.text-link {
  border-bottom: 1px solid #79888b;
  color: #79888b;
}

.text-link:hover {
  border-bottom: 1px solid transparent;
  color: #79888b;
}

.area-result {
  margin: auto;
  width: 800px;
}

.area-result .container {
  max-width: 600px;
}

.area-freeshipping {
  padding-bottom: 40px;
  font-size: 16px;
}

.area-freeshipping span + a:before {
  display: inline-block;
  margin-right: 7px;
  color: #393c41;
  content: "/";
  vertical-align: text-bottom;
}

.area-freeshipping a, .area-freeshipping span {
  display: inline-block;
  vertical-align: middle;
}

.area-freeshipping a {
  position: relative;
  color: #79888b;
}

.area-freeshipping .icon-target {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.area-freeshipping .icon-target img {
  display: block;
}

.wrap.cart_seisan .area-freeshipping {
  margin-bottom: 40px;
  padding-bottom: 0;
  font-size: 14px;
}

.wrap.cart_seisan .area-freeshipping .link:not(.link-inline-outer) {
  display: block;
  margin: auto;
  width: 160px;
  border-bottom: 1px solid #79888b;
}

.wrap.cart_seisan .area-freeshipping .link.gift:not(.link-inline-outer) {
  width: 205px;
}

.wrap.cart_seisan .area-freeshipping .link.gift.link-inline-outer {
  text-align: center;
}

.wrap.cart_seisan .area-freeshipping .link:hover:not(.link-inline-outer) {
  border-bottom: 1px solid transparent;
}

.container {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.container.width-margin {
  margin-top: 30px;
}

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

.container + .area-freeshipping {
  margin-top: 0;
}

.section-body + .buttonarea, .section-body-nerrow + .buttonarea {
  margin-top: 60px;
}

.block-recaptcha {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 60px;
}

.wrap.member_credit_entry_input .block-recaptcha {
  margin-top: 35px;
}

.wrap.apply_input .block-recaptcha {
  margin-top: 60px;
}

.buttonarea {
  margin-top: 40px;
}

.buttonarea.last {
  margin: 100px auto;
  max-width: 600px;
}

.buttonarea.formlast {
  margin: 60px auto 100px;
  max-width: 600px;
}

.wrap.member_taikai .buttonarea {
  margin-top: 30px;
}

.buttonarea .btn + .btn {
  margin-top: 30px;
}

.buttonarea .link-text, .buttonarea .link-text-underline {
  margin-top: 30px;
}

.buttonarea .text-information {
  margin-top: 30px;
  color: #393c41;
}

.buttonarea + .buttonarea {
  margin-top: 60px;
}

.buttonarea.login-new {
  margin-top: 50px;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.block + .block {
  margin-top: 20px;
}

/* ブランドバナーエリア
******************/
.section-banner {
  margin: 0 auto;
  background: none;
}

.section-banner .top-text {
  margin: 0;
  padding: 40px 0;
  text-align: center;
  font-size: 1.2rem;
}

.banner-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1440px;
}

.banner-inner .item {
  display: block;
  padding: 0;
  width: 20%;
  border: 0;
  font-size: 0;
}

.banner-inner .item .btn {
  position: relative;
  display: block;
  border: none;
}

.banner-inner .item .text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 24px;
}

.wrap.cart_seisan .section-banner, .wrap.cart_result .section-banner, .wrap.cart_confirm .section-banner, .wrap.cart_pre .section-banner, .wrap.kessai_link .section-banner, .wrap.kessai_result .section-banner, .wrap.password .section-banner, .wrap.member_confirm .section-banner, .wrap.mail_validate .section-banner, .wrap.address_add .section-banner, .wrap.address_input .section-banner, .wrap.address_confirm .section-banner, .wrap.member_review_edit .section-banner, .wrap.member_review_confirm .section-banner, .wrap.shiro_send_order_edit .section-banner, .wrap.shiro_send_order_confirm .section-banner, .wrap.member_taikai_result .section-banner, .wrap.order-cancel:not(.shiro_some_order_cancel_result) .section-banner {
  display: none;
}

.wrap.cart_seisan .breadcrumb-block, .wrap.cart_result .breadcrumb-block, .wrap.cart_confirm .breadcrumb-block, .wrap.cart_pre .breadcrumb-block, .wrap.kessai_link .breadcrumb-block, .wrap.kessai_result .breadcrumb-block, .wrap.password .breadcrumb-block, .wrap.member_confirm .breadcrumb-block, .wrap.mail_validate .breadcrumb-block, .wrap.address_add .breadcrumb-block, .wrap.address_input .breadcrumb-block, .wrap.address_confirm .breadcrumb-block, .wrap.member_review_edit .breadcrumb-block, .wrap.member_review_confirm .breadcrumb-block, .wrap.shiro_send_order_edit .breadcrumb-block, .wrap.shiro_send_order_confirm .breadcrumb-block, .wrap.member_taikai_result .breadcrumb-block, .wrap.order-cancel:not(.shiro_some_order_cancel_result) .breadcrumb-block {
  margin-top: 80px;
}

.wrap.address_result .section-banner, .wrap.member_result .section-banner, .wrap.member_review_result .section-banner, .wrap.shiro_send_order_result .section-banner, .wrap.shiro_some_order_cancel_result .section-banner, .wrap.member_taikai .section-banner, .wrap.brand .section-banner, .wrap.topics .section-banner {
  margin-top: 80px;
}

.wrap.member_mypage .section-banner {
  margin-top: 120px;
}

.breadcrumb-block {
  margin: auto;
  padding: 40px;
  max-width: 1440px;
}

.breadcrumb-block .item {
  display: inline-block;
}

.breadcrumb-block .item:before {
  display: inline-block;
  content: "/";
}

.breadcrumb-block .item.first:before {
  content: none;
}

.breadcrumb-block .link {
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.breadcrumb-block .link:hover {
  opacity: 0.5;
}

.wrap.address_input header.header, .wrap.address_confirm header.header, .wrap.address_result header.header, .wrap.order-cancel header.header, .wrap.order-change header.header, .wrap.member_input header.header, .wrap.member_confirm header.header, .wrap.member_result header.header, .wrap.member_review_edit header.header, .wrap.member_review_confirm header.header, .wrap.member_review_result header.header, .wrap.apply header.header {
  margin-bottom: 0;
}

.wrap.address_input .cart-step .inner, .wrap.address_confirm .cart-step .inner, .wrap.address_result .cart-step .inner, .wrap.order-cancel .cart-step .inner, .wrap.order-change .cart-step .inner, .wrap.member_input .cart-step .inner, .wrap.member_confirm .cart-step .inner, .wrap.member_result .cart-step .inner, .wrap.member_review_edit .cart-step .inner, .wrap.member_review_confirm .cart-step .inner, .wrap.member_review_result .cart-step .inner, .wrap.apply .cart-step .inner {
  height: 100px;
}

.wrap.address_input .cart-step + div, .wrap.address_input .cart-step + section, .wrap.address_input .cart-step + form, .wrap.address_confirm .cart-step + div, .wrap.address_confirm .cart-step + section, .wrap.address_confirm .cart-step + form, .wrap.address_result .cart-step + div, .wrap.address_result .cart-step + section, .wrap.address_result .cart-step + form, .wrap.order-cancel .cart-step + div, .wrap.order-cancel .cart-step + section, .wrap.order-cancel .cart-step + form, .wrap.order-change .cart-step + div, .wrap.order-change .cart-step + section, .wrap.order-change .cart-step + form, .wrap.member_input .cart-step + div, .wrap.member_input .cart-step + section, .wrap.member_input .cart-step + form, .wrap.member_confirm .cart-step + div, .wrap.member_confirm .cart-step + section, .wrap.member_confirm .cart-step + form, .wrap.member_result .cart-step + div, .wrap.member_result .cart-step + section, .wrap.member_result .cart-step + form, .wrap.member_review_edit .cart-step + div, .wrap.member_review_edit .cart-step + section, .wrap.member_review_edit .cart-step + form, .wrap.member_review_confirm .cart-step + div, .wrap.member_review_confirm .cart-step + section, .wrap.member_review_confirm .cart-step + form, .wrap.member_review_result .cart-step + div, .wrap.member_review_result .cart-step + section, .wrap.member_review_result .cart-step + form, .wrap.apply .cart-step + div, .wrap.apply .cart-step + section, .wrap.apply .cart-step + form {
  margin-top: 15px;
}

/* ページャー
******************/
.list-pager {
  display: block;
  margin: 40px auto;
  max-width: 1240px;
  text-align: right;
}

.list-pager .inner {
  display: block;
  margin: -5px;
}

.list-pager .list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.list-pager .list a, .list-pager .list span {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.list-pager .list .icon-page-next, .list-pager .list .icon-page-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: auto;
  width: 6px;
  height: 10px;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.list-pager .list .current, .list-pager .list a {
  position: relative;
  margin: 5px;
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  text-align: center;
  cursor: pointer;
  pointer-events: painted;
}

.list-pager .list .current:first-of-type, .list-pager .list .current:last-of-type, .list-pager .list a:first-of-type, .list-pager .list a:last-of-type {
  width: 40px;
  color: #393c41;
}

.list-pager .list .current:first-of-type:after, .list-pager .list .current:last-of-type:after, .list-pager .list a:first-of-type:after, .list-pager .list a:last-of-type:after {
  display: inline-block;
  color: #393c41;
  font-size: 1.4rem;
}

.list-pager .list .current.current, .list-pager .list a.current {
  background: #79888b;
  color: #fff !important;
  cursor: default;
  pointer-events: none;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* コンテンツがウィンドウより低い時
************************/
.contentsHeightLow {
  height: 100%;
}

.contentsHeightLow body {
  height: 100%;
}

.contentsHeightLow .wrap {
  position: relative;
  height: 100%;
}

.contentsHeightLow .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.wrap.shiro_beauty .title-svg.shiro-beauty {
  width: 308px;
}

/* swiper共通
************************/
.swiper-container .item-box {
  display: block;
}

html.desktop.lock {
  overflow: hidden;
}

html.desktop {
  overflow-y: scroll;
}

body.menuShow .wrap, body.refineShow .wrap, body.colorModalShow .wrap, body.modalShow .wrap {
  position: fixed;
  width: 100%;
}

.area-form {
  margin: auto;
  width: 800px;
}

.area-form.frame-radius #error {
  border-radius: 4px;
}

.area-form .inner {
  position: relative;
  margin: auto;
  width: 600px;
}

.area-form .container {
  position: relative;
  max-width: 600px;
}

.area-form .container + #error {
  margin-top: 30px;
}

.area-form .container .attention {
  margin-top: 30px;
  text-align: center;
}

.area-form .container .attention.wrapping {
  margin-top: 20px;
  text-align: left;
}

.area-form .order-num {
  display: block;
  margin: 30px auto;
  color: #79888b;
  text-align: center;
  font-size: 1.6rem;
}

.area-form .send-error {
  margin-top: 20px;
}

.area-form #error {
  width: auto;
}

.area-form #error .message {
  color: #963e56;
  font-size: 14px;
  line-height: 1.8em;
}

.area-form #error .message.confirm {
  color: #79888b;
}

.wrap.mail_validate .area-form #error, .wrap.password_reminder .area-form #error {
  margin-top: 70px;
}

.wrap.wishlist .area-form #error, .wrap.cart_index .area-form #error, .wrap.member_history .area-form #error, .wrap.shiro_send_order_result .area-form #error {
  display: none;
}

.bnr-block {
  position: relative;
  display: block;
  margin: 60px auto;
  max-width: 1160px;
}

.bnr-block a {
  display: block;
}

.bnr-block img {
  border-radius: 4px;
}

.bnr-block .text-block {
  position: absolute;
  top: 50%;
  left: 39.65517%;
  display: inline-block;
  text-align: left;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bnr-block .text-block .ttl {
  margin-bottom: 20px;
  font-size: 2rem;
}

.bnr-block .text-block .text {
  font-size: 1.4rem;
}

.bnr-block .text-block .text + .text {
  margin-top: 30px;
}

/* 各ページCSS
************************/
/* ショップページ
************************/
html.IE .wrap.shoplist {
  padding-top: 94px;
}

.wrap.shoplist .bg-white {
  border-radius: 4px;
}

.wrap.shoplist .nav-local {
  margin-bottom: 60px;
}

.wrap.shoplist .nav-local .row {
  margin: 0 -4px;
}

.wrap.shoplist .nav-local .row .col {
  padding: 0 4px;
}

.wrap.shoplist .nav-local .btn-white {
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}

.wrap.shoplist .nav-local .btn-white.active {
  border-color: #79888b;
  background-color: #79888b;
  color: #fff;
}

.wrap.shoplist .nav-container {
  margin-top: 8rem;
}

.wrap.shoplist .nav-container .nav-container__banner {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

.wrap.shoplist .nav-filter {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 46px;
  margin-bottom: -40px;
}

.wrap.shoplist .nav-filter .filter {
  position: relative;
  cursor: pointer;
}

.wrap.shoplist .nav-filter .filter:not(:first-of-type)::before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #c0c1c2;
  content: "";
  vertical-align: middle;
}

.wrap.shoplist .nav-filter .filter.active {
  cursor: default;
}

.wrap.shoplist .nav-filter .filter.active .text {
  color: #c0c1c2;
}

.wrap.shoplist .nav-filter .filter .text {
  display: block;
  padding: 10px 30px;
  font-size: 1.2rem;
  font-family: "TTCommons-Regular";
  -webkit-transition: color 0.3s;
          transition: color 0.3s;
}

.wrap.shoplist .icon-holder .icon-new, .wrap.shoplist .icon-holder .icon-renewal {
  background-color: rgba(121, 136, 139, 0.85);
}

.wrap.shoplist .category-shoplist .shop-area .title-block .link {
  display: inline-block;
  min-width: 25%;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.wrap.shoplist .category-shoplist .shop-area .title-block .link:hover {
  opacity: 0.5;
}

.wrap.shoplist .single-post .icon {
  padding: 15px;
  font-size: 1.4rem;
}

.wrap.shoplist .single-post .icon-renewal {
  padding: 15px 10px;
}

.wrap.shoplist .shop-area {
  margin-top: 100px;
}

.wrap.shoplist .shop-area .area-form {
  margin-top: 60px;
}

.wrap.shoplist .list-shop {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px;
}

.wrap.shoplist .list-shop .item {
  position: relative;
  padding: 1.5625%;
  width: 25%;
}

.wrap.shoplist .list-shop .item .inner {
  border-radius: 4px;
  background-color: #fff;
}

.wrap.shoplist .shop-area .list-shop .item .inner {
  position: relative;
}

.wrap.shoplist .list-shop .item .inner .icon-holder {
  top: 12px;
  padding-top: 0;
  padding-left: 0;
}

.wrap.shoplist .list-shop .link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 8px;
  min-height: 50px;
}

.wrap.shoplist .list-shop .link--overseas {
  min-height: 34px;
}

.wrap.shoplist .list-shop .pic {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.wrap.shoplist .list-shop .info {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 7.14286%;
  min-height: 188px;
}

.wrap.shoplist .list-shop .title {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.wrap.shoplist .tag-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -3px;
  margin-bottom: 30px;
}

.wrap.shoplist .tag-holder .tag {
  padding: 3px;
  width: 33.333333333%;
}

.wrap.shoplist .tag-holder .tag .btn, .wrap.shoplist .tag-holder .tag .btn .flex {
  background-color: #79888b;
  color: #fff;
  word-break: keep-all;
  letter-spacing: 0.05rem;
  font-size: 1rem;
  font-family: "TTCommons-Regular";
  cursor: default;
}

.wrap.shoplist .tag-holder .tag .btn:hover, .wrap.shoplist .tag-holder .tag .btn .flex:hover {
  opacity: 1;
}

.wrap.shoplist .tag-holder--shopinfo {
  margin-bottom: 0;
  justify-content: flex-end;
}

.wrap.shoplist .tag-holder--shopinfo .tag {
  width: auto;
}

.wrap.shoplist .tag-holder--shopinfo .tag .btn {
  font-size: 1rem;
  background-color: #eee;
  color: #393C41;
  display: inline-block;
  padding: 0 0.4rem;
  border-radius: 0;
  width: auto;
}

.wrap.shoplist .shop-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  align-items: flex-start;
}

.wrap.shoplist .shop-block > .pic, .wrap.shoplist .shop-block > .shop-map, .wrap.shoplist .shop-block > .shop-info {
  width: 50%;
}

.wrap.shoplist .shop-block.wide-map .shop-map {
  width: 100%;
  border-radius: 4px;
}

.wrap.shoplist .shop-block.wide-map .shop-info {
  display: none;
}

.wrap.shoplist .shop-block > .pic {
  overflow: hidden;
  border-radius: 4px 0 0 0;
}

.wrap.shoplist .shop-block .icon-holder {
  z-index: 2;
  /* margin-left: -0.86957%; */
  /* padding-top: 1.3913%; */
  padding-top: 0;
  padding-left: 0;
  top: 18px;
}

.wrap.shoplist .shop-map {
  position: relative;
  overflow: hidden;
  padding-top: 38.70968%;
  border-radius: 4px 0 0 4px;
}

.wrap.shoplist .shop-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap.shoplist .shop-info {
  padding: 50px;
}

.wrap.shoplist .shop-info .title {
  margin-bottom: 30px;
  font-size: 20px;
}

.wrap.shoplist .shop-info .title .tax-free-text {
  display: inline-block;
  background-color: #eee;
  padding: 0 0.4rem;
  font-size: 1.2rem;
}

.wrap.shoplist .shop-info .title .tax-free-text + .tax-free-text {
  margin-left: 1rem;
}

.wrap.shoplist .shop-info .info-icon {
  position: relative;
  margin-bottom: 22px;
  padding-left: 40px;
}

.wrap.shoplist .shop-info .info-icon:before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../images/icon/pin.svg") no-repeat center center/30px auto;
  content: "";
}

.wrap.shoplist .shop-info .info-icon.tel:before {
  background-image: url("../images/icon/tel.svg");
  background-size: 30px auto;
}

.wrap.shoplist .shop-info .info-icon.info:before {
  background-image: url("../images/icon/calendar.svg");
  background-size: 30px auto;
}

.wrap.shoplist .shop-info .info-icon.car:before {
  background-image: url("../images/icon/car.svg");
  background-size: 30px auto;
}

.wrap.shoplist .shop-info .info-icon.train:before {
  background-image: url("../images/icon/train.svg");
  background-size: 30px auto;
}

.wrap.shoplist .shop-info .tag-holder .tag {
  width: 82px;
}

.wrap.shoplist .shop-info .tag-holder .tag .flex {
  letter-spacing: 0.05rem;
}

.tag-holder--small .tag .btn-secondary.btn-sm,.tag-holder--small .tag .btn-secondary .flex {
  min-height: 30px;
}

.wrap.shoplist .shop-info .info-item .text {
  margin-bottom: 1.5rem;
}

.wrap.shoplist .shop-info .info-item .info-item__banner {
  display: block;
  max-width: 300px;
}

.wrap.shoplist .shop-info .tag-holder .tag {
  width: calc(100% / 6);
}

.wrap.shoplist .shop-block--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
        'shop-pic shop-info'
        'shop-concept shop-info';
}

.wrap.shoplist .shop-block--grid > .pic {
  width: 100%;
  grid-area: shop-pic;
}

.wrap.shoplist .shop-block--grid > .shop-info {
  width: 100%;
  grid-area: shop-info;
}

.wrap.shoplist .shop-concept {
  grid-area: shop-concept;
  padding: 5rem;
  background-color: #fafafa;
  text-align: justify;
}

.wrap.shoplist .shop-concept .title {
font-size: 1.6rem;
font-weight: 400;
margin-bottom: 2rem;
line-height: 1.6;
}
.wrap.shoplist .shop-concept .text {
  line-height: 1.6;
}

.wrap.shoplist .bg-white + .buttonarea {
  margin: 100px auto;
  max-width: 600px;
}

.wrap.apply .section-body.form, .wrap.apply .form.section-body-nerrow {
  background: transparent;
}

.wrap.apply .section-body.form:before, .wrap.apply .form.section-body-nerrow:before, .wrap.apply .section-body.form:after, .wrap.apply .form.section-body-nerrow:after {
  display: none;
}

.wrap.apply .section-body.form .title-section, .wrap.apply .form.section-body-nerrow .title-section {
  margin: 0;
  padding: 40px 0 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: #fff;
}

.wrap.apply form .section-body, .wrap.apply form .section-body-nerrow {
  margin-top: 0;
}

.wrap.apply_top .container + .container {
  margin-top: 60px;
}

.wrap.apply_top .buttonarea + .text {
  margin-top: 20px;
}

.wrap.apply_top .btn-secondary .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.wrap.apply_top .btn-secondary .text {
  line-height: 1.6;
}

.wrap.apply_top .btn-secondary .text.top {
  font-size: 1.6rem;
}

.wrap.apply_top .btn-secondary .text.bottom {
  font-size: 1.2rem;
}

.wrap.apply:not(.apply_top) .text-lead + .info-box {
  margin-top: 30px;
}

.wrap.apply:not(.apply_top) .info-box {
  padding: 20px 15px;
  border: 2px solid #dadada;
  border-radius: 4px;
  line-height: 1.8;
}

.wrap.apply:not(.apply_top) .tel-area {
  text-align: center;
}

.wrap.apply:not(.apply_top) .phone-number {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 20px auto;
}

.wrap.apply:not(.apply_top) .phone-number .pic {
  width: 43px;
}

.wrap.apply:not(.apply_top) .phone-number .text-num {
  margin-left: 15px;
  font-weight: bold;
  font-size: 22px;
}

.wrap.apply:not(.apply_top) .buttonarea {
  margin: 60px auto;
}

/*
.wrap.topics .container {
  max-width: 1000px;
}
*/

.wrap.topics .buttonarea {
  margin: 60px auto 0;
  margin-bottom: 0;
  padding: 0;
  width: 600px;
}

.wrap.topics .title-en {
  padding-bottom: 0;
  font-weight: normal;
  font-size: 6.4rem;
}

.wrap.topics .text-line-1 {
  margin: auto;
  margin-top: 15px;
  max-width: 600px;
  max-height: 24px;
}

.wrap.topics .text-line-1 * {
  display: inline;
  margin: 0;
}

.wrap.topics .maroon {
  color: #393c41 !important;
  font-size: 1.2rem;
}

.wrap.topics .maroon.red {
  color: maroon !important;
}

.wrap.topics .maroon b {
  font-weight: normal !important;
}

.wrap.topics .topics-list + .topics-list {
  margin-top: 30px;
}

.wrap.topics .topics-list {
  margin: auto;
  width: 800px;
  border-radius: 4px;
}

.wrap.topics .topics-list .text-line-1 img, .wrap.topics .topics-list .text-line-1 svg {
  display: none;
}

.wrap.topics .topics {
  padding: 0 60px;
}

.wrap.topics .date.number {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-left: auto;
}

.wrap.topics .category-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -5px;
}

.wrap.topics .category {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 5px;
  padding: 10px 15px;
  height: 50px;
  border-radius: 3px;
  color: #fff;
  font-size: 1.4rem;
}

.wrap.topics .category.status {
  background: rgba(121, 136, 139, 0.85);
}

.wrap.topics .category.cate-name {
  background: rgba(45, 47, 51, 0.85);
}

.wrap.topics .pic {
  margin: 30px auto;
  max-width: 600px;
}

.wrap.topics .text-block {
  display: block;
  margin: 30px auto 20px;
  max-width: 600px;
}

.wrap.topics .text-block .date {
  font-size: 1.2rem;
}

.wrap.topics .text-block .title {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}

.wrap.topics_list .section-body .inner, .wrap.topics_list .section-body-nerrow .inner {
  display: block;
}

.wrap.topics_list .section-body.topics, .wrap.topics_list .topics.section-body-nerrow {
  display: block;
}

.wrap.topics_list .section-body.topics .inner, .wrap.topics_list .topics.section-body-nerrow .inner {
  position: relative;
  display: block;
}

.wrap.topics_list .section-body.topics .topics-link, .wrap.topics_list .topics.section-body-nerrow .topics-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  min-height: 95px;
  max-height: 750px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 0.3s;
          transition: background-color 0.3s;
}

.wrap.topics_list .section-body.topics .topics-link:hover, .wrap.topics_list .topics.section-body-nerrow .topics-link:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.wrap.topics_list .text-line-1 {
  position: relative;
  padding-right: 90px;
  font-size: 1.6rem;
}

.wrap.topics_list .text-line-1 br, .wrap.topics_list .text-line-1 style, .wrap.topics_list .text-line-1 .btn {
  display: none;
}

.wrap.topics_list .text-line-1 .inner {
  display: inline;
}

.wrap.topics_list .text-line-1 a:not(.inner) {
  cursor: default;
  pointer-events: none;
}

.wrap.topics_list .text-line-1 .read-more {
  position: absolute;
  top: 0;
  right: 0;
  color: #79888b;
  font-size: 1.6rem;
}

.wrap.topics_list .text-line-1 .border {
  border: 0 !important;
  display: none;
}

.wrap.topics_list .text-line-1 .item-holder, .wrap.topics_list .text-line-1 .buttonarea {
  display: none;
}

.wrap.topics_list .text-line-1 table {
  display: none !important;
}

.wrap.topics_detail .section-body-nerrow {
  padding: 0;
}

.wrap.topics_detail .topics {
  margin: auto;
  max-width: 800px;
}

.wrap.topics_detail .topics .pic {
  margin: 40px auto;
  max-width: 600px;
}

.wrap.topics_detail .topics img {
  display: block;
  max-width: 600px;
  height: auto;
}

.wrap.topics_detail .topics .round img {
  margin: 0 !important;
}

.wrap.topics_detail .topics .link {
  color: #78999b;
  text-decoration: underline;
}

.wrap.topics_detail .topics .link:hover {
  text-decoration: none;
}

.wrap.topics_detail .text-block {
  margin-top: 40px;
  margin-bottom: 0;
}

.wrap.topics_detail .text-block .title {
  margin: 0 auto 40px;
  text-align: center;
  font-size: 2.2rem;
}

.wrap.topics_detail .text {
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.wrap.topics_detail .text strong {
  display: block;
}

.wrap.topics_detail .text .border {
  margin: 30px auto;
  padding: 20px;
}

.wrap.topics_detail .text .top-title {
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

.wrap.topics_detail .text .text-content {
  margin: 30px auto;
  text-align: left;
  font-size: 1.6rem;
}

.wrap.topics_detail .movie-list {
  display: block;
  margin: 40px auto;
  text-align: center;
}

.wrap.topics_detail .movie-list .movie-holder {
  display: inline-block;
}

.wrap.topics_detail .btn-movie-modal {
  margin: 20px auto;
}

.wrap.topics_detail .btn-movie-modal .round-thumb .icon-play {
  width: 30px;
  height: 34px;
}

.wrap.topics_detail .item-holder {
  margin: 50px auto;
  max-width: 600px;
}

.wrap.topics_detail .item-holder .inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.wrap.topics_detail .item-holder .item {
  padding: 20px 10px;
  width: auto;
}

.wrap.topics_detail .item-holder .base {
  width: 280px;
  border: 2px solid #f9f9f9;
  background-color: #f9f9f9;
}

.wrap.topics_detail .item-holder .pic, .wrap.topics_detail .item-holder img {
  margin: 0;
}

.wrap.topics_detail .item-holder .text-area {
  padding: 30px 20px;
  text-align: center;
}

.wrap.topics_detail .item-holder .text-area .text {
  padding: 0;
  text-align: left;
}

.wrap.topics_detail .item-holder .text-area .color {
  margin: 10px auto;
}

.wrap.topics_detail .item-holder .price-box {
  display: block;
}

.wrap.topics_detail .item-holder .price-box + * {
  margin-top: 20px;
}

.wrap.topics_detail .item-holder .link {
  color: #393c41;
  text-decoration: none;
}

.wrap.topics_detail .item-holder .icon-holder {
  padding-top: 10.71429%;
  padding-left: 1.78571%;
}

.wrap.topics_detail .item-holder .inner .item:nth-child(odd) .icon-holder {
  padding-left: 1px;
}

.wrap.topics_detail .item-holder .inner .item:nth-child(even) .icon-holder {
  padding-left: 11px;
}

.wrap.topics_detail .item-holder .icon-holder .icon {
  min-width: auto;
}

.wrap.topics_detail .col-block:not(.flex) {
  margin: 60px auto;
  width: 600px;
  border-radius: 4px;
}

.wrap.topics_detail .col-block:not(.flex) .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.wrap.topics_detail .col-block:not(.flex) .inner.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin: auto;
  width: 100%;
}

.wrap.topics_detail .col-block:not(.flex) .inner.row .top {
  border-bottom: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block:not(.flex) .inner + .inner {
  border-top: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block:not(.flex) .inner .top, .wrap.topics_detail .col-block:not(.flex) .inner .bottom {
  width: 100%;
}

.wrap.topics_detail .col-block:not(.flex) .inner .left, .wrap.topics_detail .col-block:not(.flex) .inner .right {
  width: 50%;
}

.wrap.topics_detail .col-block:not(.flex) .inner .top, .wrap.topics_detail .col-block:not(.flex) .inner .bottom, .wrap.topics_detail .col-block:not(.flex) .inner .left, .wrap.topics_detail .col-block:not(.flex) .inner .right {
  display: block;
  margin: 0;
  padding: 15px;
  text-align: center;
  word-break: break-all;
}

.wrap.topics_detail .col-block:not(.flex) .inner .two-line {
  padding: 5px 15px;
}

.wrap.topics_detail .col-block:not(.flex) .inner .right {
  border-left: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block:not(.flex) .inner.right .left + .right {
  border-left: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block:not(.flex) .inner.right .right {
  margin-right: 1px;
}

.wrap.topics_detail .col-block:not(.flex) .inner.right .left {
  border-right: 0;
}

.wrap.topics_detail .col-block:not(.flex) .inner.left .left {
  border-right: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block:not(.flex) .inner.left .left + .right {
  border-left: 0;
}

.wrap.topics_detail .col-block.border {
  padding: 0;
  border: 1px solid #dee2e6 !important;
  text-align: left;
}

.wrap.topics_detail .col-block.border .top, .wrap.topics_detail .col-block.border .bottom, .wrap.topics_detail .col-block.border .left, .wrap.topics_detail .col-block.border .right {
  text-align: left !important;
}

.wrap.topics_detail .col-block.border .inner {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.wrap.topics_detail .col-block.flex {
  margin: 60px auto;
  width: 600px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.wrap.topics_detail .col-block.flex tbody.inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  border-top: 0;
  border-bottom: 0;
}

.wrap.topics_detail .col-block.flex tbody.inner tr {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  min-height: 50px;
  width: 100%;
  border-bottom: 1px solid #dee2e6;
}

.wrap.topics_detail .col-block.flex tbody.inner .col-border {
  width: 2px;
  height: 100%;
  background-color: #dee2e6;
}

.wrap.topics_detail .col-block.flex tbody.inner tr.last {
  border-bottom: 0;
}

.wrap.topics_detail .col-block.flex tbody.inner .left, .wrap.topics_detail .col-block.flex tbody.inner .right {
  display: inline-block;
  padding: 20px;
  width: 50%;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

.wrap.topics_detail .col-block.flex tbody.inner .left {
  border-right: 1px solid #dee2e6;
}

.wrap.topics_detail .border .icon-new {
  display: inline-block;
  margin: 5px;
  margin-left: 0;
}

.wrap.topics_detail .btn.tab {
  display: block;
  margin: auto;
  padding: 15px;
  width: 600px;
  background: #2d2f33;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2;
}

.wrap.item_list_image .pager {
  margin-top: 40px;
}

.wrap.product .section-ptoduct-top {
  margin: auto;
  max-width: 1240px;
}

.wrap.product .section-ptoduct-top + .sozai-area {
  margin-top: 120px;
}

.wrap.product .search-product-block {
  display: block;
  margin: auto;
  margin-bottom: 30px;
  padding: 60px;
  border-radius: 4px;
  background: #fff;
}

.wrap.product .search-product-block .item-more-info {
  display: block;
  margin: auto;
}

.wrap.product .search-product-block .btn-refine {
  margin: 40px auto 0;
}

.wrap.product .search-product-block .search-area input[type="text"] {
  border: solid 1px #dadada;
}

.wrap.product .search-product-block .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin-left: 10px;
  width: 560px;
}

/*前のメニュー↓*/
.wrap.product .item-status-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 60px auto 40px;
  width: 700px;
}

.wrap.product .item-status-list .item {
  width: 33%;
}

.wrap.product .item-status-list .item {
  border-left: 1px solid #393c47;
}

.wrap.product .item-status-list .item + .item + .item {
  border-right: 1px solid #393c47;
}

.wrap.product .item-status-list .item .btn {
  display: block;
  width: 100%;
  border-radius: 0;
  text-align: center;
  font-size: 1.4rem;
}
/*前のメニュー↑*/

.wrap.product .title-page--search {
  font-size: 3.2rem;
  margin-bottom: 4rem;
  font-weight: 400;
}

.wrap.product .search-menu-list {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto 8rem;
}

.wrap.product .search-menu-list .item {
  width: calc(100%/5);
  border-left: 1px solid #ccc;
  padding: 1rem 0 2rem;
}

.wrap.product .search-menu-list .item:last-of-type {
  border-right: 1px solid #ccc;
}

.wrap.product .search-menu-list .item .btn {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
}

.wrap.product .search-menu-list .item .btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 1px #393C41;
  border-right: solid 1px #393C41;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  position: absolute;
  bottom: -1rem;
  left: calc(50% - 1rem);
}

.wrap.product .label-holder {
  position: relative;
}

.wrap.product .label-holder .label--menu {
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  left: 0;
  background-color: #000030;
  color: #fff;
  text-align: center;
  width: 7rem;
  padding: 1rem 0;
  border-radius: 0 5px 5px 0;
  font-family: TTCommons-Regular, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  z-index: 10;
}

.wrap.product .item-holder .text-area {
  padding: 27px;
  text-align: center;
}

.wrap.product .item-category-block + .child-category {
  margin-top: 60px;
}

.wrap.product .child-category + .child-category {
  margin-top: 27px;
}

.wrap.product .child-category {
  padding: 60px;
  border-radius: 4px;
  background: #fff;
}

.wrap.product .child-category .title-section {
  margin-top: 0;
}

.wrap.product .child-category .tab-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.wrap.product .child-category .item {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 1.37097%;
  width: 235px;
  line-height: 1.6;
}

.wrap.product .child-category .item a {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  color: #fff;
  font-weight: normal;
}

.wrap.product .child-category .item .f-small {
  margin-top: 5px;
  font-size: 1.2rem;
}

.wrap.product .child-category .item.bold a {
  height: 85px;
}

.wrap.brand_top .contents-inner .container {
  max-width: 1440px;
}

.wrap.brand_top .contents-inner .container .btn {
  padding: 0;
  border: 0;
}

.wrap.brand_top .contents-inner .container .bnr-brand {
  display: block;
}

.wrap.brand_top .contents-inner .container .inner {
  position: relative;
}

.wrap.brand_top .text-block {
  position: absolute;
  z-index: 1;
  display: inline-block;
  color: #fff;
  text-align: left;
}

.wrap.brand_top .text-block.shiro {
  top: 15.83333%;
  left: 11.11111%;
}

.wrap.brand_top .text-block.shiro-life {
  top: 45.55556%;
  left: 18.95833%;
}

.wrap.brand_top .text-block.shiro-beauty {
  top: 25.27778%;
  left: 28.40278%;
}

.wrap.brand_top .text-block.shiro-cafe {
  top: 19.58333%;
  left: 15.55556%;
}

.wrap.brand_top .text-block.shiro-about {
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wrap.brand_top .text-block.shiro-about .title {
  font-size: 2.8rem;
  line-height: 1;
}

.wrap.brand_top .text-block .title {
  margin-bottom: 15px;
}

.wrap.brand_top .text-block .text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.header-brand {
  position: relative;
  margin: auto;
  max-width: 1240px;
}

.header-brand .kv-block {
  position: relative;
}

.header-brand .kv-block .pic {
  overflow: hidden;
  border-radius: 4px;
}

.header-brand .kv-block .pic.bottomR0 {
  border-radius: 4px 4px 0 0;
}

.header-brand .kv-block .info {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-brand .kv-block .info .title {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1;
}

.header-brand .kv-block .info .disc {
  font-size: 16px;
}

.header-brand .kv-block .info .attention {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1;
}

.header-brand .kv-block .info.left {
  left: 0;
  width: 100%;
  height: 100%;
}

.header-brand .kv-block .info.left .title {
  position: absolute;
  top: 50%;
  left: 12.5%;
  margin-bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-brand .category-info {
  position: relative;
  padding: 27px 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
  cursor: pointer;
}

.header-brand .category-info .text-holder {
  position: relative;
  margin: auto;
  max-width: 760px;
}

.header-brand .category-info .text-holder .text {
  max-width: 760px;
  max-height: 20px;
}

.header-brand .category-info .text-holder .read-more {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.header-brand .category-info .btn-read-more {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
}

.header-brand .category-info.open .text-holder .text-line-1 {
  max-height: none;
  text-overflow: unset;
  white-space: normal;
}

.header-brand .category-info.open .text-holder .read-more {
  display: none;
}

.header-brand .category-info.open .btn-read-more {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-brand .category-info.bg-navy {
  padding: 60px 0;
  background-color: #000021;
  color: #fff;
  cursor: default;
}

.header-brand .category-info.bg-navy .title {
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.header-brand .category-info.bg-navy .text {
  max-height: 100%;
  font-size: 14px;
  line-height: 1.78;
}

.header-brand .category-info.bg-navy .text + .text {
  margin-top: 20px;
}

.header-brand.makeup .info {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.header-brand.makeup .info .title {
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-brand.makeup .info .link-brand-top {
  position: absolute;
  right: 26px;
  bottom: 37px;
  padding-right: 66px;
  color: #fff;
  font-size: 16px;
}

.header-brand.makeup .info .link-brand-top:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background: url(../images/icon/arrow_right_white.svg) left top no-repeat;
  background-size: contain;
  content: "";
}

.wrap.brand header.header {
  margin-bottom: 0;
}

.wrap.brand .container {
  position: relative;
  width: 100%;
}

.wrap.brand .btn-back--shoulder {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  margin: 0;
}

.wrap.brand .mv {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  height: 480px;
  border-radius: 4px;
}

.wrap.brand .mv img {
  position: absolute;
  left: 50%;
  margin-left: -620px;
  width: 1240px;
  height: 480px;
  border-radius: 4px;
}

.wrap.brand .mv-mask {
  width: 1240px;
  height: 480px;
}

.wrap.brand .section-shiro.shiro-life .title-svg {
  width: 351px;
}

.wrap.brand .section-shiro.shiro-beauty .title-svg {
  width: 490px;
}

.wrap.brand .section-shiro.shiro-cafe .title-svg {
  width: 410px;
}

.wrap.brand .lead-text {
  margin: 60px auto 0;
  text-align: center;
}

.wrap.brand .lead-text + .lineup-block {
  margin-top: 60px;
}

.wrap.brand .lead-text + .tab-block {
  margin-top: 60px;
}

.wrap.shiro_cafe .wrap.brand .lead-text {
  margin-bottom: 90px;
}

.wrap.brand .lead-text .title-svg.shiro {
  width: 183px;
}

.wrap.brand .lead-text .title-svg.shiro-home {
  height: 30px;
}

.wrap.brand .lead-text .brand-name {
  margin-bottom: 30px;
}

.wrap.brand .lead-text .text {
  display: inline-block;
  margin: auto;
  max-width: 555px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
}

.wrap.brand .tab-content {
  position: absolute;
  bottom: 0;
  visibility: hidden;
}

.wrap.brand .tab-content.active {
  position: relative;
  bottom: auto;
  visibility: visible;
}

.wrap.brand .tab-content.active#tab1 {
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

.wrap.brand .tab-content.active#tab2 {
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

.wrap.brand .lineup-block + .lineup-block {
  margin-top: 100px;
}

.wrap.brand .lineup-block + .lineup-block.banner {
  margin-top: 120px;
}

.wrap.brand .lineup-block + .lineup-block.last {
  margin-top: 40px;
}

/* .wrap.brand .lineup-block .panel-lineup {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
          justify-content: start;
  max-width: 1240px;
  border-radius: 4px;
  background: #2d2f33;
  color: #fff;
  text-align: center;
} */

.wrap.brand .lineup-block .panel-lineup {
  max-width: 1240px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  position: relative;
}

.wrap.brand .lineup-block .panel-lineup + .item-holder {
  margin-top: 30px;
}

.wrap.brand .lineup-block .panel-lineup .text-block {
  position: absolute;
  padding: 0 8rem;
  top: 50%;
  transform: translateY(-50%);
}

.wrap.brand .lineup-block .panel-lineup .text-block--right {
  right: 0;
}

.wrap.brand .lineup-block .panel-lineup .text-block--skincare, .wrap.brand .lineup-block .panel-lineup .text-block--makeup {
  color: #000030;
}

.wrap.brand .lineup-block .panel-lineup .lineup-name + .text {
  margin-top: 30px;
}

.wrap.brand .lineup-block .panel-lineup .lineup-name {
  font-size: 2.8rem;
  line-height: 1;
}

.wrap.brand .lineup-block .panel-lineup .text {
  display: inline-block;
  width: 330px;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
}

.wrap.brand .lineup-block .panel-lineup .text-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.wrap.brand .lineup-block .item-holder + .btn-more-item {
  margin-top: 60px;
}

.wrap.brand .lineup-block .btn-more-item {
  margin: 40px auto 0;
  width: 345px;
}

.wrap.brand .lineup-block.banner {
  margin: auto;
  max-width: 1160px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.wrap.brand .lineup-block.banner:hover {
  opacity: 0.75;
}

.wrap.brand .lineup-block.banner .panel-lineup .pic {
  width: 400px;
}

.wrap.brand .lineup-block.banner .panel-lineup .text-block {
  padding-left: 60px;
  width: 760px;
  text-align: left;
}

.wrap.brand .lineup-block.banner .panel-lineup .title-svg {
  width: 160px;
}

.wrap.brand .lineup-block.banner .panel-lineup .lineup-name + .text {
  margin-top: 15px;
}

.category-slide {
  margin: auto;
  margin-top: 60px;
  padding: 0 60px;
}

.category-slide .slide {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin: auto;
  border-radius: 4px;
  background-color: #fff;
}

.category-slide .pic {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  max-width: 540px;
}

.category-slide .ttl {
  position: absolute;
  color: #fff;
  font-size: 40px;
}

.category-slide .ttl.black {
  color: #393c41;
}

.category-slide .text-block {
  padding: 40px;
  max-width: 580px;
}

.category-slide .text-block .title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}

.category-slide .text-block .text, .category-slide .text-block .item {
  line-height: 1.8;
}

.category-slide .text-block .text {
  font-size: 14px;
}

.category-slide .text-block .item {
  font-size: 12px;
}

.category-slide .component-list {
  margin-top: 20px;
}

.category-slide .swiper-navigation-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 45px;
}

.category-slide .swiper-pagination-bullets {
  bottom: 0;
  margin-top: 0;
}

.category-slide .swiper-pagination-bullet {
  margin: 0 5px !important;
  width: 10px !important;
  height: 10px !important;
  background-color: rgba(13, 13, 13, 0.7);
}

.category-slide .swiper-pagination-bullet-active {
  background-color: #fff !important;
}

.category-slide .swiper-button-next, .category-slide .swiper-button-prev {
  margin-top: -70px;
  background-size: 80px auto;
}

.wrap.about_shiro header.header {
  margin-bottom: 0;
}

.wrap.about_shiro .section-about-shiro {
  position: relative;
  margin: auto;
  padding: 0;
  max-width: 1440px;
  background: #eee;
}

.wrap.about_shiro .section-about-shiro .btn-back--shoulder {
  z-index: 2;
}

.wrap.about_shiro .section-about-shiro .top-area {
  position: relative;
  overflow: hidden;
  margin: auto;
  padding: 50px 50px 60px;
  max-width: 1240px;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
}

.wrap.about_shiro .section-about-shiro .top-area .pic {
  margin: auto;
  width: 975px;
}

.wrap.about_shiro .section-about-shiro .title {
  margin-bottom: 18.75%;
  text-align: center;
}

.wrap.about_shiro .section-about-shiro .title-page .sub {
  margin-top: 20px;
}

.wrap.about_shiro .section-about-shiro .title-page.company {
  margin-bottom: 0;
}

.wrap.about_shiro .section-about-shiro .title-svg.shiro {
  width: 101px;
}

.wrap.about_shiro .section-about-shiro .top-area {
  position: relative;
  width: 100%;
}

.wrap.about_shiro .section-about-shiro .top-area + .title-page {
  margin-top: 100px;
}

.wrap.about_shiro .section-about-shiro .lead-block {
  display: inline-block;
  margin: auto;
  max-width: 600px;
  text-align: left;
  margin-top: 60px;
}

.wrap.about_shiro .section-about-shiro .lead-block .text + .text {
  margin-top: 20px;
}

.wrap.about_shiro .section-about-shiro .lead-block .lead-text {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 2.2rem;
}

.wrap.about_shiro .section-about-shiro .lead-block .text {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
}

.wrap.about_shiro .section-about-shiro .index-area {
  margin: auto;
  margin-top: 15px;
  padding: 60px;
  max-width: 1240px;
  border-radius: 4px;
  background-color: #fff;
}

.wrap.about_shiro .section-about-shiro .index-area .title-page {
  margin-top: 0;
  font-size: 3.4rem;
}

.wrap.about_shiro .section-about-shiro .index-area .movie-holder {
  margin: 40px auto 0;
  width: 960px;
  height: 540px;
}

.wrap.about_shiro .section-about-shiro .index-area .movie-holder .time-code {
  display: none;
}

.wrap.about_shiro .section-about-shiro .index-area .movie-holder.pause .thumb {
  overflow: hidden;
  border-radius: 4px;
}

.wrap.about_shiro .section-about-shiro .index-area .movie-holder + .text-block {
  margin-top: 60px;
}

.wrap.about_shiro .section-about-shiro .index-area .text-block {
  margin: auto;
  max-width: 610px;
  text-align: left;
}

.wrap.about_shiro .section-about-shiro .index-area .text {
  font-size: 1.6rem;
  line-height: 2;
}

.wrap.about_shiro .section-about-shiro .index-area .text + .text {
  margin-top: 30px;
}

.wrap.about_shiro .section-about-shiro .bnr-recruit {
  margin: auto;
  width: 800px;
  text-align: center;
}

.wrap.about_shiro .section-about-shiro .bnr-recruit a:hover {
  opacity: 0.8;
}

.wrap.about_shiro .section-about-shiro .link-ext {
  color: #79888b;
}

.wrap.about_shiro .section-about-shiro .attention {
  text-align: center;
  font-size: 1.6rem;
}

.wrap.about_shiro .section-about-shiro .attention + .title-page {
  margin-top: 100px;
}

.wrap.about_shiro .section-about-shiro .attention + .section-body-nerrow {
  margin-top: 40px;
}

.wrap.about_shiro .section-about-shiro .company-info {
  margin: auto;
  width: 600px;
}

.wrap.about_shiro .section-about-shiro .text, .wrap.about_shiro .section-about-shiro .attention {
  color: #393c41;
}

.wrap.about_shiro .section-body-nerrow {
  background: #eee;
}

.wrap.shiro_beauty .image-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 59px;
}

.wrap.shiro_beauty .image-block .pic + .pic {
  margin-left: 24px;
}

.wrap.shiro_beauty .top-text {
  margin: 15px auto 60px;
  text-align: center;
}

.wrap.shiro_beauty .pic + .menu-inner {
  padding-top: 60px;
}

.wrap.shiro_beauty .menu-block {
  padding: 2rem;
  border-radius: 4px;
  background: #fff;
}

.wrap.shiro_beauty .menu-block + .menu-block {
  margin-top: 20px;
}

.wrap.shiro_beauty .menu-block + .menu-block.yoyaku {
  margin-top: 40px;
}

.wrap.shiro_beauty .menu-block .menu-inner {
  margin: 0 auto;
  max-width: 800px;
}

.wrap.shiro_beauty .menu-block .menu-inner + .menu-inner {
  margin-top: 60px;
}

.wrap.shiro_beauty .menu-block .menu-inner + .pic {
  margin-top: 60px;
}

.wrap.shiro_beauty .menu-block .menu-inner .text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.wrap.shiro_beauty .title + .pic.large {
  margin-top: 50px;
}

.wrap.shiro_beauty .title + .menu-inner {
  margin-top: 60px;
}

/* .wrap.shiro_beauty .status-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.wrap.shiro_beauty .status-block .icon {
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
  background: #393c41;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}

.wrap.shiro_beauty .status-block .date {
  margin-left: 20px;
  font-size: 1.4rem;
} */
/* 
.wrap.shiro_beauty .cource-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
  margin-bottom: 30px;
}

.wrap.shiro_beauty .cource-block .menu-name {
  display: block;
  width: 500px;
  font-size: 2rem;
}

.wrap.shiro_beauty .cource-block .menu-name .name + .price {
  margin-top: 15px;
}

.wrap.shiro_beauty .cource-block .price-area .price, .wrap.shiro_beauty .cource-block .price-area .tax {
  display: inline-block;
}

.wrap.shiro_beauty .cource-block .price-area .price + .tax {
  margin-left: 5px;
}

.wrap.shiro_beauty .cource-block .price-area .tax {
  font-size: 1.8rem;
}

.wrap.shiro_beauty .cource-block .price-area .price {
  vertical-align: middle;
}

.wrap.shiro_beauty .cource-block .batch-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-left: 30px;
}

.wrap.shiro_beauty .cource-block .batch-block .item {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  border: 1px solid #393c41;
  border-radius: 4px;
  font-size: 1.4rem;
} */

/* .wrap.shiro_beauty .step-block {
  margin: 25px -5px 30px;
}

.wrap.shiro_beauty .step-block .step {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 4px;
  padding: 12px;
  border-radius: 4px;
  background: #79888b;
  color: #fff;
}

.wrap.shiro_beauty .step-block .step.n1:after {
  height: 0;
}

.wrap.shiro_beauty .step-block .step:after {
  position: absolute;
  top: 50%;
  left: -23px;
  z-index: -1;
  display: block;
  width: 30px;
  height: 4px;
  background: #79888b;
  content: "";
}

.wrap.shiro_beauty .step-block .step .step-num {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #79888b;
  text-align: center;
  letter-spacing: 0;
  font-weight: bold;
  font-family: "TTCommons-Regular";
  line-height: 1.3;
} */

.wrap.shiro_beauty .text-small {
  font-size: 1.2rem;
}

.wrap.shiro_beauty .lead-text {
  width: 100%;
  padding-bottom: 5rem;
  border-bottom: 1px solid #fff;
}

.wrap.shiro_beauty .lead-text .beauty-title {
  font-size: 1.6rem;
  font-weight: 400;
}

.wrap.shiro_beauty .lead-text .b-text {
  width: 75%;
  text-align: left;
  margin: 1.6rem auto;
}

.wrap.shiro_beauty .arrow-bottom {
  display: inline-block;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #393C41;
  padding-right: 1.6rem;
}

.wrap.shiro_beauty .arrow-bottom::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: solid 1px #393C41;
  border-right: solid 1px #393C41;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  position: absolute;
  top: 0.2rem;
  bottom: 0;
  right: 0.6rem;
}

.wrap.shiro_beauty .b-category-box {
  width: 75%;
  margin: 5rem auto 0;
}

.wrap.shiro_beauty .menu-box + .menu-box {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}

.wrap.shiro_beauty .menu-title {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.wrap.shiro_beauty .b-menu-icon {
  background-color: #8c9a9b;
  color: #fff;
  padding: 0.1rem 0.5rem 0.2rem;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.wrap.shiro_beauty .menu-sub-title {
  font-size: 1.4rem;
  margin-left: 1rem;
  font-weight: 400;
}

.wrap.shiro_beauty .b-category-inner {
  background-color: #fff;
  padding: 2rem;
}

.wrap.shiro_beauty .b-menu-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.wrap.shiro_beauty .b-menu-title h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

.wrap.shiro_beauty .step-list {
  padding: 0.2rem 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}

.wrap.shiro_beauty .step-item {
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  padding: 0 1.4rem 0 0.8rem;
  background-color: #8c9a9b;
}

.wrap.shiro_beauty .step-item:last-child {
  padding-right: 0.8rem;
}

.wrap.shiro_beauty .step-item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #393C41;
  border-right: solid 1px #393C41;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0.4rem;
  transform: rotate(45deg);
}

.wrap.shiro_beauty .menu-desc {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.wrap.shiro_beauty .beauty-notion {
  width: 75%;
  margin: 1.4rem auto 0;
}

.wrap.shiro_beauty .b-menu__set {
  display: flex;
  align-items: baseline;
}

.wrap.shiro_beauty .b-menu__set .set-menu__icon {
  font-size: 1.2rem;
  text-align: center;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  background-color: #8c9a9b;
  color: #fff;
}

.wrap.shiro_beauty .b-menu__set .b-menu-title {
  flex: 1;
}

.wrap.shiro_beauty .giftcard-block {
  width: 75%;
  margin: 4rem auto;
  border: 1px solid #8c9a9b;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.wrap.shiro_beauty .giftcard-block .b-img__area {
  width: 35%;
}

.wrap.shiro_beauty .giftcard-block .b-text__area {
  margin-left: 2rem;
  font-size: 1.2rem;
}

.wrap.shiro_beauty .giftcard-block .b-text__area .arrow-right {
  position: relative;
  display: inline-block;
  padding-right: 1.2rem;
  border-bottom: 1px solid #393C41;
  margin-bottom: 1rem;
}

.wrap.shiro_beauty .giftcard-block .b-text__area .arrow-right::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #393C41;
  border-right: solid 1px #393C41;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0.4rem;
  transform: rotate(45deg);
}

.wrap.shiro_beauty .giftcard-block .b-text__area .gift-note {
  font-size: 1rem;
}

.wrap.shiro_beauty .beauty-contact {
  width: 90%;
  margin: auto;
  padding: 5rem 20rem;
  background-color: #fff;
  line-height: 2;
}

.wrap.shiro_beauty .beauty-contact .beauty-contact-title {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.wrap.shiro_beauty .beauty-contact .contact-item {
  display: flex;
  padding: 1.6rem 0;
  margin-bottom: 0;
}

.wrap.shiro_beauty .beauty-contact .contact-item:not(:first-of-type) {
  border-top: 2px solid #dadada;
}

.wrap.shiro_beauty .beauty-contact .contact-item dt {
  width: 210px;
  font-weight: normal;
}

.wrap.shiro_beauty .beauty-contact .contact-item dd {
  flex: 1;
  margin-bottom: 0;
}

.wrap.shiro_beauty .beauty-contact .contact-item dd .beauty-contact-other {
  margin-top: 1.6rem;
}

.wrap.shiro_beauty .beauty-contact .contact-item dd .beauty-contact-other .link {
  color: #79888b;
  text-decoration: underline;
}

.wrap.shiro_beauty .beauty-contact .contact-item dd .beauty-contact-other .link:hover {
  text-decoration: none;
}

.wrap.shiro_beauty .b-notice {
  width: 70%;
  margin: 4rem auto 0;
  font-size: 1.2rem;
}

.wrap.shiro_beauty .b-notice + .b-notice {
  margin-top: 2rem;
}

.wrap.shiro_beauty .btn-primary {
  margin: 6rem auto 0;
  width: 375px;
}

/* .wrap.shiro_beauty .lineup-block.last .text {
  max-width: 735px;
  text-align: left;
  line-height: 2;
}

.wrap.shiro_beauty .lineup-block.last .text + .text {
  margin-top: 0;
}

.wrap.shiro_beauty .lineup-block.last .text.gray {
  margin-top: 30px;
  color: #79888b;
}

.wrap.shiro_beauty .lineup-block.last .btn-more-item {
  margin-top: 60px;
}

.wrap.shiro_beauty .yoyaku-info .title {
  margin: 0 auto 25px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 0.9;
}

.wrap.shiro_beauty .yoyaku-info .col-block, .wrap.shiro_beauty .yoyaku-info tbody {
  margin: auto;
  width: 600px;
}

.wrap.shiro_beauty .yoyaku-info .col-block .left, .wrap.shiro_beauty .yoyaku-info tbody .left {
  width: 200px;
}

.wrap.shiro_beauty .yoyaku-info .col-block .right, .wrap.shiro_beauty .yoyaku-info tbody .right {
  width: 400px;
}

.wrap.shiro_beauty .yoyaku-info tr {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.wrap.shiro_beauty .yoyaku-info tr.yoyaku {
  border-bottom: 0;
}

.wrap.shiro_beauty .yoyaku-info tr.last {
  padding-top: 0;
}

.wrap.shiro_beauty .yoyaku-info tr .left, .wrap.shiro_beauty .yoyaku-info tr .right {
  text-align: left;
  line-height: 2;
}

.wrap.shiro_beauty .yoyaku-info .link:not(.tel) {
  color: #79888b;
  text-decoration: underline;
}

.wrap.shiro_beauty .yoyaku-info .link:not(.tel):hover {
  text-decoration: none;
} */

.wrap.shiro_cafe .container .lead-text {
  margin: 50px auto 0;
}

.wrap.shiro_cafe .container .lead-text .text {
  text-align: center;
}

.wrap.shiro_cafe .brand-name img {
  width: 410px;
}

.wrap.shiro_cafe .allergy-text {
  margin: 30px auto 50px;
}
.wrap.shiro_cafe .allergy-text p {
}
.wrap.shiro_cafe .allergy-text p a {
  text-decoration: underline;
}

.wrap.shiro_cafe .tab-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 auto 60px;
  width: 500px;
  text-align: center;
}

.wrap.shiro_cafe .tab-block .tab {
  display: inline-block;
  padding: 25px 0;
  width: 150px;
  border: 1px solid #2d2f33;
  border-radius: 4px;
}

.wrap.shiro_cafe .tab-block .tab.active {
  border: 1px solid #79888b;
  background: #79888b;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.wrap.shiro_cafe .lineup-block .attention {
  padding: 40px 0;
  border-radius: 0 0 4px 4px;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

.wrap.shiro_cafe .attention + .menu-block {
  margin-top: 40px;
}

.wrap.shiro_cafe .menu-block {
  padding-top: 60px;
  border-radius: 4px;
  background: #fff;
}

.wrap.shiro_cafe .menu-block + .menu-block {
  margin-top: 40px;
}

.wrap.shiro_cafe .menu-block .title + .menu-inner {
  margin-top: 65px;
}

.wrap.shiro_cafe .menu-block .title {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1;
}

.wrap.shiro_cafe .menu-block .lead-text {
  margin: 30px auto 55px;
}

.wrap.shiro_cafe .menu-block .lead-text .text {
  text-align: left;
}

.wrap.shiro_cafe .menu-block .menu-inner, .wrap.shiro_cafe .menu-inner-3colum {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: auto;
  padding-bottom: 50px;
  max-width: 860px;
}

.wrap.shiro_cafe .menu-block .menu-inner .item {
  display: inline-block;
  width: 400px;
}

.wrap.shiro_cafe .menu-block .menu-inner-3colum .item {
  width: 30%;
}

.wrap.shiro_cafe .menu-block .menu-inner-1colum {
  margin: auto;
  padding-bottom: 50px;
  max-width: 860px;
}

.wrap.shiro_cafe .menu-block .menu-inner-1colum .item {
  width: 100%;
}

.wrap.shiro_cafe .menu-block .menu-inner .ttl, .wrap.shiro_cafe .menu-block .menu-inner-1colum .ttl {
  display: block;
  margin: 30px auto 20px;
  color: #393c41;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
}

.wrap.shiro_cafe .menu-block .pic {
  overflow: hidden;
  border-radius: 4px;
}

.wrap.shiro_cafe .menu-block .text, .wrap.shiro_cafe .menu-block .name {
  line-height: 1.8;
}

.wrap.shiro_cafe .menu-block .etc {
  text-align: right;
}

.wrap.shiro_cafe .menu-block .text + .name {
  margin-top: 30px;
}

.wrap.shiro_cafe .menu-block .price + .name {
  margin-top: 20px;
}

.wrap.shiro_cafe .menu-block .cal {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.5;
}

.wrap.shiro_cafe .menu-block .cal + .name {
  margin-top: 15px;
}

.wrap.shiro_cafe hr {
  margin-bottom: 40px;
}

.wrap.shiro_cafe .shop-info {
  margin-bottom: 40px;
  padding-top: 80px;
  width: 100%;
  background-color: #fff;
}

.wrap.shiro_cafe .shop-info .menu-inner {
  display: block;
  margin: auto;
  max-width: 720px;
}

.wrap.shiro_cafe .shop-info .text {
  font-size: 1.4rem;
}

.wrap.shiro_cafe .shop-info .text + .text {
  margin-top: 30px;
}

.wrap.shiro_cafe .shop-info .brand-name, .wrap.shiro_cafe .shop-info .shop-name {
  text-align: center;
}

.wrap.shiro_cafe .shop-info .shop-name {
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.shiro_cafe .name.hikarie {
  margin-top: 20px;
}

.shiro_cafe .icon-takeaway {
  position: relative;
  top: -54px;
  width: 100%;
  height: 0;
  text-align: right;
}

.shiro_cafe .icon-takeaway.hikarie {
  position: relative;
  top: -25px;
  width: 100%;
  height: 0;
  text-align: right;
}

.shiro_cafe .icon-takeaway-drink {
  position: relative;
  top: -44px;
  width: 100%;
  height: 0;
  text-align: right;
}

.shiro_cafe .icon-takeaway-drink.hikarie {
  position: relative;
  top: -34px;
  right: 192px;
  width: 100%;
  height: 0;
  text-align: right;
}

.shiro_cafe .icon-takeaway img, .wrap.shiro_cafe .menu-block .icon-takeaway-drink img {
  width: 40px;
  height: 40px;
}

.shiro_cafe .takeaway-info {
  padding: 0 40px 40px;
  height: 52px;
  text-align: right;
}

.shiro_cafe .takeaway-info img {
  width: 36px;
  height: 36px;
}

.shiro_cafe .takeaway-price-info {
  padding: 0 40px 70px;
  height: 52px;
  text-align: right;
  font-size: 11px;
}

.shiro_cafe hr.w860 {
  width: 860px;
}

.wrap.guide .article-block.top .container + .container {
  margin-top: 40px;
}

.wrap.guide .btn-faq {
  margin-top: 30px;
}

.wrap.guide .b-link {
  border-top: 2px solid #eee;
}

.wrap.guide .b-link .link {
  position: relative;
  display: block;
  padding: 20px 20px 20px 0;
  border-bottom: 2px solid #eee;
  color: #79888b;
  font-size: 1.6rem;
}

.wrap.guide .b-link .arrow-gray:after {
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 9px;
  height: 16px;
  background: url(../images/icon/step-arrow-gray.svg) no-repeat center center;
  background-size: 100% auto;
  content: "";
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.wrap.terms .container + .container {
  margin-top: 30px;
}

.wrap.privacy .list-text .text {
  padding-left: 1em;
  text-indent: -1em;
}

.wrap.giftwrapping .ttl {
  margin: 30px auto;
  text-align: center;
}

.wrap.giftwrapping .text.name + .price, .wrap.giftwrapping .text + .disc {
  margin-top: 10px;
}

.wrap.giftwrapping .text + .inner, .wrap.giftwrapping .text + .item-block {
  margin-top: 40px;
}

.wrap.giftwrapping .text.price, .wrap.giftwrapping .text.disc {
  font-size: 1.3rem;
}

.wrap.giftwrapping .text.name {
  margin-top: 0;
  font-size: 1.4rem;
}

.wrap.giftwrapping .text.attention {
  padding-left: 1em;
  color: maroon;
  text-indent: -1em;
  font-weight: bold;
}

.wrap.giftwrapping .item-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 -20px;
}

.wrap.giftwrapping .item-block .inner {
  display: inline-block;
  padding: 20px;
  width: 50%;
  vertical-align: top;
}

.wrap.giftwrapping .item-block .inner.wide {
  width: 100%;
}

.wrap.giftwrapping .item-block .text-block {
  padding: 20px;
  border-radius: 4px;
  background: #f9f9f9;
}

.wrap.faq .btn-ttl {
  position: relative;
  display: block;
  padding: 30px 0;
  width: 100%;
  border-bottom: 2px solid #eee;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  font-size: 2.2rem;
}

.wrap.faq .btn-ttl:before, .wrap.faq .btn-ttl:after {
  position: absolute;
  top: 50%;
  right: 40px;
  display: block;
  width: 16px;
  height: 2px;
  background: #393c41;
  content: "";
  -webkit-transition: 0.2s linear;
          transition: 0.2s linear;
}

.wrap.faq .btn-ttl:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wrap.faq .accordion-block {
  overflow: hidden;
  margin: auto;
  margin-bottom: 30px;
  max-width: 800px;
  border-radius: 4px;
}

.wrap.faq .accordion-block .accordion-inner {
  border-radius: 0;
}

.wrap.faq .accordion-block.show + .accordion-block {
  margin-top: 30px;
}

.wrap.faq .accordion-block.show .btn-ttl {
  border-radius: 4px 4px 0 0;
}

.wrap.faq .accordion-block.show .btn-ttl:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.wrap.faq .container + .container {
  margin-top: 30px;
  border-top: 2px solid #eee;
}

.wrap.faq .ttl {
  margin: 30px auto 20px;
}

.wrap.faq .text-link.yamato {
  display: inline-block;
  margin: 0;
}

.wrap.faq .section-body-nerrow {
  margin-top: 0;
}

.wrap.faq .section-body-nerrow.top {
  margin-bottom: 30px;
}

.wrap.faq .section-body-nerrow:not(.top):before {
  margin-top: 0;
  margin-bottom: 30px;
}

.wrap.faq .section-body-nerrow .text-link {
  margin: 20px auto 0;
}

.wrap.faq .section-body-nerrow .text-link.yamato {
  margin: 0;
}

.wrap.faq .article-block:not(.top) .container {
  padding-left: 45px;
}

.wrap.faq .article-block:not(.top) .ttl, .wrap.faq .article-block:not(.top) .text-q {
  position: relative;
}

.wrap.faq .article-block:not(.top) .ttl:before, .wrap.faq .article-block:not(.top) .text-q:before {
  position: absolute;
  top: 0;
  left: -45px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #79888b;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  font-size: 20px;
  font-family: "TTCommons-Regular";
  line-height: 1.4;
}

.wrap.faq .article-block:not(.top) .ttl:before {
  content: "Q";
}

.wrap.faq .article-block:not(.top) .text-q:before {
  content: "A";
}

.section-recruit-article .info-list + .info-list {
  margin-top: 20px;
}

.section-recruit-article .job-info.box + .ttl {
  border-top: 0;
}

.section-recruit-article .job-info + .ttl {
  padding-top: 30px;
  border-top: 2px solid #c0c1c2;
}

.section-recruit-article .colum-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: auto;
  max-width: 1240px;
}

.section-recruit-article .sub-colum {
  position: -webkit-sticky;
  position:         sticky;
  top: 0;
  left: 0;
  width: 400px;
}

.section-recruit-article .sub-colum .article-block {
  padding: 0 40px;
}

.section-recruit-article .tab-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 30px auto 60px;
  background: none;
}

.section-recruit-article .tab-block .tab {
  display: block;
  padding: 20px 0;
  width: 274px;
  text-align: center;
  font-size: 1.6rem;
}

.section-recruit-article .tab-block .tab.n2 {
  border-right: 1px solid #c0c1c2;
  border-left: 1px solid #c0c1c2;
}

.section-recruit-article table.job-info {
  margin: 30px auto;
}

.section-recruit-article table.job-info tr + tr {
  margin-top: 20px;
}

.section-recruit-article table.job-info tr {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.section-recruit-article table.job-info .left, .section-recruit-article table.job-info .right {
  font-size: 1.6rem;
}

.section-recruit-article table.job-info .left {
  width: 205px;
}

.section-recruit-article table.job-info .right {
  width: 390px;
}

.section-recruit-article table.job-info.box {
  margin: 15px auto 0;
}

.section-recruit-article table.job-info.box tbody {
  display: block;
  padding: 22px;
  border: 2px solid #dadada;
  border-radius: 4px;
}

.wrap.mailmag .section-mailmag-article-top + .section-mailmag-article {
  margin-top: 60px;
  margin-bottom: 80px;
}

.wrap.mailmag .section-mailmag-article:before {
  margin-bottom: 40px;
}

.wrap.mailmag .section-mailmag-article:after {
  margin-top: 50px;
}

.wrap.mailmag .section-mailmag-article .link-text-underline {
  margin: 20px auto 0;
}

.wrap.mailmag .section-mailmag-article .text.note {
  font-size: 1.4rem;
}

.wrap.member_credit_entry_input #error {
  margin-bottom: 60px;
  padding: 60px 0;
  background: #fff;
}

.wrap.member_credit_entry_input #error .message.confirm {
  color: #393c41;
}

.wrap.member_credit_entry_input #error + div {
  margin-top: 0;
}

.wrap.member_credit_entry_input .area-form.nocard {
  margin-bottom: 60px;
  padding: 80px 100px;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}

.wrap.member_credit_entry_input .area-form.nocard:empty {
  display: none;
}

.wrap.member_credit_entry_input .disc-area {
  margin-top: 10px;
}

.wrap.member_credit_entry_input .row + .disc-area.credit {
  margin-top: 30px;
}

.wrap.member_credit_entry_input .disc-area.credit p.top + p {
  margin-top: 5px;
}

.wrap.member_history .history-tab-block {
  margin: 0 auto 60px;
  width: 600px;
  text-align: center;
}

.wrap.member_history .history-tab-block .status {
  display: none;
}

.wrap.member_history .history-tab-block .tab-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px 32px;
}

.wrap.member_history .history-tab-block .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 280px;
  height: 60px;
  border: 1px solid #79888b;
  border-radius: 4px;
  color: #79888b;
  font-size: 14px;
}

.wrap.member_history .history-tab-block .tab.active {
  border: 1px solid #79888b;
  background: #79888b;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* TOPページ
************************/
.contents-inner {
  margin-top: 40px;
}
.wrap.top .contents-inner {
  margin-top: 0 !important;
}

.wrap.top .contents-inner .menu-area top-movie-block .user-func .num-holder {
  border: #000021 solid 1px;
  background-color: #fff;
}

.wrap.top .contents-inner .menu-area top-movie-block .user-func .num {
  color: #000021;
}

.wrap.top .contents-inner .menu-area top-movie-block .user-func .btn .icon:before {
  border-color: #fff;
}

.wrap.top .contents-inner .menu-area top-movie-block .user-func .btn.btn-user .icon {
  background-image: url("../images/icon/user_white.svg");
}

.wrap.top .contents-inner .menu-area top-movie-block .user-func .btn.btn-cart .icon {
  background-image: url("../images/icon/cart_white.svg");
}

.wrap.top .contents-inner .swiper-navigation-holder .swiper-button-next, .wrap.top .contents-inner .swiper-navigation-holder .swiper-button-prev {
  margin-top: 0;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wrap.top .contents-inner .swiper-navigation-holder .swiper-button-next {
  right: 20px;
  background: url(../images/icon/arrow_right_white.svg) no-repeat center center/cover;
}

.wrap.top .contents-inner .swiper-navigation-holder .swiper-button-prev {
  left: 20px;
  background: url(../images/icon/arrow_left_white.svg) no-repeat center center/cover;
}

.wrap.top .contents-inner .swiper-pagination {
  margin-top: 0;
  width: 100%;
}

.wrap.top .contents-inner .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  width: 10px !important;
  height: 10px !important;
}

.wrap.top .contents-inner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff !important;
  opacity: 1;
}

.section-promotion .slide .btn {
  width: 100%;
  border: none;
}

.section-promotion .slide .btn:hover {
  opacity: 0.8;
}

.news-area {
  margin: 20px auto 60px;
  max-width: 1200px;
}

.news-area .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -30px;
}

.news-area .item {
  padding: 30px;
  width: 33.3333333333333333%;
}

.news-area .btn .text-block {
  display: block;
  padding: 20px 0 0;
  text-align: left;
  white-space: normal;
}

.news-area .btn .pic {
  overflow: hidden;
  border-radius: 4px;
}

.news-area .btn .text-block {
  color: #fff;
  text-align: left;
  font-size: 14px;
}

.news-area .btn .text-block .title {
  margin-bottom: 10px;
}

.news-area .btn .text-block .date {
  font-size: 13px;
  font-family: "TTCommons-Regular";
}

.section-topics {
  margin: 0 auto;
  padding: 0 0 60px;
  background: none;
}

.section-topics .inner {
  margin: auto;
  width: 900px;
}

.section-topics .topics_list {
  padding: 30px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}

.topics-btnarea {
  display: flex;
  justify-content: flex-end;
}

.topics-btnarea .topics_link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  text-align: right;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  position: relative;
  padding-right: 1.5rem;
}

.topics-btnarea .topics_link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 0.5rem;
  top: 5px;
}

.section-topics .item + .item {
  margin-top: 25px;
}

.section-topics .item-text {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.section-topics .item-text.btn {
  width: 100%;
}

.section-topics .item-text .date, .section-topics .item-text .text {
  color: #fff;
}

.section-topics .item-text .date {
  margin-right: 35px;
  font-size: 1.5rem;
  font-family: "TTCommons-Regular";
}

.section-topics .item-text .text {
  text-align: left;
  font-size: 1.4rem;
}

.section-pickup:before, .section-feature:before, .section-latest:before {
  display: block;
  margin-bottom: 79px;
  width: 100%;
  height: 1px;
  content: "";
}

.section-pickup:after, .section-feature:after, .section-latest:after {
  display: block;
  margin-top: 79px;
  width: 100%;
  height: 1px;
  content: "";
}

.section-pickup .content-inner, .section-feature .content-inner, .section-ranking .content-inner, .section-latest .content-inner {
  margin: auto;
  width: 1240px;
}

.section-pickup .container, .section-feature .container, .section-ranking .container, .section-latest .container {
  padding: 0;
}

.section-pickup .title, .section-feature .title, .section-ranking .title, .section-latest .title {
  text-align: center;
}

.section-pickup .title-en, .section-feature .title-en, .section-ranking .title-en, .section-latest .title-en {
  letter-spacing: 0.1em;
  font-weight: normal;
  font-size: 64px;
}

.section-pickup .sub-title, .section-feature .sub-title, .section-ranking .sub-title, .section-latest .sub-title {
  margin: 10px auto 40px;
  font-size: 14px;
}

.section-pickup .item-holder, .section-feature .item-holder, .section-ranking .item-holder, .section-latest .item-holder {
  position: relative;
}

.section-pickup .item-holder .inner ul, .section-feature .item-holder .inner ul, .section-ranking .item-holder .inner ul, .section-latest .item-holder .inner ul {
  width: 100%;
}

.section-pickup .item-holder .item, .section-feature .item-holder .item, .section-ranking .item-holder .item, .section-latest .item-holder .item {
  display: inline-block;
}

.section-pickup .item-holder .rank-num, .section-feature .item-holder .rank-num, .section-ranking .item-holder .rank-num, .section-latest .item-holder .rank-num {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2d2f33;
  color: #fff;
  font-size: 15px;
}

.section-ranking--top .item-holder .rank-num {
  background: #fff;
  color: #000021;
}

.section-ranking--top .splide__arrow svg {
  fill: #fff;
}

.section-pickup {
  background: #f3f3f3;
}

.section-pickup .btn {
  border: 0;
}

.section-latest .section-title {
  margin-bottom: 20px;
}

.section-ranking .item.btn {
  margin-bottom: 20px;
}

.ranking-topics {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
}

.ranking-topics .topics_link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-right: 1.5rem;
}

.ranking-topics .topics_link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 0.5rem;
  top: 5px;
}

.section-feature .section-title, .section-feature .sub-title {
  text-align: center;
}

.section-feature .section-title {
  font-weight: normal;
  font-size: 64px;
}

.section-feature .feature-block {
  margin: auto;
  max-width: 1240px;
}

.section-feature .feature-block .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.section-feature .slide, .section-feature .item {
  display: block;
  width: 360px !important;
}

.section-feature .slide.btn, .section-feature .item.btn {
  white-space: normal;
}

.section-feature .item-box, .section-feature .text-block {
  display: inline-block;
}

.section-feature .text-block {
  padding: 20px;
  border-radius: 0 0 4px 4px;
  background: #fff;
  text-align: left;
}

.section-feature .text-block .text + .date {
  margin-top: 10px;
}

.section-feature .text-block .text {
  font-size: 14px;
}

.section-feature .text-block .date {
  font-size: 13px;
}

.section-top-movie {
  background-color: #f9f9f9;
}

.section-top-movie .top-movie-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  /*margin: 0 -40px;*/
  padding-bottom: 60px;
}

.section-top-movie .top-movie-inner .top-movie-block {
  padding: 0 40px;
}

.section-top-movie .title-page {
  margin: 60px 0 40px;
}

.section-top-movie .movie-list {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  margin: -10px;
  max-width: 1260px;
}

.section-top-movie .movie-list .movie-item {
  padding: 10px;
  width: 50%;
}

.section-top-movie .movie-list .movie-holder {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.section-top-movie .movie-list .movie-info {
  overflow: hidden;
  padding: 20px;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
}

.section-top-movie .movie-list .movie-vol {
  margin-bottom: 3px;
  font-size: 13px;
}

.section-top-movie .movie-list .movie-title {
  font-size: 14px;
}

.section-top-movie .btn-primary {
  margin: auto;
  width: 600px;
}

.lesson-block {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto 80px;
  padding: 0;
  max-width: 1160px;
  border-radius: 4px;
}

.lesson-block:after {
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 30px;
  height: 50px;
  background: url(../images/icon/arrow_left_white.svg) no-repeat center center;
  background-size: cover;
  content: "";
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.lesson-block:before {
  position: absolute;
  top: 50%;
  right: 95px;
  display: inline-block;
  color: #fff;
  content: "予約受付中";
  font-size: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.lesson-block .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background: #2c2c2e;
}

.lesson-block .pic-block {
  width: 400px;
}

.lesson-block .text-block {
  padding: 0 60px;
  width: 760px;
  color: #fff;
  text-align: left;
}

.lesson-block .text-block .text {
  margin-bottom: 20px;
  font-size: 2rem;
}

.lesson-block .text-block .text.min {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.search-area form {
  position: relative;
  margin: auto;
  width: 700px;
  border-radius: 4px;
}

.search-area input[type="text"] {
  padding: 15px 40px 15px 15px;
  border: 0;
  font-size: 2rem;
}

.search-area input.positive {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/icon/icon-search-gray.svg) no-repeat center center;
  background-size: 33px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search-area .keyword-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin: 20px auto 0;
  padding-left: 145px;
  max-width: 700px;
  font-size: 14px;
}

.search-area .keyword-block .inner {
  flex-wrap: wrap;
  margin: -5px;
}

.search-area .keyword-block .title-key {
  position: absolute;
  top: 13px;
  left: 0;
}

.search-area .keyword-block .btn {
  position: relative;
  position: relative;
  margin: 5px;
  margin-bottom: 0;
  padding: 9px 15px 8px;
  width: auto;
  background: #79888b;
  color: #fff;
  font-size: 14px;
}

.sozai-area {
  background-color: #d8d8d8;
  color: #393c41;
}

.sozai-area:before {
  display: block;
  margin-bottom: 59px;
  width: 100%;
  height: 1px;
  content: "";
}

.sozai-area:after {
  display: block;
  margin-top: 59px;
  width: 100%;
  height: 1px;
  content: "";
}

.sozai-area .panel-block {
  margin: -15px auto;
  padding: 0 1.04167%;
  max-width: 1440px;
  width: 100%;
}

.sozai-area .panel-block-inner {
  position: relative;
  padding-top: 63.82979%;
}

.sozai-area .info {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: calc(100% - 30px);
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sozai-area .info .title {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 16px;
}

.sozai-area .info .disc {
  font-size: 12px;
}

.sozai-area .item {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.04167%;
  width: 20%;
  border: 0;
}

.sozai-area .item.sakekasu, .sozai-area .item.kombu, .sozai-area .item.rhubarb, .sozai-area .item.aloe, .sozai-area .item.ginger, .sozai-area .item.rawanbuki {
  width: 40%;
}

.sozai-area .sakekasu {
  top: 0;
  left: 0;
}

.sozai-area .neem {
  top: 0;
  left: 40%;
}

.sozai-area .rawanbuki {
  top: 0;
  left: 60%;
}

.sozai-area .saboten {
  top: 0;
  left: 80%;
}

.sozai-area .ama {
  top: 20%;
  left: 80%;
}

.sozai-area .kombu {
  top: 20%;
  left: 40%;
}

.sozai-area .ginger {
  top: 40%;
  left: 0;
}

.sozai-area .goma {
  top: 40%;
  left: 20%;
}

.sozai-area .hamanasu {
  top: 40%;
  left: 80%;
}

.sozai-area .tamanu {
  top: 60%;
  left: 0;
}

.sozai-area .rhubarb {
  top: 60%;
  left: 20%;
}

.sozai-area .aloe {
  top: 60%;
  left: 60%;
}

.sozai-area .calendula {
  top: 80%;
  left: 0;
}

.sozai-area .shea {
  top: 80%;
  left: 60%;
}

.sozai-area .kanzou {
  top: 80%;
  left: 80%;
}

/*
 例 PSDのフォントサイズを()内に代入 @include fsPC(20);
 第二引数をつけるとvw以外の設定　@include fsPC(28,rem)
*/
/* 商品ページ　商品詳細
************************/
.section-itemDetail .section {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1240px;
  border-radius: 4px;
}

.section-itemDetail .section + .section {
  margin-top: 15px;
}

.swiper-itemDetail .btn-movie-modal {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 100%;
  width: 100%;
}

.swiper-itemDetail .btn-movie-modal .round-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-itemDetail .btn-movie-modal .icon-play {
  width: 42px;
  height: 48px;
}

.movie-button-area .btn-movie-modal .item-info {
  font-size: 1.4rem;
}

.movie-button-area .btn-movie-modal .round-thumb {
  width: 79px;
  height: 79px;
}

.movie-button-area .btn-movie-modal .icon-play {
  width: 19px;
  height: 22px;
}

.color-images .btn-movie-modal {
  position: relative;
  padding: 5px;
  padding-top: 0;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background-color: transparent;
}

.color-images .btn-movie-modal.active:before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #dadada;
  content: "";
}

.color-images .btn-movie-modal .round-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 3px;
}

.color-images .btn-movie-modal .icon-play {
  width: 12px;
  height: 14px;
}

.item-detail-image {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-right: 6.45161%;
  padding-left: 6.45161%;
}

.item-detail-image .movie-button-area {
  position: relative;
  margin-top: 25px;
}

.item-detail-image .detail-pic {
  width: 44.44444%;
}

.item-detail-image .swiper-itemDetail {
  position: relative;
  padding-bottom: 26px;
}

.item-detail-image .swiper-itemDetail .swiper-pagination {
  bottom: 0;
}

.item-detail-image .swiper-itemDetail .hover-images {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 100%;
  width: 100%;
  pointer-events: none;
}

.item-detail-image .swiper-itemDetail .hover-images .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}

.item-detail-image .swiper-itemDetail .hover-images .item img {
  opacity: 0;
  -webkit-transition: opacity 1s;
          transition: opacity 1s;
}

.item-detail-image .swiper-itemDetail .hover-images .item.show {
  opacity: 1;
}

.item-detail-image .swiper-itemDetail .hover-images .item.show img {
  opacity: 1;
}

.item-detail-image .swiper-itemDetail .hover-images .item.fedeOut {
  -webkit-animation: fadeOut 1s both;
          animation: fadeOut 1s both;
}

.item-detail-image .detail-info {
  width: 48.14815%;
}

.item-detail-image .color-images:after {
  display: block;
  clear: both;
  content: "";
}

.item-detail-image .color-images + .item-color-block {
  display: none;
}

.item-detail-image .color-images .color-images-inner {
  margin: 60px -5px 0;
  font-size: 0;
}

.item-detail-image .color-images .color-images-inner > a, .item-detail-image .color-images .color-images-inner > span {
  display: block;
  float: left;
}

.item-detail-image .color-images .item-pic {
  display: inline-block;
  padding: 5px;
  width: 50px;
  height: 50px;
  vertical-align: top;
}

.item-detail-image .color-images .item-pic:not(.img-valiation) {
  display: none;
}

.item-detail-image .color-images .img-valiation {
  cursor: pointer;
}

.item-detail-image .color-images .img-valiation:hover, .item-detail-image .color-images .img-valiation.active {
  position: relative;
}

.item-detail-image .color-images .img-valiation:hover img, .item-detail-image .color-images .img-valiation.active img {
  position: relative;
}

.item-detail-image .color-images .img-valiation:hover:before, .item-detail-image .color-images .img-valiation.active:before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background-color: #dadada;
  content: "";
}

.item-detail-image .btn-color-modal {
  display: block;
  margin: 5px;
  width: 130px;
  height: 40px;
  border: #2d2f33 1px solid;
  border-radius: 30px;
  vertical-align: top;
}

.item-detail-image .btn-color-modal .text, .item-detail-image .btn-color-modal .icon-menu-black {
  display: inline-block;
  vertical-align: middle;
}

.item-detail-image .btn-color-modal .text {
  font-size: 12px;
  line-height: 1;
}

.item-detail-image .btn-color-modal .icon-menu-black {
  width: 40px;
  height: 40px;
  background: url("../images/icon/colum.svg") no-repeat center center/15px;
}

.item-detail-image .item-name {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
}
.item-detail-image .shown-info .item-name-eng {
  margin-bottom: 12px;
}

.item-detail-image .item-name .item-name-valiation {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1;
}

.item-detail-image .shown-info .size {
  margin-bottom: 12px;
  font-family: "TTCommons-Regular", "Noto Sans JP";
 font-weight: normal;
  font-size: 1.6rem;
}
.item-detail-image .shown-info .size .ja {
  font-size: 1.4rem;
}

.item-detail-image .shown-info .price {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 2.2rem;
}

.item-detail-image .shown-info .price.zero {
  visibility: hidden;
  margin-right: 0;
  margin-left: -0.5em;
  /*width: 0;*/
  width: auto;
}

.item-detail-image .shown-info .price, .item-detail-image .shown-info .soldout {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.item-detail-image .shown-info .soldout, .item-detail-image .shown-info .yoyaku, .item-detail-image .shown-info .nyuka {
  display: none;
  margin-right: 10px;
  padding: 10px 15px;
  border-radius: 3px;
  background-color: #c0c1c2;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.item-detail-image .shown-info .yoyaku {
  background-color: #2d2f33;
}

.item-detail-image .shown-info.soldout .item-name {
  margin-bottom: 10px;
}
.item-detail-image .shown-info.soldout .item-name-eng {
  margin-bottom: 16px;
}
.item-detail-image .shown-info.soldout .price {
  text-decoration: line-through;
}

.item-detail-image .shown-info.soldout .soldout {
  display: inline-block;
}

.item-detail-image .shown-info.nyuka .item-name {
  margin-bottom: 10px;
}
.item-detail-image .shown-info.nyuka .item-name-eng {
  margin-bottom: 16px;
}
.item-detail-image .shown-info.nyuka .price {
  text-decoration: line-through;
}

.item-detail-image .shown-info.nyuka .nyuka {
  display: inline-block;
}

.item-detail-image .shown-info.yoyaku .yoyaku {
  display: inline-block;
}

.item-detail-image .status-icon {
  position: absolute;
  top: 20px;
  left: -5px;
  z-index: 2;
}

.item-detail-image .status-icon .icon {
  display: block;
  float: left;
  clear: both;
  margin-bottom: 5px;
  padding: 10px 15px;
  border-radius: 0 3px 3px 0;
  background-color: rgba(45, 47, 51, 0.85);
  color: #fff;
  font-size: 14px;
}

.item-detail-image .status-icon .icon-soldout {
  background-color: rgba(192, 193, 194, 0.85);
}

.item-detail-image .status-icon .icon-soldout + .icon-new, .item-detail-image .status-icon .icon-soldout + .icon-status.online, .item-detail-image .status-icon .icon-soldout + .icon-status.limited {
  display: none;
}

.item-detail-image .status-icon .icon-new {
  background-color: rgba(121, 136, 139, 0.85);
}

.item-detail-image .item-color-block {
  margin: 60px auto 30px;
}

.item-detail-image .btn-area {
  padding: 60px 0 30px;
}

.item-detail-image .btn-area .btn-primary.nyuka {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.item-detail-image .btn-area .btn-primary.nyuka .nyuka-text {
  font-size: 14px;
}

.item-detail-image .btn-area .btn-primary.nyuka .nyukaDate {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}

.item-detail-image .btn-area .row {
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.item-detail-image .btn-area .col {
  -webkit-box-flex: unset;
  -webkit-flex-basis: unset;
          flex-basis: unset;
  -webkit-flex-grow: unset;
          flex-grow: unset;
  width: 73.07692%;
}

.item-detail-image .btn-area .col.wish {
  width: 30.76923%;
}

.item-detail-image .btn-area .col .link-text, .item-detail-image .btn-area .col .link-text-underline {
  display: block;
  margin-top: 20px;
  text-align: center;
}

.item-detail-image .btn-area .copy-url {
  margin-top: 10px;
  font-weight: bold;
}

.IE .item-detail-image .before-add-list {
  width: 18px;
}

.item-detail-image .default-cart-button .btn.hide {
  display: none;
}

.item-detail-image .default-cart-button .btn-primary.soldout img {
  width: 95px;
}

.item-detail-image .valiation-prop .item {
  display: none;
}

.item-detail-image .valiation-prop .item.show {
  display: block;
}

.item-detail-image .valiation-prop .btn-primary.soldout img {
  width: 95px;
}

.item-detail-block {
  padding-right: 11.29032%;
  padding-left: 11.29032%;
}

.item-detail-block .btn-color-modal {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 30px auto;
  padding: 5px;
  width: 262px;
  height: 60px;
  border: #2d2f33 1px solid;
  border-radius: 50px;
}

.item-detail-block .btn-color-modal .text {
  display: block;
}

.item-detail-block .btn-color-modal .icon-menu-black {
  display: inline-block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  background: url("../images/icon/colum.svg") no-repeat center center/15px;
}

.item-detail-block .link-text-underline {
  margin-top: 20px;
  font-size: 14px;
}

.item-detail-block .text-explain {
  font-size: 1.6rem;
}

.item-detail-block .text-explain strong {
  display: block;
  margin-bottom: 60px;
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.8;
}

.item-detail-block .text-explain + .info-area {
  margin-top: 40px;
}

.item-detail-block .maroon {
  font-size: 1.2rem;
}

.item-detail-block .f-red {
  color: #924c54;
}

.item-detail-block .info-area {
  padding: 40px;
  background: #f9f9f9;
  font-size: 1.4rem;
  line-height: 1.6;
}

.item-detail-block .info-list .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
}

.item-detail-block .info-list .info-block + .info-block {
  margin-top: 20px;
}

.item-detail-block .info-list .info-block .link-text-underline {
  margin-top: 4px;
}

.item-detail-block .info-list .info-block .link-text-underline:before {
  display: none;
}

.item-detail-block .info-list .title {
  width: 140px;
  line-height: 1.8;
}

.item-detail-block .info-list .info {
  position: relative;
  width: calc(100% - 140px);
  line-height: 1.8;
}

.item-detail-block .info-list .info .text-line-1 {
  overflow: hidden;
  width: 100%;
  height: 23px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-detail-block .info-list .info .text-line-2 {
  overflow: hidden;
  height: 46px;
}

@supports (-webkit-line-clamp: 2) {
  .item-detail-block .info-list .info .text-line-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;
  }
}

.item-detail-block .info-list .info .full {
  position: absolute;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.item-detail-block .info-list .info .btn-read-more {
  display: none;
}

.item-detail-block .info-list .open .text-line-1 {
  display: none;
}

.item-detail-block .info-list .open .text-line-2 {
  display: none;
}

.item-detail-block .info-list .open .full {
  position: relative;
  display: block;
  visibility: visible;
  opacity: 1;
}

.item-detail-block .info-list .read-more .text-line-1, .item-detail-block .info-list .read-more .text-line-2 {
  width: calc(100% - 35px);
}

.item-detail-block .info-list .read-more .btn-read-more {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
  color: #79888b;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

.item-detail-block .info-list .read-more .btn-read-more.line2 {
  top: 24px;
}

.item-detail-block .info-list .read-more .btn-read-more:hover {
  text-decoration: none;
}

.item-detail-block .categorys + .info-block {
  margin-top: 20px;
}

.item-detail-block .categorys .cate {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.item-detail-block .categorys .cate + .cate {
  margin-top: 20px;
}

.item-detail-block .categorys .title {
  pointer-events: none;
}

.item-detail-block .categorys .info {
  margin-left: -5px;
}

.item-detail-block .categorys .tag {
  display: inline-block;
  margin: 0 5px;
  border-bottom: 1px solid #79888b;
  color: #79888b;
  line-height: 1.6;
}

.item-detail-block .categorys .tag:hover {
  border-bottom: 0;
}

.item-detail-block .categorys .tag + .tag:before {
  display: inline-block;
  margin-top: -3px;
  margin-left: -5px;
  color: #393c41;
  content: "/";
  vertical-align: middle;
}

.section-detail-movie > .buttonarea {
  margin-top: 60px;
}

.section-detail-movie > .buttonarea .btn {
  margin: auto;
  width: 360px;
}

.section-detail-movie [data-ganre=joy] .ganre_with {
  display: none !important;
}

.section-detail-movie [data-ganre=with] .ganre_joy {
  display: none !important;
}

.section-detail-movie .grid-layout {
  display: -ms-grid;
  display:     grid;

  -ms-grid-columns: 37.5% 7.8125% auto;
  -ms-grid-rows: auto auto;
  grid-template-columns: 37.5% 7.8125% auto;
  grid-template-rows: auto auto;
}

.section-detail-movie .grid-layout .section-title {
  font-size: 1.2rem;

  grid-column: 1 / 4;
  -ms-grid-column-span: 3;
  -ms-grid-row: 1;
      grid-row: 1;
}

.section-detail-movie .grid-layout .movie-grid {
  -ms-grid-column: 1;
      grid-column: 1;
  -ms-grid-row: 2;
      grid-row: 2;
}

.section-detail-movie .grid-layout .movie-product-info {
  -ms-grid-column: 3;
      grid-column: 3;
  -ms-grid-row: 2;
      grid-row: 2;
}

.section-detail-movie .grid-layout .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-detail-movie .grid-layout .section-title .title {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  font-size: 3.4rem;
  line-height: 1;
}

.section-detail-movie .grid-layout .section-title .text-sub {
  font-size: 12px;
}

.section-detail-movie .grid-layout .movie-holder .thumb {
  overflow: hidden;
  border-radius: 4px;
}

.section-detail-movie .grid-layout .movie-product-info .product-list .movie-info-holder {
  min-width: 525px;
}

.section-detail-movie .grid-layout .movie-product-info .product-list .movie-info-holder .round-thumb {
  width: 80px;
  height: 80px;
}

.section-detail-movie .grid-layout .movie-product-info .product-list .movie-info-holder .item-info {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.section-detail-movie .grid-layout .movie-product-info .info-text {
  font-size: 14px;
  line-height: 25px;
}

.section-detail-movie .grid-layout .movie-product-info .info-text + .product-list {
  margin-top: 40px;
}

.btn-read-more {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  margin-left: auto;
  width: 100%;
  height: 40px;
  background: url("../images/icon/arrow_down_black.svg") no-repeat center center/17px 10px;
  color: #79888b;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

.btn-read-more:hover {
  text-decoration: none;
}

.review-block {
  padding-top: 40px;
  padding-right: 11.29032%;
  padding-left: 11.29032%;
}

.review-block .text-noreview {
  margin-bottom: 40px;
  text-align: center;
}

.review-block .title-section {
  margin-top: 0;
  font-size: 2rem;
}

.review-block .review-item {
  background: #eee;
}

.review-block .review-list .item {
  margin-top: 40px;
}

.review-block .review-list .review-ttl {
  margin-bottom: 10px;
}

.review-block .review-list .review-ttl .nickname {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
}

.review-block .review-list .review-ttl .review-date {
  display: inline-block;
  color: #79888b;
  font-family: "TTCommons-Regular";
}

.review-block .review-list .review-body {
  line-height: 1.7;
}

.review-block .area-form {
  max-width: 800px;
}

html.IE .review-block .area-form {
  width: auto;
}

.review-block .text-already {
  color: #924c54;
  text-align: center;
}

.review-block .btn-more {
  display: block;
  margin: 45px auto -15px;
  padding: 15px;
  width: 150px;
  background: url("../images/icon/step-arrow-gray-bottom.svg") no-repeat center center/contain;
  background-position: right;
  background-size: 16px 9px;
  text-align: center;
  font-weight: bold;
}

.review-block .pulldown {
  position: absolute;
  visibility: hidden;
  padding-bottom: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
          transition: opacity 0.6s;
}

.review-block .open .pulldown {
  position: relative;
  visibility: visible;
  padding-top: 10px;
  opacity: 1;
}

.review-block .content.show .text-already {
  display: none;
}

.review-block .rating-star {
  display: flex;
  align-items: baseline;
}

.item-stars {
  margin: 20px 0 30px;
}

.item-stars > .review-list-stars:first-child {
  display: inline-block;
}

.item-stars > .review-list-stars {
  display: none;
}

.item-stars {
  display: flex;
  align-items: center;
}
.item-stars a {
  position: relative;
}

.item-stars a:before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3e3a39;
  content: "";
}

.item-stars a:after {
  position: absolute;
  top: 0;
  right: -23px;
  width: 13px;
  height: 24px;
  background: url(../images/icon/arrow_down_black.svg) no-repeat center center;
  background-size: 13px;
  content: "";
}

.review-list-stars.num-stars {
  margin-right: 20px;
}

.review-list-stars.num-stars > * {
  display: inline-block;
  vertical-align: middle;
}

.review-list-stars.num-stars span {
  margin-right: 7px;
  font-weight: 700;
  font-size: 18px;
}

.dropdown-star-holder {
  height: 0;
  opacity: 0;
}

.recommend-block {
  margin: 60px auto 0;
  max-width: 1280px;
}

div[fsid^="fsrecommenddiv"] .recommend-block {
  margin: 0 auto;
}

.recommend-block .item-holder .name {
  font-size: 1.4rem;
  font-weight: 400;
}

.item_detail body {
  overflow: hidden;
}

.color-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  visibility: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  min-height: 100vh;
}

.colorModalShow .color-modal {
  position: relative;
  bottom: auto;
  left: auto;
  visibility: visible;
}

html.IE .colorModalShow .color-modal {
  padding: 5%;
}

.colorModalHide .color-modal {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
  pointer-events: none;
}

.color-modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.color-modal .color-modal-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  border-radius: 4px;
  background-color: #eee;
}

.colorModalShow .color-modal .color-modal-inner {
  -webkit-animation: modalShow 0.5s both;
          animation: modalShow 0.5s both;
}

.colorModalHide .color-modal .color-modal-inner {
  -webkit-animation: modalHide 0.5s both;
          animation: modalHide 0.5s both;
}

.color-modal .color-modal-head {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 20px 30px;
  width: 100%;
  height: 100px;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
}

.color-modal .color-modal-head .btn-select {
  width: 220px;
  height: 60px;
}

.color-modal .color-modal-head .btn-close {
  margin-left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.color-modal .color-modal-body {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
}

.color-modal .color-list {
  overflow-y: auto;
  max-height: 810px;
  width: 34.67742%;
  height: 100%;
  background-color: #fff;
}

.color-modal .color-list .item + .item {
  border-top: #eee solid 1px;
}

.color-modal .color-list .link {
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  padding: 30px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
          transition: background-color 0.3s;
}

.color-modal .color-list .link:hover {
  background-color: rgba(238, 238, 238, 0.5);
}

.color-modal .color-list .link.active, .color-modal .color-list .link.active:hover {
  background-color: #eee;
}

.color-modal .color-list .pic {
  margin-right: 30px;
  width: 60px;
}

.color-modal .color-list .info {
  width: 280px;
}

.color-modal .color-list .info .title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.color-modal .color-list {
  padding-top: 0 !important;
}

.color-modal .color-visual {
  position: relative;
  padding: 30px;
  width: 65.32258%;
}

.color-modal .color-visual .holder {
  position: relative;
  width: 100% !important;
  background-color: #fff;
}

.color-modal .color-visual .holder .swiper-color-modal {
  width: 100%;
}

.color-modal .color-visual .holder .swiper-wrapper {
  -webkit-transform: none !important;
          transform: none !important;
}

.color-modal .color-visual .holder .swiper-slide {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.color-modal .color-visual .holder .swiper-slide img {
  opacity: 0;
  -webkit-transition: opacity 1s;
          transition: opacity 1s;
}

.color-modal .color-visual .holder .swiper-slide-active {
  z-index: 5;
  -webkit-transition: none !important;
          transition: none !important;
}

.color-modal .color-visual .holder .swiper-slide-active img {
  opacity: 1;
}

@media (min-width: 768px) {
  .container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1240px;
  }
}

@media (max-width: 1180px) {
  .wrap.shoplist .nav-local .row {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    margin: auto;
    width: 800px;
  }

  .wrap.shoplist .nav-local .row .col {
    -webkit-box-flex: unset;
    -webkit-flex-basis: unset;
            flex-basis: unset;
    -webkit-flex-grow: unset;
            flex-grow: unset;
    margin-bottom: 8px;
    width: 133.33333px;
  }

  .wrap.shoplist .nav-filter {
    margin: auto;
    width: 600px;
  }

  .wrap.shoplist .nav-filter .filter-beauty:before {
    content: none !important;
  }
}

.wrap.member .reward_item_notes {
  margin: 0 auto 50px;
  width: 780px;
  text-align: center;
}
#fathersday2021 .gallery-cell {
  padding: 10px;
  width: 50%;
  height: auto;
}
#fathersday2021 .gallery-cell a {
  display: block;
  height: 712px;
}
#fathersday2021 .lead-text {
  position: relative;
  top: -2px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
}
#fathersday2021 .sub-text {
  position: relative;
  top: -2px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 14px;
}
#fathersday2021 .font-tt {
  padding-left: 10px;
  border-left: 3px solid #ccc;
  font-size: 18px;;
}
#fathersday2021 .carousel-item__title {
  padding-left: 10px;
  border-left: 3px solid #ccc;
  font-size: 18px;;
}
#fathersday2021 .pic {
  margin: 6px auto 6px !important;
}
#fathersday2021 .name {
  margin-bottom: 10px;
  height: 2.8em;
  font-size: 18px;
}
#fathersday2021 .text {
  margin-bottom: 10px;
  font-size: 12px;
}
#fathersday2021 .price {
  margin-bottom: 10px;
  font-size: 16px;
}
#fathersday2021 .price span {
  font-size: 11px;
}
#fathersday2021 .note {
  margin-bottom: 10px;
  font-size: 12px;
}
#fathersday2021 .note-box {
  margin: 60px 10px;
}
/* 1:3　左画像・右コンテンツ 両方の要素をくくった親要素にcfを付ける */
.one-third-left {
  float: left;
  width: 22%;
}
.one-third-left img {
  border-radius: 4px;
}

.one-third-right {
  float: right;
  padding: 0;
  width: 74%;;
}

/* 3:1　左コンテンツ・右画像 両方の要素をくくった親要素にcfを付ける */
.third-one-left {
  float: left;
  width: 72%;
}

.third-one-right {
  float: right;
  padding: 0;
  width: 22%;;
}
.third-one-right img {
  border-radius: 4px;
}

/* micro clearfx */
.cf:before, .cf:after {
  display: table;
  content: "";;
}
.cf:after {
  clear: both;
}
.cf {
  zoom: 1;
} /* IE 6/7用。不要なら削除可。 */

/* PCで全幅の画像をスマホでスワイプサイズにする */
.img-slide img.w890 {
  width: 890px;
}

/* 例や注意事項のヘッド分をインデントさせる */
dl.letter03 dd {
  position: relative;
  top: -21px;
  margin-left: 40px;
}
.text-indent-3em {
  padding-left: 3em;
  text-indent: -3em;
}
.text-indent-25em {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.text-indent-2em {
  padding-left: 2em;
  text-indent: -2em;
}
.text-indent-15em {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
ul.item-info-nakaguro {
  margin-top: 12px;
  padding-left: 20px;
}
ul.item-info-nakaguro li {
  color: #393c41;
  list-style-type: disc;
  font-size: 12px;
}
/* PCでのみハーフサイズで横に並べる 両方の要素をくくった親要素にcfを付ける */
.half-half-left {
  float: left;
  width: 48%;
}
.half-half-right {
  float: right;
  padding: 0;
  width: 48%;
}
/*　画像をマウスオーバーで拡大　imgの親要素に付ける　*/
.image_mouseover_2 {
  float: left;
  overflow: visible;
  margin-right: 30px;
  width: 40%;
  height: 20%;
  position: relative;
  z-index: 1;
}
.image_mouseover_2:hover {
  z-index: 100;
}

.image_mouseover_2 img {
  display: block;
  transition-duration: 0.5s;
}

.image_mouseover_2 img:hover {
  transition-duration: 0.5s;
  transform: scale(2.0, 2.0);
}
.image_mouseover_2[data-mouseover-scale="1.1"] img:hover {
  transform: scale(1.1);
}
.image_mouseover_2[data-mouseover-scale="1.2"] img:hover {
  transform: scale(1.2);
}
.image_mouseover_2[data-mouseover-scale="1.3"] img:hover {
  transform: scale(1.3);
}
.image_mouseover_2[data-mouseover-scale="1.4"] img:hover {
  transform: scale(1.4);
}
.image_mouseover_2[data-mouseover-scale="1.5"] img:hover {
  transform: scale(1.5);
}
.image_mouseover_2[data-mouseover-scale="1.6"] img:hover {
  transform: scale(1.6);
}
.image_mouseover_2[data-mouseover-scale="1.7"] img:hover {
  transform: scale(1.7);
}
.image_mouseover_2[data-mouseover-scale="1.8"] img:hover {
  transform: scale(1.8);
}
.image_mouseover_2[data-mouseover-scale="1.9"] img:hover {
  transform: scale(1.9);
}

/*　子要素をセンターに配置　親要素に付ける　*/
.center-wrap {
  margin: 0 auto;
  width: max-content;
}

/* サボンマイファースト　画像に枠　文章上下センター配置 */
.one-third-right.v-mid {
  display: table;
  height: 200px;
}
img.border1 {
  border: 1px solid #e9e8e8;
}
.one-third-right.v-mid p {
  display: table-cell;
  vertical-align: middle;
}

.section-itemlist .item-holder .link {
  display: flex;
  flex-direction: column;
}

.section-itemlist .item-holder .name {
  padding: 20px 20px 10px 20px;
  font-size: 1.4rem;
  font-weight: 400;
}

.section-itemlist .item-holder .text-area {
  margin-top: auto;
  padding: 10px 20px 20px 20px;
}

.cart-item .cart-paperbag {
  margin-top: 15px;
}

.cart-item .cart-paperbag .size {
  font-size: 12px;
}

.recommend-block .title.ttl-sec-left {
  text-align: center;
}

.flex-item__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: -20px;
}

.flex-item__container .flex-item__picture {
  margin-top: 20px;
  margin-right: 20px;
  width: calc((100% - 20px) / 2);
}

.flex-item__container .flex-item__picture .flex-item__text {
  padding: 20px;
  background: #fafafa;
  text-align: left;
}

.flex-item__container .flex-item__picture .flex-item__text .flex-item__name {
  margin-bottom: 10px;
}

.flex-item__container .flex-item__picture:nth-child(2n) {
  margin-right: 0;
}

/* card-message */
.card-message .area-form:not(#error) {
  border: solid 1px #c5c5c5;
  border-radius: 2px;
  background: #fff;
  padding-top: 0;
  margin-bottom: 32px;
}
.card-message .area-form:not(#error) > div {
  padding: 24px 40px;
}
.card-message .area-form:not(#error) .message ul > li {
  padding-left: 20px;
  position: relative;
  color: #393c4c;
}
.card-message .area-form:not(#error) .message ul > li + li {
  margin-top: 4px;
}
.card-message .area-form:not(#error) .message ul > li::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  top: 10px;
  left: 8px;
  background: #393c4c;
}
.card-message .block-attention {
  color: #393c41;
}
.card-message.card-message--content-center .container {
  display: flex;
  justify-content: center;
}
.card-message.card-message--content-center .area-form:not(#error) .message ul > li {
  padding-left: 0;
}
.card-message.card-message--content-center .area-form:not(#error) .message ul > li::before {
  content: none;
}
.card-message.card-message--error .area-form:not(#error) .message ul > li {
  color: #963e56;
}
.card-message.card-message--error .area-form:not(#error) {
  border: solid 1px #963e56;
  background: #ffecec;
}
.card-message.card-message--error .area-form:not(#error) .message ul > li::before {
  background: #963e56;
}
.card-message #error.area-form {
  border: solid 1px #c5c5c5;
  border-radius: 2px;
  background: #fff;
  padding-top: 0;
  margin-bottom: 32px;
}
.card-message #error.area-form > div {
  padding: 24px 40px;
}
.card-message #error.area-form .message ul > li {
  padding-left: 20px;
  position: relative;
  color: #393c4c;
  font-size: 14px;
  line-height: 1.7;
}
.card-message #error.area-form .message ul > li + li {
  margin-top: 4px;
}
.card-message #error.area-form .message ul > li::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  top: 10px;
  left: 8px;
  background: #393c4c;
}
.card-message.card-message--content-center .container {
  display: flex;
  justify-content: center;
}
.card-message.card-message--content-center #error.area-form .message ul > li {
  padding-left: 0;
}
.card-message.card-message--content-center #error.area-form .message ul > li::before {
  content: none;
}
.card-message.card-message--error #error.area-form .message ul > li {
  color: #963e56;
}
.card-message.card-message--error #error.area-form {
  border: solid 1px #963e56;
  background: #ffecec;
}
.card-message.card-message--error #error.area-form .message ul > li::before {
  background: #963e56;
}

.input-date-outer {
  display: flex;
  align-items: center;
}
.input-date-text {
  margin-left: 12px;
}

.wrap.shiro_cafe .menu-block .menu-inner .add_takeaway-icon {
  position: relative;
  padding-right: 40px;
}

.wrap.shiro_cafe .menu-block .menu-inner .add_takeaway-icon::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../images/icon/icon-takeaway_s.jpg);
  background-size: 40px;
  content: "";
  transform: translateY(-50%);
}

.review-summary-container .ukomistarRatingSummarySection,
.review-container .reviewWidget {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Roboto, "Droid Sans", sans-serif;
}

.starRating span.highlight.ukmcustomfont:first-child {
  padding-left: 0;
}
.starRating span.highlight.ukmcustomfont {
  padding-left: 1px;
}

/* U-KOMI スター*/
.starRating .ukmcustomfont-ukm-full-star:before,
.starRating .ukmcustomfont-ukm-half-star:before,
.starRating .ukmcustomfont-ukm-blank-star:before {
  width: 22px;
  height: 19px;
  display: block;
  content: "";
}
.item-holder .review-summary-container .starRating {
  display: flex;
  align-items: center;
}
.item-holder .review-summary-container {
  min-height: 30px;
}
.item-holder .starRating span.highlight.ukmcustomfont {
  padding-right: 0;
}
.item-holder .starRating .ukmcustomfont-ukm-full-star:before,
.item-holder .starRating .ukmcustomfont-ukm-half-star:before,
.item-holder .starRating .ukmcustomfont-ukm-blank-star:before {
  width: 16px;
  height: 14px;
}
.starRating .ukmcustomfont-ukm-full-star:before {
  background-image: url('data:image/svg+xml;utf-8,<svg viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0224 0.354309L13.3892 7.30763H21.0485L14.852 11.605L17.2189 18.5583L11.0224 14.261L4.82585 18.5583L7.1927 11.605L0.996193 7.30763H8.6555L11.0224 0.354309Z" fill="%237E8C91"><path></path></path></svg>');
}
.starRating .ukmcustomfont-ukm-half-star:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%237E8C91%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cpath class='st0' d='M11.0223999%2c0.354309'/%3e%3crect class='st1' /%3e%3cg%3e%3cpolygon class='st0' points='11.0216675%2c14.2614746 11.0216675%2c0.3564453 8.6555176%2c7.3076172 0.9962158%2c7.3076172 7.192688%2c11.6049805 4.8258667%2c18.5582886 '/%3e%3c/g%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-blank-star:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%237E8C91%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3crect class='st1' width='22' height='19'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating > span.ukmcustomfont-ukm-full-star,
.starRating > span.ukmcustomfont-ukm-half-star,
.starRating .ukmcustomfont-ukm-blank-star {
  padding-right: 1px;
  padding-left: 0;
}
.starRating > span.ukmcustomfont-ukm-full-star:last-child,
.starRating > span.ukmcustomfont-ukm-half-star:last-child,
.starRating > span.ukmcustomfont-ukm-blank-star:last-child {
  padding-right: 0;
}
.review-summary-container .starRating .ukmcustomfont + .reviewNumber {
  font-size: 12px;
  margin-top: 2px;
  color: #393c41;
}
/* U-KOMI レビュー */
.reviewWidget .reviewWidget_title,
.reviewWidget_title_container .reviewWidget_title {
  font-size: 22px;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 33px;
  text-align: center;
  font-weight: 400;
}
.reviewWidget .reviewWidget_inner {
  padding-top: 0;
}
.reviewWidget .reviewFilterBtn .reviewFilterBtn-btn {
  background: #2c2e33 !important;
}
.reviewWidget .reviewFilterBtn .reviewFilterBtn-btn:hover {
  background: #525151 !important  ;
}
.reviewWidget .u-komi-sorting-btn-active,
.reviewWidget .u-komi-sorting-btn-form-data:hover {
  background: #2c2e33 !important;
}
.reviewWidget .review-widget-summary-container .starRating .reviewNumber strong {
  font-size: 22px;
}
.reviewWidget .review-widget-summary-container .starRating > span:first-child {
  padding-left: 0;
}
.u-komi-section .ReviewWidget_pagination span.active,
.u-komi-section .ReviewWidget_question_pagination span.active,
.u-komi-section .productWidget_pagination span.active {
  background-color: #2c2e33;
  border: 1px solid #2c2e33;
  cursor: default !important;
}
.u-komi-section .ReviewWidget_pagination span:hover,
.u-komi-section .ReviewWidget_question_pagination span:hover,
.u-komi-section .productWidget_pagination span:hover {
  background-color: #2c2e33;
  border: 1px solid #2c2e33;
  cursor: pointer;
}

.reviewWidget .review-widget-summary-container .starRating .ukmcustomfont-ukm-full-star:before,
.reviewWidget .review-widget-summary-container .starRating .ukmcustomfont-ukm-half-star:before,
.reviewWidget .review-widget-summary-container .starRating .ukmcustomfont-ukm-blank-star:before,
.reviewWidget .dw-review-widget-summary-container .starRating .ukmcustomfont-ukm-full-star:before,
.reviewWidget .dw-review-widget-summary-container .starRating .ukmcustomfont-ukm-half-star:before,
.reviewWidget .dw-review-widget-summary-container .starRating .ukmcustomfont-ukm-blank-star:before {
  width: 28px;
  height: 24px;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.reviewWidget .review-widget-summary-container .starRating .ukmcustomfont + .reviewNumber {
  margin-top: 6px;
  color: #393c41;
}
/* U-KOMI スター 製品詳細ページ */
.detail-review-star {
  min-height: 70px;
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
.detail-review-star .review-summary-container {
  /* display: inline-block !important; */
}
.detail-review-star .ukomistarRatingSummarySection {
  position: relative;
  padding-right: 13px;
}
.detail-review-star .ukomistarRatingSummarySection::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 13px;
  height: 8px;
  background: url(../images/icon/arrow_down_black.svg) no-repeat center center;
  background-size: 13px;
  content: "";
  transform: translate(0, -50%);
}
.detail-review-star .reviewNumber {
  color: #393c41;
}
.detail-review-star[data-no-review="true"] .detail-reviewText-outer {
  display: none;
}
.detail-reviewText-outer {
  margin-right: 8px;
}
.detail-reviewText {
  font-size: 16px;
  font-weight: bold;
}
/* 製品詳細過去レビュー */
.area-past-review {
  padding: 20px 10px;
}
.area-past-review .item-info-head {
  max-width: 100%;
}
.area-past-review .review-list-stars {
  display: none;
}
.area-past-review .accordion-detail .review-list .item:first-child {
  margin-top: 0;
}
/* U-KOMI レビューツールチップ */
.ukomi_stars_rating_tooltip .ratingBar {
  background-color: #393c41;
}
.ukomi_stars_rating_tooltip .starRatingNumber span {
  color: #6c6c73;
}
.ukomi_stars_rating_tooltip .ratingDetailTotalReview {
  color: #6c6c73;
}
/* U-KOMI アイコン */
.uKomiWidgetFormFieldLabel .errorCheckIcon .ukomi-error-icon {
  background: #79888b;
}
/* U-KOMI ボタン */
.uKomiWidgetWriteReviewForm .uKomiWidgetSubmitBtnWrapper button {
  border-color: #2c2e33;
  background-color: #2c2e33;
  color: #fff;
}
/* U-KOMI トップページ */
.top-instagram-gallery {
  margin-bottom: 48px;
}
/* U-KOMI 仮スタイル */
.starRating .ukmcustomfont-ukm-full-star.yellow:before {
  background-image: url('data:image/svg+xml;utf-8,<svg viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0224 0.354309L13.3892 7.30763H21.0485L14.852 11.605L17.2189 18.5583L11.0224 14.261L4.82585 18.5583L7.1927 11.605L0.996193 7.30763H8.6555L11.0224 0.354309Z" fill="%23F9DE4C"><path></path></path></svg>');
}
.starRating .ukmcustomfont-ukm-half-star.yellow:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%23F9DE4C%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cpath class='st0' d='M11.0223999%2c0.354309'/%3e%3crect class='st1' /%3e%3cg%3e%3cpolygon class='st0' points='11.0216675%2c14.2614746 11.0216675%2c0.3564453 8.6555176%2c7.3076172 0.9962158%2c7.3076172 7.192688%2c11.6049805 4.8258667%2c18.5582886 '/%3e%3c/g%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-blank-star.yellow:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%23F9DE4C%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3crect class='st1' width='22' height='19'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-full-star.glay:before {
  background-image: url('data:image/svg+xml;utf-8,<svg viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0224 0.354309L13.3892 7.30763H21.0485L14.852 11.605L17.2189 18.5583L11.0224 14.261L4.82585 18.5583L7.1927 11.605L0.996193 7.30763H8.6555L11.0224 0.354309Z" fill="%237E8C91"><path></path></path></svg>');
}
.starRating .ukmcustomfont-ukm-half-star.glay:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%237E8C91%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cpath class='st0' d='M11.0223999%2c0.354309'/%3e%3crect class='st1' /%3e%3cg%3e%3cpolygon class='st0' points='11.0216675%2c14.2614746 11.0216675%2c0.3564453 8.6555176%2c7.3076172 0.9962158%2c7.3076172 7.192688%2c11.6049805 4.8258667%2c18.5582886 '/%3e%3c/g%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-blank-star.glay:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%237E8C91%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3crect class='st1' width='22' height='19'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-full-star.navy:before {
  background-image: url('data:image/svg+xml;utf-8,<svg viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0224 0.354309L13.3892 7.30763H21.0485L14.852 11.605L17.2189 18.5583L11.0224 14.261L4.82585 18.5583L7.1927 11.605L0.996193 7.30763H8.6555L11.0224 0.354309Z" fill="%23000c2c"><path></path></path></svg>');
}
.starRating .ukmcustomfont-ukm-half-star.navy:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%23000c2c%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cpath class='st0' d='M11.0223999%2c0.354309'/%3e%3crect class='st1' /%3e%3cg%3e%3cpolygon class='st0' points='11.0216675%2c14.2614746 11.0216675%2c0.3564453 8.6555176%2c7.3076172 0.9962158%2c7.3076172 7.192688%2c11.6049805 4.8258667%2c18.5582886 '/%3e%3c/g%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3c/svg%3e");
}
.starRating .ukmcustomfont-ukm-blank-star.navy:before {
  background-image: url("data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e %3c!-- Generator: Adobe Illustrator 26.5.0%2c SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e %3csvg version='1.1' id='%e3%83%ac%e3%82%a4%e3%83%a4%e3%83%bc_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22 19' style='enable-background:new 0 0 22 19%3b' xml:space='preserve'%3e%3cstyle type='text/css'%3e.st0%7bfill:%23000c2c%3b%7d .st1%7bfill:none%3b%7d%3c/style%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M11.0223846%2c2.5266323l1.7041521%2c5.0065622l0.1614895%2c0.4744396h0.5011702h5.4216137l-4.3577337%2c3.022151 l-0.4338903%2c0.300909l0.1701508%2c0.4998703l1.6820383%2c4.9413719l-4.4500685-3.0861416l-0.3989105-0.2766504l-0.3989096%2c0.2766504 L6.1733403%2c16.771965l1.6820164-4.9414101l0.1701503-0.4998608l-0.4338903-0.300909l-4.3577342-3.022151h5.4216142h0.5011597 l0.1615-0.4744301L11.0223846%2c2.5266323 M11.0223961%2c0.3543053L8.6554966%2c7.3076344H0.9961965l6.1964998%2c4.2973604 l-2.3668499%2c6.9533091l6.1965494-4.2972994l6.1965008%2c4.2972994l-2.3669004-6.9533091l6.1964998-4.2973604h-7.6592999 L11.0223961%2c0.3543053L11.0223961%2c0.3543053z'/%3e%3c/g%3e%3crect class='st1' width='22' height='19'/%3e%3c/g%3e%3c/svg%3e");
}
.ukomi_stars_rating_tooltip .ratingBar.yellow {
  background-color: #F9DE4C;
}
.ukomi_stars_rating_tooltip .ratingBar.glay {
  background-color: #7E8C91;
}
.ukomi_stars_rating_tooltip .ratingBar.navy {
  background-color: #000c2c;
}
.u-komi-review-section .singleReview_body {
  padding-top: 10px;
}
.u-komi-review-section .singleReview_body .singleReview_title {
  display: none;
}
.reviewWidget .reviewFilterBtn .reviewFilterBtn-btn.navy {
  background: #000c2c !important;
}
.reviewWidget .u-komi-sorting-btn-active.navy,
.reviewWidget .u-komi-sorting-btn-form-data.navy:hover {
  background: #000c2c !important;
}
.reviewWidget .ReviewWidget_pagination.navy span.active,
.reviewWidget .ReviewWidget_question_pagination.navy span.active,
.reviewWidget .productWidget_pagination.navy span.active {
  background-color: #000c2c;
  border: 1px solid #000c2c;
  cursor: default !important;
}
.reviewWidget .ReviewWidget_pagination.navy span:hover,
.reviewWidget .ReviewWidget_question_pagination.navy span:hover,
.reviewWidget .productWidget_pagination.navy span:hover {
  background-color: #000c2c;
  border: 1px solid #000c2c;
  cursor: pointer;
}
[data-pageid="item_list_image"] .ukomi_stars_rating_tooltip,
.item-holder .ukomi_stars_rating_tooltip {
  display: none;
}
.ukomistarRatingSummarySection.tootip_show .ukomi_stars_rating_tooltip {
  z-index: 900;
}

.reviewWidget .uKomiWidgetWriteReviewForm .uKomiWidgetFormFields:first-child .uKomiWidgetFormFieldGroup:nth-child(2) {
  display: none;
}

#section-review .review-list > .item.is-pickup-review {
  width: 100%;
  transform: none;
}

/* U-KOMI レビューウィジェット（お客様のお声ページなど） */
.reviewWidget .dw-review-widget-summary-container {
  margin-bottom: 32px;
}

/* U-KOMI 静的レビュー投稿モーダル */
.reviewPost .errorCheckIcon .ukomi-error-icon {
  background: #cccccc;
  color: #000000;
}
.reviewPost #ukomiSubmitNicknameBtn,
.reviewPost #ukomiSubmitNicknameBtn:hover,
.reviewPost #ukomiSubmitReviewBtn,
.reviewPost #ukomiSubmitReviewBtn:hover,
.reviewPost_ .reviewPicturesBtnContainer .uploadPictureBtn,
.reviewPost_ .reviewPicturesBtnContainer .uploadPictureBtn:hover {
  background: #000030;
  color: #ffffff;
}
#reviewModal .uKomiCloseReviewSubmit,
#reviewModal .uKomiCloseReviewSubmit:hover,
.reviewPost_ .uKomiCloseReviewSubmit,
.reviewPost_ .uKomiCloseReviewSubmit:hover {
  background: #000030;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
}
.reviewPost_ .reviewPicturesBtnContainer .skipPictureBtn,
.reviewPost .skipNicknameBtn {
  color: #000;
  text-decoration: underline;
}
.reviewPost_ .success-main-img {
  display: none;
}
.reviewPost_ .success_message_wrapper {
  background-image: none;
  padding-top: 0;
  margin-top: 0;
}
#reviewModal .reviewPost .starRating .starRatingText {
    display: none;
}
.reviewModalThanksText {
  font-size: 14px;
  margin-bottom: 8px;
}
.reviewModalThanksTextGroup {
  margin-bottom: 24px;
}
.reviewModalThanksTextGroup > *:last-child {
  margin-bottom: 0;
}
.reviewModalThanksCard {
  background: #F6F5FA;
  font-size: 12px;
  padding: 24px 60px;
}
.reviewModalThanksCardText {
  margin-bottom: 8px;
}
.reviewModalThanksCardText a {
  color: #000;
  display: inline-block;
  text-decoration: underline;
}
.reviewWidget .singleReview_commentDate {
  display: none;
}
.singleReview_name .singleReview_verified_buyer_tag {
  color: #393c41;
}
#reviewModal .reviewPost_title {
  font-weight: bold;
}
#reviewModal .reviewPost #uKomiReviewForm .reviewPost_title + .form-input-group + .form-input-group:nth-child(5) {
  display: none;
}
.recommend-block .splide__slide .text-area {
  margin-left: 0;
}
div[fsid^="fsrecommenddiv"] .ukomistarRatingSummarySection[data-no-review="true"] {
  display: none;
}

/* inline link */
.link-inline {
  color: #79888b;
  text-decoration: none;
  display: inline;
  border-bottom: 1px solid #79888b;
}
.link-inline[target=_blank] {
  padding-right: 18px;
  background-image: url(../images/icon/icon-target-mossgreen.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 2px);
}
.link-inline:hover {
  border-bottom: 1px solid transparent;
  color: #79888b;
}

/* header旬シリーズリンク追加に伴うスタイル追加 */
.l-segment-inner .l-segment__link {
  display: inline-block;
  padding-right: 1em;
  position: relative;
}

.l-segment-inner .l-segment__link.l-section__hdg--link::after {
  top: 50%;
  transform: translateY(-50%);
}

.item-media-list {
  margin-bottom: 56px;
}
.item-media-list > .item-media:not(:last-child) {
  margin-bottom: 48px;
}
.item-media-inner {
  display: flex;
  position: relative;
  margin: -10px;
}
.item-media-inner > * {
  padding: 10px;
}
.item-media-body {
  position: relative;
  z-index: 10;
}
.item-media .item-media-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.item-media .item-media-content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.item-media .item-media-title {
  margin-bottom: 5px;
  display: block;
  color: #393c41;
  font-weight: 700;
  text-decoration: underline;
}
.item-media .item-media-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  content: "";
  opacity: 1;
  transition: opacity 0.3s, background 0.3s;
}
.item-media .item-media-title:hover::before {
  background: #fff;
  opacity: 0.3;
}
.item-media .item-media-text {
  margin-top: 8px;
}
.item-holder .item-holder-inner {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin: -1.5625%;
  padding: 0;
}
.item-holder .base.base--link {
  transition: opacity 0.3s;
}
.item-holder .base.base--link:active,
.item-holder .base.base--link:focus-visible {
  opacity: 0.5;
}
@media (pointer: fine) {
  .item-holder .base.base--link:hover {
    opacity: 0.5;
  }
}

/* --------------------------------------------------
U-KOMI Review
--------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --text: "お客様からのレビューご投稿をもって、お客様は以下の事項に同意いただいたものといたします。\Aレビューに関わる著作権（日本国著作権法第27条及び第28条所定の権利を含む。）等の一切の権利は当社に帰属します。当社はレビューの内容を、お客様に通知することなく、自由に転載、引用、開示、提供、出版及び配信並びに二次著作物の利用その他の方法により無償で使用します。レビューを表示するかどうか、その表示期間及び当社による保管期間等、一切の選択は当社の裁量とします。レビューに関して、著作者人格権を行使しないことに同意いただきます。";
  }
  /* メール */
  #reviewModal .reviewPost_title::after {
    margin-top: 24px;
  }

  /* 製品ページ */
  .review-container .uKomiWidgetFormFields::before {
    margin-bottom: 24px;
  }

  #reviewModal .reviewPost_title::after,
  .review-container .uKomiWidgetFormFields::before {
    content: var(--text);
    text-align: left;
    font-weight: normal;
    font-size: 10px;
    line-height: 1.5;
    white-space: pre-wrap;
    display: block;
  }
}

.cf3Mob.cf2Lf6.cf8Oal {
  display: none!important;
}

/* 商品コメント2 */
#fragrance-types {
  margin: 3rem auto;
}
#fragrance-types .top-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
#fragrance-types .top-text {
  margin-bottom: 2rem;
}
#fragrance-types .product-table-box {
  width:100%;
}
#fragrance-types .product-table {
  width: 100%;
  table-layout: fixed;
}
#fragrance-types .product-table th {
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #eee;
  padding: 1.5rem;
  text-align: center;
}
#fragrance-types .product-table .br--none {
  border-right: none;
}
#fragrance-types .product-table .bl--none {
  border-left: none;
}
#fragrance-types .product-table th,#fragrance-types .product-table td {
  border: 1px solid #E6E6E6;
}
#fragrance-types .product-table td {
  background-color: #fff;
}
#fragrance-types .product-imagearea {
  vertical-align: top;
}
#fragrance-types .product-table__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 1.5rem;
}
#fragrance-types .product-table__detail .product-name {
  border-bottom: 1px solid #393c41;
  margin-bottom: 1rem;
}
#fragrance-types .product-table__detail .product-name:hover {
  border-bottom: 1px solid transparent;
}
#fragrance-types .product-table__detail .product-price {
  font-size: 1.4rem;
  text-align: center;
}
#fragrance-types .product-duration td {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
}
#fragrance-types .product-desc td {
  padding: 1.5rem 1rem;
  vertical-align: top;
}

/* 追加テーブルスライド */
#fragrance-icemint-types {
  margin: 3rem auto;
}
#fragrance-icemint-types .top-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
#fragrance-icemint-types .top-text {
  margin-bottom: 2rem;
}
#fragrance-icemint-types .product-table-box {
  border-right: 1px solid #e6e6e6;
  overflow-x: scroll;
}
#fragrance-icemint-types .product-table-box::-webkit-scrollbar {
  background: #fff;
  width: 5px;
  height: 5px;
}
#fragrance-icemint-types .product-table-box::-webkit-scrollbar-thumb {
  background-color: #E6E6E6;
}
#fragrance-icemint-types .product-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
#fragrance-icemint-types .product-table th {
  width: 220px;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #eee;
  padding: 1.5rem;
  text-align: center;
}
#fragrance-icemint-types .product-table .br--none {
  border-right: none;
}
#fragrance-icemint-types .product-table .bl--none {
  border-left: none;
}
#fragrance-icemint-types .product-table th,#fragrance-icemint-types .product-table td {
  border: 1px solid #E6E6E6;
}
#fragrance-icemint-types .product-table th:first-child,
#fragrance-icemint-types .product-table td:first-child {
  position: sticky;
  left: -1px;
  border-left: none;
  z-index: 2;
}
#fragrance-icemint-types .product-table th:first-child {
  text-align: center;
  z-index: 1;
}
#fragrance-icemint-types .product-table th:first-child::before{
  border-bottom: 1px solid #eee;
}
#fragrance-icemint-types .product-table th:first-child::before,
#fragrance-icemint-types .product-table td:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  z-index: -1;
}
#fragrance-icemint-types .product-table th:nth-child(2),
#fragrance-icemint-types .product-table td:nth-child(2) {
  border-left: none;
}
#fragrance-icemint-types .product-table th:last-child,
#fragrance-icemint-types .product-table td:last-child
{
  border-right: none;
}
#fragrance-icemint-types .product-table td {
  background-color: #fff;
}
#fragrance-icemint-types .product-table .sticky-sp-02 {
  position: static;
}
#fragrance-icemint-types .product-table .sticky-pc-01 {
  position: sticky;
  left: 0;
  text-align: left;
}
#fragrance-icemint-types .product-table .sticky-pc-02 {
  position: sticky;
  left: 220px;
}
#fragrance-icemint-types .product-imagearea {
  vertical-align: top;
}
#fragrance-icemint-types .product-imagearea td {
  border-bottom-width: 0;
}
#fragrance-icemint-types .product-table__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 1.5rem;
}
#fragrance-icemint-types .product-table__detail .product-name {
  border-bottom: 1px solid #393c41;
  margin-bottom: 1rem;
}
#fragrance-icemint-types .product-table__detail .product-name:hover {
  border-bottom: 1px solid transparent;
}
#fragrance-icemint-types .product-table__detail .product-price {
  font-size: 1.4rem;
  text-align: center;
}
#fragrance-icemint-types .product-duration td {
  background-color: #fff;
  padding: 1rem;
  text-align: center;
}
#fragrance-icemint-types .product-duration td {
  border-top-width: 0;
  border-bottom-width: 0;
}
#fragrance-icemint-types .product-duration .td-cool {
  padding-top: 32px;
}
#fragrance-icemint-types .product-duration td .cool-level {
  display: inline;
  padding: 3px;
  font-size: 8px;
  text-align: left;
  border: 1px solid #393c41;
}
#fragrance-icemint-types .product-duration td .cool-level span {
  font-size: 5px;
  vertical-align: text-top;
}
#fragrance-icemint-types .product-desc td {
  padding: 1.5rem 1rem;
  border-top-width: 0;
  vertical-align: top;
}

/* 時限設定js用 */
.js-validity-period {
  display: none;
}

/* item frbtn */
.valiation-prop button {
  margin-top: 24px;
}

/* 共通モーダル用装飾 */
/* 発火用ボタン */
.commonModalBtn {
  cursor: pointer;
}

/* モーダル大枠 */
.commonModal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); 
  overflow: hidden;
}

/* モーダル大枠のインナー部分 */
.commonModal__content {
  position: relative;
  background-color: #fefefe;
  border-radius: 4px;
  margin: 10% auto; 
  padding: 48px 24px;
  width: 80%; 
  max-height: 85vh;
  overflow: auto;
  opacity: 0;
  transform: translateY(100%);
}

/* 大枠サイズテンプレ */
.commonModal__content.wid__s {
  width: 520px; 
}

.commonModal__content.wid__m {
  width: 800px; 
} 

.commonModal__content.wid__l {
  width: 1000px; 
} 

.commonModal.show .commonModal__content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 閉じるボタン用 */
.closeBtn {
  position: absolute;
  display: block;
  cursor: pointer;
  width: 30px;
  height: 30px;
  top: 12px;
  right: 1.5%;
}

.closeBtn::before,
.closeBtn::after {
  content: "";
  width: 28px;
  height: 2px;
  display: inline-block;
  background-color: #aaa;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  right: 50%;
  /* transform: translateX(-50%); */
  transition: background-color .3s;
}

.closeBtn::before {
  transform: rotate(45deg);
}
.closeBtn::after {
  transform: rotate(-45deg); 
}

.closeBtn:hover:before,
.closeBtn:hover:after {
  background-color: #2c2e33;
}