@charset "UTF-8";
/* インポート */
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, 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;
}

/* media queries */
@font-face {
  font-family: "NotoSansJP";
  src: url("fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("fonts/NotoSansJP-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "MOVIEWALKER";
  font-display: swap;
  src: url("fonts/MOVIEWALKERV4.woff2") format("woff2");
}
@font-face {
  font-family: "MOVIEWALKERPRICE";
  font-display: swap;
  src: url("fonts/MOVIEWALKER-PRICE.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@-webkit-keyframes mw-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes mw-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* 環境設定 */
html,
body {
  background-color: white;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }
}

img {
  width: 100%;
  max-width: none;
  display: block;
}

textarea {
  resize: none;
}

:after, :before {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input:focus, textarea:focus {
  outline: none;
}

input[type=checkbox].checkbox {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #999;
  background-color: white;
  border-radius: 2px;
  cursor: pointer;
}
input[type=checkbox].checkbox:checked {
  outline: 1px solid black;
}
input[type=checkbox].checkbox:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 4px;
  height: 10px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=radio].blackStyle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #DFDFDF;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
  margin: 0;
  background-color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
input[type=radio].blackStyle:checked {
  border-color: black;
}
input[type=radio].blackStyle:checked::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: black;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.text-red {
  color: #E71410 !important;
}

a.text-red:hover,
a.hover-style:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a.text-red:hover,
  a.hover-style:hover {
    opacity: 1;
  }
}

.hide {
  display: none;
}

a, button {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

.content__wrapper {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}
.content__wrapper.wider {
  max-width: 1032px;
}
.content__wrapper.widest {
  max-width: 1232px;
}

@media screen and (max-width: 767px) {
  .content__main {
    background-color: #F5F5F5;
  }
}

.main {
  padding-top: 74px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .main.headerLogo-only, .main.headerNav-only {
    padding-top: 56px;
  }
}
.main.gray-hide {
  overflow: hidden;
}
.main.categoryPadding {
  padding-top: 114px;
}
@media screen and (max-width: 767px) {
  .main.categoryPadding {
    padding-top: 162px;
  }
}
@media screen and (max-width: 767px) {
  .main.categoryPadding.headerNav-only {
    padding-top: 111px;
  }
}

/* 行数設定 */
.lineClamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 金額の仕様 */
.price {
  font-family: "MOVIEWALKERPRICE";
  letter-spacing: -0.15px;
}

/* 備考の仕様 */
.note-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
}
@media screen and (max-width: 767px) {
  .note-text {
    font-size: min(3.2vw, 12px);
    color: #555;
  }
}

.note__list li {
  padding-left: 16px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  margin-bottom: 4px;
}
.note__list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .note__list li {
    font-size: min(3.2vw, 12px);
    color: #555;
  }
}
.note__list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  line-height: 1.4;
}

/* ボタンスタイル */
.btn-white {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  border-radius: 6px;
  border: 1px solid #BDBDBD;
  background-color: white;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 13px;
  padding: 0.9em 2.5em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .btn-white {
    padding: 0.9em 2.5em;
    font-size: min(3.4666666667vw, 13px);
  }
}
.btn-white:hover {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .btn-white:hover {
    background-color: white;
  }
}

.btn-black {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  border-radius: 6px;
  border: 1px solid #BDBDBD;
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 13px;
  padding: 0.9em 2.5em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .btn-black {
    padding: 0.9em 2.5em;
    font-size: min(3.4666666667vw, 13px);
  }
}
.btn-black:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-black:hover {
    opacity: 1;
  }
}

.btn-red {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  border-radius: 6px;
  border: 1px solid #E71410;
  background-color: #E71410;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 13px;
  padding: 0.9em 2.5em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .btn-red {
    padding: 0.9em 2.5em;
    font-size: min(3.4666666667vw, 13px);
  }
}
.btn-red:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-red:hover {
    opacity: 1;
  }
}

.btn-wider {
  padding: 13px 8px;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .btn-wider {
    padding: 13px 32px;
    font-size: 16px;
  }
}

.btn-arrow {
  position: relative;
}
.btn-arrow::after {
  content: "";
  display: block;
  width: 9px;
  height: 14px;
  background: url("../images/svg/ic_arrow_red.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 13px;
  left: auto;
}

.btn-favorite {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  border-radius: 6px;
  border: 1px solid #BDBDBD;
  background-color: white;
  color: #BDBDBD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  font-size: 13px;
  padding: 0.9em 2.5em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .btn-favorite {
    padding: 0.9em 2.5em;
    font-size: min(3.4666666667vw, 13px);
  }
}
.btn-favorite:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-favorite:hover {
    opacity: 1;
  }
}

.form__btnWrap {
  background-color: white;
  padding: 42px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 16px;
}
.form__btnWrap .btn {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .form__btnWrap {
    padding: 2.3em 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .form__btnWrap .btn {
    max-width: 200px;
  }
  .form__btnWrap.empty {
    padding-bottom: 4em;
  }
}

/* inputスタイル */
.form__block .item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .form__block .item__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.form__label {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 4px;
  width: 162px;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 14px;
  }
}
.form__label span.form__required {
  font-size: 9px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.6em;
  border-radius: 2px;
  background-color: black;
  color: white;
}
@media screen and (max-width: 767px) {
  .form__label {
    line-height: 1;
    width: auto;
  }
  .form__label span.form__required {
    font-size: min(2.4vw, 9px);
    padding: 0.5em 0.6em;
    line-height: 1;
  }
}

.form__label__wrap span.form__example {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  display: block;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .form__label__wrap span.form__example {
    color: #666;
  }
}
@media screen and (max-width: 767px) {
  .form__label__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form__label__wrap span.form__example {
    font-size: 12px;
    margin-top: 0;
  }
}

.form__input__wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .form__input__wrap {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

input[type=text].form__input::-webkit-input-placeholder, input[type=tel].form__input::-webkit-input-placeholder, input[type=number].form__input::-webkit-input-placeholder, input[type=password].form__input::-webkit-input-placeholder, input[type=text].search__field::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  color: #999;
  font-size: 16px;
  line-height: 1.05;
  opacity: 1;
}

input[type=text].form__input::-moz-placeholder, input[type=tel].form__input::-moz-placeholder, input[type=number].form__input::-moz-placeholder, input[type=password].form__input::-moz-placeholder, input[type=text].search__field::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  color: #999;
  font-size: 16px;
  line-height: 1.05;
  opacity: 1;
}

input[type=text].form__input:-ms-input-placeholder, input[type=tel].form__input:-ms-input-placeholder, input[type=number].form__input:-ms-input-placeholder, input[type=password].form__input:-ms-input-placeholder, input[type=text].search__field:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  color: #999;
  font-size: 16px;
  line-height: 1.05;
  opacity: 1;
}

input[type=text].form__input::-ms-input-placeholder, input[type=tel].form__input::-ms-input-placeholder, input[type=number].form__input::-ms-input-placeholder, input[type=password].form__input::-ms-input-placeholder, input[type=text].search__field::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  color: #999;
  font-size: 16px;
  line-height: 1.05;
  opacity: 1;
}

input[type=text].form__input::placeholder,
input[type=tel].form__input::placeholder,
input[type=number].form__input::placeholder,
input[type=password].form__input::placeholder,
input[type=text].search__field::placeholder,
textarea::placeholder {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  color: #999;
  font-size: 16px;
  line-height: 1.05;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  input[type=text].form__input::-webkit-input-placeholder, input[type=tel].form__input::-webkit-input-placeholder, input[type=number].form__input::-webkit-input-placeholder, input[type=password].form__input::-webkit-input-placeholder, input[type=text].search__field::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #666;
  }
  input[type=text].form__input::-moz-placeholder, input[type=tel].form__input::-moz-placeholder, input[type=number].form__input::-moz-placeholder, input[type=password].form__input::-moz-placeholder, input[type=text].search__field::-moz-placeholder, textarea::-moz-placeholder {
    color: #666;
  }
  input[type=text].form__input:-ms-input-placeholder, input[type=tel].form__input:-ms-input-placeholder, input[type=number].form__input:-ms-input-placeholder, input[type=password].form__input:-ms-input-placeholder, input[type=text].search__field:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #666;
  }
  input[type=text].form__input::-ms-input-placeholder, input[type=tel].form__input::-ms-input-placeholder, input[type=number].form__input::-ms-input-placeholder, input[type=password].form__input::-ms-input-placeholder, input[type=text].search__field::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #666;
  }
  input[type=text].form__input::placeholder,
  input[type=tel].form__input::placeholder,
  input[type=number].form__input::placeholder,
  input[type=password].form__input::placeholder,
  input[type=text].search__field::placeholder,
  textarea::placeholder {
    color: #666;
  }
}

input[type=text].form__input,
input[type=tel].form__input,
input[type=number].form__input,
input[type=password].form__input,
textarea {
  border: 1px solid #BDBDBD;
  padding: 10px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  input[type=text].form__input,
  input[type=tel].form__input,
  input[type=number].form__input,
  input[type=password].form__input,
  textarea {
    padding: 12px;
  }
}

.form__select__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__select__wrap:after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: url("../images/svg/ic_arrow_gray.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 1px;
  bottom: 0px;
  margin: auto;
  right: 16px;
  left: auto;
}

.form__select__wrap select {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", "Roboto", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background: transparent;
  padding: 11px;
  border: 1px solid #BDBDBD;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: white;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.error__wrap {
  margin-top: 4px;
}
.error__wrap .error__text {
  font-weight: 600;
  font-size: 14px;
  color: #E71410;
}

.radio-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* パンくずのコンポーネント */
.breadcrumb__wrapper {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.breadcrumb__wrapper.wider {
  max-width: 1032px;
}
.breadcrumb__wrapper.widest {
  max-width: 1232px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper.breadcrumb-only .breadcrumb {
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper {
    padding: 0;
    background-color: #F5F5F5;
    -webkit-box-shadow: inset 0 2px 0px rgba(0, 0, 0, 0.12);
            box-shadow: inset 0 2px 0px rgba(0, 0, 0, 0.12);
  }
}
.breadcrumb__wrapper .footerSearch {
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .footerSearch {
    padding: 16px 12px;
  }
}
.breadcrumb__wrapper .footerSearch .search__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
}
.breadcrumb__wrapper .footerSearch .search__form:focus-within {
  outline: none;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .footerSearch .search__form {
    background-color: white;
  }
}
.breadcrumb__wrapper .footerSearch .search__form .search_txt__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.breadcrumb__wrapper .footerSearch .search__form button {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
  height: 18px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.breadcrumb__wrapper .footerSearch .search__form button.search__btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../images/svg/ic_search.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumb__wrapper .footerSearch .search__form button.clear__btn {
  margin-left: 8px;
}
.breadcrumb__wrapper .footerSearch .search__form button.clear__btn::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../images/svg/ic_clear.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .footerSearch .search__form button.clear__btn::before {
    width: 14px;
    height: 14px;
  }
}
.breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field {
  width: 100%;
  padding: 0;
  border: 0;
  background-color: #F5F5F5;
}
.breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field:focus {
  outline: none;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field {
    background-color: white;
    line-height: 1.05;
    font-size: 16px;
  }
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field::-webkit-input-placeholder {
    font-size: 16px;
  }
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field::-moz-placeholder {
    font-size: 16px;
  }
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field:-ms-input-placeholder {
    font-size: 16px;
  }
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field::-ms-input-placeholder {
    font-size: 16px;
  }
  .breadcrumb__wrapper .footerSearch .search__form input[type=text].search__field::placeholder {
    font-size: 16px;
  }
}

.breadcrumb {
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb::-webkit-scrollbar-track {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 16px 16px 16px;
    -ms-overflow-style: none;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb ul li {
  color: #999;
  position: relative;
  margin-right: 18px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li {
    color: #666;
  }
}
.breadcrumb ul li::after {
  content: "";
  border-right: 1.5px solid #666;
  border-bottom: 1.5px solid #666;
  width: 4px;
  height: 4px;
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: -2px;
  bottom: 0px;
  margin: auto;
  right: -10px;
  left: auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li::after {
    content: "";
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    width: 4px;
    height: 4px;
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: -10px;
    left: auto;
  }
}
.breadcrumb ul li:last-child {
  margin-right: 0;
  padding-right: 16px;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb ul li a {
  color: #666;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li a {
    color: #555;
  }
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* ページャー */
.pagination__wrap {
  background-color: white;
}
.pagination__wrap .pagination__nav {
  padding: 32px 16px 0;
}
@media screen and (max-width: 767px) {
  .pagination__wrap .pagination__nav {
    padding: 2.3em 1.1em 0;
  }
}
.pagination__wrap .pagination__nav .v-btn {
  border-radius: 130px;
  width: 32px;
  height: 32px;
  opacity: 1;
}
.pagination__wrap .pagination__nav .v-btn__content {
  font-size: 14px;
  line-height: 1;
  color: #666;
}
@media screen and (max-width: 767px) {
  .pagination__wrap .pagination__nav .v-btn__content {
    color: #555;
  }
}
.pagination__wrap .pagination__nav .v-icon::before {
  color: #E71410;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .pagination__wrap .pagination__nav .v-icon::before {
    padding-top: 2px;
  }
}
.pagination__wrap .pagination__nav .v-icon--size-default {
  font-size: 1.7em;
}
.pagination__wrap .pagination__nav .v-pagination__item {
  margin: 0.4em;
}
.pagination__wrap .pagination__nav .v-pagination__item .v-btn .v-btn__overlay {
  background-color: black;
}
.pagination__wrap .pagination__nav .v-pagination__item:not(.v-pagination__item--is-active) .v-btn:hover .v-btn__overlay, .pagination__wrap .pagination__nav .v-pagination__item.v-pagination__item--is-active .v-btn__overlay {
  opacity: 1;
}
.pagination__wrap .pagination__nav .v-pagination__item:not(.v-pagination__item--is-active) .v-btn:hover .v-btn__content, .pagination__wrap .pagination__nav .v-pagination__item.v-pagination__item--is-active .v-btn__content {
  color: white;
  z-index: 1;
}
.pagination__wrap .pagination__nav .v-pagination__next .v-btn:hover > .v-btn__overlay, .pagination__wrap .pagination__nav .v-pagination__prev .v-btn:hover > .v-btn__overlay {
  background-color: white;
}

/* モーダルの共有仕様 */
.popup__close__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px 0px 12px 8px;
}
.popup__close__wrap .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  padding: 10px;
  border: none;
}

.popup__content__wrap {
  background-color: white;
  border-radius: 12px;
  width: 100vw;
  max-width: 484px;
  max-height: calc(100vh - 112px);
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup__content__wrap > * {
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
.popup__content__wrap > *::-webkit-scrollbar {
  width: 10px;
}
.popup__content__wrap > *::-webkit-scrollbar-thumb, .popup__content__wrap > *::-moz-scrollbar-thumb {
  border-radius: 6px;
  border: 2px solid transparent;
  background-color: #888;
  background-clip: content-box;
}
.popup__content__wrap > *::-webkit-scrollbar-track, .popup__content__wrap > *::-moz-scrollbar-track {
  background-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .popup__content__wrap {
    width: 90vw;
    max-width: 340px;
    max-height: calc(100vh - 100px);
    padding: 24px 24px 32px;
  }
}

.scroll__popup__wrap {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .scroll__popup__wrap {
    padding: 24px;
  }
}
.scroll__popup__wrap .scroll__box {
  max-width: 484px;
  height: calc(100vh - 156px);
  max-height: 560px;
}
@media screen and (max-width: 767px) {
  .scroll__popup__wrap .scroll__box {
    max-width: 340px;
  }
}

/* 販売期間の追加 */
.goods__inner {
  padding: 13px 0;
  border-bottom: 1px solid #DFDFDF;
}
.goods__inner:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .goods__inner {
    padding: 12px 0;
  }
}
.goods__inner .goods__detail__period {
  color: #555;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .goods__inner .goods__detail__period {
    padding-top: 12px;
  }
}
.goods__inner .goods__detail__period .sales__period {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .goods__inner .goods__detail__period .sales__period {
    display: block;
  }
}

/* 画像と商品情報が左右に並ぶ仕様 */
.goods__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .goods__wrap {
    gap: 13px;
  }
}
.goods__wrap .goods__item__img {
  position: relative;
  overflow: hidden;
  width: 84px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.goods__wrap .goods__item__img::before {
  content: "";
  display: block;
  background-color: #F5F5F5;
  padding-top: 140%;
}
.goods__wrap .goods__item__img:hover img {
  opacity: 0.8;
}
.goods__wrap .goods__item__img img {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__img {
    width: 68px;
  }
}
.goods__wrap .goods__info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.goods__wrap .goods__item__wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.goods__wrap .goods__item__wrap .goods__detail__title {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__title {
    font-size: 15px;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__type p {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__type p {
    font-size: min(3.2vw, 12px);
    line-height: 1.4;
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__price {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  padding: 2.5px 0;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__price {
    font-size: min(4.2666666667vw, 16px);
    line-height: 1.2;
    padding: 5px 0;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__price span.yenMark {
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__price span.yenMark {
    font-size: min(3.7333333333vw, 14px);
  }
}
.goods__wrap .goods__item__wrap .goods__detail__price span.amount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", NotoSansJP, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__price span.amount {
    font-size: min(4.2666666667vw, 16px);
  }
}
.goods__wrap .goods__item__wrap .goods__detail__price span.amount::before {
  content: "";
  background: url(../images/svg/ic_multiplication.svg) no-repeat center;
  background-size: contain;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
@-moz-document url-prefix() {
  .goods__wrap .goods__item__wrap .goods__detail__price span.amount::before {
    top: -1px;
  }
}
.goods__wrap .goods__item__wrap .additional__info .name {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .additional__info .name {
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap .review {
  position: relative;
  font-size: 12px;
  line-height: 1.4;
  padding-right: 12px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__linkWrap .review {
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap .review::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0px;
  width: 12px;
  height: 12px;
  color: #E71410;
  background: url(../images/svg/ic_magnifier.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap .delete {
  position: relative;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 18px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__detail__linkWrap .delete {
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap .delete:hover {
  text-decoration: underline;
}
.goods__wrap .goods__item__wrap .goods__detail__linkWrap .delete::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: auto;
  width: 16px;
  height: 16px;
  color: #E71410;
  background: url(../images/svg/ic_delete.svg) no-repeat;
  background-size: contain;
  content: "";
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.goods__wrap .goods__item__wrap .goods__block__btnWrap {
  text-align: right;
}
.goods__wrap .goods__item__wrap .goods__block__btnWrap a {
  font-size: 12px;
  position: relative;
  line-height: 1.4;
  padding-right: 14px;
  color: #666;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .goods__block__btnWrap a {
    padding-right: 12px;
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .goods__block__btnWrap a:hover {
  text-decoration: underline;
}
.goods__wrap .goods__item__wrap .goods__block__btnWrap a::after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  background: url("../images/svg/ic_arrow_red.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
  left: auto;
}
.goods__wrap .goods__item__wrap .shareBtn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin-top: 4px;
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .text {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .shareBtn__wrap .text {
    color: #555;
  }
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list {
    gap: 16px;
  }
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon {
    width: 38px;
    height: 38px;
  }
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon-x {
  background: url(../images/svg/ic_X.svg) no-repeat black center;
  background-size: 46%;
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon-line {
  background: url(../images/svg/ic_line.svg) no-repeat #02C755 center;
  background-size: 60%;
}
.goods__wrap .goods__item__wrap .shareBtn__wrap .shareBtn__list .icon-link {
  background: url(../images/svg/ic_link.svg) no-repeat white center;
  background-size: 46%;
  border: 1.5px solid #BDBDBD;
}

/* 文字リンク&矢印の仕様 */
.txtLink {
  text-align: right;
}
.txtLink a {
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  padding-right: 12px;
  color: #666;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .txtLink a {
    color: #555;
  }
}
.txtLink a:hover {
  text-decoration: underline;
}
.txtLink a.arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  background: url("../images/svg/ic_arrow_red.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
  left: auto;
}
.txtLink a.blank::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0px;
  width: 12px;
  height: 12px;
  color: #E71410;
  background: url(../images/svg/ic_blank.svg) no-repeat;
  background-size: contain;
}
.txtLink a.popup::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: -2px;
  width: 12px;
  height: 12px;
  color: #E71410;
  background: url(../images/svg/ic_magnifier.svg) no-repeat;
  background-size: contain;
}
.txtLink a.more::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0px;
  width: 11px;
  height: 11px;
  color: #E71410;
  background: url(../images/svg/ic_more.svg) no-repeat;
  background-size: contain;
}
.txtLink a.close::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: 0;
  right: -2px;
  width: 11px;
  height: 11px;
  color: #E71410;
  background: url(../images/svg/ic_close.svg) no-repeat center;
  background-size: contain;
  margin: auto;
}
.txtLink a.arrow-top::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background: url("../images/svg/ic_arrow_red.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 4px;
  left: auto;
}
@media screen and (max-width: 767px) {
  .txtLink a {
    font-size: min(3.2vw, 12px);
  }
}

/* 左右に並べるレイアウト */
.ly__contentWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(4.4444444444vw, 64px);
}
@media screen and (max-width: 767px) {
  .ly__contentWrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.ly__contentWrap .ly__contentLeft {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .ly__contentWrap .ly__contentLeft {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.ly__contentWrap .ly__contentRight {
  position: sticky;
  top: 0;
  width: 390px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ly__contentWrap .ly__contentRight.no-sticky {
  position: unset;
}
@media screen and (max-width: 767px) {
  .ly__contentWrap .ly__contentRight {
    position: static;
    width: auto;
    height: auto;
  }
}

/* 映画商品の仕様 */
.movieImage__wrap a:hover .movieImage img {
  opacity: 0.8;
}
.movieImage__wrap .movieImage {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #F5F5F5;
}
.movieImage__wrap .movieImage::before {
  content: "";
  display: block;
  padding-top: 140%;
}
.movieImage__wrap .movieImage img {
  position: absolute;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.movieImage__wrap .movieImage .movieImage__label {
  background-color: #333;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  left: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 2px 2px;
  position: absolute;
  top: 0;
  z-index: 10;
  width: 36px;
}
.movieImage__wrap .movieImage .movieImage__label .label__year, .movieImage__wrap .movieImage .movieImage__label .label__text {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.05;
}
.movieImage__wrap .movieImage .movieImage__label .label__year, .movieImage__wrap .movieImage .movieImage__label .label__month {
  font-family: "Roboto";
}
.movieImage__wrap .movieImage .movieImage__label .label__month {
  line-height: 1.2;
}
.movieImage__wrap .movieImage .movieImage__label::after {
  border-color: #333 transparent transparent;
  border-style: solid;
  border-width: 5px 18px 0;
  bottom: -5px;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}
.movieImage__wrap .movieImage .movieImage__label__now {
  position: absolute;
  top: 0;
  left: 4px;
  width: 20px;
  height: 46px;
  z-index: 10;
  background: url("../images/svg/icon_showing.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage .movieImage__label__now {
    height: 42px;
  }
}
.movieImage__wrap .movieImage__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info {
    gap: 0px;
    padding-top: 7px;
    padding-bottom: 8px;
  }
}
.movieImage__wrap .movieImage__info .info__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__type {
    padding-bottom: 8px;
  }
}
.movieImage__wrap .movieImage__info .info__type > span {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.05;
  padding: 2px 8px;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__type > span {
    font-size: min(2.6666666667vw, 10px);
    padding: 2px 8px;
  }
}
.movieImage__wrap .movieImage__info .info__type .maeuri, .movieImage__wrap .movieImage__info .info__type .goods__mvtk {
  color: white;
  background-color: #E71410;
}
.movieImage__wrap .movieImage__info .info__type .maeuri__card {
  background-color: #FAD200;
}
.movieImage__wrap .movieImage__info .info__type .kanshou {
  color: #E71410;
  border: 1px solid #E71410;
}
.movieImage__wrap .movieImage__info .info__type .goods {
  border: 1px solid black;
}
.movieImage__wrap .movieImage__info .info__type .mvtk__icon {
  background: url(../images/svg/mvtk_logo.svg) no-repeat center;
  background-size: 88%;
  height: 14px;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__type .mvtk__icon {
    background-size: 84%;
    background-position: 50% 51%;
    height: 10px;
  }
}
.movieImage__wrap .movieImage__info .info__title {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "NotoSansJP", sans-serif;
  font-size: clamp(0.75rem, 0.336rem + 0.86vw, 1rem);
  font-weight: 600;
  line-height: 1.4;
  padding-top: 2px;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__title {
    font-size: min(3.4666666667vw, 13px);
    line-height: 1.3;
    padding-top: 0px;
  }
}
.movieImage__wrap .movieImage__info .info__size {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__size {
    color: #555;
    padding-bottom: 2px;
  }
}
.movieImage__wrap .movieImage__info .info__price {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__price {
    font-size: min(4.2666666667vw, 16px);
    line-height: 1.2;
    padding-bottom: 5px;
  }
}
.movieImage__wrap .movieImage__info .info__price .yenMark {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__price .yenMark {
    font-size: min(3.7333333333vw, 14px);
    line-height: 1.3;
  }
}
.movieImage__wrap .movieImage__info .info__price .other {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.05;
  margin-left: 2px;
}
.movieImage__wrap .movieImage__info .info__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    padding-bottom: 5px;
  }
}
.movieImage__wrap .movieImage__info .info__note > span {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__note > span {
    color: #555;
  }
}
.movieImage__wrap .movieImage__info .info__note > span:not(:last-child):after {
  content: "／";
}
.movieImage__wrap .movieImage__info .info__note > span:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__note > span {
    font-size: min(2.9333333333vw, 11px);
    line-height: 1.05;
  }
  .movieImage__wrap .movieImage__info .info__note > span:not(:last-child):after {
    content: none;
  }
  .movieImage__wrap .movieImage__info .info__note > span:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.movieImage__wrap .movieImage__info .info__SKU span {
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__SKU span {
    font-size: min(2.9333333333vw, 11px);
  }
}
.movieImage__wrap .movieImage__info .info__remainingDate {
  color: #E71410;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__remainingDate {
    font-size: 11px;
    line-height: 1.3;
  }
}
.movieImage__wrap .movieImage__info .info__SKU__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .movieImage__info .info__SKU__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.movieImage__wrap .goods__detail__linkWrap {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.movieImage__wrap .goods__detail__linkWrap .delete {
  position: relative;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 18px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 767px) {
  .movieImage__wrap .goods__detail__linkWrap .delete {
    color: #555;
  }
}
.movieImage__wrap .goods__detail__linkWrap .delete:hover {
  text-decoration: underline;
}
.movieImage__wrap .goods__detail__linkWrap .delete::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: auto;
  width: 16px;
  height: 16px;
  color: #E71410;
  background: url(../images/svg/ic_delete.svg) no-repeat;
  background-size: contain;
  content: "";
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* キャンペーンと特集のアイテム仕様 */
.campaign__feature__item {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.campaign__feature__item:hover {
  opacity: 0.7;
}
.campaign__feature__item .img__wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  background-color: lightgray;
}
.campaign__feature__item .img__wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.campaign__feature__item .img__wrap img {
  position: absolute;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.campaign__feature__item .detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}
.campaign__feature__item .detail__info .info__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.campaign__feature__item .detail__info .info__type span {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
  padding: 2px 8px;
  border-radius: 2px;
}
.campaign__feature__item .detail__info .info__type .maeuri {
  color: white;
  background-color: #E71410;
  border: 1px solid #E71410;
}
.campaign__feature__item .detail__info .info__type .kanshou {
  color: #E71410;
  border: 1px solid #E71410;
}
.campaign__feature__item .detail__info .content__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .campaign__feature__item .detail__info .content__text {
    color: #444;
  }
}
.campaign__feature__item .detail__info .info__status {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.05;
  color: #E71410;
}
@media screen and (max-width: 767px) {
  .campaign__feature__item .detail__info .info__status {
    font-size: 12px;
  }
}

/* 作品キャンペーンとその他のキャンペーンのアイテム仕様 */
.works__campaign__item {
  background-color: white;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.works__campaign__item:hover {
  opacity: 0.7;
}
.works__campaign__item .img__wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 6px 6px 0px 0px;
  background-color: lightgray;
}
.works__campaign__item .img__wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.works__campaign__item .img__wrap img {
  position: absolute;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.works__campaign__item .detail__info {
  padding: 8px;
}
.works__campaign__item .detail__info.new {
  position: relative;
  padding: 10px 54px;
}
@media screen and (max-width: 767px) {
  .works__campaign__item .detail__info.new {
    padding: 8px 42px;
  }
}
.works__campaign__item .detail__info.new::before {
  content: "NEW";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  width: 41px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FAD200;
  border-radius: 50%;
  font-family: "MOVIEWALKER";
  font-size: 12px;
  font-weight: 400;
  line-height: 41px;
}
@media screen and (max-width: 767px) {
  .works__campaign__item .detail__info.new::before {
    left: 5px;
    width: 32px;
    height: 32px;
    font-size: min(2.4vw, 9px);
    line-height: 32px;
  }
}
.works__campaign__item .detail__info .content__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works__campaign__item .detail__info .content__text {
    font-size: min(3.2vw, 12px);
    color: #444;
  }
}

/* カテゴリー */
.category__link__wrap {
  padding: 12px 0 10px;
  background-color: #F2F2F2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .category__link__wrap {
    padding: 12px;
  }
}
.category__link__wrap::after, .category__link__wrap::before {
  content: "";
  background-color: #F2F2F2;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
}
.category__link__wrap::after {
  right: -100vw;
}
.category__link__wrap::before {
  left: -100vw;
}
.category__link__wrap .overflow {
  padding-bottom: 2px;
}
.category__link__wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .category__link__wrap ul {
    gap: 12px;
  }
}
.category__link__wrap ul li a {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  display: inline-block;
  border-radius: 6px;
  background-color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.category__link__wrap ul li a:hover {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .category__link__wrap ul li a {
    font-size: min(3.2vw, 12px);
    padding: 8px 12px;
  }
}

/* 「⚪︎⚪︎とは」のポップアップ */
.whatIs__popup__wrap {
  width: auto;
  max-width: 640px;
  height: auto;
  max-height: calc(100vh - 112px);
  padding: 32px 16px 32px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .whatIs__popup__wrap {
    width: 100%;
  }
}

.what__is__popup {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.what__is__popup .text__wrap {
  text-align: center;
  margin-bottom: 16px;
}
.what__is__popup .text__wrap > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}
@media screen and (max-width: 767px) {
  .what__is__popup .text__wrap > p {
    color: #444;
  }
}
.what__is__popup .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.what__is__popup .image__wrap {
  max-width: 560px;
  margin: 0 auto;
}
.what__is__popup .image__wrap img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* エラー画面 */
@media screen and (max-width: 767px) {
  .errorPage__wrap {
    padding-bottom: 16px;
  }
}
.errorPage__wrap section.error {
  padding: 63px 0 80px;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error {
    background-color: white;
    padding: 63px 12px 80px 12px;
  }
}
.errorPage__wrap section.error .errorCode__title {
  font-family: "MOVIEWALKER";
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .errorCode__title {
    font-size: min(22.4vw, 84px);
  }
}
.errorPage__wrap section.error .errorCode__title span {
  display: block;
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .errorCode__title span {
    font-size: min(5.8666666667vw, 22px);
  }
}
.errorPage__wrap section.error .error__description {
  text-align: center;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .error__description {
    gap: 8px;
  }
}
.errorPage__wrap section.error .error__description h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .error__description h3 {
    font-size: min(4.2666666667vw, 16px);
    line-height: 1.4;
  }
}
.errorPage__wrap section.error .error__description p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .error__description p {
    font-size: min(3.7333333333vw, 14px);
  }
}
.errorPage__wrap section.error .errorPage__btnWrap .btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 200px;
  padding: 13px 32px;
  height: 52px;
}
@media screen and (max-width: 767px) {
  .errorPage__wrap section.error .errorPage__btnWrap .btn {
    font-size: min(4.2666666667vw, 16px);
  }
}

/* お知らせ */
.header__alert__container {
  background-color: #FAD200;
}
@media screen and (max-width: 767px) {
  .header__alert__container {
    background-color: white;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__alert__container ul {
    border-radius: 6px;
    background-color: #FAD200;
  }
}
.header__alert__container ul li {
  position: relative;
  text-align: center;
  padding: 8px 40px;
}
@media screen and (max-width: 767px) {
  .header__alert__container ul li {
    padding: 12px 40px 12px 12px;
    text-align: left;
  }
}
.header__alert__container ul li .close {
  all: unset;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 24px;
  bottom: 0px;
  margin: auto;
}
.header__alert__container ul li p {
  position: relative;
  padding: 0 20px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.header__alert__container ul li p:hover {
  text-decoration: underline;
}
.header__alert__container ul li p::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/svg/ic_attention.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.header__alert__container ul li p::after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  background: url("../images/svg/ic_arrow_red.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 2px;
  left: auto;
}
@media screen and (max-width: 767px) {
  .header__alert__container ul li p::after {
    content: none;
    top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .header__alert__container ul li p {
    font-size: min(3.2vw, 12px);
    line-height: 1.4;
    padding: 0 0 0 20px;
  }
}

/* お知らせの詳細 */
.categoryFixed__link__wrap {
  position: fixed;
  top: 74px;
  left: 0;
  background-color: white;
  width: 100%;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  z-index: 99;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap {
    height: 55px;
    top: 120px;
    background-color: #F5F5F5;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .categoryFixed__link__wrap.headerNav-only {
    top: 56px;
  }
}
.categoryFixed__link__wrap .content__wrapper {
  padding: 0 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap .content__wrapper {
    padding: 12px 0 6px 0;
  }
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap.withSerch {
    height: 42px;
  }
  .categoryFixed__link__wrap.withSerch .content__wrapper {
    padding: 0 0 6px 0;
  }
}
.categoryFixed__link__wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  max-width: 1232px;
}
.categoryFixed__link__wrap ul::-webkit-scrollbar {
  display: none;
}
.categoryFixed__link__wrap ul::-webkit-scrollbar-track {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap ul {
    gap: 12px;
    padding-bottom: 6px;
  }
}
.categoryFixed__link__wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap ul li {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .categoryFixed__link__wrap ul li:last-child::after {
    content: "";
    padding-right: 12px;
  }
  .categoryFixed__link__wrap ul li:first-child::before {
    content: "";
    padding-left: 12px;
  }
}
.categoryFixed__link__wrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.categoryFixed__link__wrap ul li a:hover:not(.active) {
  opacity: 0.7;
}
.categoryFixed__link__wrap ul li a.active {
  color: #999;
}
@media screen and (max-width: 767px) {
  .categoryFixed__link__wrap ul li a {
    font-size: min(3.2vw, 12px);
    height: auto;
    padding: 8px 12px 6px;
    background-color: white;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.75);
}
.modal .modal__dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  -webkit-transform: translateY(-28px);
          transform: translateY(-28px);
}
.modal .modal__dialog .modal__content {
  padding: 0 12px;
}
.modal .modal__dialog.schedule {
  -webkit-transform: translateY(-14px);
          transform: translateY(-14px);
}
@media screen and (max-width: 767px) {
  .modal .modal__dialog.schedule {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .modal .modal__dialog.schedule .modal__content {
    position: absolute;
    top: initial;
    -webkit-transform: inherit;
            transform: inherit;
    bottom: 0;
    padding: 0;
    margin-top: 0;
  }
  .modal .modal__dialog.schedule .popup__close__wrap {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 8px;
  }
  .modal .modal__dialog.schedule .popup__close__wrap .close {
    background-color: #F2F2F2;
  }
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media, _:future, :root .movieImage__wrap .movieImage__info .info__type > span {
    padding: 3px 8px 1px;
  }
}
