@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
}

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

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

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

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

html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* safariの青い線を消す */
*:focus {
  outline: none;
}

section {
  scroll-margin-top: 60px;
}

/* iPhoneの文字が一部大きくなるのを防止 */
body {
  -webkit-text-size-adjust: 100%;
}

/* フォームのエラー表現 */
.js-error {
  display: none;
}

.js-error.show {
  display: block;
}

/* 折り返し表示 */
body {
  word-break: break-all;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

  .accordion__title {
  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;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion__title img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }

.accordion__title.is-active img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

  .accordion__content {
    line-height: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  margin: 0;
}

  .accordion__content.is-open {
    height: auto;
    opacity: 1;
  margin: 20px 0 40px;
}

.accordion02__title {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion02__title::before,
.accordion02__title::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  right: 12px;
}

.accordion02__title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion02__title.is-active::before {
  opacity: 0;
}

.accordion02__title.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.accordion02__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion02__content.is-open {
  height: auto;
  opacity: 1;
}

.alert__favorite-modal-area,
.alert__download-modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.alert__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

.alert__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  padding: 45px 15px 14px;
  border: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .alert__modal-contents {
    max-width: 300px;
  }
}

.alert__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .alert__text {
    font-size: 14px;
  }
}

.alert__link {
  margin-top: 30px;
}

.alert__link a {
  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;
}

.alert__link a span {
  color: #002F42;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .alert__link a span {
    font-size: 14px;
  }
}

.alert__link a img {
  width: 7px;
  margin-left: 5px;
}

.alert__favorite-modal-area .alert__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .alert__favorite-modal-area .alert__btn {
    margin-top: 26px;
  }
}

.alert__download-modal-area .alert__btn {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .alert__download-modal-area .alert__btn {
    margin-top: 26px;
  }
}

.alert__btn button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  padding: 17px 0;
  color: #fff;
  background-color: #002E40;
}
@media screen and (max-width: 767px) {
  .alert__btn button {
    font-size: 14px;
    padding: 18px 0;
  }
}

.alert__close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.alert__favorite-modal-area.is-show,
.alert__download-modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.breadcrumb {
  min-width: 1170px;
  height: 40px;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    min-width: 100%;
    height: 35px;
  }
}

.breadcrumb__inner {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    max-width: 640px;
  }
}

.breadcrumb__contents {
  height: inherit;
  display: -webkit-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumb__contents {
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.breadcrumb__return-btn {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__return-btn {
    margin-right: 10px;
  }
}

.breadcrumb__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.breadcrumb__item {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    white-space: nowrap;
  }
}

.breadcrumb__item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__item:nth-child(n+2) {
  margin-left: 33px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:nth-child(n+2) {
    margin-left: 20px;
  }
}

.breadcrumb__item:not(:last-child):after {
  position: absolute;
  content: "";
  top: 50%;
  right: -18px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:not(:last-child):after {
    right: -12px;
  }
}

.btn-favorite.added svg path:nth-child(2) {
  fill: #333;
}

.btn-favorite {
  cursor: pointer;
}

.card {
  position: relative;
}

.card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.card__tag span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 6px 2px;
  white-space: nowrap;
  width: auto;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.card__new {
  background-color: #C70000;
  border: 1px solid #C70000;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  padding: 3px 0;
}

.card__tannoki {
  background-color: #666;
  border: 1px solid #666;
  color: #fff;
  font-size: 10px;
  padding: 3.5px 0;
}

.card__noki {
  background-color: #fff;
  color: #333;
  font-size: 10px;
  padding: 2.5px 0;
  border: 1px solid #666;
}

.card__img {
  position: relative;
  width: 100%;
}

.card__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card__title {
  font-weight: 700;
  line-height: 1.625;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .card__title {
    line-height: 1.5714;
    margin-top: 6px;
  }
}

.card__title img {
  width: 6px;
  height: 12px;
  margin-left: 5px;
  margin-bottom: 4px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .card__title img {
    margin-left: 2px;
  }
}

.card__symbol {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285;
}
@media screen and (max-width: 767px) {
  .card__symbol {
    font-size: 13px;
    line-height: 1.6153;
  }
}

.card__text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 13px;
    line-height: 1.6153;
  }
}

.card__favorite-btn,
.card__favorite-btn svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .card__favorite-btn,
  .card__favorite-btn svg {
    width: 30px;
    height: 30px;
  }
}

.card__delete-btn {
  background-color: #F6F6F6;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 20px 0;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.card__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card__btn-box {
    margin-top: 17px;
  }
}

.card__btn-box .card__delete-btn {
  padding: 25px 0;
  width: 29.4339%;
  border-right: 1px solid #ccc;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .card__btn-box .card__delete-btn {
    padding: 15px 0;
  }
}

.card__btn-box .card__checkbox {
  background-color: #F6F6F6;
  width: 70.5661%;
  position: relative;
  top: 0;
  left: 0;
}

.card__btn-box .download__checkbox {
  padding: 20px 0 20px 54px;
}
@media screen and (max-width: 767px) {
  .card__btn-box .download__checkbox {
    padding: 14px 0 14px 74px;
  }
}

.card__btn-box .download__checkbox::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  .card__btn-box .download__checkbox::before {
    left: 52px;
  }
}

.card__btn-box .download__checkbox::after {
  top: 25px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .card__btn-box .download__checkbox::after {
    top: 17px;
    left: 58px;
  }
}

.card__tooltip.is-show {
  visibility: visible;
  opacity: 1;
}

.card__tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 213px;
  padding: 25px 0;
  border: 1px solid #333;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .card__tooltip {
    right: 23px;
  }
}

.card__tooltip a {
  display: inline-block;
  color: #002D3E;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 5px;
  position: relative;
}

.card__tooltip a::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: -11px;
  width: 7px;
  height: 7px;
  border-bottom: 1.5px solid #002D3E;
  border-right: 1.5px solid #002D3E;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.dummy {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dummy.is-show {
  display: block;
  position: fixed;
}

.close-tooltip {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .close-tooltip {
    top: 12px;
    right: 15px;
  }
}

.close-tooltip__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 1px;
  background-color: transparent;
}
.close-tooltip__line::before, .close-tooltip__line::after {
  position: absolute;
  display: block;
  width: inherit;
  height: inherit;
  background-color: #333;
  content: "";
  top: 0;
  right: 0;
  pointer-events: none;
}

.close-tooltip__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close-tooltip__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.card__size-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card__size-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.card__size {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .card__size {
    font-size: 14px;
  }
}

.card__size:nth-child(n+2) {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .card__size:nth-child(n+2) {
    margin-left: 0;
    margin-top: 7px;
  }
}

.card__itemNumber,
.card__unitPrice {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card__itemNumber,
  .card__unitPrice {
    font-size: 12px;
    line-height: 1.4166;
  }
}

.card__quantity {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .card__quantity {
    margin-top: 10px;
  }
}

.card__quantity input {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  padding: 5.5px 0 5.5px 14px;
  width: 60px;
  border: 1px solid #ccc;
  margin-left: 10px;
}

.card__quantity span {
  color: #666;
  font-size: 12px;
  margin-left: 5px;
}

.card__subtotal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .card__subtotal-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    margin-top: 20px;
  }
}

.card__delete-btn2 {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  margin-top: 6px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .card__delete-btn2 {
    margin-top: 20px;
  }
}

.card__subtotal {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.card__subtotal .subtotal {
  font-size: 14px;
  font-weight: 500;
}

.card__subtotal .yen {
  font-size: 16px;
  margin: 0 5px;
}

/* タイル表示 */
.tile .card__info {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .tile .card__info {
    padding-top: 8px;
  }
}

.tile .card__favorite-btn {
  position: absolute;
  top: 4px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .tile .card__favorite-btn {
    top: 125px;
    right: 3px;
  }
}

.tile .card__title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tile .card__title {
    font-size: 14px;
  }
}

/* リスト表示 */
.list .card {
  border-bottom: 1px solid #ccc;
}

.list .card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .list .card__contents {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.list .card:nth-child(12n+1) .card__contents {
  padding-top: 0;
}

.list .card__img {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .list .card__img {
    width: 29.85%;
  }
}

.list .card__info {
  width: 77.6%;
  margin-left: 20px;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .list .card__info {
    width: 64.1791%;
    padding-right: 0;
  }
}

.list .card__favorite-btn {
  position: absolute;
  top: 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .list .card__favorite-btn {
    bottom: 20px;
    left: 32vw;
    right: unset;
    top: unset;
  }
}

.list .card:nth-child(12n+1) .card__favorite-btn {
  top: 0;
}
@media screen and (max-width: 767px) {
  .list .card:nth-child(12n+1) .card__favorite-btn {
    bottom: 20px;
    left: 32vw;
    right: unset;
    top: unset;
  }
}

.list .card__title {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .list .card__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .list .card__text {
    padding-bottom: 40px;
  }
}

/* お気に入りページ タイル表示 */
@media screen and (max-width: 767px) {
  .tile4 .card {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .tile4 .card:nth-child(n+2) {
    border-top: 1px solid #ccc;
  }
}

@media screen and (max-width: 767px) {
  .tile4 .card__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .tile4 .card__img {
    width: 29.85%;
  }
}

.tile4 .card__info {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .tile4 .card__info {
    width: 64.1791%;
    padding-top: 0;
    margin-left: 20px;
  }
}

.tile4 .card__title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tile4 .card__title {
    font-size: 14px;
  }
}

/* お気に入りページ リスト表示 */
.list-addition .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .list-addition .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.list-addition .card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 77.4107%;
}
@media screen and (max-width: 767px) {
  .list-addition .card__contents {
    width: 100%;
  }
}

.list-addition .card__img {
  width: 19.2618%;
}
@media screen and (max-width: 767px) {
  .list-addition .card__img {
    width: 29.8507%;
  }
}

.list-addition .card__info {
  width: 78.0853%;
  margin-left: 23px;
}
@media screen and (max-width: 767px) {
  .list-addition .card__info {
    width: 64.1791%;
    margin-left: 20px;
  }
}

.list-addition .card__title {
  font-size: 18px;
  line-height: 1.3333;
}
@media screen and (max-width: 767px) {
  .list-addition .card__title {
    font-size: 14px;
    line-height: 1.5714;
  }
}

.list-addition .card__subtotal-box {
  width: 21.2%;
  margin-left: 23px;
}
@media screen and (max-width: 767px) {
  .list-addition .card__subtotal-box {
    width: 100%;
    margin-left: 0;
  }
}

/* シリーズ一覧（アコーディオン）ページ タイル表示 */
.tile4-2 .card__info {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .tile4-2 .card__info {
    padding-top: 8px;
  }
}

.tile4-2 .card__favorite-btn {
  position: absolute;
  top: 4px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .tile4-2 .card__favorite-btn {
    top: 125px;
    right: 3px;
  }
}

.tile4-2 .card__title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tile4-2 .card__title {
    font-size: 14px;
  }
}

.card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 1.7142;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .card__price {
    margin-top: 5px;
    word-wrap: break-word;
  }
}
.card__price .card__price-tilde {
  padding: 0 5px;
}

.card__price + p.card__text {
  margin-top: 10px;
}

/* DDS修正 */
/* 価格帯のpタグの改行を有効にする */
.card__price__contents {
  font-weight: 700;
  line-height: 1.7142;
}

/* タイル表示 */
.tile .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .tile .cards {
    margin-bottom: 17px;
  }
}

.tile .cards__item {
  width: 100%;
  max-width: calc(33.3% - 13.3333px);
  margin-right: 20px;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .tile .cards__item {
    max-width: calc(50% - 9.5px);
    margin-right: 19px;
    margin-bottom: 18px;
  }
}

.tile .cards__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .tile .cards__item:nth-child(3n) {
    margin-right: 19px;
  }
}

@media screen and (max-width: 767px) {
  .tile .cards__item:nth-child(2n) {
    margin-right: 0;
  }
}

/* お気に入りページ タイル表示 */
.tile4 .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .tile4 .cards {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

.tile4 .cards__item {
  width: 100%;
  max-width: calc(25% - 14.25px);
  margin-right: 19px;
}
@media screen and (max-width: 767px) {
  .tile4 .cards__item {
    max-width: 100%;
    margin-right: 0;
  }
}

.tile4 .cards__item:nth-child(4n) {
  margin-right: 0;
}

.tile4 .cards__item:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tile4 .cards__item:nth-child(n+5) {
    margin-top: 0;
  }
}

/* シリーズ一覧（アコーディオン）ページ タイル表示 */
.tile4-2 .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .tile4-2 .cards {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

.tile4-2 .cards__item {
  width: 100%;
  max-width: calc(25% - 14.25px);
  margin-right: 19px;
}
@media screen and (max-width: 767px) {
  .tile4-2 .cards__item {
    max-width: calc(50% - 9.5px);
    margin-right: 19px;
  }
}

.tile4-2 .cards__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .tile4-2 .cards__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .tile4-2 .cards__item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.tile4-2 .cards__item:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tile4-2 .cards__item:nth-child(n+5) {
    margin-top: 20px;
  }
}

.checkbox {
  display: block;
  position: relative;
}

.checkbox::before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #999;
}

.checkbox::after {
  content: "";
  position: absolute;
  display: block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 4px;
  height: 9px;
  opacity: 0;
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.dropdown__items {
  background-color: #E5E9EB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 42px;
  width: 1025px;
  position: absolute;
  top: 46px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0s;
  transition: 0s;
  z-index: 2;
  pointer-events: none;
}

.header__main-item:hover .dropdown__items {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown__item {
  background-color: #fff;
  width: 100%;
  max-width: calc(25% - 15px);
  margin-right: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.dropdown__item:hover {
  opacity: 0.8;
}

.dropdown__item:nth-child(4n) {
  margin-right: 0;
}

.dropdown__item:nth-child(n+5) {
  margin-top: 20px;
}

.dropdown__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__main-item:hover .dropdown__item a {
  visibility: visible;
  opacity: 1;
}

.dropdown__img {
  position: relative;
  width: 100%;
  max-width: 96.67px;
}

.dropdown__img:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.dropdown__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.dropdown__title {
  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;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3846;
  padding: 0 7px 0 10px;
}

.dropdown__title img {
  width: 11px;
  height: 9px;
}

.footer01 {
  min-width: 1170px;
  padding: 28px 0 27px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .footer01 {
    min-width: 100%;
    padding: 27px 0 25px;
  }
}

.footer01__inner {
  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;
}

.footer01__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer01__logo a img {
  width: 119px;
}
@media screen and (max-width: 767px) {
  .footer01__logo a img {
    width: 94px;
  }
}

.footer01__logo a span {
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-left: 14px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .footer01__logo a span {
    font-size: 11px;
    margin-left: 11px;
    margin-top: 4px;
  }
}

.footer01__sns-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer01__sns-item {
  margin-left: 26px;
}
@media screen and (max-width: 767px) {
  .footer01__sns-item {
    margin-left: 22px;
  }
}

.footer01__sns-item:nth-child(1) a img {
  width: 21px;
}
@media screen and (max-width: 767px) {
  .footer01__sns-item:nth-child(1) a img {
    width: 16px;
  }
}

.footer01__sns-item:nth-child(2) a img {
  width: 25px;
}
@media screen and (max-width: 767px) {
  .footer01__sns-item:nth-child(2) a img {
    width: 21px;
  }
}

.footer01__sns-item:nth-child(3) a img {
  width: 26px;
}
@media screen and (max-width: 767px) {
  .footer01__sns-item:nth-child(3) a img {
    width: 22px;
  }
}

.footer02 {
  min-width: 1170px;
  height: 80px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .footer02 {
    min-width: 100%;
    height: 100%;
  }
}

.footer02__inner {
  height: inherit;
}

.footer02__link-items {
  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: inherit;
}
@media screen and (max-width: 767px) {
  .footer02__link-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.footer02__link-item {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer02__link-item {
    width: 50%;
    border-bottom: 1px solid #707070;
  }
}

.footer02__link-item:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer02__link-item:nth-child(n+2) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer02__link-item:nth-child(odd) {
    border-right: 1px solid #707070;
  }
}

.footer02__link-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer02__link-item a {
    font-size: 13px;
    padding: 23px 0 24px 20px;
  }
}

.footer02__link-item a img {
  width: 11px;
  margin-left: 10px;
}

.footer03 {
  min-width: 1170px;
  padding: 28px 0 38px;
}
@media screen and (max-width: 767px) {
  .footer03 {
    min-width: 100%;
    padding: 30px 0 19px;
  }
}

.footer03__inner {
  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;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer03__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.footer03__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer03__nav {
    margin-right: auto;
  }
}

.footer03__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer03__nav-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 270px;
  }
}

.footer03__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.footer03__nav-item:nth-child(n+2) {
  margin-left: 28px;
}
@media screen and (max-width: 767px) {
  .footer03__nav-item:nth-child(n+2) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer03__nav-item:nth-child(3) {
    margin-top: 26px;
    margin-left: 0;
  }
}

.footer03__nav-item a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer03__nav-item a {
    font-size: 13px;
  }
}

.footer03__nav-item a img {
  width: 11px;
  margin-left: 5px;
}

.footer03__copy {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer03__copy {
    font-size: 11px;
    margin-top: 39px;
  }
}

.hamburger__button {
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger__button {
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    visibility: visible;
  }
  .hamburger {
    position: fixed;
    top: 21px;
    right: 20px;
    z-index: 2;
    width: 25px;
    height: 18px;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 26px;
    height: 2px;
    background-color: #000;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .hamburger__line::before, .hamburger__line::after {
    position: absolute;
    display: block;
    width: 26px;
    height: 100%;
    background-color: inherit;
    content: "";
    -webkit-transition: inherit;
    transition: inherit;
    right: 0;
  }
  .hamburger__line::before {
    top: -9px;
  }
  .hamburger__line::after {
    top: 9px;
  }
  .hamburger[aria-expanded=true] .hamburger__line {
    background-color: transparent;
  }
  .hamburger[aria-expanded=true] .hamburger__line::before, .hamburger[aria-expanded=true] .hamburger__line::after {
    top: 0;
    background-color: #000;
  }
  .hamburger[aria-expanded=true] .hamburger__line::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .hamburger[aria-expanded=true] .hamburger__line::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.header {
  min-width: 1170px;
  height: 80px;
  background-color: #fff;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.header__inner {
  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;
  height: inherit;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header__logo {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    margin-top: 0;
  }
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a img {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    width: 100px;
  }
}

.header__logo a span {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-left: 16px;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .header__logo a span {
    font-size: 12px;
    margin-left: 10px;
    margin-top: 4px;
  }
}

.header__nav {
  height: inherit;
}

.header__sub-items,
.header__main-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__sub-item a,
.header__sub-item--translation li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  .header__sub-item a,
  .header__sub-item--translation li {
    padding: 10px 5px;
    letter-spacing: -0.5px;
  }
}

html[lang=en] .header__sub-item a,
html[lang=en] .header__sub-item--translation li {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1330px) {
  html[lang=en] .header__sub-item a,
  html[lang=en] .header__sub-item--translation li {
    padding: 10px 4px;
    letter-spacing: -0.2px;
  }
}
@media screen and (max-width: 1240px) {
  html[lang=en] .header__sub-item a,
  html[lang=en] .header__sub-item--translation li {
    font-size: 12px;
    letter-spacing: -0.2px;
  }
}

.header__sub-item a img {
  width: 11px;
  margin-left: 5px;
}

.header__sub-item:first-child a img {
  width: 9px;
}

.header__sub-item.gray a {
  background-color: #E5E9EB;
  color: #002D3E;
}

.header__sub-item.dirk-gray li {
  background-color: #d4dfe5;
  color: #002D3E;
}

.msta_langArea li {
  display: none;
  min-width: 73px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.msta_langArea li:hover {
  opacity: 0.7;
}

html[lang=ja] .msta_langArea .msta_lang_en,
html[lang=en] .msta_langArea .msta_lang_ja {
  display: block;
}

.header__main-items {
  position: relative;
}

.header__main-item {
  width: 25%;
  margin-top: 10px;
}

.header__main-item:hover .header__main-item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E63D30;
}

.header__main-item-link {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 8px 0 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: 0s;
  transition: 0s;
  position: relative;
}

.header__main-item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #CCCCCC;
}

@media screen and (max-width: 767px) {
  .header__logout {
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .header__logout a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7px 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    background-color: #F6F6F6;
  }
}

@media screen and (max-width: 767px) {
  .header__logout a img {
    width: 9px;
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .header__space {
    height: 60px;
  }
}

.inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.login-btn {
  width: 100%;
  max-width: 360px;
  background-color: #002E40;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 17px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.login-btn:hover {
  opacity: 0.8;
}

/**
 * 高電車 ＭｙサイトAI 翻訳プレミアムのダイアログデザイン上書き用スタイル
 */
#MSTAWarningBox .MSTAtitle {
  padding: 10px !important;
  color: #002D3E !important;
  background-color: #d4dfe5 !important;
}

#MSTAWarningBox .MSTAmsg {
  color: #666 !important;
}

#MSTAWarningBox .MSTAbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  padding: 8px !important;
  background-color: #d4dfe5 !important;
}

#MSTAWarningBox .MSTAbtn button {
  margin: 0 !important;
  border: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  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: #002D3E !important;
  width: 100px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 0;
  -webkit-box-shadow: 0 0 31px rgba(0, 0, 0, .09);
          box-shadow: 0 0 31px rgba(0, 0, 0, .09);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#MSTAWarningBox .MSTAbtn button:hover {
  opacity: 0.8;
}


.page-product {
  min-width: 1170px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-product {
    min-width: 100%;
    padding-bottom: 101px;
  }
}

.page-product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  .page-product__inner.inner {
    padding: 0;
  }
}

.page-product__contents {
  width: 835px;
}
@media screen and (max-width: 767px) {
  .page-product__contents {
    width: 100%;
    padding: 0 20px;
  }
}

.page-product__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 11px;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .page-product__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    border: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}

.page-product__number-sort {
  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;
  width: 73.7724%;
}
@media screen and (max-width: 767px) {
  .page-product__number-sort {
    background-color: #F6F6F6;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 19px 20px;
    display: unset;
  }
}

.page-product__number {
  color: #666;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-product__number {
    font-size: 12px;
    font-weight: 500;
  }
}

.page-product__number span {
  color: #333;
  font-size: 22px;
  margin: 0 6px;
}
@media screen and (max-width: 767px) {
  .page-product__number span {
    font-size: 16px;
    font-weight: 700;
    margin: 0 3px;
  }
}

@media screen and (max-width: 767px) {
  .page-product__sort-box {
    margin-top: 12px;
  }
}

.page-product__sort {
  margin-left: 20px;
}

.page-product__display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .page-product__display {
    width: 100%;
    margin-left: 0;
    margin-top: 17px;
  }
}

.page-product__tile-btn,
.page-product__list-btn {
  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: 100px;
  color: #ccc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .page-product__tile-btn,
  .page-product__list-btn {
    width: 50%;
    font-weight: 500;
  }
}

.page-product__tile-btn {
  border-left: 1px solid #ccc;
}

.page-product__list-btn {
  border-right: 1px solid #ccc;
}

.page-product__tile-btn svg,
.page-product__list-btn svg {
  margin-left: 4px;
}

.page-product__tile-btn.display-on,
.page-product__list-btn.display-on {
  color: #333;
  border: 1px solid #333;
}

.page-product__tile-btn.display-on svg path,
.page-product__list-btn.display-on svg path {
  fill: #333;
}

/* リスト表示 */
.list.page-product__contents .pagination {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .list.page-product__contents .pagination {
    margin-top: 40px;
  }
}

.pageTop {
  position: fixed;
  right: 2.8571vw;
  bottom: 40px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  padding: 24px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 4;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media screen and (max-width: 767px) {
  .pageTop {
    right: 10px;
    bottom: 10px;
    padding: 19px;
  }
}

.pageTop:hover {
  opacity: 0.8;
}

.pageTop:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1.5px #000;
  border-right: solid 1.5px #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 22px;
  left: 19px;
}
@media screen and (max-width: 767px) {
  .pageTop:before {
    width: 10px;
    height: 10px;
    top: 17px;
    left: 14px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* DDS修正 */
.pagination__number button,
.pagination__prev button,
.pagination__next button,
.pagination__number a,
.pagination__prev a,
.pagination__next a {
  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: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  margin: 0 5px;
  cursor: pointer;
}
/* DDS修正 */
@media screen and (max-width: 767px) {
  .pagination__number button,
  .pagination__prev button,
  .pagination__next button,
  .pagination__number a,
  .pagination__prev a,
  .pagination__next a {
    width: 30px;
    height: 30px;
    margin: 0 4px;
  }
}
/* DDS修正 */
@media screen and (max-width: 374px) {
  .pagination__number button,
  .pagination__prev button,
  .pagination__next button,
  .pagination__number a,
  .pagination__prev a,
  .pagination__next a {
    width: 24px;
    height: 24px;
  }
}
/* DDS修正 */
.pagination__number button,
.pagination__number a {
  background-color: #F6F6F6;
  color: #999;
}

.pagination__omit {
  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;
  margin: 0 5px;
}

.pagination__omit img {
  width: 16px;
  height: 16px;
}

.pagination__number.current button {
  background-color: #000;
  color: #fff;
}

.pagination__prev,
.pagination__next {
  position: relative;
}

.pagination__prev::after,
.pagination__next::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 13px;
  height: 13px;
  top: 50%;
  border-bottom: 1.5px solid #000;
  border-right: 1.5px solid #000;
  pointer-events: none;
}

.pagination__prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  left: 58%;
}

.pagination__next::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  left: 42%;
}

.radio-btn {
  position: relative;
  display: inline-block;
}

.radio-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 50%;
}

.radio-btn::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-top: -15px;
  opacity: 0;
}

input[type=radio]:checked + .radio-btn::after {
  opacity: 1;
}

.page-product__search {
  width: 245px;
}
@media screen and (max-width: 767px) {
  .page-product__search {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .search__items {
    height: 488px;
    padding: 0 20px 100px;
    overflow: scroll;
  }
}

.search__item {
  border-top: 1px solid #CCC;
}

.search__item:last-child {
  border-bottom: 1px solid #CCC;
}

@media screen and (max-width: 767px) {
  .search__item:first-child {
    border-top: none;
  }
}

.search__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285;
  padding: 17px 28px 17px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .search__title {
    padding: 26px 28px 26px 0;
  }
}

.search__title.is-active {
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .search__title.is-active {
    background-color: unset;
  }
}

.search__title .checkbox {
  margin-left: 27px;
}

.search__title .checkbox::before {
  left: -27px;
}

.search__title .checkbox::after {
  left: -21px;
}

.search__tooltip {
  margin-left: 5px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .search__tooltip {
    margin-left: 20px;
  }
}

.search__tooltip img {
  width: 13.39px;
}

.search__description {
  display: none;
  position: absolute;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  background: #fff;
  border: 1px solid #333;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 6, .16);
          box-shadow: 0 0 6px rgba(0, 0, 6, .16);
  width: 192px;
  z-index: 1;
}

.search__tooltip:hover .search__description {
  display: inline-block;
  top: -24px;
  right: -205px;
}
@media screen and (max-width: 767px) {
  .search__tooltip:hover .search__description {
    right: -212px;
  }
}

.search__lists {
  background-color: #F6F6F6;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .search__lists {
    background-color: unset;
    padding: 0 25px 0 0;
  }
}

.search__lists.is-open {
  padding-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .search__lists.is-open {
    padding-top: 1px;
    padding-bottom: 31px;
  }
}

.search__list {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.search__list:nth-child(n+2) {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .search__list:nth-child(n+2) {
    margin-top: 25px;
  }
}

.search__list a {
  text-decoration: underline;
}

.search__list .checkbox {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 27px;
}

.search__list .checkbox::before {
  left: -27px;
}

.search__list .checkbox::after {
  left: -21px;
}

.search__list .radio-btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 27px;
}

.search__list .radio-btn::before {
  left: -27px;
  top: 3px;
}

.search__list .radio-btn::after {
  left: -24px;
  top: 21px;
}

.search__btn-box {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .search__btn-box {
    border-top: 1px solid #CCC;
    margin-top: 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
  }
}

.search__clear-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F6F6F6;
  border: 1px solid #333;
  color: #333;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 22px 0;
}
@media screen and (max-width: 767px) {
  .search__clear-btn {
    max-width: 157px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 0;
  }
}

.search__narrowing-down {
  color: #FF0000;
  padding-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .search__narrowing-down {
    font-size: 16px;
    padding: 16px 20px;
  }
}
@media screen and (max-width: 767px) {
  .search__narrowing-down + ul .search__item:first-child {
    border-top: 1px solid #CCC;
  }
}

.searchBar {
  min-width: 1170px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .searchBar {
    min-width: 100%;
  }
}

.searchBar__inner {
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  .searchBar__inner {
    padding: 16px 20px 20px;
  }
}

.searchBar__contents {
  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;
}
@media screen and (max-width: 767px) {
  .searchBar__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.searchBar__radio-btn-box {
  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;
}
@media screen and (max-width: 767px) {
  .searchBar__radio-btn-box {
    display: unset;
  }
}

.searchBar__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding-right: 20px;
  border-right: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .searchBar__title {
    display: block;
    text-align: center;
    font-size: 13px;
    border-right: none;
    padding: 0;
  }
}

html[lang=en] .searchBar__title {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  html[lang=en] .searchBar__title {
    padding-right: 14px;
  }
}

.searchBar__radio-btn {
  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;
}

.searchBar__radio-btn .radio-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-left: 41px;
}
@media screen and (max-width: 767px) {
  .searchBar__radio-btn .radio-btn {
    font-size: 13px;
    margin-left: 38px;
  }
}

html[lang=en] .searchBar__radio-btn .radio-btn {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  html[lang=en] .searchBar__radio-btn .radio-btn {
    margin-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .searchBar__radio-btn .radio-btn:first-of-type {
    margin-left: 20px;
  }
}

.searchBar__radio-btn .radio-btn::before {
  left: -21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.searchBar__radio-btn .radio-btn::after {
  left: -18px;
  top: 26px;
}
@media screen and (max-width: 767px) {
  .searchBar__radio-btn .radio-btn::after {
    top: 23px;
  }
}

.searchBar__box {
  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;
  background-color: #fff;
  border: 1px solid #CCC;
  width: 100%;
  max-width: 395px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .searchBar__box {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    margin-left: 0;
    margin-top: 10px;
  }
}

html[lang=en] .searchBar__box {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  html[lang=en] .searchBar__box {
    max-width: 355px;
  }
}

.searchBar__box input[type=search] {
  width: 100%;
}

.searchBar__box input[type=image] {
  height: 20px;
}

.searchBar__alert {
  color: red;
  line-height: 2;
  padding-left: 660px;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
@media screen and (max-width: 767px) {
  .searchBar__alert {
    padding-left: 0;
    width: 100%;
    max-width: 395px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sort {
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sort {
    font-size: 12px;
  }
}

.sort select {
  color: #333;
  padding: 0 20px 0 0;
}

.sort svg {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.sp-global-menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-global-menu {
    z-index: 1;
    position: fixed;
    width: 100vw;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    padding-top: 60px;
  }
  .sp-global-menu__inner {
    height: 100%;
    background-color: #fff;
    border-top: 1px solid #CCC;
    padding: 20px 32px 20px 20px;
    overflow: scroll;
  }
  .sp-global-mainMenu__item {
    border-bottom: 1px solid #CCC;
  }

  .sp-global-mainMenu__item--translation {
    display: none;
    padding-bottom: 10px;
  }
  html[lang=en] .sp-global-mainMenu__item--translation, html[lang=ja] .sp-global-mainMenu__item--translation {
    display: block;
  }
  .sp-global-mainMenu__item--translation li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .sp-global-mainMenu__item--translation .msta_langArea li {
    display: none;
    width: 90px;
    background-color: #d4dfe5;
    color: #002D3E;
    text-align: center;
  }

  .sp-global-mainMenu__title.accordion02__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 0;
  }
  .sp-global-mainMenu__title a {
    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;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 0;
  }
  .sp-global-mainMenu__title a img {
    width: 11px;
  }
  .sp-global-mainMenu__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #E5E9EB;
    padding: 0 20px;
  }
  .sp-global-mainMenu__list {
    width: 50%;
    position: relative;
  }
  .sp-global-mainMenu__list:nth-child(2n)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 28px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #CCCCCC;
  }
  .sp-global-mainMenu__list:nth-child(n+3) {
    border-top: 1px solid #CCCCCC;
  }
  .sp-global-mainMenu__list a {
    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;
    height: 100%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3333;
    padding: 20px 0;
  }
  .sp-global-mainMenu__list:nth-child(odd) a {
    padding-right: 20px;
  }
  .sp-global-mainMenu__list:nth-child(even) a {
    padding-left: 20px;
  }
  .sp-global-mainMenu__list a img {
    width: 11px;
  }
  .sp-global-subMenu__items {
    margin-top: 12px;
  }
  .sp-global-subMenu__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #333;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    padding: 15px 0;
  }
  .sp-global-subMenu__item a img {
    width: 11px;
    margin-left: 10px;
  }
  .is-drawerActive .sp-global-menu {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.sp-narrow-down__btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-narrow-down__btn {
    display: inline-block;
    visibility: visible;
    width: 100%;
    padding: 20px 20px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
  }
  .sp-narrow-down__btn-open {
    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: #000;
    color: #fff;
    width: 100%;
    max-width: 335px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 17px 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .sp-narrow-down__btn-open::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../images/Icons.svg); /* DDS修正 */
  }
  .sp-narrow-down-close__line {
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background-color: transparent;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .sp-narrow-down-close__line::before, .sp-narrow-down-close__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    content: "";
    -webkit-transition: inherit;
    transition: inherit;
    top: 0;
    right: 0;
  }
  .sp-narrow-down-close__line::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .sp-narrow-down-close__line::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .is-search-menu-open .sp-narrow-down__btn-close {
    position: absolute;
    top: 28px;
    right: 26px;
    width: 12px;
    height: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .sp-search-menu {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-search-menu {
    z-index: 99999;
    position: fixed;
    width: 100vw;
    height: 100%;
    right: 0;
    bottom: 0;
    background-color: #fff;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
  }
  .sp-search-menu__header {
    padding: 15px 15px 10px;
  }
  .sp-search-menu__title {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4285;
    padding-right: 46px;
  }
  .sp-search-menu__number {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-top: 4px;
  }
  .sp-search-menu__number span {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 0 3px;
  }
  .sp-search-menu__narrow-down {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background-color: #ccc;
    padding: 10px 0;
  }
  .is-search-menu-open .sp-search-menu {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/* アニメーション中のスタイル */
.v-leave-active,
.v-enter-active {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* 表示アニメーション */
.v-enter {
  opacity: 0;
}

.v-enter-to {
  opacity: 1;
}

/* 非表示アニメーション */
.v-leave {
  opacity: 1;
}

.v-leave-to {
  opacity: 0;
}

.error {
  min-width: 1170px;
  padding: 83px 0 170px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .error {
    min-width: 100%;
    padding: 60px 0 100px;
    text-align: unset;
  }
}

@media screen and (max-width: 767px) {
  .error__inner.inner {
    max-width: 640px;
  }
}

.error__title {
  color: #333;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .error__title {
    font-size: 20px;
  }
}

.error__subtitle {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .error__subtitle {
    font-size: 16px;
  }
}

.error__text {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .error__text {
    font-size: 14px;
    line-height: 1.5714;
    margin-top: 17px;
  }
}

.error__btn {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .error__btn {
    margin-top: 16px;
  }
}

.error__btn a {
  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: #032D3E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 23px 0;
  width: 269px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 0 31px rgba(0, 0, 0, .09);
          box-shadow: 0 0 31px rgba(0, 0, 0, .09);
}
@media screen and (max-width: 767px) {
  .error__btn a {
    padding: 20px 0;
    width: 166px;
    margin-left: unset;
    margin-right: unset;
  }
}

.error__btn a img {
  width: 6px;
  margin-left: 6px;
}

.ar__model-viewer {
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  position: absolute;
}

.ar__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  left: 50%;
  bottom: 20px;
  width: 100%;
  max-width: 540px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ar__btn.pc {
  right: 40px;
  bottom: 40px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1200px) {
  .ar__btn.pc {
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ar__btn {
    max-width: 334px;
  }
}

.ar__btn a,
.ar__display {
  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;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 0;
  border: 2px solid #002F42;
  width: 260px;
}
@media screen and (max-width: 767px) {
  .ar__btn a,
  .ar__display {
    font-size: 14px;
    padding: 21px 0;
    width: 157px;
  }
}

.ar__btn a {
  background-color: #fff;
  color: #002F42;
}

.ar__display {
  background-color: #002F42;
  color: #fff;
  margin-left: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ar__display:hover {
  opacity: 0.8;
}

#custom-ar-button {
  position: absolute;
  bottom: 20px;
  right: 50%;
  -webkit-transform: translate(110%);
          transform: translate(110%);
  z-index: 15;
}

.ar__modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.ar__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

.ar__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 550px;
  background-color: #fff;
  padding: 45px 15px 40px;
  border: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .ar__modal-contents {
    max-width: 335px;
    padding: 45px 15px 45px;
  }
}

.ar__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ar__text {
    font-size: 14px;
    line-height: 1.5714;
  }
}

.ar__qrCode {
  width: 170px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .ar__qrCode {
    margin: 20px auto 0;
  }
}

.ar__close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.ar__modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.category-head {
  min-width: 1170px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .category-head {
    min-width: 100%;
    padding: 20px 0;
  }
}

.category-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .category-head__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.category-head__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .category-head__title {
    font-size: 24px;
  }
}

.category-head__title-sub {
  font-size: 14px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .category-head__title-sub {
    font-size: 12px;
    padding: 10px 0 0;
  }
}

.category-head__pdf {
  display: none;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .category-head__pdf {
    margin-left: 0;
  }
}

.category-head__pdf.show {
  display: block;
}

.category-head__pdf a {
  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: auto;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 6px;
  border: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .category-head__pdf a {
    width: 100%;
    max-width: 335px;
    margin: 20px auto 0;
    padding: 13px 0;
  }
}

.category-head__pdf a img {
  width: 11px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .category-head__pdf a img {
    margin-left: 5px;
  }
}

.comparison {
  min-width: 1170px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .comparison {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .comparison__inner.inner {
    max-width: 640px;
  }
}

.comparison__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .comparison__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.comparison__head-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .comparison__head-title {
    font-size: 24px;
  }
}

.comparison__head-subtitle {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .comparison__head-subtitle {
    font-size: 14px;
    margin-top: 20px;
    margin-left: 0;
  }
}

.comparison__items {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .comparison__items {
    margin-top: 20px;
  }
}

.comparison__item {
  padding: 40px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .comparison__item {
    padding: 20px;
  }
}

.comparison__item:nth-child(n+2) {
  margin-top: 20px;
}

.comparison__title {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .comparison__title {
    font-size: 16px;
  }
}

.comparison__text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .comparison__text {
    line-height: 1.5714;
    margin-top: 7px;
  }
}

.comparison__pdf {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .comparison__pdf {
    margin-top: 7px;
  }
}

.comparison__pdf a {
  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: #002D3E;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 0;
  width: 102px;
}
@media screen and (max-width: 767px) {
  .comparison__pdf a {
    padding: 14px 0;
  }
}

.comparison__pdf a img {
  width: 11px;
  margin-right: 6px;
}

@media screen and (max-width: 767px) {
  .complete__inner.inner {
    max-width: 640px;
  }
}

.complete__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .complete__head-title {
    font-size: 24px;
  }
}

.complete__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .complete__text {
    text-align: unset;
  }
}

.complete__btn {
  margin-top: 20px;
  text-align: center;
}

.complete__btn a {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  background-color: #002E40;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 17px 0;
}

.page-complete {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-complete {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .confirm__inner.inner {
    max-width: 640px;
  }
}

.confirm__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .confirm__head-title {
    font-size: 24px;
  }
}

.confirm__contents {
  width: 100%;
  max-width: 550px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .confirm__contents {
    margin: 20px auto 0;
  }
}

.confirm__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .confirm__part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.confirm__part:nth-child(n+2) {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .confirm__part:nth-child(n+2) {
    margin-top: 40px;
  }
}

.confirm__part-title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .confirm__part-title {
    padding-top: 0;
  }
}

.confirm__input {
  width: 100%;
  max-width: 455px;
}
@media screen and (max-width: 767px) {
  .confirm__input {
    margin-top: 20px;
    text-align: center;
  }
}

.confirm__input span {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .confirm__input span {
    padding: 0;
  }
}

.confirm__checkbox {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .confirm__checkbox {
    margin-top: 40px;
  }
}

.confirm__checkbox-text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin-left: 27px;
  position: relative;
}

.confirm__checkbox-text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -27px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #999;
}

.confirm__checkbox-text::after {
  content: "";
  position: absolute;
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 10px;
  left: -21px;
  margin-top: -6px;
  opacity: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=checkbox]:checked + .confirm__checkbox-text::after {
  opacity: 1;
}

input[type=checkbox]:checked + .confirm__checkbox-text::before {
  background-color: #333;
  border: 1px solid #333;
}

.confirm__title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .confirm__title {
    line-height: 1.5;
    text-align: unset;
  }
}

.confirm__text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .confirm__text {
    line-height: 1.5;
    width: unset;
    margin: 20px 0 0;
  }
}

.confirm__btn {
  margin-top: 20px;
  text-align: center;
}

.confirm__return {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .confirm__return {
    margin-top: 30px;
  }
}

.confirm__return a {
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .confirm__return a {
    font-size: 14px;
  }
}

.confirm__return a img {
  width: 6px;
  margin-right: 10px;
  margin-top: 1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .confirm__return a img {
    margin-right: 7px;
  }
}

.confirm__return a span {
  color: #333;
  text-decoration: underline;
}

.page-confirm {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-confirm {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

.detail {
  min-width: 1170px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .detail {
    min-width: 100%;
    padding: 40px 0 100px;
  }
}

.detail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .detail__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.detail__favorite-btn,
.detail__favorite-btn svg {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .detail__favorite-btn,
  .detail__favorite-btn svg {
    width: 30px;
    height: 30px;
  }
}

.detail__favorite-btn {
  position: absolute;
  top: -9px;
  right: 23px;
}
@media screen and (max-width: 767px) {
  .detail__favorite-btn {
    top: -30px;
    right: 21px;
}
}

.detail__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2307;
  margin-left: 3px;
  padding-right: 95px;
}
@media screen and (max-width: 767px) {
  .detail__title {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 3px;
    margin-left: 0;
    padding-right: 0;
  }
}

.detail__image {
  width: 100%;
  max-width: 540px;
}
@media screen and (max-width: 767px) {
  .detail__image {
    margin-left: auto;
    margin-right: auto;
  }
}

.detail__info {
  width: 520px;
}
@media screen and (max-width: 767px) {
  .detail__info {
    width: 100%;
    max-width: 540px;
    margin: 30px auto 0;
  }
}

.image__main {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .image__main {
    margin: 22px calc(50% - 50vw) 0;
    width: 100vw;
    max-width: unset;
  }
}

.image__main:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.image__main img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image__btn {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .image__btn {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.image__btn .imgDownload-btn,
.image__btn .dataDownload-btn {
  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: 100%;
  max-width: 269px;
  background-color: #032D3E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 21px 0;
}
@media screen and (max-width: 767px) {
  .image__btn .imgDownload-btn,
  .image__btn .dataDownload-btn {
    max-width: 100%;
    padding: 16px 0;
  }
}

.image__btn .imgDownload-btn img {
  width: 20px;
  margin-right: 6px;
}

.image__btn .dataDownload-btn {
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .image__btn .dataDownload-btn {
    margin-left: 0;
    margin-top: 6px;
  }
}

.image__btn .dataDownload-btn img {
  width: 6px;
  margin-left: 6px;
}

.image__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .image__title {
    margin-top: 24px;
  }
}

.image__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.image__item {
  width: 100px;
  margin-top: 12px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .image__item {
    width: 60px;
    margin-top: 15px;
    margin-right: 7px;
  }
}

.image__item:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .image__item:nth-child(5n) {
    margin-right: 7px;
  }
}

.image .card__tag {
  display: none;
}
@media screen and (max-width: 767px) {
  .image .card__tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.info__items {
  margin-top: 17px;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .info__items {
    border-top: 1px solid #CCC;
    padding-top: 17px;
    padding-left: 4px;
    margin-top: 0;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.info__item {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .info__item {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 0;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .info__item:not(:last-child)::after {
    content: "、";
  }
}

.info__item:nth-child(n+2) {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .info__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.info__table {
  border: 1px solid #CCC;
  border-spacing: 0;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .info__table {
    margin-top: 15px;
    width: 100%;
  }
}

.info__size:nth-child(n+2) th,
.info__size:nth-child(n+2) td {
  border-top: 1px solid #CCC;
}

.info__size th {
  color: #666;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  padding: 10px 0 10px 10px;
  padding: 0.625rem 0 0.625rem 0.625rem;
  width: 70px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .info__size th {
    font-size: 14px;
    padding: 0.5625rem 0 0.5625rem 0.6875rem;
    width: 100px;
  }
}

.info__size td {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0 10px 10px;
  padding: 0.625rem 0 0.625rem 0.625rem;
  width: 167px;
}
@media screen and (max-width: 767px) {
  .info__size td {
    font-size: 14px;
    padding: 0.5625rem 0 0.5625rem 0.6875rem;
    width: unset;
  }
}

.info__drawing {
  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: #333;
  color: #F6F6F6;
  width: 100%;
  max-width: 240px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 0 12px;
  margin-top: 9px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .info__drawing {
    max-width: 100%;
    margin-top: 8px;
  }
}

.info__drawing img {
  width: 25px;
  margin-right: 10px;
}

.info__modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.info__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
}

.info__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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: 90%;
  max-width: 600px;
  height: 90%;
  pointer-events: none;
}
.info__modal-contents img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .info__modal-contents {
    top: calc(50% + 30px);
    height: calc(90% - 60px);
  }
}

.info__close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .info__close-modal {
    top: 70px;
    right: 10px;
  }
}

.info__modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.info__lists {
  margin-top: 40px;
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
  .info__lists {
    margin-left: 0;
  }
}

.info__list:nth-child(n+2) {
  margin-top: 20px;
}

.info__list-title {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.info__list-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
}

.info__list-text.list-price {
  font-size: 24px;
}

.info__list-text.list-price span {
  font-size: 13px;
  font-weight: 500;
}

.info__menus {
  margin-top: 41px;
}
@media screen and (max-width: 767px) {
  .info__menus {
    margin-top: 30px;
  }
}

.info__menu {
  padding: 40px 0 35px;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .info__menu {
    padding: 30px 0 25px;
  }
}

.info__menu-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.info__menu-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714;
  margin-top: 8px;
}

.info__link-box1,
.info__link-box2,
.info__link-box3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__link-box1 {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .info__link-box1 {
    margin-top: 0;
  }
}

.info__link-box2,
.info__link-box3 {
  margin-top: 6px;
}

.info__link {
  width: 100%;
  max-width: calc(33.3333% - 3.333px);
  margin-right: 5px;
}

.info__link:nth-child(3n) {
  margin-right: 0;
}

.info .card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .info .card__tag {
    display: none;
  }
}

.info__ar {
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .info__ar {
    margin-top: 17px;
  }
}

.info__ar-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .info__ar-title {
    font-size: 14px;
  }
}

.info__ar-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 12px;
}

.info__ar-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .info__ar-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.info__ar-ios,
.info__ar-android {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  width: 46.0251%;
}
@media screen and (max-width: 767px) {
  .info__ar-ios,
  .info__ar-android {
    width: 100%;
  }
}

.info__ar-android {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .info__ar-android {
    margin-top: 12px;
    margin-left: 0;
  }
}

.info__ar-android a {
  color: #002D3E;
  text-decoration: underline;
}

.thumbnail__img {
  position: relative;
  width: 100%;
}

.thumbnail__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.thumbnail__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumbnail__img.current {
  border: 1px solid #000;
}

.thumbnail__title {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-top: 4px;
}

.thumbnail__delivery-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background-color: #666;
  margin: 4px auto 0;
}

.favorite-list-title__items {
  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;
  background-color: #F6F6F6;
  padding: 10px 20px;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .favorite-list-title__items {
    display: none;
  }
}

.favorite-list-title__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}

.favorite-list-title__item:nth-child(1) {
  width: 40px;
}

.favorite-list-title__item:nth-child(2) {
  width: 100px;
}

.favorite-list-title__item:nth-child(3) {
  width: 280px;
}

.favorite-list-title__item:nth-child(4) {
  width: 300px;
}

.favorite-list-title__item:nth-child(n+5) {
  width: 80px;
  text-align: center;
}

.favorite-list-title__item .br {
  display: block;
}

.favorite-list-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__item {
    padding: 20px 0;
  }
}

.favorite-list-content__no {
  width: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__no {
    width: 20px;
    font-size: 14px;
  }
}

.favorite-list-content__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.favorite-list-content__list {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(n+2) {
    margin-top: 20px;
  }
}

.favorite-list-content__list:nth-child(1) {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(1) {
    width: 100%;
  }
}

.favorite-list-content__list:nth-child(2) {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(2) {
    width: 100%;
  }
}

.favorite-list-content__list:nth-child(3) {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(3) {
    width: 100%;
    font-size: 13px;
  }
}

.favorite-list-content__list:nth-child(n+4) {
  width: 80px;
  text-align: center;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(n+4) {
    width: 100%;
    text-align: unset;
    margin-top: 20px;
  }
}

.favorite-list-content__list:nth-child(2) a {
  color: #002D3E;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(2) a {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(4) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.favorite-list-content__list:nth-child(n+5) button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: inherit;
}
.favorite-list-content__list:nth-child(n+5) button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(n+5) button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}

.favorite-list-content__list:nth-child(4) img,
.favorite-list-content__list:nth-child(6) img {
  width: 20px;
  margin: 0 auto 9px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(4) img,
.favorite-list-content__list:nth-child(6) img {
    width: 15px;
    margin: 0 15px 0 0;
  }
}

.favorite-list-content__list:nth-child(5) img {
  width: 17px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(5) img {
    width: 15px;
    margin: 0 15px 0 0;
  }
}

.favorite-list-content__list:nth-child(n+4) span {
  text-decoration: underline;
}

.favorite-list-content__list:nth-child(n+4) .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__list:nth-child(n+4) .sp {
    display: inline-block;
  }
}

.favorite-list-content__title {
  font-weight: 700;
}

.favorite-list-content__series {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .favorite-list-content__series {
    margin-top: 20px;
  }
}

/* モーダルエリア */
.favorite-list__modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.favorite-list__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

.favorite-list__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 550px;
  background-color: #fff;
  padding: 45px 15px 14px;
}
@media screen and (max-width: 767px) {
  .favorite-list__modal-contents {
    max-width: 334px;
  }
}

.favorite-list__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .favorite-list__text {
    text-align: unset;
  }
}

.favorite-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.favorite-list__btn button {
  font-size: 16px;
  line-height: 1;
  width: 100%;
  max-width: 255px;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .favorite-list__btn button {
    font-size: 14px;
    max-width: 150px;
    padding: 17px 0;
  }
}

.favorite-list__cancel-btn {
  color: #333;
  font-weight: 500;
  border: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .favorite-list__cancel-btn {
    font-weight: 700;
  }
}

.favorite-list__yes-btn {
  color: #fff;
  font-weight: 700;
  border: 1px solid #002E40;
  background-color: #002E40;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .favorite-list__yes-btn {
    margin-left: 4px;
  }
}

.favorite-list__close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.favorite-list__modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.page-favorite-list {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-favorite-list {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-favorite-list__inner.inner {
    max-width: 640px;
  }
}

.page-favorite-list__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-list__head-title {
    font-size: 24px;
  }
}

.page-favorite-list__head-text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .page-favorite-list__head-text {
    line-height: 1.5;
  }
}

.page-favorite-list__contents {
  margin-top: 30px;
}

.page-favorite-list__pagination {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-favorite-list__pagination {
    margin-top: 40px;
  }
}

.page-favorite-preview {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-favorite-preview__inner.inner {
    max-width: 640px;
  }
}

.page-favorite-preview__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__head-title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.page-favorite-preview__contents {
  background-color: rgba(0, 45, 62, .1);
  margin-top: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__contents {
    margin-top: 20px;
    padding: 20px 20px 30px;
  }
}

.page-favorite-preview__text {
  color: #002D3E;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__text {
    line-height: 1.5;
    text-align: unset;
  }
}

.page-favorite-preview__btn {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-favorite-preview__btn:hover {
  opacity: 0.8;
}

.page-favorite-preview__btn button {
  width: 100%;
  background-color: #002E40;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 17px 0;
}

.page-favorite-preview__return {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__return {
    margin-top: 30px;
  }
}

.page-favorite-preview__return a {
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__return a {
    font-size: 14px;
  }
}

.page-favorite-preview__return a img {
  width: 6px;
  margin-right: 10px;
  margin-top: 1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__return a img {
    margin-right: 7px;
  }
}

.page-favorite-preview__return a span {
  color: #333;
  text-decoration: underline;
}

.page-favorite-preview .favorite-section-header {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview .favorite-section-header {
    padding: 15px 0;
  }
}

.page-favorite-preview__alert {
  display: none;
  color: #E63D30;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-favorite-preview__alert {
    font-size: 14px;
    margin-top: 20px;
  }
}

.page-favorite-preview__alert.show {
  display: block;
}

.page-favorite-title {
  min-width: 1170px;
  padding: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .page-favorite-title {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-favorite-title__inner.inner {
    max-width: 550px;
  }
}

.page-favorite-title__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__head-title {
    font-size: 24px;
  }
}

.page-favorite-title__contents {
  width: 100%;
  max-width: 550px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__contents {
    margin: 20px auto 0;
  }
}

.page-favorite-title__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__text {
    line-height: 1.5;
  }
}

.page-favorite-title__input {
  margin-top: 20px;
}

.page-favorite-title__input input {
  border: 1px solid #CCC;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 20px;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__input input {
    font-size: 14px;
  }
}

.page-favorite-title__alert {
  color: #E63D30;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__alert {
    font-size: 14px;
    margin-top: 8px;
  }
}

.page-favorite-title__box {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__box {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .page-favorite-title__box .page-favorite-title__text {
    text-align: left;
  }
}

.page-favorite-title__btn {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-favorite-title__btn:hover {
  opacity: 0.8;
}

.page-favorite-title__btn input {
  width: 100%;
  background-color: #002E40;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 17px 0;
}

.page-favorite-title__return {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__return {
    margin-top: 30px;
  }
}

.page-favorite-title__return a {
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite-title__return a {
    font-size: 14px;
  }
}

.page-favorite-title__return a img {
  width: 6px;
  margin-right: 10px;
  margin-top: 1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .page-favorite-title__return a img {
    margin-right: 7px;
  }
}

.page-favorite-title__return a span {
  color: #333;
  text-decoration: underline;
}

.delete__modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.delete__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

.delete__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  padding: 45px 15px 14px;
}
@media screen and (max-width: 767px) {
  .delete__modal-contents {
    max-width: 300px;
  }
}

.delete__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.delete__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .delete__btn {
    margin-top: 26px;
  }
}

.delete__btn button {
  font-size: 16px;
  line-height: 1;
  width: 100%;
  max-width: 160px;
  padding: 16px 0;
}

.delete__cancel-btn {
  color: #333;
  font-weight: 500;
  border: 1px solid #999;
}

.delete__yes-btn {
  color: #fff;
  font-weight: 700;
  border: 1px solid #002E40;
  background-color: #002E40;
  margin-left: 5px;
}

.delete__close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.delete__modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.favorite-addition {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .favorite-addition {
    margin-top: 40px;
  }
}

.favorite-addition__items {
  margin-top: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .favorite-addition__items {
    margin-top: 0;
  }
}

.favorite-addition__totalBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalBar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.favorite-addition__calculation-btn {
  background-color: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 23.6608%;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .favorite-addition__calculation-btn {
    font-size: 14px;
    padding: 12px 0;
    width: 100%;
  }
}

.favorite-addition__calculation-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 21px solid #333;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .favorite-addition__calculation-btn::before {
    top: unset;
    bottom: -27px;
    right: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-top: 21px solid #333;
    border-left: 21px solid transparent;
    border-right: 21px solid transparent;
  }
}

.favorite-addition__totalAmount-box {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 76.3392%;
  padding: 15px 54px 15px 31px;
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalAmount-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    padding: 10px 20px;
  }
}

.favorite-addition__totalAmount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #333;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalAmount {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}

.favorite-addition__totalAmount .totalAmount {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalAmount .totalAmount {
    font-size: 10px;
  }
}

.favorite-addition__totalAmount .price {
  font-size: 30px;
  margin-left: 7px;
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalAmount .price {
    font-size: 18px;
    margin-left: 0;
  }
}

.favorite-addition__totalAmount .yen {
  font-size: 18px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalAmount .yen {
    font-size: 12px;
    margin-right: 4px;
  }
}

.favorite-addition__download-btn {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .favorite-addition__download-btn {
    font-size: 12px;
    margin-top: 8px;
  }
}

@media screen and (max-width: 1023px) {
  .favorite-addition__totalBar.js-fix.is-fixed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 calc(50% - 50vw);
    width: 80vw;
  }
  .js-fix.is-fixed .favorite-addition__calculation-btn {
    font-size: 14px;
    padding: 12px 0;
    width: 100%;
  }
  .js-fix.is-fixed .favorite-addition__calculation-btn::before {
    top: unset;
    bottom: -27px;
    right: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-top: 21px solid #333;
    border-left: 21px solid transparent;
    border-right: 21px solid transparent;
  }
  .js-fix.is-fixed .favorite-addition__totalAmount-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    padding: 10px 20px;
  }
  .js-fix.is-fixed .favorite-addition__totalAmount {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
  .js-fix.is-fixed .favorite-addition__totalAmount .totalAmount {
    font-size: 10px;
  }
  .js-fix.is-fixed .favorite-addition__totalAmount .price {
    font-size: 18px;
    margin-left: 0;
  }
  .js-fix.is-fixed .favorite-addition__totalAmount .yen {
    font-size: 12px;
    margin-right: 4px;
  }
  .js-fix.is-fixed .favorite-addition__download-btn {
    font-size: 12px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .favorite-addition__totalBar.js-fix.is-fixed {
    width: 100vw;
  }
}

.error .favorite-addition__totalAmount-box {
  background-color: #FFF0F0;
  padding: 22px 54px 22px 31px;
}
@media screen and (max-width: 767px) {
  .error .favorite-addition__totalAmount-box {
    padding: 22px 0;
  }
}

.error .favorite-addition__totalAmount {
  color: #C70000;
}
@media screen and (max-width: 767px) {
  .error .favorite-addition__totalAmount {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .error .favorite-addition__totalAmount .totalAmount {
    font-size: 14px;
  }
}

.error .price,
.error .favorite-addition__download-btn {
  display: none;
}

@media screen and (max-width: 1023px) {
  .js-fix.is-fixed.error .favorite-addition__totalAmount-box {
    padding: 22px 0;
  }
  .js-fix.is-fixed.error .favorite-addition__totalAmount {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .js-fix.is-fixed.error .favorite-addition__totalAmount .totalAmount {
    font-size: 14px;
  }
}
.favorite-product {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .favorite-product {
    margin-top: 40px;
  }
}

.favorite-product__items {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .favorite-product__items {
    margin-top: 0;
  }
}

.favorite-product__download {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .favorite-product__download {
    margin-top: 40px;
  }
}

.favorite-product__download-btn {
  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: #002D3E;
  width: 100%;
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.favorite-product__download-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .favorite-product__download-btn {
    padding: 21px 0;
  }
}

.favorite-product__download-btn img {
  width: 26.91px;
}
@media screen and (max-width: 767px) {
  .favorite-product__download-btn img {
    width: 20px;
  }
}

.favorite-product__download-btn span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .favorite-product__download-btn span {
    margin-left: 5px;
  }
}

.favorite-series {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .favorite-series {
    margin-top: 20px;
  }
}

.favorite-series__items {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .favorite-series__items {
    margin-top: 0;
  }
}

.favorite-zero__text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .favorite-zero__text {
    margin-top: 20px;
  }
}

.favorite-section-header {
  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;
  padding: 9px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .favorite-section-header {
    padding: 6px 0;
  }
}

.favorite-section-header__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .favorite-section-header__title {
    font-size: 16px;
  }
}

.favorite-section-header__btn-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.favorite-section-header__add-btn {
  background-color: #F6F6F6;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .favorite-section-header__add-btn {
    padding: 9px;
    width: 120px;
    line-height: 1.2;
  }
}

.favorite-section-header__delete-btn {
  background-color: #F6F6F6;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #ccc;
  padding: 12px 0;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .favorite-section-header__delete-btn {
    padding: 9px 0;
    width: 98px;
  }
}

.page-favorite {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-favorite {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-favorite__inner.inner {
    max-width: 640px;
  }
}

.page-favorite__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-favorite__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.page-favorite__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-title {
    font-size: 24px;
  }
}

.page-favorite__head-btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-btnBox {
    margin-top: 20px;
  }
}

.page-favorite__head-btn:nth-child(n+2) {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-btn:nth-child(n+2) {
    margin-left: 7px;
  }
}

.page-favorite__head-btn {
  width: 202px;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-btn {
    width: 50%;
    max-width: 202px;
  }
}

.page-favorite__head-btn a {
  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: #002D3E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-btn a {
    font-size: 14px;
    padding: 12px 0;
  }
}

.page-favorite__head-btn a img {
  width: 23px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .page-favorite__head-btn a img {
    margin-right: 7px;
  }
}

.page-favorite__head-btn .disabled {
  background-color: #F6F6F6;
  color: #999;
  pointer-events: none;
}
.page-favorite__head-btn .disabled img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.65 0.35" /><feFuncG type="table" tableValues="0.65 0.35" /><feFuncB type="table" tableValues="0.65 0.35" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.94537 0.06921 0.017009999999999997 0 0 0.031409999999999993 0.97174 0.015119999999999995 0 0 0.024480000000000002 0.04805999999999999 0.92179 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.27596 0.6577999999999999 0.06624 0 0 0.19596 0.7385999999999999 0.06624 0 0 0.19596 0.6577999999999999 0.14623999999999998 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="2" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.94" /><feFuncG type="linear" slope="0.94" /><feFuncB type="linear" slope="0.94" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.85" intercept="0.07500000000000001" /><feFuncG type="linear" slope="0.85" intercept="0.07500000000000001" /><feFuncB type="linear" slope="0.85" intercept="0.07500000000000001" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(65%) sepia(9%) saturate(8%) hue-rotate(2deg) brightness(94%) contrast(85%);
          filter: invert(65%) sepia(9%) saturate(8%) hue-rotate(2deg) brightness(94%) contrast(85%);
}

.content__title-box {
  padding-bottom: 18px;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .content__title-box {
    padding-bottom: 14px;
  }
}

.content__title {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .content__title {
    font-size: 20px;
    line-height: 1.5;
  }
}

.content__text-box {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .content__text-box {
    margin-top: 24px;
  }
}

.content__subtitle {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .content__subtitle {
    font-size: 16px;
    line-height: 1.625;
  }
}

.content__text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .content__text {
    margin-top: 7px;
  }
}

.content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .content__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-top: 25px;
  }
}

.content__item {
  width: 100%;
  max-width: calc(33.3% - 13.3333px);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .content__item {
    max-width: 600px;
    margin-right: 0;
  }
}

.content__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .content__item:nth-child(n+2) {
    margin-top: 16px;
  }
}

.content__item:nth-child(n+4) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .content__item:nth-child(n+4) {
    margin-top: 16px;
  }
}

.content__img {
  position: relative;
  width: 100%;
}

.content__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.content__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.content__item-title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  margin-top: 11px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .content__item-title {
    margin-top: 5px;
  }
}

.content__cap {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .content__cap {
    margin-top: 5px;
  }
}

.content__img-box {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .content__img-box {
    margin-top: 15px;
  }
}

.content__youtube {
  width: 100%;
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content__youtube {
    margin-top: 30px;
  }
}

.content__youtube:before {
  content: "";
  display: block;
  padding-top: 56.5159%;
}

.content__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contents__box {
  display: none;
}

.contents__box.show {
  display: block;
}

.contents__title {
  color: #032D3E;
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 41px;
  border-bottom: 4px solid rgba(3, 45, 62, .1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents__title {
    font-size: 18px;
    padding-bottom: 21px;
    border-bottom: 2px solid rgba(3, 45, 62, .1);
  }
}

.contents__title::after {
  content: "";
  position: absolute;
  width: 222px;
  height: 4px;
  bottom: -4px;
  left: 0;
  background-color: #032D3E;
}
@media screen and (max-width: 767px) {
  .contents__title::after {
    width: 100px;
    height: 2px;
    bottom: -2px;
  }
}

.contents__lead-box {
  background-color: #F6F6F6;
  padding: 32px 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contents__lead-box {
    padding: 16px 20px;
    margin-top: 30px;
  }
}

.contents__lead {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1428;
}
@media screen and (max-width: 767px) {
  .contents__lead {
    line-height: 1.5714;
  }
}

@media screen and (max-width: 767px) {
  .contents__lead:nth-child(n+2) {
    margin-top: 11px;
  }
}

.contents__lead span {
  margin-right: 16px;
}

.contents__items {
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .contents__items {
    margin-top: 25px;
  }
}

.contents__item:nth-child(n+2) {
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  .contents__item:nth-child(n+2) {
    margin-top: 72px;
  }
}

.download .contents__items {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .download .contents__items {
    margin-bottom: 40px;
  }
}

.download .contents__item:nth-child(n+2) {
  margin-top: 81px;
}
@media screen and (max-width: 767px) {
  .download .contents__item:nth-child(n+2) {
    margin-top: 34px;
  }
}

.download__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.download__item {
  width: 100%;
  max-width: calc(25% - 15px);
  margin-right: 20px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .download__item {
    max-width: calc(50% - 9px);
    margin-right: 18px;
  }
}

.download__item.download-card1 {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .download__item.download-card1 {
    padding: 15px;
  }
}

.download__item.download-card2 {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .download__item.download-card2 {
    padding: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  .download__item:nth-child(2n) {
    margin-right: 0;
  }
}

.download__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .download__item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.download__item:nth-child(n+5) {
  margin-top: 20px;
}

.download__img {
  position: relative;
  width: 100%;
}

.download-card1 .download__img {
  padding-top: 141.3333%;
}
@media screen and (max-width: 767px) {
  .download-card1 .download__img {
    padding-top: 140.625%;
  }
}

.download-card2 .download__img {
  padding-top: 100%;
}

.download__img:before {
  content: "";
  display: block;
}

.download__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.download__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .download__text {
    margin-top: 5px;
  }
}

.download-card2 .download__text {
  padding: 0 20px;
}

.download__btn {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .download__btn {
    margin-top: 20px;
  }
}

.download__checkbox {
  display: block;
  position: relative;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .download__checkbox {
    line-height: 1.1428;
    padding-left: 21px;
  }
}

.download-card2 .download__checkbox {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .download-card2 .download__checkbox {
    margin-left: 15px;
  }
}

.download__checkbox::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .download__checkbox::before {
    width: 16px;
    height: 16px;
  }
}

.download__checkbox::after {
  content: "";
  position: absolute;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 6px;
  height: 11px;
  opacity: 0;
  top: 5px;
  left: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .download__checkbox::after {
    width: 5px;
    height: 8px;
    top: 3px;
    left: 6px;
  }
}

input[type=checkbox]:checked + .download__checkbox::after {
  opacity: 1;
}

input[type=checkbox]:checked + .download__checkbox::before {
  background-color: #333;
}

.download__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
}

.js-fix.is-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80vw;
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  .js-fix.is-fixed {
    bottom: 60px;
    width: 89.0666vw;
  }
}

.download__all-btn {
  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: #002D3E;
  color: #fff;
  width: 100%;
  max-width: 855px;
  padding: 18px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.download__all-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .download__all-btn {
    width: 70.4477%;
    padding: 21px 0;
  }
}

.download__all-btn span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .download__all-btn span {
    font-size: 14px;
    margin-left: 5px;
  }
}

.download__all-btn img {
  width: 26.91px;
}
@media screen and (max-width: 767px) {
  .download__all-btn img {
    width: 20px;
  }
}

.download__clear-btn {
  background-color: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  width: 100%;
  max-width: 265px;
  padding: 22px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.download__clear-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .download__clear-btn {
    font-size: 12px;
    padding: 24px 0;
    width: 29.5523%;
  }
}

.experience .contents__items {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .experience .contents__items {
    margin-top: 34px;
  }
}

.experience .contents__item:nth-child(n+2) {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .experience .contents__item:nth-child(n+2) {
    margin-top: 34px;
  }
}

.experience__items {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .experience__items {
    margin-top: 26px;
  }
}

.experience__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .experience__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.experience__item:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .experience__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.experience__shop {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3888;
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .experience__shop {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }
}

.experience__address,
.experience__type {
  width: 100%;
  max-width: 360px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .experience__address,
  .experience__type {
    margin-left: 0;
    max-width: 100%;
    margin-top: 7px;
  }
}

.experience__address p,
.experience__type {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .experience__address p,
  .experience__type {
    font-size: 14px;
    line-height: 1.5714;
  }
}

.experience__address a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .experience__address a {
    margin-top: 8px;
  }
}

.experience__address a img {
  width: 11px;
  margin-top: 7px;
}

.experience__address a span {
  color: #1E78D2;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285;
  margin-left: 9px;
  width: 300px;
  word-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .experience__address a span {
    font-size: 13px;
    line-height: 1.3846;
    width: 280px;
  }
}

.feature {
  min-width: 1170px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .feature {
    min-width: 100%;
    padding: 21px 0 100px;
  }
}

.feature__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .feature__title {
    font-size: 20px;
  }
}

.feature__tab {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .feature__tab {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
  }
}

.feature__contents {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .feature__contents {
    margin-top: 22px;
  }
}

.other .contents__item:nth-child(n+2) {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .other .contents__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.other__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.other__item {
  width: 100%;
  max-width: calc(25% - 15px);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .other__item {
    max-width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .other__item:nth-child(2n) {
    margin-right: 0;
  }
}

.other__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .other__item:nth-child(n+3) {
    margin-top: 15px;
  }
}

.other__item:nth-child(n+5) {
  margin-top: 20px;
}

.other__bg {
  background-color: #F6F6F6;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .other__bg {
    padding: 15px 0;
  }
}

.other__img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.other__img:before {
  content: "";
  display: block;
}

.other__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.other__title,
.other__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .other__title,
  .other__subtitle {
    font-size: 14px;
    letter-spacing: unset;
  }
}

.other__title {
  margin: 15px 0 0;
}
@media screen and (max-width: 767px) {
  .other__title {
    margin: 10px 0 0;
  }
}

.other__subtitle {
  margin-top: 5px;
}

.other__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .other__text {
    margin-top: 6px;
  }
}

.other__color1,
.other__color2 {
  margin-top: 20px;
}
h3 + .other__color1,
h3 + .other__color2 {
  margin-top: 5px;
}

.other__color1 img {
  width: 100%;
  max-width: 845px;
}

.other__color2 img {
  width: 100%;
  max-width: 500px;
}

.other__color1--w-auto {
  width: auto;
  max-width: 100%;
}

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tab li {
  color: rgba(3, 45, 62, .6);
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: calc(16.6666% - 1.6666px);
  margin-right: 2px;
  background-color: rgba(3, 45, 62, .1);
  padding: 16px 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tab li {
    font-size: 12px;
    max-width: calc(33.3333% - 0.6666px);
    margin-right: 1px;
    padding: 21px 0;
  }
}

.tab li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 2px);
  height: 1px;
  background-color: #002D3E;
}
@media screen and (max-width: 767px) {
  .tab li::after {
    width: calc(100% + 1px);
    background-color: #5E7883;
  }
}

@media screen and (max-width: 767px) {
  .tab li:nth-child(3n)::after {
    width: 100%;
  }
}

.tab li:last-child::after {
  width: 100%;
}

.tab li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .tab li:nth-child(3n) {
    margin-right: 0;
  }
}

.tab .tab-select {
  color: #fff;
  background-color: #032D3E;
  cursor: auto;
}

@media screen and (max-width: 767px) {
  .login__inner.inner {
    max-width: 640px;
  }
}

.login__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .login__head-title {
    font-size: 24px;
  }
}

.login__contents {
  width: 100%;
  max-width: 550px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .login__contents {
    margin: 20px auto 0;
  }
}

.login__lead {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.login__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .login__part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.login__part:nth-child(n+2) {
  margin-top: 20px;
}

.login__part-title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-top: 17px;
}
@media screen and (max-width: 767px) {
  .login__part-title {
    padding-top: 0;
  }
}

.login__input {
  width: 100%;
  max-width: 455px;
}
@media screen and (max-width: 767px) {
  .login__input {
    margin-top: 10px;
  }
}

.login__part input {
  color: #333;
  border: 1px solid #CCC;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 20px;
}
@media screen and (max-width: 767px) {
  .login__part input {
    font-size: 14px;
  }
}

.login__alert {
  color: #E63D30;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .login__alert {
    font-size: 14px;
  }
}

.login__alert-top {
  color: #E63D30;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .login__alert-top {
    font-size: 14px;
    text-align: unset;
  }
}

.login__checkbox {
  margin-top: 10px;
}

.login__checkbox-text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin-left: 27px;
  position: relative;
}

.login__checkbox-text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -27px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #999;
}

.login__checkbox-text::after {
  content: "";
  position: absolute;
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 10px;
  left: -21px;
  margin-top: -6px;
  opacity: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=checkbox]:checked + .login__checkbox-text::after {
  opacity: 1;
}

input[type=checkbox]:checked + .login__checkbox-text::before {
  background-color: #333;
  border: 1px solid #333;
}

.login__login-btn {
  margin-top: 20px;
  text-align: center;
}

.login__box {
  background-color: #F6F6F6;
  width: 100%;
  max-width: 740px;
  text-align: center;
  margin: 40px auto 0;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .login__box {
    text-align: unset;
    margin: 20px auto 0;
    padding: 20px;
  }
}

.login__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .login__title {
    line-height: 1.5;
  }
}

.login__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .login__text {
    line-height: 1.5;
  }
}

.login__registration-btn {
  margin-top: 20px;
  text-align: center;
}

.login__registration-btn a {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  color: #002D3E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #002D3E;
}

.page-login {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-login {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .logout__inner.inner {
    max-width: 640px;
  }
}

.logout__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .logout__text {
    text-align: unset;
  }
}

.logout__btn {
  margin-top: 20px;
}

.logout__btn a {
  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: 100%;
  max-width: 269px;
  margin: 0 auto;
  background-color: #032D3E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 23px 0;
}
@media screen and (max-width: 767px) {
  .logout__btn a {
    max-width: 166px;
    margin: unset;
    padding: 20px 0;
  }
}

.logout__btn a img {
  width: 6px;
  margin-left: 6px;
}

.page-logout {
  min-width: 1170px;
  padding: 80px 0 180px;
}
@media screen and (max-width: 767px) {
  .page-logout {
    min-width: 100%;
    padding: 60px 0 100px;
  }
}

.page-recommend {
  min-width: 1170px;
  margin: 64px 0 96px;
}
@media screen and (max-width: 767px) {
  .page-recommend {
    min-width: 100%;
    margin: 66px 0 100px;
  }
}

.page-recommend__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-recommend__title {
    font-size: 16px;
  }
}

.page-recommend__contents {
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-recommend__contents {
    padding-top: 27px;
  }
}

@media screen and (max-width: 767px) {
  .page-recommend__contents .top-slider__swiper-btn {
    top: -25px;
  }
}

.page-recommend__contents .top-slider__button-prev.swiper-button-prev,
.page-recommend__contents .top-slider__button-next.swiper-button-next {
  top: 40%;
}

.photo-search-results {
  min-width: 1170px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .photo-search-results {
    min-width: 100%;
    padding-top: 20px;
  }
}

.photo-search-results__head-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .photo-search-results__head-title {
    font-size: 24px;
  }
}

.photo-search-results__img {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .photo-search-results__img {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
  }
}

.photo-search-results__img:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.photo-search-results__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.photo-search-results__product {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .photo-search-results__product {
    margin-top: 20px;
  }
}

.photo-search-results__title {
  color: #333;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .photo-search-results__title {
    font-size: 16px;
  }
}

.photo-search-results__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .photo-search-results__items {
    margin-top: 20px;
  }
}

.photo-search-results .cards__item {
  width: 100%;
  max-width: calc(25% - 15px);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .photo-search-results .cards__item {
    max-width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .photo-search-results .cards__item:nth-child(2n) {
    margin-right: 0;
  }
}

.photo-search-results .cards__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .photo-search-results .cards__item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.photo-search-results .cards__item:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .photo-search-results .cards__item:nth-child(n+5) {
    margin-top: 20px;
  }
}

.photo-search-results .card__info {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .photo-search-results .card__info {
    padding-top: 8px;
  }
}

.photo-search-results .card__favorite-btn {
  position: absolute;
  top: 4px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .photo-search-results .card__favorite-btn {
    top: 125px;
    right: 3px;
  }
}

.photo-search-results .card__title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .photo-search-results .card__title {
    font-size: 14px;
  }
}

.photo-search-results__btn {
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .photo-search-results__btn {
    margin-top: 40px;
  }
}

.photo-search-results__btn a {
  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: 100%;
  max-width: 170px;
  margin-left: auto;
  margin-right: auto;
  padding: 17px 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #333;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .photo-search-results__btn a {
    padding: 12px 0;
  }
}

.photo-search-results__btn a svg {
  width: 16px;
  height: 14px;
  margin-right: 10px;
}

.photo-search-results__btn a svg g {
  fill: #333;
}

.page-photo {
  min-width: 1170px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-photo {
    min-width: 100%;
    padding: 17px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-photo__inner.inner {
    max-width: 640px;
  }
}

.page-photo__head-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-photo__head-title {
    font-size: 24px;
    line-height: 1.3333;
  }
}

.page-photo__sort-box {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .page-photo__sort-box {
    margin-top: 20px;
  }
}

.page-photo__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .page-photo__items {
    margin-top: 16px;
  }
}

.page-photo__item {
  width: 100%;
  max-width: calc(25% - 15px);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .page-photo__item {
    max-width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .page-photo__item:nth-child(2n) {
    margin-right: 0;
  }
}

.page-photo__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .page-photo__item:nth-child(n+3) {
    margin-top: 17px;
  }
}

.page-photo__item:nth-child(n+5) {
  margin-top: 17px;
}

.page-photo__img {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.page-photo__img:before {
  content: "";
  display: block;
  padding-top: 60%;
}
@media screen and (max-width: 767px) {
  .page-photo__img:before {
    padding-top: 60.1265%;
  }
}

.page-photo__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-photo__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .page-photo__link {
    font-size: 12px;
    margin-top: 11px;
  }
}
@media screen and (max-width: 374px) {
  .page-photo__link {
    font-size: 10px;
  }
}

.page-photo__link img {
  width: 6px;
  height: 12px;
  margin-bottom: 4px;
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .page-photo__link img {
    width: 4px;
    height: 9px;
    margin-bottom: 3px;
  }
}

.page-photo__img svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
}

.page-photo__pagination {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .page-photo__pagination {
    margin-top: 40px;
  }
}

.page-photo__modal-area {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.page-photo__modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
}

.page-photo__modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1210px;
  padding: 0 105px;
}
@media screen and (max-width: 767px) {
  .page-photo__modal-contents {
    top: 45.5%;
    padding: 0 21px;
  }
}

.page-photo__swiper-img {
  position: relative;
  width: 100%;
}

.page-photo__swiper-img:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.page-photo__swiper-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-photo__close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page-photo__close-modal {
    top: 12px;
    right: 15px;
  }
}

.close-modal__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: transparent;
}
.close-modal__line::before, .close-modal__line::after {
  position: absolute;
  display: block;
  width: inherit;
  height: inherit;
  background-color: #fff;
  content: "";
  top: 0;
  right: 0;
  pointer-events: none;
}

.close-modal__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.close-modal__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.page-photo__modal-area.is-show {
  visibility: visible;
  opacity: 1;
}

.page-photo__swiper-contents {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* 前へ次への矢印カスタマイズ */
@media screen and (max-width: 767px) {
  .page-photo__swiper-btn {
    position: absolute;
    bottom: -60px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

/* 前へ次への矢印カスタマイズ */
.page-photo__button-prev.swiper-button-prev,
.page-photo__button-next.swiper-button-next {
  height: 40px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .page-photo__button-prev.swiper-button-prev,
  .page-photo__button-next.swiper-button-next {
    position: unset;
    margin-top: 0;
  }
}

.page-photo__button-prev.swiper-button-prev {
  left: -80px;
}

.page-photo__button-next.swiper-button-next {
  right: -80px;
}
@media screen and (max-width: 767px) {
  .page-photo__button-next.swiper-button-next {
    margin-left: 10px;
  }
}

/* 前へ次への矢印カスタマイズ */
.page-photo__button-prev.swiper-button-prev:after,
.page-photo__button-next.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

/* 前への矢印カスタマイズ */
.page-photo__button-prev.swiper-button-prev:after {
  background-image: url(../images/prev-btn-white.svg); /* DDS修正 */
}

/* 次への矢印カスタマイズ */
.page-photo__button-next.swiper-button-next:after {
  background-image: url(../images/next-btn-white.svg); /* DDS修正 */
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-registration {
  min-width: 1170px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-registration {
    min-width: 100%;
    padding: 20px 0 100px;
  }
}

.page-registration__btn {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-registration__btn {
    margin-top: 30px;
  }
}

.page-registration__btn input[type=submit][disabled] {
  background-color: #F6F6F6;
  color: #999;
  cursor: default;
}
.page-registration__btn input[type=submit][disabled]:hover {
  opacity: 1;
}

.terms {
  width: 100%;
  max-width: 930px;
  margin: 40px auto 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  .terms {
    margin: 20px auto 0;
  }
}

.terms__head-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.terms__head-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  margin-top: 10px;
}

.terms__contents {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #707070;
  height: 400px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .terms__contents {
    margin-top: 10px;
    padding: 15px;
    height: 300px;
  }
}

.terms__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .terms__title {
    font-size: 20px;
  }
}

.terms__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  margin-top: 20px;
}

.terms__text a {
  text-decoration: underline;
}

.terms__items {
  margin-top: 40px;
}

.terms__item:nth-child(n+2) {
  margin-top: 40px;
}

.terms__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.terms__item-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  margin-top: 20px;
}

.terms__item-text a {
  text-decoration: underline;
}

.terms__item-lists {
  counter-reset: section;
  margin-top: 20px;
}

.terms__item-list {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  padding-left: 46px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .terms__item-list {
    padding-left: 36px;
  }
}

.terms__item-list::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .terms__item-list::before {
    left: 10px;
  }
}

.terms__table {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #CCC;
  border-spacing: 0;
}

.terms__table-item:nth-child(n+2) th,
.terms__table-item:nth-child(n+2) td {
  border-top: 1px solid #CCC;
}

.terms__table-item th {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  vertical-align: top;
  width: 21.3%;
  border-right: 1px solid #CCC;
  padding: 7px 10px;
}
@media screen and (max-width: 767px) {
  .terms__table-item th {
    font-size: 14px;
    line-height: 1.571;
    min-width: 142px;
  }
}

.terms__table-item td {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  width: 78.7%;
  padding: 7px 20px;
}
@media screen and (max-width: 767px) {
  .terms__table-item td {
    font-size: 14px;
    line-height: 1.571;
  }
}

.terms__end {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  margin-top: 40px;
}

.terms__checkbox {
  text-align: center;
  margin-top: 22px;
}

.terms__checkbox-text {
  font-size: 16px;
  font-weight: 500;
  margin-left: 27px;
  position: relative;
}

.terms__checkbox-text::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -27px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #999;
}

.terms__checkbox-text::after {
  content: "";
  position: absolute;
  display: block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 10px;
  left: -21px;
  margin-top: -6px;
  opacity: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=checkbox]:checked + .terms__checkbox-text::after {
  opacity: 1;
}

input[type=checkbox]:checked + .terms__checkbox-text::before {
  background-color: #333;
  border: 1px solid #333;
}

.search-results-zero {
  width: 100%;
  max-width: 740px;
  margin: 60px auto 0;
}

.search-results-zero__text {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 767px) {
  .search-results-zero__text {
    font-size: 14px;
  }
}

.search-results-zero__tips {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .search-results-zero__tips {
    margin-top: 40px;
  }
}

.search-results-zero__title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .search-results-zero__title {
    font-size: 14px;
  }
}

.search-results-zero__items {
  margin-top: 15px;
}

.search-results-zero__item {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .search-results-zero__item {
    font-size: 14px;
    line-height: 1.57;
  }
}

.search-results-zero__item a {
  text-decoration: underline;
}

.search-results-card {
  position: relative;
  border-bottom: 1px solid #ccc;
}

.search-results-card:nth-child(15n+1) {
  border-top: 1px solid #ccc;
}

.search-results-card a {
  display: block;
  height: 100%;
}

.search-results-card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .search-results-card__contents {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.search-results-card__img {
  position: relative;
  width: 14.9107%;
}
@media screen and (max-width: 767px) {
  .search-results-card__img {
    width: 29.85%;
  }
}

.search-results-card__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.search-results-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.search-results-card__info {
  width: 83.3035%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .search-results-card__info {
    width: 64.4776%;
  }
}

.search-results-card__title {
  color: #333;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4705;
}
@media screen and (max-width: 767px) {
  .search-results-card__title {
    font-size: 14px;
    line-height: 1.5714;
  }
}

.search-results-card__text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .search-results-card__text {
    font-size: 13px;
    line-height: 1.6153;
    margin-top: 4px;
  }
}

.search-results {
  min-width: 1170px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .search-results {
    min-width: 100%;
    padding: 22px 0 100px;
  }
}

.search-results__title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  max-width: 1214px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .search-results__title {
    font-size: 20px;
    padding: 0 6px;
  }
}

.search-results__text {
  color: #666;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .search-results__text {
    font-size: 15px;
    margin-top: 11px;
  }
}

.search-results__text span {
  color: #333;
  font-size: 22px;
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  .search-results__text span {
    font-size: 18px;
  }
}

.search-results__sort {
  margin-top: 21px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .search-results__sort {
    margin-top: 16px;
  }
}

.search-results__items {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .search-results__items {
    margin-top: 15px;
  }
}

.search-results__pagination {
  margin-top: 42px;
}

.series-new {
  min-width: 1170px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .series-new {
    min-width: 100%;
    padding-bottom: 101px;
    margin-top: 10px;
  }
}

.series-new__terms {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .series-new__terms {
    font-size: 14px;
    margin: 0 0 15px;
  }
}

.series-new__terms-title {
  margin-right: 14px;
}

.series-new__content:nth-child(n+2) {
  margin-top: 20px;
}

.series-new__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4166;
  padding: 18px 20px;
  background-color: #F6F6F6;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .series-new__title {
    font-size: 16px;
    line-height: 1.375;
    padding: 16px 15px;
  }
}

.series-new__title span {
  width: 95.5473%;
}
@media screen and (max-width: 767px) {
  .series-new__title span {
    width: 87.7887%;
  }
}

.series-new__title img {
  width: 10px;
}
@media screen and (max-width: 767px) {
  .series-new__title img {
    width: 8px;
  }
}

.series-new__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .series-new__text {
    font-size: 14px;
  }
}

.series-new__text.is-open {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .series-new__text.is-open {
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.series-new__more-btn {
  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: 100%;
  max-width: 250px;
  margin: 60px auto 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  background-color: #F6F6F6;
  padding: 23px 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.series-new__more-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .series-new__more-btn {
    max-width: 216px;
    margin: 40px auto 0;
    padding: 18px 0;
  }
}

.series-new__more-btn img {
  width: 6px;
  margin-left: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.more-list {
  margin: 0 0 30px;
  max-width: 500px;
}

.more-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.more-list li {
  width: 32%;
  height: 60px;
  background-color: #BDBDBD;
  list-style: none;
  margin: 0 0 10px;
}

.more-list li:nth-child(3n-1) {
  margin: 0 1%;
}

.more-btn {
  background-color: black;
  color: #fff;
  padding: 10px;
  margin: 0 auto;
  width: 200px;
  text-align: center;
}

.more-btn:hover {
  cursor: pointer;
}

.compatible {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .compatible {
    margin: 40px calc(50% - 50vw) 0;
    width: 100vw;
    padding-top: 26px;
  }
}

@media screen and (max-width: 767px) {
  .compatible__inner {
    padding: 0 20px;
  }
}

.compatible__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .compatible__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .compatible__contents .top-slider__swiper-btn {
    top: -20px;
  }
}

.series-head {
  min-width: 1170px;
  padding: 40px 0 20px;
}
@media screen and (max-width: 767px) {
  .series-head {
    min-width: 100%;
    padding: 20px 0;
  }
}

.series-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .series-head__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.series-head__info {
  width: 100%;
  max-width: 455px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .series-head__info {
    max-width: 685px;
    margin-left: auto;
    margin-right: auto;
  }
}

.series-head__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3846;
  padding-right: 95px;
}
@media screen and (max-width: 767px) {
  .series-head__title {
    font-size: 24px;
    line-height: 1.3333;
    padding-right: 60px;
  }
}

.series-head__text {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .series-head__text {
    line-height: 1.3125;
    margin-top: 10px;
  }
}

.series-head__btn-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 18px;
}

.series-head__btn-item {
  width: 50%;
}

.series-head__btn-item:nth-child(odd) {
  border-right: 1.5px solid #fff;
}

.series-head__btn-item:nth-child(n+3) {
  border-top: 1.5px solid #fff;
}

.series-head__btn-item a {
  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: #002D3E;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 0;
  -webkit-box-shadow: 0 0 31px rgba(0, 0, 0, .09);
          box-shadow: 0 0 31px rgba(0, 0, 0, .09);
}
@media screen and (max-width: 767px) {
  .series-head__btn-item a {
    padding: 20px 0;
  }
}

.series-head__btn-item a img {
  width: 6px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .series-head__btn-item a img {
    margin-left: 5px;
  }
}

.series-head__btn-item a[target=_blank] img {
  width: 11px;
}

.series-head__favorite-btn,
.series-head__favorite-btn svg {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .series-head__favorite-btn,
  .series-head__favorite-btn svg {
    width: 30px;
    height: 30px;
  }
}

.series-head__favorite-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.series-head__swiper-box {
  width: 100%;
  max-width: 645px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .series-head__swiper-box {
    margin: 20px calc(50% - 50vw) 0;
    width: 100vw;
    max-width: 685px;
  }
}

.series-head__swiper.swiper {
  z-index: 0;
}

.series-head__swiper-img {
  position: relative;
}

.series-head__swiper-img:before {
  content: "";
  display: block;
  padding-top: 62.4806%;
}
@media screen and (max-width: 767px) {
  .series-head__swiper-img:before {
    padding-top: 70.6666%;
  }
}

.series-head__swiper-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.series-head__swiper-btn {
  position: relative;
  width: 100%;
  max-width: 165px;
  margin: -39px auto 16px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .series-head__swiper-btn {
    max-width: 143px;
    margin: 15px auto 0;
  }
}

/* ページネーションカスタマイズ */
.series-head__pagination.swiper-horizontal > .swiper-pagination-bullets,
.series-head__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #000;
  opacity: unset;
}

.series-head__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7.5px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #000;
}

/* 前へ次への矢印カスタマイズ */
.series-head__button-next.swiper-button-next,
.series-head__button-prev.swiper-button-prev {
  top: unset;
  bottom: -10px;
  width: 7px;
}

.series-head__button-next.swiper-button-next {
  right: 0;
}

.series-head__button-prev.swiper-button-prev {
  left: -15px;
}
@media screen and (max-width: 767px) {
  .series-head__button-prev.swiper-button-prev {
    left: -17px;
  }
}

.series-head__button-prev.swiper-button-prev:after,
.series-head__button-next.swiper-button-next:after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
}

.series-head__button-prev.swiper-button-prev:after {
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  -webkit-transform: translateX(75%) rotate(45deg);
          transform: translateX(75%) rotate(45deg);
}

.series-head__button-next.swiper-button-next:after {
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateX(75%) rotate(-45deg);
          transform: translateX(75%) rotate(-45deg);
}

.slideNone .series-head__swiper-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .slideNone .series-head {
    padding: 20px 0 54px;
  }
}

.series-head__switching-btn {
  margin-top: 20px;
}

.series-head__switching-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 6px;
  border: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .series-head__switching-btn a {
    max-width: 336px;
    margin: 40px auto 0;
    padding: 13px 6px;
  }
}

.series-head__switching-btn a img {
  width: 6px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .series-head__switching-btn a img {
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .series-head__slider-btn-position {
    position: relative;
    padding-bottom: 52px;
  }
}
.series-head__slider-btn-position .top-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.series-head__slider-bottom {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .series-head__slider-bottom {
    position: absolute;
    left: 20px;
    bottom: 0;
  }
}

.anchorLink {
  min-width: 1170px;
  height: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .anchorLink {
    min-width: 100%;
    height: 140px;
    margin-top: 62px;
  }
}

.anchorLink__inner.inner {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .anchorLink__inner.inner {
    max-width: 640px;
  }
}

.anchorLink__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: inherit;
}

.anchorLink__item {
  width: 25%;
  height: inherit;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .anchorLink__item {
    width: 50%;
    height: 50%;
  }
}

.anchorLink__item:last-child {
  border-right: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .anchorLink__item:nth-child(2) {
    border-right: 1px solid #333;
  }
}

@media screen and (max-width: 767px) {
  .anchorLink__item:nth-child(n+3) {
    border-top: none;
  }
}

.anchorLink__item a {
  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: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .anchorLink__item a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    font-size: 12px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

.anchorLink__item a img {
  width: 6px;
  height: 12px;
  margin-left: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .anchorLink__item a img {
    margin-left: 2px;
  }
}

.top-award {
  min-width: 1170px;
  background: -webkit-gradient(linear, left top, right top, from(#F5F5F5), color-stop(40%, #F5F5F5), color-stop(40%, transparent), to(transparent));
  background: linear-gradient(90deg, #F5F5F5 0%, #F5F5F5 40%, transparent 40%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .top-award {
    min-width: 100%;
  }
}

.award__inner {
  padding: 130px 25px 97px;
  background: -webkit-gradient(linear, left top, right top, from(#F5F5F5), color-stop(89.7435%, #F5F5F5), color-stop(89.7435%, transparent), to(transparent));
  background: linear-gradient(90deg, #F5F5F5 0%, #F5F5F5 89.7435%, transparent 89.7435%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .award__inner {
    padding: 60px 20px 55px;
    background: -webkit-gradient(linear, left top, right top, from(#F5F5F5), color-stop(84%, #F5F5F5), color-stop(84%, transparent), to(transparent));
    background: linear-gradient(90deg, #F5F5F5 0%, #F5F5F5 84%, transparent 84%, transparent 100%);
  }
}

.award__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .award__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.award__item {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .award__item {
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .award__item:nth-child(n+2) {
    margin-top: 35px;
  }
}

.award__img {
  position: relative;
  width: 100%;
}

.award__img:before {
  content: "";
  display: block;
  padding-top: 64.2857%;
}
@media screen and (max-width: 767px) {
  .award__img:before {
    padding-top: 64.1791%;
  }
}

.award__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.award__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .award__title {
    font-size: 18px;
    margin-top: 15px;
  }
}

.award__title::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
}

.award__text {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  width: 502px;
  margin-top: 10px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .award__text {
    font-size: 14px;
    line-height: 1.7142;
    width: 100%;
    margin-top: 11px;
    padding-left: 0;
  }
}

.newProduct {
  min-width: 1170px;
  margin-top: 81px;
  margin-top: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .newProduct {
    min-width: 100%;
    margin-top: 3.8125rem;
  }
}

.newProduct__bg {
  background-color: rgba(3, 45, 62, .1);
}

.quickDelivery {
  min-width: 1170px;
  margin-top: 81px;
  margin-top: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .quickDelivery {
    min-width: 100%;
    margin-top: 3.8125rem;
  }
}

.top-quickDelivery__bg {
  background-color: #F6F6F6;
}

@media screen and (max-width: 767px) {
  .quickDelivery-header-position {
    position: relative;
  }
}
.quickDelivery-header-position .top-section-header1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .quickDelivery-header-position .top-section-header1 {
    display: block;
  }
}
.quickDelivery-header-position .top-section-header1__title,
.quickDelivery-header-position .series-head__switching-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .quickDelivery-header-position .top-slider__contents {
    position: unset;
  }
}
@media screen and (max-width: 767px) {
  .quickDelivery-header-position .top-slider__swiper-btn {
    top: -6px;
    right: 20px;
  }
}

.recentlyChecked {
  min-width: 1170px;
  margin-top: 81px;
  margin-top: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .recentlyChecked {
    min-width: 100%;
    margin-top: 3.8125rem;
  }
}

.recentlyChecked__bg {
  background-color: rgba(3, 45, 62, .1);
}

.select {
  min-width: 1170px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .select {
    min-width: 100%;
    margin-top: 60px;
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .select__inner.inner {
    max-width: 640px;
  }
}

.select__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .select__items {
    margin-top: 30px;
  }
}

.select__item {
  width: 100%;
  max-width: calc(33.3% - 13.3333px);
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .select__item {
    max-width: 600px;
    margin: 0 auto;
    background-color: #F5F5F5;
  }
}

.select__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .select__item:nth-child(3n) {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .select__item:nth-child(n+2) {
    margin-top: 10px;
  }
}

.select__item:nth-child(n+4) {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .select__item:nth-child(n+4) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .select__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.select__img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .select__img {
    max-width: 94px;
  }
}

.select__img:before {
  content: "";
  display: block;
  padding-top: 60%;
}
@media screen and (max-width: 767px) {
  .select__img:before {
    padding-top: 74.468%;
  }
}

.select__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.select__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .select__title {
    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;
    width: 100%;
    margin-top: 0;
    margin-left: 10px;
    padding-right: 21px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.select__title img {
  width: 6px;
  height: 12px;
  margin-left: 5px;
  margin-bottom: 4px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .select__title img {
    margin-left: 2px;
  }
}

.slider-card__img {
  position: relative;
  width: 100%;
}

.slider-card__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.slider-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .slider-card__title {
    font-size: 14px;
    line-height: 1.5714;
    margin-top: 6px;
  }
}

.slider-card__title img {
  width: 6px;
  height: 12px;
  margin-left: 5px;
  margin-bottom: 4px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .slider-card__title img {
    margin-left: 2px;
  }
}

.slider-card__text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142;
}
@media screen and (max-width: 767px) {
  .slider-card__text {
    font-size: 13px;
    line-height: 1.6153;
  }
}

.top-mv {
  min-width: 1170px;
}
@media screen and (max-width: 767px) {
  .top-mv {
    min-width: 100%;
  }
}

.top-mv a {
  display: block;
  width: 100%;
  height: 100%;
}

.top-mv__img {
  position: relative;
  width: 100%;
  min-width: 1170px;
}
@media screen and (max-width: 767px) {
  .top-mv__img {
    min-width: 100%;
  }
}

.top-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-mv__swiper-btn {
  position: relative;
  width: 100%;
  max-width: 165px;
  margin: -59px 40px 35px auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__swiper-btn {
    max-width: 143px;
    margin: -39px auto 16px;
  }
}

/* ページネーションカスタマイズ */
.top-mv__pagination.swiper-horizontal > .swiper-pagination-bullets,
.top-mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #000;
  opacity: unset;
}

.top-mv__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7.5px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #000;
}

/* 前へ次への矢印カスタマイズ */
.top-mv__button-next.swiper-button-next,
.top-mv__button-prev.swiper-button-prev {
  top: unset;
  bottom: -10px;
  width: 7px;
}

.top-mv__button-next.swiper-button-next {
  right: 12px;
}
@media screen and (max-width: 767px) {
  .top-mv__button-next.swiper-button-next {
    right: 0;
  }
}

.top-mv__button-prev.swiper-button-prev {
  left: -7px;
}
@media screen and (max-width: 767px) {
  .top-mv__button-prev.swiper-button-prev {
    left: -17px;
  }
}

.top-mv__button-prev.swiper-button-prev:after,
.top-mv__button-next.swiper-button-next:after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
}

.top-mv__button-prev.swiper-button-prev:after {
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  -webkit-transform: translateX(75%) rotate(45deg);
          transform: translateX(75%) rotate(45deg);
}

.top-mv__button-next.swiper-button-next:after {
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateX(75%) rotate(-45deg);
          transform: translateX(75%) rotate(-45deg);
}

.slideNone .top-mv__swiper-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .slideNone .top-mv {
    padding: 20px 0 54px;
  }
}

.top-other {
  margin-bottom: 100px;
}

.top-other .select__title img {
  width: 15px;
  height: 12.13px;
  margin-left: 4px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .top-other .select__title img {
    margin-left: 2px;
    margin-bottom: 0;
  }
}

.top-recommend {
  min-width: 1170px;
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .top-recommend {
    min-width: 100%;
    margin-top: 62px;
  }
}

.top-recommend__bg {
  background-color: #F6F6F6;
}

.top-section-header1 {
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-section-header1 {
    padding-bottom: 27px;
  }
}

.top-section-header1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 84px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .top-section-header1::after {
    width: 99px;
  }
}

.top-section-header1__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-section-header1__title {
    font-size: 22px;
  }
}

.top-section-header1__sub {
  display: block;
  font-size: 14px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top-section-header1__sub {
    font-size: 12px;
    padding: 20px 0 0;
  }
}

.top-section-header1-fx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-section-header1-fx {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top-section-header1-fx.top-section-header1 {
    padding-bottom: 15px;
  }
}
.top-section-header1-fx .top-section-header1__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-section-header2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-section-header2__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-section-header2__title {
    font-size: 24px;
  }
}

.top-section-header2 span {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .top-section-header2 span {
    font-size: 14px;
    margin-left: 10px;
  }
}

.top-slider__contents {
  padding: 40px 0 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-slider__contents {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .top-slider__swiper.swiper {
    margin-right: calc(50% - 50vw);
  }
}

/* 前へ次への矢印カスタマイズ */
@media screen and (max-width: 767px) {
  .top-slider__swiper-btn {
    position: absolute;
    top: -50px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 29px;
  }
}

/* 前へ次への矢印カスタマイズ */
.top-slider__button-prev.swiper-button-prev,
.top-slider__button-next.swiper-button-next {
  height: 40px;
  width: 40px;
  top: 37%;
}
@media screen and (max-width: 767px) {
  .top-slider__button-prev.swiper-button-prev,
  .top-slider__button-next.swiper-button-next {
    position: unset;
    height: 29px;
    width: 29px;
    margin-top: 0;
  }
}

.top-slider__button-prev.swiper-button-prev {
  left: -20px;
}

.top-slider__button-next.swiper-button-next {
  right: -20px;
}
@media screen and (max-width: 767px) {
  .top-slider__button-next.swiper-button-next {
    margin-left: 10px;
  }
}

/* 前へ次への矢印カスタマイズ */
.top-slider__button-prev.swiper-button-prev:after,
.top-slider__button-next.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .top-slider__button-prev.swiper-button-prev:after,
  .top-slider__button-next.swiper-button-next:after {
    height: 29px;
    width: 29px;
  }
}

/* 前への矢印カスタマイズ */
.top-slider__button-prev.swiper-button-prev:after {
  background-image: url(../images/prev-btn.svg); /* DDS修正 */
}

/* 次への矢印カスタマイズ */
.top-slider__button-next.swiper-button-next:after {
  background-image: url(../images/next-btn.svg); /* DDS修正 */
}