@charset "UTF-8";
:root {
  --total-width-pc: 1100px;
  --color-white: #fff;
  --color-red: #CE1032;
  --border-color-gray: #C7C7C7;
  --border-color-red: var(--color-red);
  --font-color-gray: #616161;
  --background-color-gray: #F2F2F2;
  --background-color-red: var(--color-red);
  --font-family-en: 'Lato', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-family-ja: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --color-rank: #ccc;
  --color-rank1: #F6AC00;
  --color-rank2: #828383;
  --color-rank3: #AC6100;
  --edge-space: 20px;
}
/**
 * レスポンシブサイズの変換
 *
 * 画面幅が$baseだった場合の適正サイズをvw単位に変換
 */
/**
 * レスポンシブフォントサイズの指定
 *
 * 画面幅が$baseだった場合の適正フォントサイズを指定
 * vw単位の値に変換し、未サポートブラウザには320px想定とした固定値を指定
 *
 * ※$base=720の場合は最小$sizeを20程度にとどめること
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

.no-transition {
  transition: none !important; }

@media screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;  } }

@media screen and (min-width: 769px) {
  .mobile-only {
    display: none !important; } }

.message-alert {
  color: var(--color-red); }

[data-expand-content] {
  display: none; }

[data-expand].expanded [data-expand-content] {
  display: block; }

[data-expand].expanded [data-expand]:not(.expanded) [data-expand-content] {
  display: none; }

[data-expand-trigger] {
  cursor: pointer; }

.highlight {
  padding: 0 0.1em;
  background: linear-gradient(to bottom, transparent 70%, var(--color-red) 70%); }

.responsive-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }

.responsive-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }

* {
  box-sizing: border-box;
  word-break: break-all; }

html, body {
  height: 100%; }

body {
  -webkit-overflow-scrolling: touch; }

body, button {
  font-size: 14px;
  font-family: var(--font-family-ja);
  font-weight: 400;
}
input, select, textarea {
  font-size: 16px;
  font-family: var(--font-family-ja);
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s ease-out;
  -webkit-backface-visibility: hidden;
  cursor: pointer; }

a img {
  transition: opacity .3s ease-out;
  -webkit-backface-visibility: hidden; }

a:hover img {
  opacity: 0.8; }

button {
  transition: opacity .3s ease-out;
  -webkit-backface-visibility: hidden;
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  backface-visibility:hidden;
  overflow:hidden;
}
img.lazyload {
  opacity: 0;
}
img.lazyloaded {
  opacity: 1;
  transition: opacity .3s ease-out;
}
.content-overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: #000;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out;
}
.menu-open .content-overlay,
.top-main-slideup-open .content-overlay,
.top-navi-shop-slideup-open .content-overlay {
  visibility: visible;
  opacity: 0.77;
}
.document-wrapper {
  overflow: hidden;
}
.document-body {
  padding-bottom: 1px;
  background: var(--color-white);
}
.btn {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  color: #000;
  border: 1px solid #000;
  background: var(--color-white);
  padding: 12px 24px;
  text-align: center;
  transition: all .3s ease-out;
  border-radius: 4px;
}
.btn:hover {
  opacity: .8;
}
.btn-primary,
.page-cart-checkout .delivery-address-copy {
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.btn-primary[disabled], .page-cart-checkout [disabled].delivery-address-copy,
.btn-primary.disabled,
.page-cart-checkout .disabled.delivery-address-copy,
.btn-primary[disabled]:hover,
.page-cart-checkout [disabled].delivery-address-copy:hover,
.btn-primary.disabled:hover,
.page-cart-checkout .disabled.delivery-address-copy:hover {
  border-color: #CCC;
  background-color: #CCC;
  cursor: default;
}
.btn-caution {
  color: var(--color-white);
  border: 3px solid var(--border-color-red);
  background: var(--color-red);
}
.btn-caution:hover {
  color: var(--color-white);
  border-color: var(--border-color-red);
  background: var(--color-red);
}
.btn--viewall {
  min-width: 196px;
  color: var(--color-red);
  border-color: var(--border-color-red);
  font-family: var(--font-family-en);
  font-size: 15px;
  position: relative;
  letter-spacing: .05em;
}
.btn--viewall.border-black {
  min-width: 310px;
  border-color: #222;
  color: #222;
}
.btn--viewall:before,
.btn--viewall:after {
  content: '';
  display: block;
  width: 1px;
  height: 8px;
  border-radius: 1px;
  background: var(--background-color-red);
  position: absolute;
  right: 15px;
}
.btn--viewall:before {
  transform: rotate(-45deg);
  bottom: 46%
}
.btn--viewall:after {
  transform: rotate(45deg);
  top: 46%;
}
@media screen and (max-width: 768px) {
  .btn--viewall {
    width: 173px;
    font-size: 13px;
  }
}
.btn--checkall {
  font-size: 14px;
  padding: 8px 13px;
}
@media screen and (max-width: 768px) {
  .btn--checkall {
    font-size: 11px;
  }
}
.btn--back {
  min-width: 196px;
  color: var(--color-red);
  border-color: var(--border-color-red);
  font-family: var(--font-family-en);
  font-size: 15px;
  letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
  .btn--back {
    font-size: 13px;
  }
}
.btn--to-review-list {
  max-width: 360px;
  width: 100%;
  color: var(--color-red);
  font-family: var(--font-family-en);
  font-size: 15px;
  letter-spacing: .05em;
  border-color: var(--border-color-red);
  background-image: url(../img/common/icon_review_list.svg);
  background-repeat: no-repeat;
  background-position: calc( 50% - 110px ) center;
  background-size: 22px;
}
@media screen and (max-width: 768px) {
  .btn--to-review-list {
    max-width: 300px;
    font-size: 13px;
    background-position: calc( 50% - 94px ) center;
    background-size: 20px;
  }
}
.btn--live {
  padding: 20px 24px;
  width: 312px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  background: #F23E64;
  border: none;
}
@media screen and ( max-width: 768px ) {
  .btn--live {
    font-size: 13px;
  }
}
.table {
  width: 100%;
}
.table + .table {
  margin-top: 30px;
}
.table th {
  background: #F8F8F8;
  color: #2B2B2B;
  font-weight: bold;
}
.table th,
.table td {
  padding: 8px 20px;
  text-align: left;
  border: 1px solid #E9E9E9;
  vertical-align: middle;
  line-height: 1.6;
}
.table a:not(.btn) {
  text-decoration: underline;
  color: var(--color-red);
}
@media screen and (max-width: 768px) {
  .table:not(.table--horizontal):not(.table--vertical) th {
    width: 35%;
  }
  .table:not(.table--horizontal):not(.table--vertical) th,
  .table:not(.table--horizontal):not(.table--vertical) td {
    padding: 8px;
  }
  .table--vertical.table--responsive thead {
    display: none;
  }
  .table--vertical.table--responsive tr {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }
  .table--vertical.table--responsive tr + tr {
    margin-top: 20px;
  }
  .table--vertical.table--responsive td {
    display: table-row;
  }
  .table--vertical.table--responsive .label,
  .table--vertical.table--responsive .value {
    display: table-cell;
    padding: 8px 14px;
    text-align: left;
    border: 1px solid #E9E9E9;
    vertical-align: middle;
    line-height: 1.6;
  }
  .table--vertical.table--responsive .label {
    background: #F8F8F8;
    color: #2B2B2B;
    font-weight: bold;
    width: 35%;
  }
}
@media screen and (min-width: 769px) {
  .table + .table {
    margin-top: 45px;
  }
  .table th,
  .table td {
    padding: 12px 10px;
  }
  .table--vertical.table--responsive .label {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .table--horizontal,
  .table--horizontal thead,
  .table--horizontal tbody,
  .table--horizontal tr,
  .table--horizontal th,
  .table--horizontal td {
    display: block;
  }
  .table--horizontal td,
  .table--horizontal th {
    border: none;
  }
  .table--horizontal th {
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
  }
}
@media screen and (min-width: 769px) {
  .table--horizontal th {
    width: 25%;
    text-align: center;
  }
}
.table--vertical th,
.table--vertical td {
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
}
::-webkit-input-placeholder,
::-moz-placeholder {
  text-align: left;
  font-size: 16px;
  color: #a9a9a9;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="file"] {
  appearance: none;
}
input.no-digit,
input.no-digit:-webkit-autofill {
  background-color: #ffc0cb !important;
  box-shadow: 0 0 0px 999px #ffc0cb inset !important;
}
.form-default .hasCustomSelect,
.form-default .customSelect {
  padding: 7px 30px 7px 11px; }

.form-default .hasCustomSelect {
  z-index: 2; }

.form-default .customSelect {
  position: relative;
  z-index: 1;
  text-align: left;
  border: 2px solid #EAEAEA;
  background: var(--color-white);
  max-width: 100%; }

.form-default .customSelect:after {
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -6px;
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6.5px 0 6.5px;
  border-color: #eaeaea transparent transparent transparent; }

.form-default .customSelectInner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  max-width: 100%; }

.form-default input[type="text"],
.form-default input[type="email"],
.form-default input[type="tel"],
.form-default input[type="number"],
.form-default input[type="password"],
.form-default textarea {
  padding: 8px 12px;
  border: 1px solid #EAEAEA;
  background: var(--color-white);
  max-width: 100%;
  width: 100%;
  border-radius: 4px;
}
.form-default input[type="text"]::placeholder,
.form-default input[type="email"]::placeholder,
.form-default input[type="tel"]::placeholder,
.form-default input[type="number"]::placeholder,
.form-default input[type="password"]::placeholder,
.form-default textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}
.form-default .form-support {
  display: inline-block;
  margin: 8px;
  vertical-align: middle;
  font-size: 13px;
}
.form-default .form-support-block {
  display: block;
  margin: 5px 0;
  color: #888;
  font-size: 10px;
}
.form-default .form-support ~ .form-support-block {
  width: 100%;
}
.form-default .form-support-group {
  display: flex;
  white-space: nowrap;
  width: 100%;
  align-items: center;
}
.form-default .alert {
  color: var(--color-red);
}
.form-default .form-control input + .btn {
  margin-left: 5px;
}
.form-default .form-group {
  overflow: hidden;
}
.form-default .form-control,
.form-default .form-control-select {
  position: relative;
  padding: 5px 0;
}
.form-default .form-control-inline {
  display: inline-block;
  white-space: nowrap;
  padding: 5px 0;
}
.form-default .form-radio-group,
.form-default .form-checkbox-group {
  padding: 9px 0;
  font-size: 14px;
}
.form-default .form-control-radio input[type="radio"] + label,
.form-default .form-control-checkbox input[type="checkbox"] + label {
  line-height: 19px;
  position: relative;
  display: inline-block;
  height: 19px;
}
.form-default .form-control-radio input[type="radio"] + label:not(:last-of-type),
.form-default .form-radio-group > span:not(:last-child),
.form-default .form-control-checkbox input[type="checkbox"] + label:not(:last-of-type) {
  margin-right: 20px;
  margin-bottom: 10px;
}
.form-default .form-control-radio input[type="radio"] + label:before,
.form-default .form-control-checkbox input[type="checkbox"] + label:before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: var(--color-white);
  border: 1px solid var(--color-red);
  vertical-align: sub;
  margin-right: 10px;
}
.form-default label + input[type="checkbox"],
.form-default label + input[type="radio"] {
  margin-left: 20px;
}
.form-default .form-control-radio input[type="radio"],
.form-default .form-control-checkbox input[type="checkbox"] {
  position: absolute;
  right: 200%;
}
.form-default .form-control-radio input[type="radio"] + label:before {
  border-radius: 50%;
}
.form-default .form-control-checkbox input[type="checkbox"] + label:before {
  border-radius: 4px;
}
.form-default .form-control-radio input[type="radio"]:checked + label:before {
  border: 1px solid var(--color-red);
  background: var(--color-white);
}
.form-default .form-control-radio input[type="radio"]:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 11px;
  height: 11px;
  background: var(--color-red);
  border-radius: 50%;
}
.form-default .form-control-checkbox input[type="checkbox"] {
  height: 20px;
}
.form-default .form-control-checkbox input[type="checkbox"]:checked + label:before {
  background: var(--color-red);
}
.form-default .form-control-checkbox input[type="checkbox"]:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 4px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.form-default .form-input-block {
  display: block;
  width: 100%;
}
.form-default .required {
  background: var(--color-red);
  font-size: 10px;
  border-radius: 5px;
  padding: 3px 5px 4px;
  color: var(--color-white);
  margin-left: 6px;
  margin-right: 6px;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  vertical-align: inherit;
}
.form-default select {
  width: 100%;
}
.form-default .form-control-select select {
  -webkit-appearance: none;
  height: 40px;
  padding: 0 32px 0 9px;
  font-size: 14px;
  color: #222;
  background: var(--color-white);
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  min-width: 5em;
}
.form-default .form-control-select {
  display: inline-block;
}
.form-default .form-control-select:after {
  border-bottom: 2px solid var(--color-red);
  border-left: 2px solid var(--color-red);
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-70%) rotate(-45deg);
  display: block;
}
@media screen and (max-width: 768px) {
  .form-default .form-control-select:not(.form-control-inline) {
    width: 100%;
  }
  .cart-modal-title h2 {
    font-size: 16px;
  }
  .form-default .form-label:not(:empty) {
    display: block;
    padding: 8px;
    background: #EBEBEB;
  }
}
@media screen and (min-width: 769px) {
  .form-default .table--horizontal td {
    padding-left: 10%;
    padding-right: 10%;
  }
  .form-default .form-label {
    float: left;
    width: 190px;
    padding: 14px 0;
  }
  .form-default .form-label + .form-control {
    margin-top: 0;
    margin-left: 190px;
  }
}
.form-action {
  margin: 20px 0 0;
  text-align: center;
}
.form-action__info {
  position: relative;
  display: block;
  margin: 0 0 1.5em;
  font-size: 1.1em;
  line-height: 1.5;
}
.form-action__info a {
  color: var(--color-red);
}
.form-action .btn {
  vertical-align: middle;
}
.form-action__group {
  position: relative;
  display: flex;
  gap: 12px 20px;
  justify-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .form-action__group {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .form-action__group {
    flex-direction: row-reverse;
    align-items: baseline;
  }
}
.form-action__submit {
  padding: 0 9px;
  line-height: 48px;
  min-width: 130px;
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  -webkit-appearance: none;
}
.form-action__return {
  padding: 0 9px;
  line-height: 48px;
  color: #111;
  background: var(--color-white);
  border: 1px solid #111;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
}
.form-action__member_regist {
  padding: 0 9px;
  line-height: 48px;
  color: var(--color-red);
  background: #fff;
  border: 1px solid var(--color-red);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
}
.form-action__member_regist span {
  display: inline-block;
  background-position: 0 50%;
  background-image: url(../img/common/icon_member_regist.svg);
  background-repeat: no-repeat;
  padding-left: 30px;
}
.form-action__return:hover {
  color: #333333;
  background: none;
}
.form-action__submit--small {
  margin: 0 10px;
}
.form-action input[type="image"] {
  transition: all .3s ease-out;
}
.form-action input[type="image"]:hover {
  opacity: 0.8; }

@media screen and (min-width: 769px) {
  .form-action {
    margin: 40px auto 0;
  }
  .form-action__submit,
  .form-action__member_regist {
    min-width: 260px;
  }
  .form-action__return {
    min-width: 180px;
  }
  .form-action__group--small .form-action__submit {
    padding: 9px 24px;
    min-width: 0; }
}
.form-control-point-amount input[type="text"] {
  width: 130px;
}
.form-control-profile-name {
  width: 49%;
}
.form-control-profile-name .form-support-group {
  flex-wrap: wrap;
}
.form-control-profile-name .form-support {
  width: 2em;
  text-align: right;
  vertical-align: baseline;
}
.form-control-profile-name input[type="text"] {
  width: calc(100% - 42px);
}
.form-control-profile-birthdate {
  width: 44%
}
.form-control-profile-birthdate:nth-child(n + 2) {
  width: 26%
}
.form-control-profile-email-confirm .form-control-inline {
  max-width: 42%;
}
.form-control-profile-zip input[name=ZIP],
.form-control-profile-zip input[name=SEND_ZIP],
.form-control-profile-zip .zip-search-btn {
  width: auto;
}
.form-control-profile-agree p {
  font-size: 13px;
  margin-bottom: .5em;
}
.form-control-profile-agree .form-control-checkbox {
  background-color: #F8F8F8;
  padding: 20px 20px 10px;
}
@media screen and (min-width: 769px) {
  .form-default .table--horizontal .form-control-profile-agree {
    padding: 0;
  }
  .form-control-profile-agree .form-control-checkbox {
    padding-left: 30%;
  }
}
@media screen and (min-width: 769px) {
  .form-control-profile-name .form-support {
    width: 40px;
    margin-left: -48px;
  }
}
.form-default .form-control-checkbox.form-control-profile-mailmaga {
  font-size: 0;
}
.form-default .form-control-checkbox.form-control-profile-mailmaga input[type="checkbox"] + label {
  font-size: 14px;
  display: block;
  margin: 9px 0;
}
.form-default .form-control-checkbox.form-control-profile-mailmaga .form-support-block {
  padding-left: 30px;
  color: #222;
}
@media screen and (max-width: 768px) {
  .form-default .form-control-checkbox.form-control-profile-mailmaga .mailmaga-title {
    font-size: 14px;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    padding: 8px 20px;
    background: #F8F8F8;
    font-weight: bold;
    margin: 18px -20px 10px;
  }
}
@media screen and (min-width: 769px) {
  .form-default .form-control-checkbox.form-control-profile-mailmaga .mailmaga-title {
    font-size: 15px;
    font-weight: bold;
    margin: 30px 0 0;
  }
}
.document-wrapper {
  opacity: 0;
  transition: opacity .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.content-loaded .document-wrapper {
  opacity: 1;
}
.is-webview .footer-menu {
  display: none;
}
.is-webview .customer-content__item[onclick*="openChatbot"] {
  display: none;
}
.is-webview .page-section-contact-index--chat {
  display: none;
}
.is-webview .mypage-barcode-target {
  display: block;
}
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.77); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  max-width: 700px;
  margin-bottom: 0;
  padding: 55px 20px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: var(--color-white);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .remodal {
    width: 100%;
  }
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
  display: block;
  overflow: visible;
  width: 37px;
  height: 37px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:before,
.remodal-close:after {
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 49%;
  left: 7px;
  width: 24px;
  height: 1px;
  background: #000;
  text-align: center;
}
.remodal-close:before {
  transform: rotate(-45deg);
}
.remodal-close:after {
  transform: rotate(45deg);
}
/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: var(--color-white);
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: var(--color-white);
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0; }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0); } }

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1; }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0); } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.welcome-modal {
  position: fixed;
  right: 0;
  bottom: 0;
  max-width: 100%;
  z-index: 9;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: 0;
}
.welcome-modal-open .welcome-modal,
.welcome-modal-open--desktop .welcome-modal {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.welcome-modal .modal-dialog {
  width: auto;
  margin: 0;
}
.welcome-modal .modal-header {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 10;
  height: auto;
}
.welcome-modal .close {
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.85);
  border: none;
  border-radius: 50%;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-out;
}
.welcome-modal-open .welcome-modal .close,
.welcome-modal-open--desktop .welcome-modal .close {
  opacity: 1;
  visibility: visible;
}
.welcome-modal .close:before,
.welcome-modal .close:after {
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 17px;
  left: 8px;
  width: 19px;
  height: 1px;
  background: var(--color-white);
  text-align: center;
}
.welcome-modal .close:before {
  transform: rotate(-45deg);
}
.welcome-modal .close:after {
  transform: rotate(45deg);
}
.welcome-modal .modal-body {
  display: table;
  padding: 0;
  color: #000;
  background: var(--color-white);
  min-height: 100px;
}
.welcome__cover {
  display: table-cell;
  vertical-align: middle;
  width: 208px;
  background-position: center center;
  background-size: cover;
}
.welcome__content {
  display: table-cell;
  vertical-align: middle;
  width: 200px;
  padding: 13px 26px;
}
.welcome__content p {
  padding: 0;
  font-size: 10px;
  line-height: 1.6;
}
.welcome-modal .welcome__title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: bold;
}
.welcome-modal .welcome__button {
  margin-top: 12px;
  text-align: center;
}
.welcome-modal .welcome__button .btn {
  display: block;
  width: auto;
  padding: 10px 15px;
  background: var(--color-white);
  border: 1px solid #000;
  color: #000;
}
.welcome-trigger {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.welcome-trigger-open .welcome-trigger {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.welcome-trigger__button {
  min-width: 220px;
  text-align: center;
  padding: 0 30px;
  height: 36px;
  line-height: 36px;
  color: #000;
  background: var(--color-white);
  border: 1px solid #000;
  font-size: 10px;
  font-weight: normal;
  cursor: pointer;
  -webkit-appearance: none;
}
.welcome-modal-open--desktop .welcome-trigger {
  bottom: -36px;
}
.footer-scrolled .welcome-trigger {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .welcome-modal .modal-header {
    top: -18px;
    left: -18px;
  }
}
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
  Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
      Background is added as a separate element.
      As animating opacity is much faster than animating rgba() background-color.
  */
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
      stretched thumbnail or div placeholder element (see below)
      style is added to avoid flickering in webkit/blink when layers overlap
  */
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
      div element that matches size of large image
      large image loads on top of it
  */
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
      Error message appears when image is not loaded
      (JS option errorMsg controls markup)
  */
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

  Contents:

  1. Buttons
  2. Share modal and links
  3. Index indicator ("1 of X" counter)
  4. Caption
  5. Loading indicator
  6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

  1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity .3s ease-out;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pswp__button:focus, .pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: none;
  opacity: 0.9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button {
  background: url(../img/photoswipe/default-skin/default-skin.png?black) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
/*
  background: url(../img/photoswipe/default-skin/default-skin.png?black) 0 0 no-repeat;
  background-size: 264px 88px;
*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
}
.pswp__button--arrow--left:before {
  background-image: url(../img/common/slider_prev.png);
}
.pswp__button--arrow--right:before {
  background-image: url(../img/common/slider_next.png);
}
@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
/*
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../img/photoswipe/default-skin/default-skin.svg?black); }
*/
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: visible;
}
/*
  Arrow buttons hit area
  (icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 50px;
  width: 50px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
}
.pswp__button--arrow--right:before {
  right: 6px;
}
/*

  2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity .3s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: var(--color-white);
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  transition: opacity .3s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000; }

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0; }

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: var(--color-white);
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: var(--color-white); }

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: var(--color-white); }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

  3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #000;
  opacity: 0.75;
  padding: 0 10px; }

/*

  4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }

.pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

  5. Loading indicator (preloader)

  You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity .3s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../img/photoswipe/default-skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /*
      The idea of animating inner circle is based on Polymer ("material") loading indicator
       by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

/*

  6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity .3s ease-out;
}
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
  pswp__ui--hidden class is added when controls are hidden
  e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

.pswp__bg {
  background: rgba(255, 255, 255, 1);
}
.pswp__top-bar,
.pswp__caption,
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background: none; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background-color: transparent; }

.pswp__img--placeholder--blank {
  background: none; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
  }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    overflow-y: clip;
  }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

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

/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.3);
  transform: translateY(-50%);
}
.owl-prev {
  left: 0px;
}
.owl-next {
  right: 0px;
}
.owl-prev:before,
.owl-next:before {
  content: '';
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
  border: 2px solid var(--color-white);
}
.owl-prev:before {
  border-top: none;
  border-right: none;
  left: 15.5px;
}
.owl-next:before {
  border-bottom: none;
  border-left: none;
  right: 15.5px;
}
.owl-nav,
.owl-dots {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); }

.owl-prev.disabled,
.owl-next.disabled {
  opacity: 0;
  visibility: hidden; }

.owl-dots {
  margin: 4vw 0 0 0;
  text-align: center; }

.owl-dot {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 8px;
  margin: 0 2vw;
  width: 40px;
  width: 10vw;
  height: 7px;
  background: #ECEDED; }

.owl-dot.active {
  background: #000; }

@media screen and (min-width: 769px) {
  .owl-dots {
    margin: -37px 0 0 0; }
  .owl-dot {
    margin: 0 12px;
    width: 50px;
    background: var(--color-white); } }

.owl-carousel-vertical .owl-item {
  line-height: 0; }

.owl-carousel-vertical .owl-stage-outer {
  height: 100%; }

.owl-carousel-vertical .owl-item {
  float: none; }

.owl-carousel-vertical .owl-prev {
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg); }

.owl-carousel-vertical .owl-next {
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-100%) translateX(-50%) rotate(-90deg);
  transform: translateY(-100%) translateX(-50%) rotate(-90deg); }


/**
 * Swiper 8.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 2, 2022
 */

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: calc(0px - (32px / 2));
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
@media screen and (min-width: 769px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    margin-top: calc(0px - (44px / 2));
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity .3s ease-out;
  transform: translate3d(0, 0, 0);
  bottom: 16px;
  right: 20px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.44);
  color: var(--color-white);
  font-size: 11px;
  padding: 9px 10px 9px 30px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 769px) {
  .swiper-pagination {
    font-size: 12px;
    padding: 10px 14px 10px 36px;
  }
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: var(--color-white);
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
/* swiper custom */
.swiper-button {
  background: rgba(0, 0, 0, .5);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
  border: 2px solid var(--color-white);
}
.swiper-button-prev:after {
  border-top: none;
  border-right: none;
  left: 13px;
}
.swiper-button-next:after {
  border-bottom: none;
  border-left: none;
  right: 13px;
}
@media screen and (min-width: 769px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 12px;
    height: 12px;
  }
  .swiper-button-prev:after {
    left: 18px;
  }
  .swiper-button-next:after {
    right: 18px;
  }
}
/*
滑らかなページスクロールの実装
sniffer.jsのヘルパークラスに依存し、スマホ、タブレット以外で動作する

1. bodyタグに`momentumscroll`クラスを指定

2. 下記3階層でDOMを組む必要があります。
    .momentumscroll-container
        .momentumscroll-viewport
            .momentumscroll-content

    .momentumscroll-container
        仮想的なスクロールエリア
        JSで要素を.momentumscroll-contentと同じ高さに設定し
        ブラウザの組込スクロールバーを表示させるのに使用する

    .momentumscroll-viewport
        position: fixedを設定することにより
        .momentumscroll-containerのスクロール状態に関わらず
        常に画面内にフレームを表示させる

    .momentumscroll-content
        スクロール対象のコンテンツ
        JSを使用して常に.momentumscroll-containerのスクロールバーと同期し、
        transform: translate3d(0px, -(scrollTop)px, 0px) プロパティを動的に適用させ
        コンテンツの表示位置を上に移動させる
        transitionプロパティによりeaseOutExpoエフェクトを加え移動を滑らかにする
*/
html:not(.is-phone):not(.is-tablet) body.momentumscroll .momentumscroll-container {
  position: relative;
  z-index: 2; }

html:not(.is-phone):not(.is-tablet) body.momentumscroll .momentumscroll-viewport {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
html:not(.is-phone):not(.is-tablet) body.momentumscroll .momentumscroll-content {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.document-header {
  background: var(--color-white);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-flow: column;
}
.header-banner-block {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.header-banner-block .banner-block-item {
  height: 38px;
}
.header-banner-block .banner-block-item a {
  display: flex;
  width: 100%;
  padding: 0 20px;
  height: 38px;
  background: #222;
  color: var(--color-white);
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  justify-content: center;
}
.header-category-nav-container {
  background: var(--color-white);
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .header-category-nav-container {
    width: var(--total-width-pc);
  }
}
.header-category-nav {
  padding: 0 17px 0 10px;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .header-category-nav {
    margin: 0 auto;
    width: 100%;
  }
}
.header-category-menu {
  display: flex;
  align-items: center;
}
.header-category-menu:after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 20px;
  margin-right: 20px;
  margin-left: 20px;
  background: #C7C7C7;
}
.header-category-menu__list {
  display: flex;
  align-items: center;
  height: 46px;
  gap: 0 20px;
}
@media screen and (max-width: 996px) {
  .header-category-menu__list > .header-category-menu__item:first-child {
    display: none;
  }
}
.header-category-menu__content {
  max-width: var(--total-width-pc);
  position: absolute;
  background: var(--color-white);
  right: calc(var(--total-width-pc)*-2);
  top: 58px;
  border: 1px solid #d1cfcf;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.44));
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-out;
  padding: 29px 35px 44px;
  z-index: 3;
}
.header-category-menu__item.hover .header-category-menu__content {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.header-category-menu__item .header-category-menu__content:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #fdfdfd;
  border-top: 1px solid #D1CFCF;
  border-left: 1px solid #D1CFCF;
  transform: rotate(45deg);
  position: absolute;
  top: -7px;
}
.header-category-menu__item:nth-child(1) .header-category-menu__content:before {
  right: 27%;
}
.header-category-menu__item:nth-child(2) .header-category-menu__content:before {
  right: 19%;
}
.header-category-menu__label {
  padding-right: 22px;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 11px;
}
.header-category-menu__label:after,
.header-category-menu__label:before {
  content: '';
  display: block;
  width: 1px;
  height: 6px;
  border-radius: 1px;
  background: #222;
  position: absolute;
  top: 42%;
}
.header-category-menu__label:after {
  transform: rotate(45deg);
  right: 8px;
  transition: all .2s;
}
.header-category-menu__label:before {
  transform: rotate(-45deg);
  right: 12px;
  transition: all .2s;
}
.header-category-menu__item.hover .header-category-menu__label:after {
  transform: rotate(135deg);
}
.header-category-menu__item.hover .header-category-menu__label:before {
  transform: rotate(-135deg);
}
.header-category-menu__header {
  background: #F8F8F8;
}
.header-category-menu__body {
  padding-top: 13px;
}
.header-category-grid__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.header-category-grid__item {
  position: relative;
  width: 25%;
  display: inline-block;
}
.header-category-grid__item a {
  position: relative;
  display: flex;
  font-size: 14px;
  align-items: center;
}
.header-category-grid__item > a {
  line-height: 1.5;
  padding: 12px 15px;
}
.header-category-grid__thumbs {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #F4F4F4;
  margin-right: 12px;
}
.header-primary-container-inner {
  background: #FAFAFA;
}
.header-primary {
  position: relative;
  display: flex;
  height: 58px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  backface-visibility: hidden;
  max-width: var(--total-width-pc);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) and (max-width: 1140px) {
  .header-primary {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-primary-container-inner {
    width: 100%;
    padding: 0 10px;
    background: var(--color-white);
  }
}
@media screen and (min-width: 769px) {
  .header-primary-container.isFixed .header-primary-container-inner {
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
    box-shadow: 0 -2px 4px 0 rgb(38 38 38 / 60%);
  }
  .header-primary-container.isFixed:after {
    content: '';
    display: block;
    height: 58px;
  }
}
.header-menu {
  display: flex;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  width: 44px;
}
.header-menu a {
  display: block;
}
.header-menu a.header-menu__toggle .icon {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../img/common/icon_nav.svg);
}
.header-search-form {
  flex: 1;
}
.header-logo a {
  display: block;
  width: auto;
  height: 25px;
  width: 170px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/logo.svg);
  overflow: hidden;
  text-indent: -100%;
}
.header-utils {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 10px;
}
.header-menu,
.header-utils {
  min-width: 33.5%;
}
.header-utils__item {
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  text-align: center;
  font-size: 10px;
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 768px) {
  .header-menu,
  .header-utils {
    min-width: auto;
  }
  .header-utils__item {
    background-position: 50% 4px;
    padding-top: 30px;
  }
}
.header-utils__mypage {
  background-image: url(../img/common/icon_login_on.svg);
}
.header-utils__login {
  background-image: url(../img/common/icon_login.svg);
}
.header-utils__login.disabled {
  filter: invert(70%);
}
.header-utils__notice {
  overflow: hidden;
  text-indent: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  padding-top: 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../img/common/icon_bell.svg);
}
@media screen and (max-width: 768px) {
  .header-utils__notice {
    text-indent: 0;
    font-size: 10px;
    background-position: 50% 2px;
  }
}
.header-utils__favorite {
  overflow: hidden;
  text-indent: 100%;
  background-position: 45% 52%;
  background-image: url(../img/common/icon_favorite.svg);
}
.header-utils__cart {
  background-image: url(../img/common/icon_cart.svg);
}
@media screen and (min-width: 769px) {
  .header-utils__cart {
    background-position: 45% 52%;
  }
}
.header-utils__cart-amount {
  position: absolute;
  top: 9px;
  right: 6px;
  background: var(--background-color-red);
  border-radius: 50%;
  line-height: initial;
  color: var(--color-white);
  font-size: 8px;
  padding: 2px;
  min-width: 11px;
  min-height: 11px;
  line-height: 11px;
  text-align: center;
  border: 2px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .header-utils__cart-amount {
    top: 0;
  }
}
.header-utils__content {
  position: absolute;
  background: var(--color-white);
  left: 0;
  top: 46px;
  border: 1px solid #d1cfcf;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.44));
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-out;
  z-index: 3;
  text-align: left;
}
.header-utils__content.disabled .login_list__item {
  color: #ccc;
}
.header-utils__content:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #fdfdfd;
  border-top: 1px solid #D1CFCF;
  border-left: 1px solid #D1CFCF;
  transform: rotate(45deg);
  position: absolute;
  top: -7px;
  left: 20%;
}
.header-utils__item.hover .header-utils__content {
  opacity: 1;
  visibility: visible;
  right: 0;
  min-width: 120px;
}
.login_list {
  padding: 10px 0;
}
.login_list__item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
}
.header-menu a.header-search__toggle {
  margin-left: 1vw;
}
@media screen and (min-width: 769px) {
  .header-menu a:hover {
    opacity: .7;
  }
  .header-utils__mypage {
    overflow: hidden;
    text-indent: 100%;
    background-position: 45% 52%;
  }
  .header-utils__mypage .icon {
    display: none;
  }
  .header-utils__mypage .dropdown__label {
    display: block;
  }
  .header-utils__login,
  .header-utils__mypage {
    text-indent: 200%;
    padding: 0;
    width: 44px;
    height: 44px;
    background-position: 50%;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
  }
  .header-utils__item .header-utils__login,
  .header-utils__item .header-utils__mypage {
    background-position: 0;
    padding: 0 22px 0 0;
  }
  .header-utils__item .header-utils__login:after,
  .header-utils__item .header-utils__login:before,
  .header-utils__item .header-utils__mypage:after,
  .header-utils__item .header-utils__mypage:before {
    content: '';
    display: block;
    width: 1px;
    height: 6px;
    border-radius: 1px;
    background: #222;
    position: absolute;
    top: 42%;
  }
  .header-utils__item .header-utils__login:after,
  .header-utils__item .header-utils__mypage:after {
    transform: rotate(45deg);
    right: 8px;
    transition: all .2s;
  }
  .header-utils__item .header-utils__login:before,
  .header-utils__item .header-utils__mypage:before {
    transform: rotate(-45deg);
    right: 12px;
    transition: all .2s;
  }
  .header-utils__item.hover .header-utils__login:after,
  .header-utils__item.hover .header-utils__mypage:after {
    transform: rotate(135deg);
  }
  .header-utils__item.hover .header-utils__login:before,
  .header-utils__item.hover .header-utils__mypage:before {
    transform: rotate(-135deg);
  }
  .header-utils__cart .amount {
    width: 29px;
    line-height: 29px;
    border-radius: 29px;
    font-size: 14px;
  }
}
.header-shop-logo {
  height: 57px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-shop-logo__image img {
  height: inherit;
}
.header-shop-logo__brand {
  font-size: 9px;
  height: 19px;
  line-height: 12px;
}
.header-search-container {
  padding: 5px 10px;
  height: 50px;
}
.document-footer {
  padding: 55px 0 70px;
  color: var(--color-white);
  background: #343434;
}
@media screen and (max-width: 768px) {
  .document-footer {
    padding-bottom: 122px;
  }
}
.footer-nav {
  text-align: center;
  max-width: var(--total-width-pc);
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    width: auto;
  }
}
.footer-copyright {
  text-align: center;
  letter-spacing: 1px;
  font-size: 9px;
  max-width: var(--total-width-pc);
  margin: 0 auto;
  margin-top: 35px;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    width: auto;
  }
}
.footer-nav__list {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-nav__list {
    display: inline-block;
    width: 300px;
  }
}
.footer-nav__item {
  display: inline-block;
  font-size: 12px;
  line-height: 3;
  font-weight: bold;
}
.footer-nav__item + .footer-nav__item:before {
  content: '|';
  margin: 0 0.4em;
}
.footer-pagetop {
  display: none !important;
}
.footer-menu {
  display: none;
  transition: all .2s;
}
@media screen and (max-width: 768px) {
  .footer-menu {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background: #F4F4F4;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 4px 0 rgb(49 49 49 / 15%);
  }
}
.footer-menu-list {
  height: 52px;
  display: flex;
  width: 100%;
  justify-content: space-around;
  background: #F4F4F4;
}
.footer-menu-list-item {
  position: relative;
  width: 25%;
}
.footer-menu__text {
  position: absolute;
  bottom: 8px;
  font-size: 11px;
  width: 100%;
  text-align: center;
}
.footer-menu__toggle,
.footer-menu__styling,
.footer-menu__search,
.footer-menu__favorite,
.footer-menu__cart {
  content: '';
  display: block;
  width: 100%;
  height: 52px;
  background-repeat: no-repeat;
  background-position: 50% 27%;
  position: relative;
}
.footer-menu__toggle {
  background-size: 16px 16px;
  background-image: url(../img/common/icon_nav.svg);
}
.footer-menu__styling {
  background-size: 23px 20px;
  background-image: url(../img/common/icon_styling.svg);
}
.footer-menu__search {
  background-size: 23px 20px;
  background-image: url(../img/common/icon_loupe.svg?v=2);
}
.footer-menu__favorite {
  background-size: 23px 23px;
  background-image: url(../img/common/icon_favorite.svg);
}
.footer-menu__cart {
  background-size: 20px 20px;
  background-image: url(../img/common/icon_cart.svg);
}
.footer-menu__cart-amount {
  position: absolute;
  top: 5px;
  right: 50%;
  background: var(--background-color-red);
  border-radius: 50%;
  line-height: initial;
  color: var(--color-white);
  font-size: 8px;
  padding: 2px;
  min-width: 11px;
  min-height: 11px;
  line-height: 11px;
  text-align: center;
  border: 2px solid #F4F4F4;
  transform: translateX(17px);
}
.header-search-form__container {
  position: relative;
  padding-left: 36px;
  padding-right: 42px;
  border: 1px solid var(--border-color-gray);
  border-radius: 5px;
  width: 100%;
  background: var(--color-white);
}
.header-search-form__input {
  display: block;
  width: 100%;
  height: 36px;
  border: none;
  padding: 0 5px;
  outline: none;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .header-search-form__container {
    width: 100%;
    background: #F8F8F8;
  }
  .header-search-form__input {
    background: #F8F8F8;
  }
}
.header-search-form__camera {
  display: block;
  background: url(../img/common/icon_camera.svg) no-repeat;
  background-position: 50%;
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 0;
  padding-top: 34px;
  overflow: hidden;
  cursor: pointer;
}
.header-search-form__camera:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 1px;
  height: 28px;
  background: #C7C7C7;
}
.header-search-form__camera input[type=file] {
  display: none;
}
.header-search-form__input::placeholder {
  color: #aaa;
  font-size: 13px;
}
.header-search-form__submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  background: url(../img/common/icon_loupe.svg) center center no-repeat;
  background-size: 20px;
  border: none;
  text-indent: -9999px;
}
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 328px;
  max-width: 82%;
  height: 100%;
  background: var(--color-white);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(-100%);
}
.menu-open .menu-drawer {
  transform: translateX(0%);
}
.menu-drawer__body {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.menu-drawer__title {
  font-size: 12px;
  line-height: 32px;
  background: #F8F8F8;
  color: #A0A0A0;
  padding-left: 20px;
}
.menu-drawer__title.en {
  font-family: var(--font-family-en);
}
.menu-drawer__close {
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--color-white);
  justify-content: center;
  align-items: center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  word-break: keep-all;
  transition: right 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menu-open .menu-drawer__close {
  right: -42px;
}
.menu-drawer__close:before,
.menu-drawer__close:after {
  position: absolute;
  content: '';
  height: 18px;
  width: 1px;
  background-color: #000;
  top: 6px;
  right: 15px;
}
.menu-drawer__close:before {
  transform: rotate(45deg);
}
.menu-drawer__close:after {
  transform: rotate(-45deg);
}
.menu-member {
  background: #EAEAEA;
  padding: 18px;
}
.menu-profile {
  background: var(--color-white);
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 18px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.08));
}
.menu-profile__name {
  text-align: center;
  font-size: 10px;
}
.menu-profile__name .name {
  font-size: 17px;
  font-weight: bold;
  margin-right: 3px;
}
.menu-profile__memberid {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-family-en);
  font-size: 11px;
  color: #585858;
}
.menu-profile__list {
  display: flex;
  margin-top: 15px;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}
.menu-profile__item {
  display: flex;
  width: 33.333%;
  padding: 2px 0 6px;
  flex-direction: column;
  align-items: center;
}
.menu-profile__item + .menu-profile__item {
  border-left: 1px solid #EDEDED;
}
.menu-profile__label {
  display: block;
  font-size: 8px;
}
.menu-profile__value {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-family: var(--font-family-en);
  font-size: 11px;
}
.menu-profile__value span {
  color: var(--color-red);
  font-weight: bold;
  line-height: 20px;
}
.menu-profile__value .point {
  font-size: 19px;
  margin-right: 5px;
}
.menu-profile__value .stage {
  font-size: 14px;
}
.menu-profile__value .return {
  font-size: 20px;
  margin-right: 2px;
}
.menu-profile__notice {
  text-align: right;
  font-size: 8px;
  margin-top: 8px;
  color: #8D8D8D;
}
.menu-primary__list {
  font-size: 14px;
}
.menu-primary__item {
  position: relative;
}
.menu-primary__list > .menu-primary__item + .menu-primary__item {
  border-top: 1px solid #F4F4F4;
}
.menu-primary__label {
  position: relative;
  display: block;
  padding: 16px 40px 16px 20px;
  line-height: 1.69;
}
.menu-primary__label.en {
  font-family: var(--font-family-en);
}
.menu-primary__label:before,
.menu-primary__label:after {
  content: '';
  display: block;
  width: 1px;
  height: 9px;
  border-radius: 1px;
  background: var(--background-color-red);
  position: absolute;
  right: 20px;
}
.menu-primary__label:before {
  transform: rotate(-45deg);
  bottom: calc(50% - 1.5px);
}
.menu-primary__label:after {
  transform: rotate(45deg);
  top: calc(50% - 1.5px);
}
.menu-primary__link {
  color: var(--color-red);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  right: 36px;
  top: 22px;
  font-family: var(--font-family-en);
}
.menu-primary__body {
  padding: 0 20px 18px;
}
.menu-primary__item[data-expand] > .menu-primary__label:after,
.menu-primary__subitem[data-expand] > .menu-primary__label:after {
  transform: rotate(45deg);
  top: 47%;
  right: 17px;
  transition: all .2s;
}
.menu-primary__item[data-expand] > .menu-primary__label:before,
.menu-primary__subitem[data-expand] > .menu-primary__label:before {
  transform: rotate(-45deg);
  top: 47%;
  transition: all .2s;
}
.menu-primary__item[data-expand] > .menu-primary__label:before {
  right: 23px;
}
.menu-primary__subitem[data-expand] > .menu-primary__label:before {
  right: 22.5px;
}
.menu-primary__item[data-expand].expanded > .menu-primary__label:after,
.menu-primary__subitem[data-expand].expanded > .menu-primary__label:after {
  transform: rotate(135deg);
}
.menu-primary__item[data-expand].expanded > .menu-primary__label:before,
.menu-primary__subitem[data-expand].expanded > .menu-primary__label:before {
  transform: rotate(-135deg);
}
.menu-primary__sublist .menu-primary__label:before,
.menu-primary__sublist .menu-primary__label:after {
  height: 8px;
}
.menu-primary__sublist .menu-primary__label {
  padding: 8px 20px 8px 30px;
}
.menu-primary__sublist .menu-primary__sublist .menu-primary__label {
  padding: 6px 20px 6px 40px;
}
.menu-primary__sublist .menu-primary__sublist .menu-primary__sublist .menu-primary__label {
  padding: 6px 20px 6px 50px;
  font-size: 13px;
}
.menu-brand {
  padding: 0 20px;
}
.menu-brand[data-view=header] {
  padding: 12px 12px 0 12px;
}
.menu-brand[data-view=header] .menu-brand__sublist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.menu-brand[data-view=header] .menu-brand__subitem {
  width: calc((100% - (8px*3)) / 4);
}
.menu-brand-filter__input {
  position: relative;
  border: 1px solid var(--border-color-gray);
  border-radius: 5px;
  padding: 0 10px;
  width: 100%;
  height: 38px;
  background: var(--color-white);
}
.menu-brand-filter__input::placeholder {
  color: #aaa;
  font-size: 13px;
}
.menu-brand-search_box {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  align-items: center;
}
.menu-brand-search_box .menu-brand-filter {
  width: 477px;
}
.menu-brand__scroll {
  margin: 8px 0;
  max-height: 250px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.menu-brand__subitem {
  display: none;
}
.menu-brand__subitem a {
  display: block;
  padding: 8px 20px;
  line-height: 1.5;
  font-family: var(--font-family-en);
}
.menu-brand__subitem.presentation {
  display: block;
}
.menu-brand .suggest-results {
  position: relative;
  height: 0;
  overflow: hidden;
}
.menu-brand__more {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.menu-sns {
  padding: 18px 20px;
}
.menu-sns .sns__list {
  margin: 0;
  justify-content: space-between;
}
.menu-sns .sns__item {
  width: 38px;
  height: 38px;
  margin: 0;
}
.login-form .login-form-label {
  display: block;
  float: left;
  padding: 18px 0;
}
.login-form .forgot-password-link {
  clear: left;
  display: block;
  padding: 12px 0 0 0;
  font-size: 12px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .form-default.login-form .form-control-inline {
    display: block;
    margin-left: 114px;
  }
}
@media screen and (min-width: 769px) {
  .login-form {
    text-align: center;
  }
  .login-form .form-group {
    display: inline-block;
    text-align: left;
    vertical-align: top;
  }
  .login-form .form-group-login-password {
    margin-left: 5%;
  }
  .login-form .login-form-label {
    margin-right: 14px;
  }
}
.login-form-2 input[type="text"],
.login-form-2 input[type="email"],
.login-form-2 input[type="tel"],
.login-form-2 input[type="number"],
.login-form-2 input[type="password"] {
  width: 100%;
  padding: 16px;
}
.login-form-2 .form-action__group {
  flex-direction: column;
  align-items: center;
}
.login-form-2 .form-action__group + .form-action__group {
  margin-top: 1.5em;
}
.login-form-2 .btn {
  width: 100%;
  margin: 0;
}
.login-form-2 .forgot-password-link {
  text-decoration: underline;
  color: var(--color-red);
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .login-form-2 .btn {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    border: none;
    padding: 1px;
    text-align: left;
    vertical-align: top;
  }
  .cart-table {
    position: relative;
    border-top: 1px solid #E9E9E9;
  }
  .cart-table tr {
    overflow: hidden;
    padding: 8px 0;
    border-bottom: 1px solid #E9E9E9;
  }
  .cart-table thead {
    display: none;
  }
  .cart-table .product-image {
    float: left;
    width: 25%;
  }
  .cart-table .product-image .label {
    display: none;
  }
  .cart-table .product-code,
  .cart-table .product-name,
  .cart-table .product-quantity,
  .cart-table .product-price,
  .cart-table .product-tax,
  .cart-table .product-delete {
    float: right;
    width: 75%;
    padding-left: 8px;
  }
  .cart-table .product-quantity input[type="text"],
  .cart-table .product-quantity input[type="number"] {
    padding: 0 4px;
    width: 80px;
  }
  .cart-table .return-reason span {
    display: inline-block;
    padding: 3px 3px 3px 0;
  }
}
@media screen and (min-width: 769px) {
  .cart-table {
    width: 100%;
  }
  .cart-table th,
  .cart-table td {
    border-width: 1px;
  }
  .cart-table td {
    padding: 8px;
  }
  .cart-table td.product-image {
    width: 120px;
  }
  .cart-table .product-quantity,
  .cart-table .product-price,
  .cart-table .product-tax,
  .cart-table .product-delete {
    width: 8%;
    white-space: nowrap;
  }
  .cart-table td.product-quantity input {
    width: 74px;
  }
  .cart-table .label {
    display: none;
  }
}
.common-pagination {
  margin: 40px auto 0;
  text-align: center;
}
.common-pagination__caption {
  margin-bottom: 1.25em;
  font-size: 12px;
  font-weight: bold;
}
.common-pagination__list {
  display: flex;
  justify-content: center;
  gap: 0 4px;
}
.common-pagination__item {
  width: 28px;
  height: 28px;
  margin: 0;
}
.common-pagination__item.dot {
  width: 16px;
}
.common-pagination__item a,
.common-pagination__item span {
  padding: 0;
  position: relative;
  display: block;
  background: var(--color-white);
  text-align: center;
  font-family: var(--font-family-en);
  line-height: 24px;
}
.common-pagination__item span {
  color: #383535;
}
.common-pagination__item.number {
  width: 32px;
}
.common-pagination__item.edge-number {
  min-width: 36px;
}
.common-pagination__item.number a,
.common-pagination__item.number span {
  padding: 0;
  width: 32px;
}
.common-pagination__item.active a {
  color: #000;
  background: var(--color-white);
}
.common-pagination__item.text a,
.common-pagination__item.text span {
  background: none;
  color: inherit;
  border-color: transparent;
}
.common-pagination__item.text a:hover {
  background: none;
  color: inherit;
  border-color: transparent;
  opacity: 0.8;
}
.common-pagination__item.number:not(.active) a:hover,
.common-pagination__item.edge-number:not(.active) a:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  opacity: .3;
}
.common-pagination__item.number a,
.common-pagination__item.number span,
.common-pagination__item.edge-number a,
.common-pagination__item.edge-number span {
  width: 100%;
  color: #383535;
  line-height: 28px;
}
.common-pagination__item.prev a,
.common-pagination__item.prev span,
.common-pagination__item.next a,
.common-pagination__item.next span {
  width: 100%;
  line-height: 26px;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 4px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.common-pagination__item.prev span,
.common-pagination__item.next span {
  opacity: .3;
}
.common-pagination__item.prev {
  margin-right: 4px;
}
.common-pagination__item.next {
  margin-left: 4px;
}

.common-pagination__item.prev a::after,
.common-pagination__item.prev span::after,
.common-pagination__item.next a::after,
.common-pagination__item.next span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform-origin: center center;
}
.common-pagination__item.prev a::after,
.common-pagination__item.prev span::after {
  border-top: 1px solid var(--color-red);
  border-left: 1px solid var(--color-red);
  transform: translate(-25%, -50%) rotate(-45deg);
}
.common-pagination__item.next a::after,
.common-pagination__item.next span::after {
  border-top: 1px solid var(--color-red);
  border-right: 1px solid var(--color-red);
  transform: translate(-75%, -50%) rotate(45deg);
}
.common-pagination__item a.active,
.common-pagination__item.active a {
  opacity: .3;
}

@media screen and (min-width: 769px) {
  .common-pagination {
    margin: 50px auto 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--border-color-gray);
  }
  .common-pagination__list {
    gap: 0 8px;
  }
  .common-pagination__item.prev {
    margin-right: 8px;
  }
  .common-pagination__item.next {
    margin-left: 8px;
  }
}
/**
 * .common-section
 *     .common-section__header
 *         .common-section__title
 *             セクションタイトル
 *      .common-section__body
 *          固有コンテンツ
 *      .common-section__footer
 */
.common-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color-gray);
}
@media screen and (max-width: 768px) {
  .common-section {
    padding: 35px 0;
  }
}
.common-section.bg-gray {
  background: var(--background-color-gray);
  border-top: none;
}
.common-section.bg-freakmag {
  background: linear-gradient(40deg, #fceedb 0%, #e6ffd1 120%);
  border-top: none;
}
.common-section.bg-freakmag + .common-section,
.common-section.bg-gray + .common-section {
  border-top: none;
}
.common-section__header {
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: var(--total-width-pc);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .common-section__header {
    width: auto;
    margin-bottom: 20px;
  }
}
.common-section__title {
  font-size: 28px;
  font-family: var(--font-family-en);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.common-section__title .alt {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  color: var(--font-color-gray);
  letter-spacing: .05em;
  font-family: var(--font-family-ja);
}
@media screen and (max-width: 768px) {
  .common-section__title {
    font-size: 21px;
  }
  .common-section__title .alt {
    margin-top: 10px;
    font-size: 13px;
  }
}
.common-section__body {
  margin: 0 auto;
  max-width: var(--total-width-pc);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .common-section__body {
    width: auto;
    padding: 0 20px;
  }
}
.common-section__footer {
  text-align: center;
  margin: 0 auto;
  max-width: var(--total-width-pc);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .common-section__footer {
    width: auto;
    margin-top: 20px;
  }
}
.brand-grid-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, 1fr);
}
.brand-grid-list[data-view=header] {
  padding: 12px;
  gap: 40px 27px;
  justify-content: flex-start;
  grid-template-columns: repeat(6, 1fr);
}
.brand-grid-list[data-view=slideup] {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 15px;
  padding: 20px;
}
.brand-grid-list[data-view=other-shop] {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .brand-grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .brand-grid-list[data-view=slideup] {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid-list[data-mobile-item12] > .brand-grid-list-item:nth-child(n + 13) {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .brand-grid-list[data-view=other-shop] {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}
@media screen and (min-width: 769px) {
  .brand-grid-list[data-desktop-item14] > .brand-grid-list-item:nth-child(n + 15) {
    display: none;
  }
}
.brand-grid-list-item {
  border: 1px solid #C7C7C7;
}
.brand-grid-list[data-view=other-shop] .brand-grid-list-item {
  border: 1px solid #e9e9e9;
}
.brand-grid-list-item__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
}
.brand-grid-list-item__thumb {
  width: 100%;
}
.brand-grid-list-item__thumb img {
  width: 100%;
}
.brand-grid-list-item__brand {
  font-size: 10px;
  color: #222;
  padding: 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .brand-grid-list-item__brand {
    font-size: 9px;
    padding: 0 8px;
  }
}
.applist-section {
  background: var(--background-color-gray);
  padding: 22px 20px 0;
}
@media screen and (max-width: 768px) {
  .applist-section + .common-section {
    padding-top: 25px;
  }
}
.applist-section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
  gap: 0 10px;
}
.applist-section-content__logo {
  width: 48px;
  height: 48px;
  background: url(../img/app_icon.png);
  background-size: contain;
  text-indent: -200%;
  overflow: hidden;
}
.applist-section-content__name {
  flex: 1;
}
.applist-section-content__copy {
  font-size: 14px;
}
.applist-section-content__title {
  font-size: 12px;
  margin-top: 10px;
  color: #4F4F4F;
}
.applist-section-content__link {
  line-height: 35px;
  font-size: 13px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .applist-section-content__link {
    line-height: 31px;
    font-size: 11px;
  }
}
.applist-section-content__link a {
  display: block;
  padding: 0 25px 0 12px;
  border: 1px solid var(--color-white);
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .applist-section-content__link a {
    padding: 0 22px 0 10px;
  }
}
.applist-section-content__link:before,
.applist-section-content__link:after {
  content: '';
  display: block;
  width: 1px;
  height: 8px;
  border-radius: 1px;
  background: var(--color-white);
  position: absolute;
  right: 15px;
}
.applist-section-content__link:before {
  transform: rotate(-45deg);
  bottom: 46%
}
.applist-section-content__link:after {
  transform: rotate(45deg);
  top: 46%;
}
.applist-section-banner {
  display: block;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 25px;
}
.applist-section-banner img {
  width: 100%;
}
.customer-content__list {
  display: grid;
  gap: 15px 0;
}
@media screen and (min-width: 997px) {
  .customer-content__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 31px;
  }
}
.customer-content__item {
  min-width: 270px;
  height: 78px;
  background: var(--color-white);
  border: 1px solid var(--border-color-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .customer-content__item {
    width: 100%;
  }
}
.customer-content__title {
  font-size: 13px;
  font-weight: bold;
}
.customer-content__title.help:before {
  content: '';
  display: inline-block;
  background: url(../img/common/icon_help.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-right: 8px;
}
.customer-content__title.chat:before {
  content: '';
  display: inline-block;
  background: url(../img/common/icon_chat.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 24px;
  height: 19px;
  margin-right: 6px;
}
.customer-content__title.phone:before {
  content: '';
  display: inline-block;
  background: url(../img/common/icon_phone.svg);
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.customer-content__sub {
  color: #5F5F5F;
  font-size: 11px;
  display: inline-block;
}
.sns__list {
  display: flex;
  justify-content: center;
}
.sns__item {
  width: 49px;
  height: 49px;
  background: #F0F0F0;
  border-radius: 50%;
  margin: 0 14px;
}
@media screen and (max-width: 768px) {
  .sns__item {
    width: 38px;
    height: 38px;
    margin: 0 8px;
  }
}
.sns__item > div,
.sns__item > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sns__item > a {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.sns__item > div:after,
.sns__item > a:after {
  content: '';
  display: block;
  width: 38%;
  height: 38%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
}
.sns__item.facebook.lazyloaded > a:after {
  background-image: url(../img/common/icon_facebook.svg);
}
.sns__item.twitter.lazyloaded > a:after {
  background-image: url(../img/common/icon_twitter.svg);
}
.sns__item.line.lazyloaded > a:after {
  background-image: url(../img/common/icon_line.svg);
}
.sns__item.youtube.lazyloaded > a:after {
  background-image: url(../img/common/icon_youtube.svg);
}
.sns__item.tiktok.lazyloaded > a:after {
  background-image: url(../img/common/icon_tiktok.svg);
}
.sns__item.instagram.lazyloaded > div:after {
  position: relative;
  transition: all .3s ease-out;
  background-image: url(../img/common/icon_instagram.svg);
}
.sns__item-sub {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  background: var(--background-color-gray);
  font-size: 15px;
  padding: .9em 1.2em;
  transition: all .3s ease-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  font-family: var(--font-family-en);
}
.sns__item-sub::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 28px;
  border: 16px solid transparent;
  border-bottom: 16px solid var(--background-color-gray);
}
.sns__item:hover .sns__item-sub {
  visibility: visible;
  opacity: 1;
}
.sns__item-sub a {
  display: block;
  line-height: 1.69;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.sns__item-sub a:hover {
  opacity: .5;
}
.information-link__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.information-link__item {
  width: 50%;
  border-top: 1px solid #CECECE;
}
.information-link__item:nth-child(odd) {
  border-right: 1px solid #CECECE;
}
.information-link__item > a {
  display: block;
  line-height: 54px;
  text-align: center;
}
.item-price--sale .item-normal_price {
  display: none;
}
.item-price--sale .item-sale_price {
  color: var(--color-red);
}
@media screen and (max-width: 768px) {
  .item-category-section {
    padding-bottom: 0;
  }
  .item-category-grid {
    margin: 0 -20px;
  }
}
.item-category-grid .columnize-column {
  display: flex;
  justify-content: space-between;
}
.item-category-grid__list {
  border-top: 1px solid #F4F4F4;
  border-left: 1px solid #F4F4F4;
}
@media screen and (max-width: 768px) {
  .item-category-grid__list {
    border-left: none;
  }
}
.item-category-grid__item {
  position: relative;
  width: 25%;
  display: inline-block;
  border-right: 1px solid #F4F4F4;
  border-bottom: 1px solid #F4F4F4;
}
@media screen and (max-width: 768px) {
  .item-category-grid__item {
    width: 100%;
    border-right: none;
  }
  .item-category-grid__item.expanded {
    border-bottom: none;
    background: #F7F7F7;
  }
}
.item-category-grid__item a {
  position: relative;
  display: block;
  font-size: 14px;
}
.item-category-grid__trigger {
  line-height: 1.3;
  padding: 12px 45px 12px 15px;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.item-category-grid__trigger:before,
.item-category-grid__trigger:after {
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  border-radius: 1px;
  background: var(--background-color-red);
  position: absolute;
  transition: all .2s;
}
.item-category-grid__trigger:after {
  transform: rotate(45deg);
  top: 47%;
  right: 18px;
}
.item-category-grid__item.expanded .item-category-grid__trigger:after {
  transform: rotate(135deg);
}
.item-category-grid__item .item-category-grid__trigger:before {
  transform: rotate(-45deg);
  top: 47%;
  right: 25px;
}
.item-category-grid__item.expanded .item-category-grid__trigger:before {
  transform: rotate(-135deg);
}
.item-category-grid__thumbs {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #F4F4F4;
  flex: none;
}
.item-category-grid__childlist {
  padding: 10px 30px 30px;
  background: #fdfdfd;
  border: 1px solid #e2e2e2;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.06));
  font-size: 0;
  position: relative;
}
.item-category-grid__childlist:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #fdfdfd;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  transform: rotate(45deg);
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 768px) {
  .item-category-grid__childlist {
    border: none;
    filter: none;
    padding: 0;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
  }
  .item-category-grid__childlist:before {
    content: none;
  }
}
.columnize-childlist > .item-category-grid__childlist:nth-child(1):before {
  left: calc(100% / 4 * 1 - 12.5%);
}
.columnize-childlist > .item-category-grid__childlist:nth-child(2):before {
  left: calc(100% / 4 * 2 - 12.5%);
}
.columnize-childlist > .item-category-grid__childlist:nth-child(3):before {
  left: calc(100% / 4 * 3 - 12.5%);
}
.columnize-childlist > .item-category-grid__childlist:nth-child(4):before {
  left: calc(100% / 4 * 4 - 12.5%);
}
.item-category-grid__childitem {
  margin-top: 20px;
  width: 25%;
  display: inline-block;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .item-category-grid__childitem {
    margin-top: 0;
    width: 50%;
    border-bottom: 1px solid #E4E4E4;
    background: #F7F7F7;
    vertical-align: top;
    line-height: 1.69;
  }
  .item-category-grid__childitem:nth-child(odd) {
    border-right: 1px solid #E4E4E4;
  }
  .item-category-grid__childitem a {
    display: grid;
    place-items: center;
    justify-content: start;
    height: 66px;
    padding: 0 35px 0 20px;
    position: relative;
  }
  .item-category-grid__childitem a:before,
  .item-category-grid__childitem a:after {
    content: '';
    display: block;
    width: 1px;
    height: 9px;
    border-radius: 1px;
    background: var(--background-color-red);
    position: absolute;
    right: 15px;
  }
  .item-category-grid__childitem a:before {
    transform: rotate(-45deg);
    bottom: calc(50% - 1.5px);
  }
  .item-category-grid__childitem a:after {
    transform: rotate(45deg);
    top: calc(50% - 1.5px);
  }
}
.topics-list {
  display: grid;
  margin: 0 auto;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .topics-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .topics-list[data-mobile-item3] > .topics-list-item:nth-child(n + 4) {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .topics-list[data-desktop-item4] > .topics-list-item:nth-child(n + 5) {
    display: none;
  }
}
.topics-list[data-view=item_detail] {
  grid-template-columns: 1fr;
}
.topics-list-item {
  display: grid;
  gap: 0 20px;
}
.topics-list-item__block {
  display: grid;
  gap: 0 20px;
  grid-template-columns: 34% 1fr;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .topics-list-item__block {
    gap: 0 12px;
    grid-template-columns: 94px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .topics-list-item__image {
    width: 94px;
  }
}
.topics-list-item__info {
  display: grid;
  gap: 12px 0;
}
@media screen and (max-width: 768px) {
  .topics-list-item__info {
    gap: 9px 0;
  }
}
.topics-list-item__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  line-height: 1.5;
}
.topics-list-item__brand,
.topics-list-item__date {
  color: var(--font-color-gray);
  font-size: 15px;
  font-family: var(--font-family-en);
}
.topics-list-item__title:empty,
.topics-list-item__brand:empty,
.topics-list-item__date:empty {
  background: var(--background-color-gray);
  opacity: .8;
}
.topics-list-item__title:empty {
  height: 1.5em;
}
.topics-list-item__date:empty,
.topics-list-item__brand:empty {
  height: 1em;
}
@media screen and (max-width: 768px) {
  .topics-list-item__brand {
    display: none;
  }
  .topics-list-item__title,
  .topics-list-item__date {
    font-size: 11px;
  }
}
.feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .feature-list[data-mobile-item6] > .feature-list-item:nth-child(n + 7) {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .feature-list[data-desktop-item4] > .feature-list-item:nth-child(n + 5) {
    display: none;
  }
}
.feature-list-item__block {
  display: grid;
  gap: 15px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .feature-list-item__block {
    gap: 8px 0;
  }
}
.feature-list-item__image {
  display: block;
}
.feature-list-item__info {
  display: grid;
  gap: 5px 0;
}
.feature-list-item__date {
  display: block;
  color: var(--font-color-gray);
  font-size: 15px;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 768px) {
  .feature-list-item__date {
    font-size: 11px;
  }
}
.feature-list-item__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .feature-list-item__title {
    font-size: 11px;
  }
}
.feature-list-item__date:empty,
.feature-list-item__title:empty {
  background: var(--background-color-gray);
  opacity: .7;
}
.feature-list-item__date:empty {
  height: 1em;
}
.feature-list-item__title:empty {
  height: 3em;
}
.styling-content {
  display: block;
  max-width: var(--total-width-pc);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .styling-content {
    width: auto;
  }
}
.styling-content.passive {
  display: none;
}
.styling-content.active {
  display: block;
}
.styling-content .swiper {
  overflow: inherit;
}
.styling-list {
  display: grid;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.styling-list[data-view="small"] {
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.styling-list[data-view="medium"] {
  gap: 9px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .styling-list[data-view="medium"] {
    gap: 7px;
  }
}
.styling-list-item {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 236px;
  height: calc(236px*(4/3));
  overflow: hidden;
}
.styling-list .styling-list-item {
  width: auto;
  height: auto;
}
.styling-list-item__block {
  display: grid;
  gap: 6px 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .styling-list-item__block {
    gap: 8px 0;
  }
}
.styling-list-item__spec {
  font-family: var(--font-family-en);
}
.styling-detail-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: flex-start;
}
.styling-detail-list__link {
  display: block;
  margin-bottom: 1.5em;
}
.styling-detail-list .styling-list-item__image {
  margin-bottom: .5em;
}
@media screen and (max-width: 769px) {
  .styling-detail-list {
    gap: 0 9px;
  }
  .styling-detail-list__item {
    flex-basis: calc(100% / 3 - 6px);
  }
  .styling-detail-list__item:nth-of-type(n + 7) {
      display: none;
  }
}
@media screen and (min-width: 769px) {
  .styling-detail-list {
    gap: 0 10.5px;
  }
  .styling-detail-list__item {
    flex-basis: calc(100% / 4 - 8px);
  }
  .styling-detail-list__item:nth-of-type(n + 9) {
    display: none;
  }
}
.styling-modal {
  padding-bottom: 80px;
}
.styling-modal-content {
  text-align: left;
  overflow-y: scroll;
  margin-right: -10px;
  padding-right: 10px;
  height: 70vh;
}
@media screen and (max-width: 768px) {
  .styling-modal {
    padding-bottom: 70px;
  }
  .styling-modal-content {
    height: calc(100svh - (55px + 70px + 20px));
  }
}
.styling-modal-content.load {
  opacity: 0;
}
.styling-modal-content.success {
  opacity: 1;
  transition: opacity .6s ease-out;
}
.styling-modal__meta {
  line-height: 1.5;
}
.styling-modal__date {
  font-size: .8em;
  display: block;
  font-family: var(--font-family-en);
  color: var(--font-color-gray);
}
.styling-modal__body {
  overflow: hidden;
}
.styling-modal__comment {
  margin: 25px 0 0;
  line-height: 1.69;
  white-space: pre-line;
  overflow: hidden;
}
.styling-modal__comment:empty {
  margin: 0;
  overflow: hidden;
}
.styling-modal__comment_all {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, 1) 100%);
  height: 140px;
  margin-top: -140px;
  position: relative;
  text-align: center;
  padding-top: 90px;
  font-size: 15px;
  cursor: pointer;
  z-index: 1;
}
.styling-modal__related {
  margin-top: 25px;
}
.styling-modal__image {
  margin: 0 0 30px 0;
  width: 100%;
}
.styling-modal__image .swiper {
  position: relative;
}
.styling-modal__sig {
  margin: 10px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
}
.styling-modal__staff__image {
  width: 80px;
}
.styling-modal__staff__image img {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 50%;
}
.styling-modal__name {
  font-size: 1.2em;
}
.styling-modal__height {
  margin: 0.4em 0 0;
  font-size: .9em;
}
.styling-modal-content .owl-dot {
  width: 12px;
  height: 12px;
  margin: 0 1vw;
  border-radius: 50%;
}
.styling-modal__thumbs {
  display: none;
}
.styling-modal__title {
  flex: 1 1 auto;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.styling-modal__btn-group {
  display: flex;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 18px;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (min-width: 769px) {
  .styling-modal__btn-group {
    gap: 0 20px;
  }
}
.styling-modal__btn-group > div {
  width: 50%;
}
.styling-modal__btn {
  height: 34px;
  font-size: 11px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 0 0 2px 0;
  width: 100%;
  position: relative;
  color: #000;
}
@media screen and (min-width: 769px) {
  .styling-modal__btn {
    height: 42px;
    max-width: 200px;
    font-size: 12px;
  }
}
.styling-modal__btn.prev {
  padding-left: 13px;
  float: right;
}
.styling-modal__btn.next {
  padding-right: 13px;
}
.styling-modal__btn:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-red);
  border-right: 1px solid var(--color-red);
  position: absolute;
  top: 50%;
  transform-origin: center center;
}
.styling-modal__btn.prev:after {
  left: 13px;
  transform: translateY(-50%) rotate(225deg);
}
.styling-modal__btn.next:after {
  right: 13px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .styling-modal__meta {
    font-size: 16px;
  }
  .styling-modal__title {
    margin: 14px 0;
    font-size: 20px;
  }
  .styling-modal__image {
    float: left;
    width: 38%;
    margin-top: 0;
    padding-right: 26px;
    box-sizing: content-box;
  }
  .styling-modal__info,
  .styling-modal__related,
  .styling-modal__meta {
    margin: 0 0 0 42%;
  }
  .styling-modal__sig {
    margin: 30px 0 30px 42%;
  }
  .styling-modal__comment {
    margin: 0 0 20px;
    padding: 0.2em 0;
  }
  .styling-modal__comment:empty {
    margin: 0;
    padding: 0;
  }
  .styling-modal-content .owl-dots {
    display: none;
  }
  .styling-modal__thumbs {
    margin: 40px 0 0;
    display: block;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-y: scroll;
  }
  .styling-modal__thumbs .swiper-wrapper {
    flex-wrap: wrap;
    gap: 3px;
  }
  .styling-modal__thumbs-item {
    width: calc((100% - 7px*2) / 3);
    border: 2px solid var(--color-white);
  }
  .styling-modal__thumbs-item.swiper-slide-thumb-active {
    border-color: var(--color-red);
  }
}
.styling-related__header {
  margin-bottom: 20px;
  padding: 14px 0;
  border-bottom: 2px solid #000;
  font-size: 19px;
}
.styling-related__title {
  font-weight: bold;
}
.styling-related__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.staff-ranking-container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .staff-ranking-container {
    white-space: nowrap;
    overflow-x: scroll;
    justify-content: flex-start;
    margin: 0px -20px;
    padding: 0 20px;
  }
  .staff-ranking-container::-webkit-scrollbar{
    display: none;
  }
}
.staff-ranking {
  margin: 0 auto;
}
.staff-ranking:not(:first-child) {
  display: none;
}
.staff-ranking.passive {
  display: none;
}
.staff-ranking.active {
  display: block;
}
.staff-ranking-section .common-category-selector {
  margin-bottom: 25px;
}
.staff-ranking-list {
  display: grid;
  gap: 0 40px;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .staff-ranking-list {
    gap: 0 20px;
  }
}
.staff-ranking-list:empty {
  height: 163px;
}
.staff-ranking-list__item {
  position: relative;
  font-size: 20px;
  font-family: var(--font-family-en);
  display: grid;
  gap: 36px;
}
.staff-ranking-list__info {
  display: grid;
  gap: 5px 0;
  font-size: 15px;
}
.staff-ranking-list__username {
  font-weight: bold;
}
.staff-ranking-list__brand {
  font-weight: lighter;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .staff-ranking-list__item {
    gap: 14px;
  }
  .staff-ranking-list__username {
    font-size: 12px;
  }
  .staff-ranking-list__brand,
  .staff-ranking-list__userheight {
    font-size: 13px;
  }
}
.staff-ranking-list > .staff-ranking-list__item:after {
  content: '';
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: var(--color-rank);
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .staff-ranking-list__item {
    font-size: 14px;
  }
  .staff-ranking-list > .staff-ranking-list__item:after {
    width: 26px;
    height: 26px;
  }
}
.staff-ranking-list > .staff-ranking-list__item:nth-child(1):after {
  content: '1';
  background: var(--color-rank1);
}
.staff-ranking-list > .staff-ranking-list__item:nth-child(2):after {
  content: '2';
  background: var(--color-rank2);
}
.staff-ranking-list > .staff-ranking-list__item:nth-child(3):after {
  content: '3';
  background: var(--color-rank3);
}
.staff-ranking-list > .staff-ranking-list__item:nth-child(4):after {
  content: '4';
}
.staff-ranking-list > .staff-ranking-list__item:nth-child(5):after {
  content: '5';
}
.staff-ranking-list__image {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .staff-ranking-list__image {
    width: 90px;
  }
}
.gamepark-section {
  background-image: linear-gradient(#ddf87f 1px, rgba(0, 0, 0, 0) 0%), linear-gradient(90deg, #dcff64 1px, rgba(0, 0, 0, 0) 0%);
  background-size: 7px 7px;
}
.gamepark-list {
  display: grid;
  gap: 36px 24px;
  grid-template-columns: repeat(auto-fit, calc((100% - 72px) / 4));
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .gamepark-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 12px;
  }
}
.gamepark-list-item__block {
  display: grid;
  gap: 15px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .gamepark-list-item__block {
    gap: 10px 0;
  }
}
.gamepark-list-item__image {
  display: block;
}
.gamepark-list-item__info {
  display: grid;
  gap: 15px 0;
  text-align: center;
}
.gamepark-list-item__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .gamepark-list-item__info {
    gap: 10px 0;
  }
  .gamepark-list-item__title {
    font-size: 15px;
  }
}

.btn--external_link {
  min-width: auto;
  max-width: 196px;
  color: var(--color-red);
  border-color: var(--border-color-red);
  font-family: var(--font-family-en);
  font-size: 15px;
  position: relative;
  letter-spacing: .05em;
  margin: 0 auto;
  width: 100%;
}
.btn--external_link:after {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../img/common/icon_external_link.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 15px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn--external_link {
    width: 100%;
    font-size: 13px;
  }
}
.page-container {
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .page-container {
    margin: 0 auto;
    max-width: var(--total-width-pc);
    box-sizing: content-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-container {
    padding-bottom: 35px;
  }
}
.page-header {
  margin: 60px auto 30px auto;
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
  max-width: var(--total-width-pc);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-header {
    width: auto;
    margin: 35px auto 20px auto;
  }
}
.page-title {
  font-size: 28px;
  font-weight: bold;
  font-family: var(--font-family-en);
}
.page-title .alt {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  color: var(--font-color-gray);
  letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 21px;
  }
  .page-title .alt {
    margin-top: 10px;
    font-size: 13px;
  }
}
.page-section {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: var(--total-width-pc);
}
@media screen and (max-width: 768px) {
  .page-section{
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .page-section__header {
    padding: 0 20px;
  }
}
.page-section__title {
  margin: 0 0 24px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.page-section__title.center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-section__title {
    margin: 0 0 16px 0;
    font-size: 16px;
  }
}
.page-section__title .alt {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  color: var(--font-color-gray);
  letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
  .page-section__title .alt {
    margin-top: 10px;
    font-size: 13px;
  }
}
.page-section__description {
  margin: 20px;
  line-height: 1.69;
}
.page-section__description strong {
  font-weight: bold;
}
.page-section__description p + p {
  margin-top: 0.8em;
}
.page-section__date {
  font-size: 11px;
  color: var(--font-color-gray);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-section__date {
    font-size: 10px;
  }
}
.page-section__body {
  max-width: var(--total-width-pc);
}
@media screen and (max-width: 768px) {
  .page-section__body:not(.fullwidth),
  .page-section__body.fullwidth .form-action {
    padding: 0 20px
  }
}
.page-section__footer {
  margin: 60px 0 0;
  padding: 1.5em 1.5em;
  background: #e5e5e5;
}
.page-section__footer-title {
  margin: 0 0 1em 0;
  padding: 0.25em 0.5em;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 3px solid #000;
  letter-spacing: .2em;
}
.page-section__footer-description {
  line-height: 1.69;
}
.common-category-selector__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .common-category-selector__list {
    width: 100%;
  }
}
.common-category-selector__item {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .common-category-selector__item {
    min-width: 137px;
  }
}
@media screen and (max-width: 768px) {
  .common-category-selector__item {
    width: calc(100% / 3);
    font-size: 15px;
  }
}
.common-category-selector__item a,
.common-category-selector__link {
  display: flex;
  height: 49px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-category-selector__item a,
  .common-category-selector__link {
    height: 40px;
  }
}
.common-category-selector__item.active .common-category-selector__link,
.common-category-selector__item .active {
  color: var(--color-red);
  border-bottom: 3px solid var(--color-red);
  font-weight: bold;
}
.top-information {
  background: var(--color-white);
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .top-information {
    padding: 8px 0;
  }
}
.top-information:empty {
  display: none;
}
.top-information__list {
  max-width: var(--total-width-pc);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.69;
  letter-spacing: .044em;
}
@media screen and (max-width: 768px) {
  .top-information__list {
    width: auto;
  }
}
.top-information__list dt,
.top-information__list dd {
  padding: 5px 0;
}
.top-information__list dt {
  width: 100px;
  color: var(--font-color-gray);
  font-size: 14px;
  font-family: var(--font-family-en);
}
.top-information__list dd {
  padding: 7px 0;
  width: calc(100% - 100px);
}
.top-information__title {
  font-size: 13px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  padding-right: 15px;
}
.top-information__title:before,
.top-information__title:after {
  content: '';
  display: block;
  width: 1px;
  height: 7px;
  border-radius: 1px;
  background: var(--background-color-red);
  position: absolute;
  right: 5px;
}
.top-information__title:before {
  transform: rotate(-45deg);
  bottom: calc(50% - 1px);
}
.top-information__title:after {
  transform: rotate(45deg);
  top: calc(50% - 1.5px);
}
@media screen and (max-width: 768px) {
  .top-information__list dt {
    width: 80px;
  }
  .top-information__list dt,
  .top-information__list dd {
    padding: 3px 0;
  }
  .top-information__list dd {
    width: calc(100% - 80px);
  }
  .top-information__list dt,
  .top-information__title {
    font-size: 11px;
  }
}
.top-navi {
  background: var(--color-white);
  padding: 30px 0 42px;
}
.top-navi__list {
  max-width: var(--total-width-pc);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 44px;
}
.top-navi__list .item {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-navi {
    background: var(--color-white);
    padding: 10px 0 34px;
  }
  .top-navi__list {
    gap: 0;
    justify-content: space-evenly;
  }
}
.top-navi__list .item a:hover,
.top-navi__list .item button:hover {
  opacity: 0.8;
}
.top-navi__list .item a:before,
.top-navi__list .item button:before {
  content: '';
  display: block;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: var(--background-color-gray);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-bottom: 12px;
}
.top-navi__list .item button,
.top-navi__list .item a {
  background: none;
  border: none;
  line-height: 1;
  vertical-align: top;
  padding: 0;
  color: inherit;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .top-navi__list .item button,
  .top-navi__list .item a {
    font-size: 10px;
  }
  .top-navi__list .item a:before,
  .top-navi__list .item button:before {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
}
.top-navi__list .item.new a:before {
  background-image: url(../img/common/icon_new.svg);
  background-size: 60%;
}
.top-navi__list .item.sale a:before {
  background-image: url(../img/common/icon_sale.svg);
  background-position: 65% 68%;
  background-size: 66%;
}
.top-navi__list .item.reserv a:before {
  background-image: url(../img/common/icon_reserv.svg);
  background-size: 55%;
}
.top-navi__list .item.web a:before {
  background-image: url(../img/common/icon_web.svg);
  background-size: 66%;
}
.top-navi__list .item.shop a:before,
.top-navi__list .item.shop button:before {
  background-image: url(../img/common/icon_shop2.svg);
  background-size: 55%;
  background-position: 55% 50%;
}
.common-error-block {
  margin: 30px auto;
  text-align: center;
  line-height: 1.6;
  color: var(--color-red);
}
.common-error-block .message-error {
  background: url(../img/common/icon_alert.png) center top no-repeat;
}
.common-error-block .message-warn {
  background: url(../img/common/icon_warn.png) center top no-repeat;
}
.common-error-block .message-info {
  background: url(../img/common/icon_info.png) center top no-repeat;
}
.common-error-block .message-default {
  background: url(../img/common/icon_message.png) center top no-repeat;
}
.common-error-block .message-error,
.common-error-block .message-warn,
.common-error-block .message-info,
.common-error-block .message-default {
  background-size: 28px auto;
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .common-error-block {
    margin: 40px auto;
  }
}
.product-list {
  display: grid;
  justify-content: start;
  gap: 8px;
}
.product-list[data-view="medium"],
.product-list[data-view="wishlist"] {
  gap: 35px 18px;
}
.product-list[data-view="small"] {
  grid-template-columns: repeat(8, 1fr);
}
.product-list[data-view="medium"] {
  grid-template-columns: repeat(5, 1fr);
}
.product-list[data-view="menu-drawer"] {
  grid-template-columns: repeat(4, 1fr);
}
.product-list[data-view="wishlist"] {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 997px) {
  .product-list[data-view="wishlist"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .product-list[data-mobile-item9] > .product-list-item:nth-child(n + 10) {
    display: none;
  }
  .product-list[data-mobile-item6] > .product-list-item:nth-child(n + 7) {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .product-list[data-desktop-item10] > .product-list-item:nth-child(n + 11) {
    display: none;
  }
  .product-list[data-desktop-item8] > .product-list-item:nth-child(n + 9) {
    display: none;
  }
  .product-list[data-desktop-item5] > .product-list-item:nth-child(n + 6) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .product-list[data-view="small"] {
    gap: 9px 7px;
  }
  .product-list[data-view="medium"] {
    gap: 18px 7px;
  }
  .product-list[data-view="wishlist"] {
    gap: 12px;
  }
  .product-list[data-view="small"],
  .product-list[data-view="medium"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-list[data-view="wishlist"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-list-item {
  display: block;
  position: relative;
}
.product-list-item__block {
  display: grid;
  gap: 12px 0;
}
@media screen and (max-width: 768px) {
  .product-list-item__block {
    gap: 8px 0;
  }
}
.product-list-item__image {
  display: block;
  position: relative;
}
.product-list-item__image .item-discount_rate {
  background: var(--color-red);
  color: #fff;
  padding: 4px 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
}
.product-list-item__image img {
  width: 100%;
}
.product-list-item__rank {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: var(--color-white);
  background: var(--color-rank);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 768px) {
  .product-list-item__rank {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
  }
}
.product-list > .product-list-item:nth-child(1) .product-list-item__rank {
  background: var(--color-rank1);
}
.product-list > .product-list-item:nth-child(2) .product-list-item__rank {
  background: var(--color-rank2);
}
.product-list > .product-list-item:nth-child(3) .product-list-item__rank {
  background: var(--color-rank3);
}
.product-list > .product-list-item:nth-child(1) .product-list-item__rank:after,
.product-list > .product-list-item:nth-child(2) .product-list-item__rank:after,
.product-list > .product-list-item:nth-child(3) .product-list-item__rank:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-bottom: 4px solid transparent;
  border-left-width: 15px;
  border-left-style: solid;
  border-right-width: 15px;
  border-right-style: solid;
}
.product-list > .product-list-item:nth-child(1) .product-list-item__rank:after {
  border-left-color: var(--color-rank1);
  border-right-color: var(--color-rank1);
}
.product-list > .product-list-item:nth-child(2) .product-list-item__rank:after {
  border-left-color: var(--color-rank2);
  border-right-color: var(--color-rank2);
}
.product-list > .product-list-item:nth-child(3) .product-list-item__rank:after {
  border-left-color: var(--color-rank3);
  border-right-color: var(--color-rank3);
}
@media screen and (max-width: 768px) {
  .product-list > .product-list-item:nth-child(1) .product-list-item__rank:after,
  .product-list > .product-list-item:nth-child(2) .product-list-item__rank:after,
  .product-list > .product-list-item:nth-child(3) .product-list-item__rank:after {
    border-left-width: 10px;
    border-right-width: 10px;
  }
}
.product-list-item__info {
  display: grid;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px 0;
}
@media screen and (max-width: 768px) {
  .product-list-item__info {
    gap: 4px 0;
  }
}
.product-list-item__category,
.product-list-item__brand {
  display: block;
  font-family: var(--font-family-en);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}
.product-list-item__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .product-list-item__category,
  .product-list-item__brand,
  .product-list-item__name {
    font-size: 11px;
  }
}
.product-list-item__price {
  font-size: 16px;
  font-family: var(--font-family-en);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .product-list-item__price {
    font-size: 13px;
  }
}
.product-list-item__size,
.product-list-item__color,
.product-list-item__date {
  display: block;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 768px) {
  .product-list-item__size,
  .product-list-item__color,
  .product-list-item__date {
    font-size: 11px;
  }
}
.product-list-item__brand:empty,
.product-list-item__name:empty,
.product-list-item__price:empty {
  background: var(--background-color-gray);
  opacity: .8;
}
.product-list-item__brand:empty {
  height: 1.2em;
}
.product-list-item__name:empty {
  height: 1.5em;
}
.product-list-item__price:empty {
  height: 1em;
}
.product-list-item__date {
  color: var(--font-color-gray);
  font-size: 11px;
}
.product-list-item-status {
  margin-top: 8px;
}
.product-list-item-status__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-list-item-status__item {
  width: calc((100% - 6px*2) / 3);
}
@media screen and (max-width: 768px) {
  .product-list-item-status {
    margin-top: 6px;
  }
  .product-list-item-status__list {
    gap: 4px;
  }
  .product-list-item-status__item {
    width: calc((100% - 4px*1) / 2);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.02);
  }
}
.fullscreen-view {
  position: fixed;
  z-index: 11;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}
.fullscreen-view img {
  object-fit: cover;
  object-position: center;
  width: calc(100vw + 40px);
  height: calc(100vh + 40px);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
.fullscreen-view.fadeout {
  animation: fadeout 2s ease 0ms 1 forwards;
}
.fullscreen-view.active {
  display: block;
}
.fullscreen-view.finished {
  display: none;
}
.document-wrapper
.top-main-slider {
  white-space: nowrap;
  max-width: var(--total-width-pc);
  margin: 0 auto;
  position: relative;
  overflow-y: clip;
}
.top-main-slider .swiper {
  overflow: inherit;
}
.top-main-slider .item {
  display: inline-block;
  max-width: var(--total-width-pc);
}
@media screen and (max-width: 768px) {
  .top-main-slider {
    width: auto;
    height: calc(100vw / 2);
  }
  .top-main-slider .item {
    width: 100%;
  }
  .top-main-slider .swiper {
    overflow: hidden;
  }
}
.top-main-slider-number:before,
.top-main-slider-number:after {
  content: '';
  display: block;
  width: 2px;
  height: 5px;
  border-left: 5px solid var(--color-white);
  border-right: 5px solid var(--color-white);
  position: absolute;
  left: 10px;
  top: 50%;
}
.top-main-slider-number:before {
  transform: translateY(-6px);
}
.top-main-slider-number:after {
  transform: translateY(1px);
}
.top-main-slider-number:hover {
  opacity: 0.8;
}
.top-main-slider-number__current {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .top-main-slider-number:before,
  .top-main-slider-number:after {
    height: 6px;
    left: 12px;
    border-left: 6px solid var(--color-white);
    border-right: 6px solid var(--color-white);
  }
  .top-main-slider-number:before {
    transform: translateY(-7px);
  }
}
.top-middle-slider {
  white-space: nowrap;
  background: var(--background-color-gray);
  padding-top: 25px;
}
.top-middle-slider__list {
  max-width: var(--total-width-pc);
  margin: 0 auto;
  padding: 0 10px 30px;
  display: flex;
  justify-content: center;
}
.top-middle-slider__list:empty {
  display: none;
}
.top-middle-slider__list .item {
  width: 185px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 10px;
}
.top-middle-slider__footer {
  text-align: center;
  margin: 0 auto;
  max-width: var(--total-width-pc);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
  padding-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .top-middle-slider {
    background: var(--color-white);
    border-top: 1px solid var(--border-color-gray);
    padding-top: 18px;
  }
  .top-middle-slider__list {
    padding: 0 14px 18px;
    white-space: nowrap;
    overflow-x: scroll;
    display: block;
  }
  .top-middle-slider__list::-webkit-scrollbar{
    display: none;
  }
  .top-middle-slider__list .item {
    width: 40vw;
    max-width: 170px;
    display: inline-block;
    margin: 0px 6px;
  }
  .top-middle-slider__footer {
    width: auto;
  }
}
.top-main-slideup,
.top-navi-slideup {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 100;
  height: 95%;
  width: 100%;
  max-width: 1100px;
  transition: all .3s ease-out;
  transform: translate(-50%, 100%);
}
.top-main-slideup-open .top-main-slideup,
.top-navi-shop-slideup-open .top-navi-slideup {
  transform: translate(-50%, 0);
}
.top-main-slideup__header,
.top-navi-slideup__header {
  position: absolute;
  background: var(--color-white);
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.top-main-slideup__title,
.top-navi-slideup__title {
  height: 62px;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-navi-slideup__title {
  border-bottom: 1px solid #C7C7C7;
}
.top-main-slideup__close,
.top-navi-slideup__close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top-main-slideup__close:before,
.top-main-slideup__close:after,
.top-navi-slideup__close:before,
.top-navi-slideup__close:after {
  position: absolute;
  top: 35%;
  right: 30px;
  content: '';
  height: 18px;
  width: 1px;
  background-color: #000;
  border-radius: 1px;
}
.top-main-slideup__close:before,
.top-navi-slideup__close:before {
  transform: rotate(45deg);
}
.top-main-slideup__close:after,
.top-navi-slideup__close:after {
  transform: rotate(-45deg);
}
.top-main-slideup__body,
.top-navi-slideup__body {
  background: var(--color-white);
  height: calc(100% - 62px);
  margin-top: 62px;
  overflow-y: scroll;
}
.category-feature-brand {
  position: relative;
  max-width: 1120px;
  box-sizing: content-box;
  overflow: hidden;
  margin-bottom: 40px;
}
.category-feature-brand__image {
  text-align: center;
}
.category-feature-brand__description {
  margin-top: 3vw;
  line-height: 1.69;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .category-feature-brand__body {
    display: table;
    width: 100%;
    overflow: hidden;
  }
  .category-feature-brand__image {
    display: table-cell;
    vertical-align: middle;
    width: 320px;
  }
  .category-feature-brand__image + .category-feature-brand__content {
    padding-left: 5%;
  }
  .category-feature-brand__content {
    display: table-cell;
    vertical-align: middle;
  }
  .category-feature-brand__description {
    margin-top: 0;
  }
}
.category-feature-brand + .category-feature-item {
  margin-top: 8vw;
}
.category-feature-item__content {
  line-height: 1.69;
}
@media screen and (max-width: 768px) {
  .category-feature-item {
      margin-bottom: 10vw;
  }
  .category-feature-item__image + .category-feature-item__content {
      margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .category-feature-item {
    display: table;
    width: 100%;
    margin: 80px auto;
  }
  .category-feature-brand + .category-feature-item {
    margin-top: 60px;
  }
  .category-feature-item__image {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    text-align: right;
  }
  .category-feature-item__content {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding-left: 40px;
    box-sizing: border-box;
  }
}
.category-product-grid__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(9, 1fr);
}
@media screen and (max-width: 768px) {
  .category-product-grid__list {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.category-product-info {
  display: block;
  padding-top: 8px;
  font-size: 13px;
}
.category-product-info__brand {
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-product-info__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.category-product-info__brand {
  font-size: 11px;
}
.category-product-info__category,
.category-product-info__brand,
.category-product-info .item-price {
  display: block;
  line-height: 1.5;
}
.category-product-info__name,
.category-product-info .item-price-box .item-price {
  margin-bottom: 3px;
}
.category-product-visual {
  display: block;
  position: relative;
  overflow: hidden;
}
.category-product-visual .item-discount_rate {
  background: var(--color-red);
  color: #fff;
  padding: 4px 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
}
.product-thumbs-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.product-thumbs-open .product-thumbs-drawer {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.product-thumbs-drawer__header {
  position: relative;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.product-thumbs-drawer__close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-thumbs-drawer__close:before, .product-thumbs-drawer__close:after {
  position: absolute;
  top: 10px;
  right: 30px;
  content: ' ';
  height: 28px;
  width: 1px;
  background-color: #000;
}
.product-thumbs-drawer__close:before {
  transform: rotate(45deg);
}
.product-thumbs-drawer__close:after {
  transform: rotate(-45deg);
}
.product-thumbs-drawer__title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 49px;
  letter-spacing: 1px;
}
.product-thumbs-drawer__body {
  height: calc(100% - 50px);
  padding: 15px;
  overflow: auto;
}
.product-thumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 2px;
}
.product-thumbs__list .item {
  width: calc((100% - 2px*3) / 4);
}
.product-thumbs__list .item .thumb__image {
  border: 2px solid var(--color-white);
}
.product-thumbs__list .item.is-active .thumb__image {
  border-color: var(--color-red);
}
.product-thumbs__list .item .product-variant__name {
  padding: 0.3em 0 0;
  font-size: 11px;
  text-align: center;
}
.product-thumbs__list .item .product-variant__comment {
  display: none;
}
.product-thumbs__list .lazyload,
.product-thumbs__list .lazyloading {
  opacity: 0;
}
.product-thumbs__list .lazyloaded {
  opacity: 1;
  transition: opacity 400ms;
}
@media screen and (min-width: 769px) {
  .product-thumbs-drawer {
    display: none;
  }
}
.cart-modal.remodal {
  padding: 20px 15px;
}
.cart-modal-content {
  text-align: left;
}
.cart-modal-title {
  font-weight: bold;
}
.cart-variant-wrapper {
  margin-top: 24px;
  height: 70vh;
  overflow-y: scroll;
  margin-right: -10px;
  padding-right: 10px;
}
.cart-variant {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cart-variant-option {
  width: 100%;
  display: table;
}
.cart-variant-option:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.cart-variant-body {
  flex: 1;
}
.cart-variant-option__name {
  display: table-cell;
  width: 20%;
  min-width: 60px;
  text-align: center;
  vertical-align: top;
  padding: 0 5px 0 2px;
  line-height: 2;
  font-size: 10px;
  font-weight: bold;
}
.cart-variant-option__name.no_stock {
  color: #B5B5B5;
  font-weight: normal;
}
.cart-variant-option__name.low_stock {
  color: var(--color-red);
}
.cart-variant-option-zaiko__status {
  display: block;
  word-break: keep-all;
  word-wrap: normal;
  white-space: nowrap;
}
.cart-variant-option-add {
  display: table-cell;
  vertical-align: middle;
}
.cart-variant-option-add__btn {
  display: block;
  min-width: 120px;
  width: -webkit-fill-available;
  padding: 0;
  color: var(--color-white);
  background: var(--color-red);
  border: none;
  text-align: center;
  font-size: 12px;
  line-height: 42px;
  border-radius: 2px;
  margin: 0;
}
.cart-variant-option-add__btn.en {
  font-size: 13px;
  font-family: var(--font-family-en);
}
.cart-variant-option-add__btn.disabled {
  color: #000;
  border: 1px solid;
  border-color: #BFBFBF;
  background: var(--color-white);
  cursor: default;
}
.cart-variant-option-add__btn[disabled] {
  border: 1px solid;
  background: #CCC;
  border-color: #CCC;
  cursor: default;
  color: #fff;
}
.cart-variant-option-add__btn span {
  display: inline-block;
}
.cart-variant-option-add__btn em {
  display: inline-block;
  margin: 0 0.5em;
  font-size: .8em;
}
.cart-variant-option-add_yoyaku {
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
}
.cart-variant-option-favorite,
.cart-variant-option-storestocks {
  display: table-cell;
  vertical-align: top;
  padding: 0 0 0 10px;
}
.cart-variant-option-favorite__btn {
  display: block;
  padding: 0;
  text-align: center;
  line-height: 40px;
  border: none;
  border-radius: 4px;
  color: #000;
  width: 25px;
  height: 42px;
  font-size: 13px;
  background: url(../img/common/icon_favorite_pc.svg) 100% no-repeat;
}
.favorite-modal .cart-variant-option-favorite__btn {
  width: 100%;
  border: 1px solid #000;
  background-image: none;
}
.favorite-modal .cart-variant-option-favorite__btn span {
  display: inline-block;
  padding: 0 0 0 24px;
  background: url(../img/common/icon_favorite.svg) 0 50% no-repeat;
  background-size: 18px auto;
}
.cart-variant-option-storestocks__btn {
  display: block;
  text-align: center;
  line-height: 40px;
  border: 1px solid #9B9B9B;
  border-radius: 2px;
  color: #000;
  background: var(--color-white);
  width: 100%;
  height: 42px;
  font-size: 12px;
  padding: 0 4px;
}
.storestocks-modal .cart-variant-option-storestocks__btn span {
  display: inline-block;
  padding: 0 0 0 28px;
  background: url(../img/common/icon_storestocks.svg) 0 50% no-repeat;
  background-size: 18px auto;
}
.cart-variant-header {
  width: calc(50px + 4%);
  padding-right: 4%;
}
.cart-variant + .cart-variant {
  margin-top: 24px;
}
.cart-variant:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-variant-image {
  margin-bottom: 6px;
}
.cart-variant-image img {
  min-width: 50px;
}
.cart-variant-name {
  font-size: 11px;
  text-align: center;
}
.cart-variant-similar-search {
  width: 100%;
  margin-top: 20px;
}
.cart-variant-similar-search__btn {
  display: block;
  width: 100%;
  padding: 0;
  color: var(--color-white);
  background: var(--color-red);
  border: none;
  text-align: center;
  font-size: 13px;
  line-height: 42px;
  border-radius: 3px;
}
.cart-variant-similar-search__btn:before {
  content: '';
  display: inline-block;
  background-image: url(../img/common/similar_search.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  vertical-align: middle;
  padding-right: 8px;
}
.storestocks-content {
  margin-top: 24px;
  height: 70vh;
  overflow-y: scroll;
  margin-right: -10px;
  padding-right: 10px;
}
.storestocks-product,
.product-item-detail {
  display: grid;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 15px;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  grid-template-columns: 95px 1fr;
}
.storestocks-results {
  margin-top: 24px;
}
.storestocks-results .error {
  color: var(--color-red);
}
.storestocks-product-image,
.product-item-detail-image {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.storestocks-product-data,
.product-item-detail-data {
  line-height: 1.65;
  font-size: 13px;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.storestocks-product-data__code,
.storestocks-product-data__price,
.product-item-detail-data__color,
.product-item-detail-data__price,
.product-item-detail-data__size {
  display: flex;
  margin-bottom: 3px;
}
.storestocks-product-data__code .label,
.storestocks-product-data__price .label,
.product-item-detail-data__color .label,
.product-item-detail-data__price .label,
.product-item-detail-data__size .label {
  display: inline-block;
  position: relative;
}
.storestocks-product-data__code .label:after,
.storestocks-product-data__price .label:after,
.product-item-detail-data__color .label:after,
.product-item-detail-data__price .label:after,
.product-item-detail-data__size .label:after {
  content: ':';
  display: inline-block;
  margin: 0 6px;
}
.storestocks-product-data__brand,
.storestocks-product-data__name,
.storestocks-product-data__code,
.storestocks-product-data__price,
.product-item-detail-data__brand,
.product-item-detail-data__name,
.product-item-detail-data__color,
.product-item-detail-data__size {
  margin-bottom: 3px;
}
.storestocks-variant-shop {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 13px;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  width: 98%;
  margin: auto;
}
.storestocks-variant-name {
  padding: 0 5px;
}
.storestocks-variant-name .shop_name {
  text-decoration: underline;
  margin-bottom: 6px;
  display: block;
  font-weight: bold;
}
.storestocks-variant-name .shop_address {
  display: block;
  font-size: 12px;
  line-height: 1.7;
}
.storestocks-variant-area {
  padding: 18px 0 10px;
  border-bottom: 2px solid #4b4b4b;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
}
.storestocks-variant-area:first-child {
  padding-top: 0;
}
.storestocks-product-color {
  width: 100%;
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  font-size: 12px;
}
.storestocks-product-color select {
  padding: 7px;
  box-sizing: border-box;
}
.storestocks-variant-options {
  word-break: keep-all;
  padding: 0 10px;
}
.storestocks-variant-options-zaiko__status {
  display: inline-block;
  background: #F4F4F4;
  height: 22px;
  border-radius: 11px;
  padding: 0 10px;
  line-height: 22px;
  font-size: 12px;
  min-width: 80px;
  text-align: center;
}
.storestocks-variant-options-zaiko__status.low_stock {
  color: var(--color-red);
  font-weight: bold;
}
.storestocks-product-data__brand {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .storestocks-product {
    grid-template-columns: 150px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px 20px;
  }
  .storestocks-product-image,
  .product-item-detail-image {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  .storestocks-product-data {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
  .storestocks-product-color {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}
.size-guide {
  text-align: left;
}
.size-guide-title {
  margin-bottom: 30px;
}
.size-guide-description {
  line-height: 1.69;
}
.size-guide-caution {
  margin-top: 30px;
  line-height: 1.69;
}
.size-guide-caution__title {
  font-weight: bold;
  color: var(--color-red);
}
.size-guide-caution li {
  position: relative;
  padding-left: 1.3em;
}
.size-guide-caution li:before {
  content: '・';
  position: absolute;
  left: 0;
}
.page-section-size-guide {
  margin-top: 30px;
}
.size-guide-item-link {
  margin: 20px 0 30px;
}
.size-guide-item-link ul {
  overflow: hidden;
  margin: -8px;
}
.size-guide-item-link li {
  float: left;
  width: 50%;
  padding: 8px;
}
.size-guide-item-detail {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .size-modal {
    padding: 20px;
  }
}
@media screen and (min-width: 769px) {
  .size-guide-item-link {
    margin: 0 0 30px 20px;
  }
  .size-guide-item-link li {
    width: 25%;
    font-size: 16px;
  }
}
.page-topic-list .common-category-selector {
  margin-bottom: 25px;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .page-topic-list .common-category-selector {
    margin-bottom: 12px;
  }
  .page-topic-list .common-category-selector__list {
    justify-content: space-between;
    padding: 0 20px;
  }
}
.page-topic-list .topic-list-item__link {
  display: block;
}
.page-topic-list .topic-list-item__meta {
  position: relative;
  display: block;
  margin-top: 8px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-family-en);
}
.page-topic-list .topic-list-item__category {
  display: inline-block;
}
.page-topic-list .topic-list-item__category:first-child {
  position: relative;
  padding-left: 25px;
}
.page-topic-list .topic-list-item__category:first-child:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}
.page-topic-list .topic-list-item__date {
  padding-left: 1em;
  float: right;
}
.page-topic-list .topic-list-item__title {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}
.page-topic-list .topic-grid__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-topic-list .topic-grid {
    padding: 0 20px;
  }
  .page-topic-list .topic-grid__list {
    gap: 12px;
  }
  .page-topic-list .topic-grid__item {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (min-width: 769px) {
  .page-topic-list .topic-grid__list {
    gap: 20px;
  }
  .page-topic-list .topic-grid__item {
    width: calc((100% - 20px*3) / 4);
  }
  .page-topic-list .topic-list-item__meta {
    margin-top: 15px;
    font-size: 15px;
  }
  .page-topic-list .topic-list-item__category:first-child {
    padding-left: 33px;
  }
  .page-topic-list .topic-list-item__category:first-child:before {
    left: 0;
    width: 25px;
  }
  .page-topic-list .topic-list-item__title {
    margin-top: 5px;
    font-size: 14px;
  }
}
.page-topic-detail .topic-single {
  margin: 30px auto;
  padding: 0 20px;
}
.page-topic-detail .topic-single__header {
  position: relative;
  font-size: 12px;
  font-weight: 500;
}
.page-topic-detail .topic-single__category {
  position: relative;
  padding-left: 27px;
  font-family: var(--font-family-en);
}
.page-topic-detail .topic-single__category:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}
.page-topic-detail .topic-single__title {
  margin: 1em 0;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
}
.page-topic-detail .topic-single__date {
  font-family: var(--font-family-en);
}
.page-topic-detail .topic-single__thumbnail {
  margin-top: 12px;
}
.page-topic-detail .topic-single__thumbnail img {
  width: 100%;
}
.page-topic-detail .topic-single__body {
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.69;
}
.page-topic-detail .topic-single__body p {
  margin: 2em 8%;
}
@media screen and (max-width: 768px) {
  .page-topic-detail .topic-single__date {
    position: absolute;
    top: 0;
    right: 0;
  }
  .page-topic-detail .topic-single__body img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .page-topic-detail .topic-single {
    margin: 60px auto 0;
    width: var(--total-width-pc);
  }
  .page-topic-detail .topic-single__header {
    font-size: inherit;
  }
  .page-topic-detail .topic-single__category {
    padding-left: 38px;
  }
  .page-topic-detail .topic-single__category:before {
    width: 30px;
  }
  .page-topic-detail .topic-single__title {
    font-size: 28px;
  }
  .page-topic-detail .topic-single__date {
    display: block;
    text-align: right;
  }
  .page-topic-detail .topic-single__body {
    margin: 30px 0;
    font-size: inherit;
  }
  .page-topic-detail .topic-single__body p {
    margin: 3em 0;
  }
  .page-topic-detail .topic-single__body .alignleft {
    float: left;
    margin: 0 3em 3em 0;
  }
  .page-topic-detail .topic-single__body .alignright {
    float: right;
    margin: 0 0 3em 3em;
  }
}
.brand-list-grid {
  margin: 30px auto 60px;
  padding: 0 20px;
  box-sizing: content-box;
}
.brand-list-grid__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-family-en);
}
.brand-list-grid__item {
  width: calc((100% - 20px) / 2);
}
.brand-group__label {
  padding: 12px 8px;
  border-bottom: 4px solid #000;
  font-weight: bold;
  font-size: 16px;
}
.brand-group__list {
  margin: 12px 8px 0;
}
.brand-group__item {
  padding: 4px 0;
}
.brand-group__item a {
  display: block;
  padding: 6px 0;
}
@media screen and (min-width: 769px) {
  .brand-list-grid {
    margin: 60px auto 90px;
    max-width: var(--total-width-pc);
  }
  .brand-list-grid__list {
    gap: 40px;
  }
  .brand-list-grid__item {
    width: calc((100% - 40px*3) / 4);
  }
  .page-brand-list .brand-group__label {
    padding: 12px 18px;
    font-size: 18px;
  }
  .page-brand-list .brand-group__item a:hover {
    opacity: 0.8;
  }
}
.page-shop-list .shop-list-grid {
  margin: 0 auto;
  padding: 0 20px;
  display: none;
}
.page-shop-list .shop-list-grid.active {
  display: block;
}
.page-shop-list .shop-list-grid__list {
  overflow: hidden;
}
.page-shop-list .shop-list-grid__item + .shop-list-grid__item {
  margin-top: 20px;
}
.page-shop-list .shop-group__label {
  padding: 12px 0;
  border-bottom: 2px solid #000;
  font-weight: bold;
  font-size: 18px;
}
.page-shop-list .shop-group__list {
  margin: 10px 0 0;
  overflow: hidden;
}
.page-shop-list .shop-group__item {
  margin-bottom: 20px;
}
.page-shop-list .shop-list-item {
  position: relative;
  padding: 10px 0; }

.page-shop-list .shop-list-item__link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-shop-list .shop-list-item__name {
  display: inline;
  vertical-align: middle;
  font-weight: 500;
  line-height: 24px;
  margin-right: 4px;
  font-weight: bold;
  letter-spacing: .2px;
  font-size: 15px;
}
.page-shop-list .shop-list-item__shop__social {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/shop/icon_instagram.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.page-shop-list .shop-list-item__address {
  display: block;
  margin-top: 0.4em;
  line-height: 1.7;
  font-weight: 500;
  font-size: 13px;
  color: #282828;
}
.page-shop-list .shop-list-item__status-list {
  margin: 12px -6px 0;
  overflow: hidden;
}
.page-shop-list .shop-list-item__status-list__item {
  float: left;
  padding: 3px 6px;
}
.page-shop-list .shop-list-item__status-list__item img {
  max-width: 80px;
}
@media screen and (max-width: 768px) {
  .page-shop-list .shop-list-grid__item:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 769px) {
  .page-shop-list .shop-list-grid {
    max-width: var(--total-width-pc);
  }
  .page-shop-list .shop-group__label {
    padding: 12px 18px;
    font-size: 20px;
  }
  .page-shop-list .shop-group__item {
    float: left;
    width: 50%;
    margin: 0;
    padding: 20px 4%;
  }
  .page-shop-list .shop-group__item:nth-child(2n+1) {
    clear: left;
  }
  .page-shop-list .shop-list-item__status-list__item {
    padding: 2px 6px;
  }
  .page-shop-list .shop-list-item {
    transition: all 0.2s;
  }
  .page-shop-list .shop-list-item:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1231px) {
  .page-shop-list .shop-group__item {
    width: 33.33333%;
  }
  .page-shop-list .shop-group__item:nth-child(2n+1) {
    clear: none;
  }
  .page-shop-list .shop-group__item:nth-child(3n+1) {
    clear: left;
  }
}
.page-shop-detail .shop-single {
  position: relative;
  padding: 30px 5% 0;
}
.page-shop-detail .shop-single__name {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}
.page-shop-detail .shop-single__shop__social {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background: url(../img/shop/icon_instagram.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.page-shop-detail .shop-single__address,
.page-shop-detail .shop-single__detail {
  display: block;
  margin-top: 1.5em;
  line-height: 1.5;
  font-weight: 500;
}
.page-shop-detail .shop-single__status-list {
  margin: 10px -6px 24px;
  overflow: hidden;
}
.page-shop-detail .shop-single__status-list__item {
  float: left;
  padding: 3px 6px;
}
.page-shop-detail .shop-single__status-list__item img {
  max-width: 80px;
}
.page-shop-detail .responsive-google-maps {
  padding-bottom: 56%;
}
.page-shop-detail .shop-single__map-link {
  margin-top: 12px;
  text-align: right; }

@media screen and (max-width: 768px) {
  .page-shop-detail .shop-single__map {
    margin-top: 2em;
  }
}
@media screen and (min-width: 769px) {
  .page-shop-detail .shop-single {
    margin: 90px auto 0;
    max-width: 1100px;
    overflow: var(--total-width-pc);
  }
  .page-shop-detail .shop-single__info {
    float: left;
    width: 42%;
    padding-left: 7%;
  }
  .page-shop-detail .shop-single__address {
    margin-top: 1.5em;
  }
  .page-shop-detail .shop-single__detail {
    margin-top: 1.5em;
  }
  .page-shop-detail .shop-single__map {
    margin-left: 42%;
  }
  .page-shop-detail .shop-list-item__status-list__item {
    padding: 2px 6px;
  }
}
.page-mypage .mypage-nav {
  position: relative;
}
.page-mypage .mypage-nav__label {
  position: relative;
  display: block;
  padding: 10px 16px;
  color: var(--color-white);
  background: #CCC;
  transition: background-color .1s;
}
.page-mypage .mypage-nav__label:before,
.page-mypage .mypage-nav__label:after {
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 2;
  margin-top: -1px;
  content: ' ';
  display: block;
  width: 14px;
  height: 2px;
  background: var(--color-white);
}
.page-mypage .mypage-nav__label:after {
  transform: rotate(90deg);
}
.page-mypage .mypage-nav.active .mypage-nav__label:after {
  display: none;
}
.page-mypage .mypage-nav__item,
.anchor-nav__item {
  padding: 3px 0;
  line-height: 1.5;
}
.page-mypage .mypage-nav__item a,
.anchor-nav__item a {
  display: block;
  padding: 6px 0;
  font-size: 16px;
}
.page-mypage .mypage-nav__item.active a,
.page-mypage .mypage-nav__item a:hover,
.anchor-nav__item.active a,
.anchor-nav__item a:hover {
  color: var(--color-red);
}
.page-mypage .common-pagination {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page-mypage .mypage-nav__list {
    position: absolute;
    z-index: 5;
    width: 100%;
    background: var(--color-white);
    border: 2px solid #EEE;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .page-mypage .mypage-nav.active .mypage-nav__list {
    opacity: 1;
    visibility: visible;
  }
  .page-mypage .mypage-nav__item a,
  .anchor-nav__item a {
    padding: 6px 16px;
  }
  .page-mypage .page-body {
    margin-top: 20px;
  }
  .anchor-nav {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .anchor-nav__list {
    display: flex;
    flex-wrap: wrap;
  }
  .anchor-nav__item {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .page-mypage .mypage-nav,
  .anchor-nav {
    float: left;
    width: 18.5%;
  }
  .page-mypage .mypage-nav__label {
    display: none;
  }
  .page-mypage .page-body,
  .anchor-nav + .page-body {
    margin-left: 18.5%;
    padding-left: 20px;
  }
}
.page-mypage-home .mypage-username {
  font-size: 16px;
}
.page-mypage-home .mypage-summary {
  margin-top: 30px;
}
.page-mypage-home .mypage-summary__list {
  display: grid;
}
.page-mypage-home .mypage-summary__item {
  background: var(--background-color-gray);
  grid-template-rows: repeat(3, 1fr);
}
.page-mypage-home .mypage-summary-block {
  padding: 25px;
}
.page-mypage-home .mypage-summary-block__title {
  font-weight: bold;
}
.page-mypage-home .mypage-summary-block__description {
  margin-top: 16px;
  line-height: 1.6;
}
.page-mypage-home .mypage-summary-block__action {
  margin: 16px 0 0 0;
  text-align: center;
}
.page-mypage-home .mypage-summary-block__action .btn {
  width: 100%;
}
.mypage-summary-description {
  margin: 8px 0 0 0;
  line-height: 1.69;
}
@media screen and (max-width: 768px) {
  .page-mypage-home .mypage-summary__list {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
  .mypage-summary-table .label {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .page-mypage-home .mypage-summary {
    margin-top: 60px;
  }
  .page-mypage-home .mypage-summary__list {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .mypage-summary-table td {
    width: 25%;
  }
}
.favorite-product-single__action {
  position: relative;
  margin-top: 10px;
  padding-right: 44px;
}
.favorite-product-single__cart__btn {
  padding: 0;
  width: 100%;
  line-height: 36px;
  vertical-align: middle;
}
.favorite-product-single__delete__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  background: url(../img/mypage/icon_delete.png) center center no-repeat;
  background-size: auto 30px;
  border: none;
  vertical-align: middle;
}
.order-history + .order-history {
  margin-top: 30px;
}
.order-history__meta {
  position: relative;
}
.order-history__status {
  display: inline-block;
  padding: 6px 12px;
  min-width: 105px;
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
  border: 2px solid #000;
}
.order-history__actions {
  font-size: 12px;
  color: #777;
}
.order-history-table + .order-history__meta {
  border-top: 1px solid #F5F5F5;
  margin-top: 20px;
  padding-top: 20px;
}
.order-history-table .order-history__actions > * {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .order-history__meta > span:not(.order-history__status) {
    line-height: 1.6;
  }
  .order-history__orderid,
  .order-history__date,
  .order-history__payment {
    display: block;
  }
  .order-history__act:not(:empty) {
    display: block;
    padding: 5px 0 0;
  }
  .order-history__act--cancel .btn-caution {
    padding: 5px 16px;
    font-size: 12px;
  }
  .order-history-table,
  .order-history-table tbody,
  .order-history-table tr,
  .order-history-table td {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
    vertical-align: top;
  }
  .order-history-table {
    position: relative;
  }
  .order-history-table tr {
    overflow: hidden;
    padding-top: 20px;
  }
  .order-history-table thead {
    display: none;
  }
  .order-history-table .product-image {
    float: left;
    width: 25%;
  }
  .order-history-table .product-image .label {
    display: none;
  }
  .order-history-table .product-code,
  .order-history-table .product-name,
  .order-history-table .product-quantity,
  .order-history-table .product-price,
  .order-history-table .product-tax {
    float: right;
    width: 75%;
    padding-left: 15px;
  }
  .order-history-table .order-history__actions {
    clear: both;
    text-align: center;
    padding-top: 12px;
    margin-bottom: 10px;
  }
  .order-history-table .order-history__actions .btn + .btn {
    margin-top: 12px;
  }
  .order-history__invoice {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    padding: 8px 0;
    text-decoration: underline;
  }
  .order-history + .order-history:before {
    content: '';
    display: block;
    padding-top: 30px;
    margin: 0 -20px;
    border-top: 12px solid #F5F5F5;
  }
}
@media screen and (min-width: 769px) {
  .order-history + .order-history {
    margin-top: 60px;
  }
  .order-history__meta {
    margin-bottom: 16px;
  }
  .order-history__status {
    padding: 10px 20px;
  }
  .order-history__orderid,
  .order-history__date,
  .order-history__payment {
    margin-left: 20px;
  }
  .order-history__act:not(:empty) {
    display: block;
    padding: 5px 10px 0;
    text-align: right;
  }
  .order-history__act--cancel .btn-caution {
    padding: 5px 16px;
    width: 188px;
  }
  .order-history-table {
    width: 100%;
  }
  .order-history-table th,
  .order-history-table td {
    border-width: 1px;
  }
  .order-history-table td {
    padding: 8px;
  }
  .order-history-table td.product-image {
    width: 120px;
  }
  .order-history-table td.product-image img {
    max-width: 102px;
  }
  .order-history-table .product-quantity,
  .order-history-table .product-price {
    width: 8%;
    white-space: nowrap;
  }
  .order-history-table .order-history__actions {
    width: 206px;
  }
  .order-history-table .order-history__actions .btn {
    display: block;
    width: 100%;
    max-width: 190px;
    line-height: 36px;
    font-size: 14px;
  }
  .order-history-table .order-history__actions .btn + .btn {
    margin-top: 10px;
  }
  .order-history__meta .order-history__invoice {
    display: none;
  }
  .order-history-table .label {
    display: none;
  }
}
.page-mypage-point .mypage-point-history {
  margin-top: 30px;
}
.page-mypage-point .mypage-point-history__header {
  text-align: center;
}
.page-mypage-point .mypage-point-history__title {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin-bottom: 20px;
}
.page-mypage-point .mypage-point-history[data-expand] .mypage-point-history__title:before {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}
.page-mypage-point .mypage-point-history[data-expand]:not(.expanded) .mypage-point-history__title:after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background: #000;
}
@media screen and (min-width: 769px) {
  .page-mypage-point .mypage-point-history {
    margin-top: 60px;
  }
  .page-mypage-point .mypage-point-history__title {
    margin-bottom: 30px;
  }
}
.page-mypage-address .address-add {
  padding: 0 20px;
}
.page-mypage-address .address-list__item + .address-list__item {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .page-mypage-withdraw .form-default .table--horizontal td {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.page-cart .cart-message {
  margin: 15px 0;
  text-align: center;
  line-height: 1.6;
}
.page-cart .cart-message .message-error {
  background: url(../img/cart/icon_alert.png) center top no-repeat;
  background-size: 28px auto;
  padding-top: 50px;
  color: var(--color-red);
}
.page-cart .cart-summary {
  margin: 20px 0;
  text-align: center;
}
.page-cart .cart-summary__price {
  font-weight: bold;
  line-height: 1.6;
}
.page-cart .cart-summary__price strong {
  font-size: 18px;
  display: inline-block;
}
.page-cart .cart-summary__price small {
  margin-left: 1em;
  display: inline-block;
}
.page-cart .cart-summary__point {
  margin-top: 1em;
  font-weight: 500;
  line-height: 1.69;
}
.page-cart .cart-summary__point strong {
  color: var(--color-red);
}
.page-cart .cart-checkout-summary {
  margin: 12px 0;
  line-height: 1.9;
  font-weight: bold;
  text-align: right;
}
.page-cart .checkout-progress__description {
  text-align: center;
  line-height: 1.6;
}
.page-cart .checkout-progress__description strong {
  font-weight: bold;
}
.page-cart .checkout-progress__description a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-cart .checkout-progress {
    margin-bottom: 20px;
  }
  .page-cart .checkout-progress__list {
    position: relative;
    height: 3em;
    margin-right: 1.5em;
    font-size: 12px;
  }
  .page-cart .checkout-progress__item {
    position: absolute;
    width: 33.333333%;
    height: 3em;
    line-height: 3em;
    color: var(--color-white);
    background: #CCC;
    text-align: center;
    overflow: visible;
  }
  .page-cart .checkout-progress__item:before,
  .page-cart .checkout-progress__item:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.5em 0 1.5em 1.5em;
    border-color: transparent transparent transparent #CCC;
  }
  .page-cart .checkout-progress__item:before {
    z-index: -2;
    left: calc(100% + 1px);
    border-color: transparent transparent transparent var(--color-white);
  }
  .page-cart .checkout-progress__item.active:after,
  .page-cart .checkout-progress__item:nth-child(2).active + .checkout-progress__item:nth-child(3):after,
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(4):after {
    border-color: transparent transparent transparent var(--color-red);
  }
  .page-cart .checkout-progress__item span {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    margin-right: -0.75em;
  }
  .page-cart .checkout-progress__item:nth-child(1),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(1) {
    z-index: 9;
  }
  .page-cart .checkout-progress__item:nth-child(2),
  .page-cart .checkout-progress__item:nth-child(3),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(2),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(3),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(4) {
    left: 33.333333%;
    z-index: 5;
  }
  .page-cart .checkout-progress__item:nth-child(4),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(5) {
    left: 66.666666%;
    z-index: 1;
  }
  .page-cart .checkout-progress__item:nth-child(3),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(3),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(4) {
    z-index: 4;
  }
  .page-cart .checkout-progress__item:nth-child(2),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(2) {
    background: none;
  }
  .page-cart .checkout-progress__item:nth-child(2):before,
  .page-cart .checkout-progress__item:nth-child(2):after,
  .page-cart .checkout-progress__item:nth-child(3) span,
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(2):before,
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(2):after,
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(3) span,
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(4) span {
    display: none;
  }
  .page-cart .checkout-progress__item.active,
  .page-cart .checkout-progress__item:nth-child(2).active + .checkout-progress__item:nth-child(3),
  .page-cart .checkout-progress__list--novelty .checkout-progress__item:nth-child(2) {
    background: var(--color-red);
  }
  .page-cart .checkout-progress__description {
    margin: 20px 0 20px 0;
  }
  .page-cart .cart-option-amazon .form-action a {
    display: inline-block;
    max-width: 280px;
  }
}
@media screen and (max-width: 360px) {
  .page-cart .checkout-progress__list {
    font-size: 10px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 400px) {
  .page-cart .checkout-progress__list {
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .page-cart .cart-message {
    margin: 30px 0;
  }
  .page-cart .cart-summary {
    margin: 50px 0;
  }
  .page-cart .cart-summary__price strong {
    font-size: 22px;
  }
  .page-cart .checkout-progress {
    margin-bottom: 30px;
  }
  .page-cart .checkout-progress__list {
    overflow: hidden;
    margin-right: -20px;
  }
  .page-cart .checkout-progress__item {
    float: left;
    width: 25%;
    padding-right: 55px;
  }
  .page-cart .checkout-progress__list--novelty .checkout-progress__item {
    width: 20%;
  }
  .page-cart .checkout-progress__label {
    position: relative;
    display: block;
    text-align: center;
    background: #EAEAEA;
    color: var(--color-white);
    font-size: 16px;
    font-weight: bold;
    height: 70px;
    line-height: 70px;
  }
  .page-cart .checkout-progress__label:after {
    position: absolute;
    top: 0;
    left: 100%;
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 0 35px 35px;
    border-color: transparent transparent transparent #EAEAEA;
  }
  .page-cart .checkout-progress__item.active .checkout-progress__label {
    background: var(--color-red);
  }
  .page-cart .checkout-progress__item.active .checkout-progress__label:after {
    border-color: transparent transparent transparent var(--color-red);
  }
  .page-cart .checkout-progress__description {
    margin: 45px 0 30px 0;
  }
}
.page-cart .yoyaku-item-info {
  padding: 0 0.5em;
  line-height: 1.8;
  color: var(--color-red);
}
.page-cart .yoyaku-item-info > * {
  display: inline-block;
}
.page-cart .yoyaku-item-info span:empty + span {
  display: none;
}
.page-cart .cart-option {
  margin: 20px 0;
  border-top: 1px solid #EEE;
  text-align: center;
}
.page-cart .cart-option__title {
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.6;
}
.page-cart .cart-option__description {
  margin-top: 1.6em;
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}
.page-cart .cart-option__support {
  margin-top: 20px;
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}
.page-cart .cart-option-signup form {
  margin-bottom: -20px;
}
.page-cart .cart-option-amazon .form-action {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.page-cart .cart-option-signup {
  border-top: none;
}
@media screen and (min-width: 769px) {
  .page-cart .cart-option-amazon .form-action {
    max-width: 280px;
  }
}
.page-cart-login .form-action {
  margin-top: 20px;
}
.page-cart-login .page-section-login-amazon .form-action {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .page-cart-login .form-action {
    margin-top: 40px;
  }
  .page-cart-login .page-section-login-amazon .form-action {
    max-width: 280px;
  }
}
.page-cart-checkout .delivery-address-header {
  margin: 35px 0 10px;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .page-cart-checkout .delivery-address-header {
    padding: 0 20px;
  }
}
.page-cart-checkout .delivery-address-title {
  font-weight: bold;
  word-break: keep-all;
}
.page-cart-checkout .delivery-address-copy {
  padding: 3px 6px;
}
.page-cart-checkout .payment-list {
  border: 1px solid #EBEBEB;
  border-bottom: 0;
}
.page-cart-checkout .payment-list__item {
  border-bottom: 1px solid #EBEBEB;
  position: relative;
  padding: 18px 20px;
}
.page-cart-checkout .payment-list__item.active {
  border-left: 5px solid var(--color-red);
  padding-left: 15px;
}
.page-cart-checkout .payment-list__item label {
  cursor: pointer;
}
.page-cart-checkout .payment-description {
  padding: 18px 0 0 .5em;
  line-height: 1.69;
}
.page-cart-checkout .payment-description li {
  list-style: disc;
  margin-left: 25px;
}
.page-cart-checkout .payment-description a {
  text-decoration: underline;
}
.page-cart-checkout .page-section-cart-payment--creditcard .page-section__body {
  background: #F9F9F9;
  padding: 20px;
  line-height: 1.69;
}
.page-cart-checkout .payment-credit-fieldset {
  margin: 15px 0;
}
.page-cart-checkout .payment-credit-fieldset .form-control-credit-name input,
.page-cart-checkout .payment-credit-fieldset .form-control-credit-number input {
  max-width: 300px;
}
.page-cart-checkout .payment-credit-fieldset .form-control-credit-cvv input {
  float: left;
  width: 75px;
}
.page-cart-checkout .payment-credit-fieldset .form-control-credit-cvv .form-support-block {
  margin-left: 90px;
}
.page-cart-checkout .payment-credit-fieldset .form-control-credit-cvv .cvv-sample {
  display: block;
  margin-top: 8px;
}
.page-cart-checkout .payment-description-rakutenid p {
  padding: 3px 0; }

.page-cart .btn-to-credit-form-wrapper {
  display: block;
  margin: 2em 0 1em;
  text-align: center;
}
.page-cart .btn-to-credit-form {
  display: inline-block;
  margin: 0;
  padding: 0.8em 2em;
  line-height: 1.4;
  text-decoration: none !important;
  border: 1px solid var(--color-red);
  background: var(--color-white);
  color: var(--color-red);
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .cart-novelty-table {
    border-top: none;
  }
  .cart-novelty-table td {
    text-align: center;
  }
  .cart-novelty-table td:last-child {
    padding: 0 8px 24px;
  }
  .cart-novelty-table .img_box {
    padding: 24px 8px 12px;
  }
  .cart-novelty-table .text_box {
    padding: 12px 8px 24px;
  }
}
.page-section-cart-collapsed-item {
  padding: 0 20px;
}
.page-cart-checkout .page-section-cart-collapsed-item__trigger {
  position: relative;
  padding: 12px 0 12px 36px;
  font-weight: bold;
}
.page-cart-checkout .page-section-cart-collapsed-item[data-expand] .page-section-cart-collapsed-item__trigger:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}
.page-cart-checkout .page-section-cart-collapsed-item[data-expand]:not(.expanded) .page-section-cart-collapsed-item__trigger:after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 14px;
  display: block;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background: #000;
}
.page-cart-checkout .giftwrap-select input[type="checkbox"] {
  vertical-align: middle;
}
.page-cart-checkout .giftwrap-select .label {
  display: inline-block;
  margin-left: 8px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .page-cart-checkout .payment-list__item {
    padding: 18px 32px;
  }
  .page-cart-checkout .payment-description {
    padding-left: 32px;
  }
  .page-cart-checkout .payment-credit-fieldset .form-label {
    width: 190px;
  }
  .page-cart-checkout .payment-credit-fieldset .form-label + .form-control {
    margin-left: 190px;
  }
  .page-cart-checkout .payment-credit-fieldset .form-control-credit-cvv .cvv-sample {
    margin-top: 8px;
    margin-left: 90px;
  }
  .page-cart-checkout .page-section-cart-signup td {
    padding: 20px;
  }
  .page-cart-checkout .page-section-cart-furniture td {
    padding: 20px;
  }
}
.page-cart-checkout-confirm .page-section__title .btn-change {
  border: none;
  background: none;
  margin-left: 16px;
  padding: 0;
  color: var(--color-red);
}
.page-cart-checkout-pre .checkout-progress__loading {
  text-align: center;
  padding: 30px 0; }

@media screen and (min-width: 769px) {
  .page-cart-checkout-pre .checkout-progress__loading {
    padding: 60px 0; } }

.page-cart-checkout-complete .cart-order-detail {
  margin-top: 40px;
  text-align: center; }

.page-cart-checkout-complete .cart-order-detail__open a,
.page-cart-checkout-complete .cart-order-detail__close a {
  text-decoration: underline; }

.page-cart-checkout-complete .cart-order-detail__close {
  display: none; }

.page-cart-checkout-complete .expanded .cart-order-detail__close {
  display: block; }

.page-cart-checkout-complete .expanded .cart-order-detail__open {
  display: none; }

.page-cart-checkout-complete .cart-order-detail__content {
  text-align: left; }

.page-cart-checkout-complete .checkout-progress__rakuten {
  text-align: center; }
  .page-cart-checkout-complete .checkout-progress__rakuten .message-error {
    color: #000;
    font-weight: bold; }

.page-cart-checkout-complete .checkout-progress__rakuten__description {
  margin-top: 30px;
  line-height: 1.6; }

.page-cart-checkout-complete .checkout-progress__description--payment-complete {
  margin-top: 60px; }

@media screen and (min-width: 769px) {
  .page-cart-checkout-complete .form-action {
    margin-top: 40px; }
  .page-cart-checkout-complete .checkout-progress__description--payment-complete {
    margin-top: 140px; } }

.member-feature {
  margin: 20px 0;}

.member-feature__image img {
  width: 100%; }

.member-feature__content {
  padding: 0 12px; }

.member-feature__title {
  margin: 1em 0;
  line-height: 1.6;
  color: var(--color-red); }

.member-feature__description {
  margin: 1em 0;
  line-height: 1.6; }

.member-feature a {
  text-decoration: underline; }

.page-login .login-signup-select {
  margin: 0 auto;
  max-width: 840px; }

.page-login .login-sigunp-select-item {
  padding: 20px;
  border: 1px solid var(--color-red); }

.page-login .login-signup-select-list__item {
  max-width: 440px;
  margin: 0 auto; }

.page-login .login-signup-select-item__title {
  font-weight: bold; }

.page-login .login-signup-select-item__image {
  margin: 20px auto;
  max-width: 120px; }

.page-login .login-signup-select-item__action {
  text-align: center; }

.page-login .login-signup-select-item__action .btn {
  display: block;
  width: 100%; }

.page-login .login-sigunp-select-item-description {
  margin: 10px 8px 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .member-feature__image {
    display: table-cell;
    vertical-align: middle;
    width: 30%; }
  .member-feature__title {
    vertical-align: middle;}
  .member-feature__description {
    font-size: 12px; } }

@media screen and (min-width: 769px) {
  .member-feature__image {
    float: left;
    width: 25%; }
  .page-login .login-signup-select-list {
    overflow: hidden;
    margin: -20px;
    display:flex;
  }
  .page-login .login-signup-select-list__item {
    padding: 20px;
  }
  .page-login .login-signup-select-item__image {
    margin: 30px auto; }
}
.page-section-login-signup .form-action {
  margin: 30px auto;
}
.login-social {
  margin-top: 20px;
}
.login-social__title {
  font-size: 14px;
  line-height: 1.69;
  text-align: center;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .login-social__title {
    font-size: 12px;
  }
}

.login-social__title span {
  display: inline-block;
  padding: 0 16px;
  background: var(--color-white);
  position: relative;
}
.login-social__title:before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #888;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 769px) {
  .page-section-login-signup .form-action {
    margin: 40px auto;
  }
}
.page-cart-login--social .page-body,
.page-login--social .page-body {
  max-width: calc(768px - 20px*2);
  margin: 0 auto;
}
.page-cart-login--social .form-group,
.page-login--social .form-group {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-cart-login--social .form-group,
  .page-login--social .form-group {
    max-width: inherit;
  }
}
@media screen and (min-width: 769px) {
  .page-cart-login--social .page-body > *,
  .page-cart-login--social .page-body .page-section,
  .page-login--social .page-body .page-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-cart-login--social .page-section__body-annotation,
.page-login--social .page-section__body-annotation,
.page-signup .page-section__body-annotation {
  font-size: 12px;
  line-height: 1.69;
  margin: 16px 0 0;
  color: #5D5D5D;
}
.page-signup .page-section__body-annotation {
  text-align: center;
}
.page-cart-login--social .page-section__body-annotation li,
.page-login--social .page-section__body-annotation li {
  padding-left: 1em;
  text-indent: -1em;
}
.page-cart-login--social .page-section__body-annotation li + li,
.page-login--social .page-section__body-annotation li + li {
  margin-top: .5em;
}
.page-signup .member-feature {
  background: #FCF4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 12px 16px;
}
@media screen and (max-width: 768px) {
  .page-signup .member-feature {
    padding: 10px 12px;
  }
}
.page-signup .member-feature__image {
  width: 73px;
  height: 73px;
  background-image: url('../img/common/icon_members_card.svg');
  background-size: 36px 24px;
  background-repeat: no-repeat;
  background-position: 50% 27%;
  background-color: #EDEDED;
  border-radius: 50%;
  font-size: 8px;
  font-family: var(--font-family-en);
  padding-top: 40px;
  text-align: center;
}
.page-signup .member-feature__image img {
  width: 100%; }

.page-signup .member-feature__content {
  padding-left: 3%;
}
.page-signup .member-feature__title {
  color: #222;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-signup .member-feature__title {
    font-size: 13px;
  }
}
.page-signup .member-feature__link {
  font-size: 14px;
  color: var(--color-red);
  display: block;
  font-weight: bold;
}
.page-signup .member-feature__link:after {
  content: '';
  display: inline;
}
@media screen and (max-width: 768px) {
  .page-signup .member-feature__link {
    font-size: 12px;
  }
}
.page-signup .member-feature__description {
  margin-top: .5em;
  line-height: 1.69;
  font-size: 12px;
}
#tos {
  padding: 0px;
  text-align: left;
  line-height: 1.69;
}
#tos ol {
  padding-bottom: 10px;
}
#tos ol li,
#tos ul li {
  list-style: none;
  font-size: 13px;
  text-indent: -2em;
  margin-bottom: 1em;
  padding-left: 2em;
}
#tos ol li li,
#tos ul li li {
  margin-bottom: 0;
  margin-top: .5em;
}
#tos h3 {
  margin: 15px 0;
  font-size: 15px;
  font-weight: bold;
}
#tos h4 {
  margin: 15px 0;
  font-size: 14px;
  font-weight: bold;
}
#tos p {
  font-size: 13px;
}
#tos p.thatsall {
  margin: 20px 0 0;
}
.page-signup-complete .complete-message {
  text-align: center;
  line-height: 1.69;
}
.page-signup-complete .complete-action {
  margin: 50px auto;
  text-align: center; }

@media screen and (min-width: 769px) {
  .page-signup-complete .complete-action {
    margin: 100px auto;
  }
}
.page-shopping-guide {
  margin: 0 auto;
  max-width: var(--total-width-pc);
}
.page-shopping-guide .guide-item__label {
  position: relative;
  display: block;
  padding: 12px 16px;
  line-height: 1.2;
}
.page-shopping-guide .guide-item:nth-child(odd) .guide-item__label {
  background-color: var(--background-color-gray);
}
.page-shopping-guide .guide-item[data-expand] > .guide-item__label:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}
.page-shopping-guide .guide-item[data-expand]:not(.expanded) > .guide-item__label:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background: #000;
}
.page-shopping-guide .guide-item__body {
  padding: 12px 20px;
}
.page-shopping-guide .guide-item__body p {
  margin: 0 0 1em 0;
  line-height: 1.69;
}
.page-shopping-guide .guide-item__body .heading {
  margin-top: 40px;
  margin-left: -12px;
  padding: 4px 8px;
  border-left: 4px solid #000;
  font-size: 16px;
  font-weight: bold;
}
.page-shopping-guide .guide-item__body > .heading:first-child,
.page-shopping-guide .guide-item__body section:first-child .heading:first-child {
  margin-top: 0px;
}
.page-shopping-guide .guide-item__body .heading2 {
  margin: 2em 0 1em 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-red);
}
.page-shopping-guide .guide-item__body .heading3 {
  margin: 1em 0 0.5em -46px;
  padding: 4px 0 4px 46px;
  font-weight: bold;
  background: url(../img/shopping_guide/check.png) 0 center no-repeat;
  background-size: 30px auto;
}
.page-shopping-guide .guide-item__body .heading3 + .heading3 {
  margin-top: 1.0em;
}
.page-shopping-guide .guide-item__body .heading4 {
  margin: 1.5em 0 0 0;
  font-weight: bold;
}
.page-shopping-guide .guide-item__body ul {
  margin: 10px 0 1em;
}
.page-shopping-guide .guide-item__body li {
  margin: 0 0 6px 1.5em;
  line-height: 1.6;
  text-indent: -1.3em;
}
.page-shopping-guide .guide-item__body strong {
  font-weight: bold;
}
.page-shopping-guide .guide-item__body small {
  font-size: 85%;
  line-height: 1.5;
  display: inline-block;
  margin-top: 10px;
}
.page-shopping-guide .guide-item__body a:not(.btn) {
  text-decoration: underline;
}
.page-shopping-guide .guide-item__body .heading + .sub {
  margin-top: -16px;
}
.page-shopping-guide .guide-item__body .heading3 + .sub {
  margin-top: -0.5em;
}
.page-shopping-guide .guide-item__body section + section {
  margin-top: 40px;
}
.page-shopping-guide .guide-app-download {
  margin-top: 20px;
  text-align: center;
}
.page-shopping-guide .guide-app-download__label {
  padding-top: 54px;
  background: url(../img/shopping_guide/app_arrow.png) center top no-repeat;
  background-size: 77px auto;
}
.page-shopping-guide .guide-app-download__item {
  display: inline-block;
  width: 40%;
  max-width: 160px;
  margin: 0 3px;
}
.page-shopping-guide p.guide-member-stage__table {
  margin-top: 30px;
  max-width: 804px;
}
.page-shopping-guide .guide-order-item {
  margin-top: 20px;
}
.page-shopping-guide .guide-order-item__title {
  display: table;
  font-weight: bold;
}
.page-shopping-guide .guide-order-item__title .number {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}
.page-shopping-guide .guide-order-item__title .number:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 2px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.page-shopping-guide .guide-order-item__title .label {
  display: table-cell;
  vertical-align: middle;
  padding-left: 12px;
  line-height: 1.2;
}
.page-shopping-guide .guide-order-item__image img {
  width: 100%;
}
.page-shopping-guide p.guide-order-item__description {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .page-shopping-guide .guide-item__body .heading3 {
    margin-left: -32px;
    padding-left: 32px;
    background-size: 20px auto;
  }
  .page-shopping-guide .guide-item__body .level3 {
    margin-left: 32px;
  }
  .page-shopping-guide .guide-order-item {
    padding-bottom: 50px;
    background: url(../img/shopping_guide/order_arrow_down.png) center bottom no-repeat;
    background-size: 77px auto;
  }
}
@media screen and (min-width: 769px) {
  .page-shopping-guide {
    overflow: hidden;
  }
  .page-shopping-guide .guide-item__body {
    padding: 24px 0 24px 5%;
  }
  .page-shopping-guide .guide-item__body .heading {
    margin-left: -16px;
    padding: 5px 10px;
    border-left: 6px solid #000;
    font-size: 18px;
  }
  .page-shopping-guide .guide-item__body .heading2 {
    font-size: 18px;
  }
  .page-shopping-guide .guide-item__body .heading + .sub {
    margin-top: -18px;
  }
  .page-shopping-guide .guide-item__body .level2 {
    margin-top: 20px;
    margin-left: 2.5%;
  }
  .page-shopping-guide .guide-item__body .level3 {
    margin-top: 20px;
    margin-left: calc(6% + 46px);
  }
  .page-shopping-guide .guide-item__body section + section {
    margin-top: 60px;
  }
  .page-shopping-guide .guide-order {
    overflow: hidden;
  }
  .page-shopping-guide .guide-order-item {
    float: left;
    width: 40%;
    margin-right: 10%;
    margin-top: 30px;
  }
  .page-shopping-guide .guide-order-item:nth-child(2n) {
    margin-right: 0;
  }
  .page-shopping-guide .guide-order-item:nth-child(2n+1) {
    clear: left;
  }
  .page-shopping-guide .guide-order-item__image {
    position: relative;
  }
  .page-shopping-guide .guide-order-item:nth-child(2n+1) .guide-order-item__image:after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 25%;
    height: 77px;
    margin-top: -38px;
    background: url(../img/shopping_guide/order_arrow_right.png) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 769px) {
  .page-contact {
    margin: 0 auto;
    max-width: var(--total-width-pc);
    box-sizing: content-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-contact .contact-index-item {
  border: 1px solid #DDD;
}
.page-contact .contact-index-item__header {
  display: table;
  width: 100%;
  border-bottom: 1px solid #DDD;
  background: var(--background-color-gray);
}
.page-contact .contact-index-item__title {
  display: table-cell;
  vertical-align: middle;
  padding: 8px 16px;
  width: 100%;
  height: 3.2em;
  box-sizing: content-box;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
.page-contact .contact-index-item__body {
  padding: 16px;
  text-align: center;
}
.page-contact .contact-index-item__description {
  margin-bottom: 16px;
  line-height: 1.5;
}
.page-contact .contact-index-item__tel {
  font-weight: bold;
}
.page-contact .contact-index-description {
  margin: 20px;
  line-height: 1.6;
}
.page-contact .contact-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-index-list__item {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .page-contact .contact-index-description {
    margin: 30px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1230px) {
  .page-contact .contact-index-list__item {
    width: calc((100% - 20px*1) / 2);
  }
}
@media screen and (min-width: 1231px) {
  .page-contact .contact-index-list__item {
    width: calc((100% - 20px*2) / 3);
  }
}
.page-contact-rules .contact-rules {
  padding: 0 5%;
}
.page-contact-rules .contact-rules p {
  margin-bottom: 1em;
  line-height: 1.69;
}
.page-contact-rules .contact-rules-title {
  margin-top: 40px;
  margin-left: -12px;
  padding: 4px 8px;
  border-left: 4px solid #000;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .page-contact-rules .contact-rules {
    padding-left: 30px;
  }
  .page-contact-rules .contact-rules-title {
    margin-left: -16px;
    padding: 5px 10px;
    border-left: 6px solid #000;
    font-size: 18px;
  }
}
.page-contact-complete .complete-action {
  margin: 50px auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .page-contact-complete .complete-action {
    margin: 100px auto;
  }
}
.contact-rules-privacy {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #E9E9E9;
  padding: 1em 2em 1em 1em;
  margin-bottom: 1em;
}
.page-contact-rules .form-control-checkbox {
  text-align: center;
}
.page-error .error-message {
  text-align: center;
  line-height: 1.6; }

.page-error .error-action {
  margin: 50px auto;
  text-align: center; }

.page-error .error-action .btn {
  margin: 0 8px; }

@media screen and (max-width: 768px) {
  .page-error .error-action .btn {
    padding-left: 12px;
    padding-right: 12px; } }

@media screen and (min-width: 769px) {
  .page-error .error-action {
    margin: 100px auto; } }

.site-close {
  text-align: center;
  padding: 50px 5%; }

.site-close__title {
  margin: 0 0 25px 0; }

.site-close__box {
  margin: auto;
  padding: 20px 20px 15px;
  max-width: 450px;
  background: #F1F1F1;
  line-height: 1.6; }

.page-arrival-notice-complete .complete-message {
  text-align: center;
  line-height: 1.6; }

.page-arrival-notice-complete .complete-action {
  margin: 50px auto;
  text-align: center; }

@media screen and (min-width: 769px) {
  .page-arrival-notice-complete .complete-action {
    margin: 100px auto;
  }
}
.page-password-reminder .page-section__description a {
  color: var(--color-red);
}
.page-password-reminder .password-reminder__description {
  background: #F4F4F4;
  padding: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .page-password-reminder .brand-grid-list {
    display: flex;
    justify-content: center;
  }
  .page-password-reminder .brand-grid-list-item {
    min-width: 160px;
  }
}
.page-password-reminder-complete .complete-message {
  text-align: center;
  line-height: 1.6;
}
.page-password-reminder-complete .complete-action {
  margin: 50px auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .page-password-reminder-complete .complete-action {
    margin: 100px auto;
  }
}
.page-password-reminder-member .member-card-sample {
  display: block;
  margin: 1em 0 1.6em;
}
.page-password-reminder-member .member-card-sample figcaption {
  font-size: 12px;
}
.page-password-reminder-member-complete .complete-message {
  text-align: center;
  line-height: 1.6;
}
.page-password-reminder-member-complete .complete-action {
  margin: 50px auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .page-password-reminder-member-complete .complete-action {
    margin: 100px auto;
  }
}
.page-regist-choice .page-section-regist-choice {
  max-width: 660px;
  margin: 0 auto; }

.page-regist-choice .regist-choice-item {
  border: 1px solid var(--color-red);
  padding: 16px;
  max-width: 320px;
  margin: 0 auto; }

.page-regist-choice .regist-choice-item__title {
  font-weight: bold;
  text-align: center; }

.page-regist-choice .regist-choice-item__action {
  margin-top: 16px;
  text-align: center; }

@media screen and (max-width: 768px) {
  .page-regist-choice .regist-choice-list__item {
    margin-bottom: 16px; } }

@media screen and (min-width: 769px) {
  .page-regist-choice .regist-choice-list {
    overflow: hidden;
    margin: -10px; }
  .page-regist-choice .regist-choice-list__item {
    float: left;
    width: 50%;
    padding: 10px; }
  .page-regist-choice .regist-choice-item {
    padding: 24px; }
  .page-regist-choice .regist-choice-item__title {
    font-size: 16px; }
  .page-regist-choice .regist-choice-item__action {
    margin-top: 32px; } }

.page-member-agreement .member-agreement-box {
  margin: 0 auto;
  max-width: 850px;
  max-height: 300px;
  overflow-y: scroll;
  padding: 6px 20px 20px;
  border: 1px solid var(--color-red);
}
.info-datail {
  line-height: 1.69;
}
.info-datail__image {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .info-datail__image {
    margin-bottom: 40px;
  }
}

/* YouTube List START */
.youtube-section .common-section__title:before {
  content: '';
  display: inline-block;
  background-color: #ff0000;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask: url(../img/common/icon_youtube.svg);
  mask: url(../img/common/icon_youtube.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  width: 34px;
  height: 24px;
  margin-right: 12px;
  top: -3px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .youtube-section .common-section__title:before {
    width: 26px;
    height: 18px;
  }
  .youtube-list-container {
    margin: 0px -20px;
  }
  .youtube-list {
    padding: 0 20px 10px;
  }
}
.youtube-list {
  display: grid;
  gap: 0 12px;
  grid-template-columns: repeat(5, 1fr);
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
}
@media screen and (min-width: 769px) {
  .youtube-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.youtube-list-item {
  max-width: 480px;
  text-align: left;
  box-sizing: border-box;
  scroll-snap-align: center;
}
@media screen and (min-width: 769px) {
  .youtube-list-item:nth-child(4),
  .youtube-list-item:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
	.youtube-list-item {
    min-width: 188px;
    text-align: left;
    box-sizing: border-box;
  }
}
.youtube-list-item__block {
  display: grid;
  gap: 15px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .youtube-list-item__block {
      gap: 8px 0;
  }
}
.youtube-list-item__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.youtube-list-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: -9.375%;
}
.youtube-list-item__info {
  display: grid;
  gap: 5px 0;
}
.youtube-list-item__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .youtube-list-item__title {
      font-size: 11px;
  }
}
.youtube-list-item__date {
  display: block;
  color: var(--font-color-gray);
  font-size: 15px;
  font-family: var(--font-family-en);
}
.youtube-list-item__date:after {
  content: '';
  display: inline-block;
  background-color: var(--font-color-gray);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask: url(../img/common/icon_link_ex.svg);
  mask: url(../img/common/icon_link_ex.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .youtube-list-item__date:after {
    width: 13px;
    height: 13px;
  }
  .youtube-list-item__date {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .youtube-section .btn--viewall:after {
    width: 15px;
    height: 15px;
  }
}
/* YouTube List END */
.musicpark-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.musicpark-list-item__block {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .musicpark-list-item__block {
    max-width: 360px;
  }
}
.musicpark-list-item__info {
  padding-top: 32px;
  text-align: center;
}
.mypage-barcode-target {
  display: none;
}