@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  line-height: 1.15;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0;
  font-weight: normal;
}

p + p {
  margin-top: 1rem;
}

a {
  background-color: transparent;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  line-height: inherit;
  border: 1px solid currentColor;
}

button {
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

input {
  overflow: visible;
}

input,
textarea {
  padding: 1px;
}

fieldset {
  border: 1px solid currentColor;
  margin: 0 2px;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=color] {
  background: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

dl,
ol,
ul {
  margin: 0;
}

ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  text-indent: 0;
  border-color: inherit;
}

details {
  display: block;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

em {
  font-style: normal;
}

/* フォント
==========================================================*/
/* Breakpoints
==========================================================*/
header {
  position: absolute;
}
header .branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  header .branding {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    padding: 10px 10px 0 10px;
  }
}
@media screen and (min-width: 768px), print {
  header .branding {
    padding: 20px 30px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .branding .logo {
  display: block;
}
@media screen and (max-width: 767.98px) {
  header .branding .logo {
    width: 170px;
  }
}
header .branding .title {
  font-size: var(--fz12);
}

footer {
  text-align: center;
  padding: 10px;
}
footer small {
  font-size: var(--fz12);
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#F67C8C), to(#67C5F9));
  background-image: linear-gradient(to right, #F67C8C, #67C5F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.arrow_btn {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
}

.arrow_btn::before,
.arrow_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow_01::before {
  width: 20px;
  height: 20px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* JavaScriptを使わないポップアップ */
#popup {
  display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer;
}

.popup-overlay {
  display: none;
}

#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 90vw;
  max-width: 560px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  left: -19px;
}

/* 画像を丸く表示 */
.mask {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  z-index: 0;
}

.mask2 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5%;
  overflow: hidden;
  z-index: 0;
}

/* swiper */
.swiper.type2 .slide {
  overflow: hidden;
  width: 10rem;
  border-radius: 3px;
  background-color: #ffffff;
  padding: 10px;
}
@media screen and (max-width: 767.98px) {
  .swiper.type2 .slide {
    width: 12rem;
  }
}
@media screen and (min-width: 768px), print {
  .swiper.type2 .slide {
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
}
@media screen and (min-width: 768px), print {
  .swiper.type2 .slide img {
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
}

/* リンクをつけたら有効にする
@include mq(tab){
    .swiper.type2:hover .slide:not(:hover) {
        opacity: 0.3;
    }
}
*/
#lp_ginza_en section {
  background-repeat: no-repeat;
  background-position: center 0;
}
#lp_ginza_en h2.title {
  color: #333333;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en h2.title {
    font-size: var(--fz32);
    margin-bottom: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en h2.title {
    font-size: var(--fz42);
    width: 920px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }
}
#lp_ginza_en .main_visual {
  background-image: url("../images/lp_ginza_en/main_visual_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents {
    padding-top: 100px;
    padding-bottom: 110px;
  }
}
#lp_ginza_en .main_visual .contents .currency_conversion_box {
  position: fixed;
  z-index: 9999;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .currency_conversion_box {
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .currency_conversion_box {
    right: 15px;
    top: 15px;
  }
}
#lp_ginza_en .main_visual .contents .currency_conversion_box li.currency_select_wrapper {
  position: relative;
  display: inline-block;
}
#lp_ginza_en .main_visual .contents .currency_conversion_box li.currency_select_wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background-color: #C5C5C5;
}
#lp_ginza_en .main_visual .contents .currency_conversion_box li.currency_select_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#lp_ginza_en .main_visual .contents .currency_conversion_box li.currency_select_wrapper .currency_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #C5C5C5;
  line-height: 1;
  border-radius: 3px;
  padding: 15px 40px 15px 50px;
  color: #333333;
  font-size: var(--fz16);
}
#lp_ginza_en .main_visual .contents .first_view {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .first_view {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .first_view {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .first_view img {
    width: 90%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .first_view img {
    width: 920px;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary {
    width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li {
    width: 90%;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li.first {
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li.first {
    margin-right: auto;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li.first .photo img {
    border-radius: 0 12px 12px 0;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li.first .set .price {
  padding-right: 10px;
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li.first .set .name {
  padding-right: 10px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li.second {
    margin-left: auto;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li.second .photo img {
    border-radius: 12px 0 0 12px;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li.second .set .price {
  padding-left: 10px;
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li.second .set .name {
  padding-left: 10px;
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li .photo {
  position: relative;
  z-index: 1;
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li .photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .photo img {
    width: 400px;
    height: 400px;
    border-radius: 12px;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set {
    margin-top: -75px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set {
    margin-top: -80px;
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .price {
  color: #FFF;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .price {
    font-size: var(--fz32);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .price {
    font-size: var(--fz36);
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .price span {
    font-size: var(--fz22);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .price span {
    font-size: var(--fz30);
  }
}
#lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .name {
  color: #FFF;
  padding-top: 5px;
  margin-top: 5px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .name {
    font-size: var(--fz14);
    border-top: 1px solid #FFF;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .main_visual .contents .fine_jewelry_primary li .set .name {
    font-size: var(--fz18);
  }
}
#lp_ginza_en .affordable_jewelry {
  background-image: url("../images/lp_ginza_en/affordable_jewelry_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .affordable_jewelry .contents {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .affordable_jewelry .contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#lp_ginza_en .affordable_jewelry .contents .title span {
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .affordable_jewelry .contents .title span {
    font-size: var(--fz28);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .affordable_jewelry .contents .title span {
    font-size: var(--fz38);
  }
}
#lp_ginza_en .affordable_jewelry .contents .primary {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .affordable_jewelry .contents .primary {
    width: 90%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .affordable_jewelry .contents .primary {
    width: 760px;
  }
}
#lp_ginza_en .affordable_jewelry .contents .primary li {
  background-color: #FFF;
  border-radius: 6px;
  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: 767.98px) {
  #lp_ginza_en .affordable_jewelry .contents .primary li {
    font-size: var(--fz16);
    min-height: 90px;
    gap: 0.5em;
    padding-left: 0.5em;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .affordable_jewelry .contents .primary li {
    font-size: var(--fz24);
    min-height: 130px;
    gap: 1em;
    padding-left: 1em;
  }
}
#lp_ginza_en .affordable_jewelry .contents .primary li::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .affordable_jewelry .contents .primary li::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .affordable_jewelry .contents .primary li::before {
    width: 70px;
    height: 70px;
  }
}
#lp_ginza_en .affordable_jewelry .contents .primary li + li {
  margin-top: 10px;
}
#lp_ginza_en .affordable_jewelry .contents .primary li.import::before {
  background-image: url("../images/lp_ginza_en/affordable_jewelry_icon_import.svg");
}
#lp_ginza_en .affordable_jewelry .contents .primary li.no::before {
  background-image: url("../images/lp_ginza_en/affordable_jewelry_icon_no.svg");
}
#lp_ginza_en .affordable_jewelry .contents .primary li.discounts::before {
  background-image: url("../images/lp_ginza_en/affordable_jewelry_icon_discounts.svg");
}
#lp_ginza_en .affordable_jewelry .contents .primary li.global::before {
  background-image: url("../images/lp_ginza_en/affordable_jewelry_icon_global.svg");
}
#lp_ginza_en .natural {
  background-image: url("../images/lp_ginza_en/natural_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .natural .contents {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .natural .contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#lp_ginza_en .natural .contents > .title {
  color: #333333;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .natural .contents > .title {
    font-size: var(--fz32);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .natural .contents > .title {
    font-size: var(--fz42);
    margin-left: 18vw;
  }
}
#lp_ginza_en .natural .contents .primary {
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/lp_ginza_en/natural_icon_no_lab.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .natural .contents .primary {
    width: 90%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 235px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .natural .contents .primary {
    width: 760px;
    height: 280px;
  }
}
#lp_ginza_en .natural .contents .primary .text {
  line-height: 1.7;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .natural .contents .primary .text {
    font-size: var(--fz20);
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .natural .contents .primary .text {
    font-size: var(--fz24);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
#lp_ginza_en .natural .contents .primary .text b {
  text-decoration: underline;
  font-weight: bold;
}
#lp_ginza_en .best_sellers {
  background-image: url("../images/lp_ginza_en/best_sellers_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#lp_ginza_en .best_sellers .contents .swiper_set {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents .swiper_set {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents .swiper_set {
    width: 900px;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents .swiper_set li {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents .swiper_set li {
    width: 23%;
  }
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFF;
  border-radius: 6px;
  padding: 20px 10px 50px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .photo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .photo img {
    width: 100%;
    height: auto;
  }
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .category {
  font-size: var(--fz20);
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .material {
  font-size: var(--fz16);
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-wrapper .swiper-slide .price {
  font-size: var(--fz16);
  margin-top: 5px;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-pagination {
  position: absolute;
  left: auto !important;
  right: 10px;
  bottom: 10px;
  text-align: right;
  width: auto;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #F67C8C;
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-next,
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-prev {
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-next,
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-prev {
    top: 40%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-next,
  #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-prev {
    top: 140px;
  }
}
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-next::before, #lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-next::after,
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-prev::before,
#lp_ginza_en .best_sellers .contents .swiper_set li .swiper-container .swiper-button-prev::after {
  font-size: var(--fz18);
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide img {
    width: 100%;
    height: auto;
  }
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide .slide-content .material {
  font-size: var(--fz14);
  margin-top: 10px;
  line-height: 1.3;
  min-height: 2.6em;
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide .slide-content .price {
  font-size: var(--fz16);
  text-align: right;
}
#lp_ginza_en .best_sellers .contents .swiper.type2 .swiper-wrapper .swiper-slide .slide .slide-content .price span {
  font-size: var(--fz14);
}
#lp_ginza_en .best_sellers h3.title {
  color: #333333;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .best_sellers h3.title {
    font-size: var(--fz28);
    margin-top: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .best_sellers h3.title {
    font-size: var(--fz38);
    margin-top: 80px;
    margin-left: 18vw;
  }
}
#lp_ginza_en .faq {
  background-image: url("../images/lp_ginza_en/faq_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .faq .contents {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .faq .contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#lp_ginza_en .faq .contents .primary {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .faq .contents .primary {
    width: 90%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .faq .contents .primary {
    width: 760px;
  }
}
#lp_ginza_en .faq .contents .primary ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
#lp_ginza_en .faq .contents .primary ul li .question,
#lp_ginza_en .faq .contents .primary ul li .answer {
  border-radius: 6px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .faq .contents .primary ul li .question,
  #lp_ginza_en .faq .contents .primary ul li .answer {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .faq .contents .primary ul li .question,
  #lp_ginza_en .faq .contents .primary ul li .answer {
    padding: 10px 25px;
  }
}
#lp_ginza_en .faq .contents .primary ul li .question p,
#lp_ginza_en .faq .contents .primary ul li .answer p {
  font-size: var(--fz16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .faq .contents .primary ul li .question p::before,
  #lp_ginza_en .faq .contents .primary ul li .answer p::before {
    font-size: var(--fz24);
    margin-right: 10px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .faq .contents .primary ul li .question p::before,
  #lp_ginza_en .faq .contents .primary ul li .answer p::before {
    font-size: var(--fz32);
    margin-right: 20px;
  }
}
#lp_ginza_en .faq .contents .primary ul li .question {
  background-color: #FFF;
}
#lp_ginza_en .faq .contents .primary ul li .question p::before {
  content: "Q";
  color: #F67C8C;
}
#lp_ginza_en .faq .contents .primary ul li .answer {
  margin-top: 10px;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0.4);
}
#lp_ginza_en .faq .contents .primary ul li .answer p::before {
  content: "A";
  color: #67C5F9;
}
#lp_ginza_en .faq .contents .primary ul li .answer b {
  font-weight: bold;
  text-decoration: underline;
}
#lp_ginza_en .shop_guide {
  background-image: url("../images/lp_ginza_en/shop_guide_background.png");
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#lp_ginza_en .shop_guide .contents .primary {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents .primary {
    width: 90%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents .primary {
    width: 760px;
  }
}
#lp_ginza_en .shop_guide .contents .primary .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents .primary .set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_photo {
    width: 380px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_photo img {
    border-radius: 6px 6px 0 0;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_photo img {
    border-radius: 6px;
  }
}
#lp_ginza_en .shop_guide .contents .primary .set .shop_details {
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_details {
    border-radius: 0 0 6px 6px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    border-radius: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#lp_ginza_en .shop_guide .contents .primary .set .shop_details .name {
  font-size: var(--fz20);
  font-weight: bold;
}
#lp_ginza_en .shop_guide .contents .primary .set .shop_details .address {
  font-size: var(--fz16);
  background: -webkit-gradient(linear, left top, right top, from(#FFD1D7), to(#C4EAFF));
  background: linear-gradient(to right, #FFD1D7, #C4EAFF);
  border-radius: 6px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_details .address {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .contents .primary .set .shop_details .address {
    padding: 10px 20px;
  }
}
#lp_ginza_en .shop_guide .contents .primary .set .shop_details .tel {
  font-size: var(--fz16);
}
#lp_ginza_en .shop_guide .contents .primary .set .shop_details .business_hours {
  font-size: var(--fz16);
}
#lp_ginza_en .shop_guide #map {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide #map {
    height: 260px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide #map {
    height: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#lp_ginza_en .shop_guide .access details {
  /* デフォルト矢印を完全に消す（ブラウザ依存対策） */
  /* 疑似要素で「く」っぽい線をCSSで描く */
  /* details が open のとき（開いた後） */
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .access details {
    width: 760px;
  }
}
#lp_ginza_en .shop_guide .access details summary {
  border: 2px solid #FFF;
  color: #FFF;
  list-style: none;
  cursor: pointer;
  position: relative;
  text-align: center;
  border-radius: 12px;
  padding-top: 22px;
  padding-bottom: 22px;
}
#lp_ginza_en .shop_guide .access details summary:hover {
  opacity: 0.8;
}
#lp_ginza_en .shop_guide .access details summary::-webkit-details-marker {
  display: none;
}
#lp_ginza_en .shop_guide .access details summary::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}
#lp_ginza_en .shop_guide .access details[open] summary::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
#lp_ginza_en .shop_guide .access details.jr summary {
  background-color: #F67C8C;
}
#lp_ginza_en .shop_guide .access details.metro summary {
  background-color: #67C5F9;
}
#lp_ginza_en .shop_guide .access details .step_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid #FFF;
  border-radius: 12px;
  margin-top: 10px;
  padding: 40px 20px;
  counter-reset: step-counter;
}
#lp_ginza_en .shop_guide .access details .step_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  counter-increment: step-counter;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .access details .step_list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}
#lp_ginza_en .shop_guide .access details .step_list li .image {
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 縮まないように固定 */
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .access details .step_list li .image {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .access details .step_list li .image {
    width: 310px;
  }
}
#lp_ginza_en .shop_guide .access details .step_list li .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 残りのスペースを使う */
  min-width: 0; /* 内容のはみ出し防止（重要） */
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .access details .step_list li .text {
    padding-left: 2em; /* 番号分の余白 */
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .access details .step_list li .text {
    padding-left: 2.5em; /* 番号分の余白 */
  }
}
#lp_ginza_en .shop_guide .access details .step_list li .text::before {
  content: "(" counter(step-counter) ")";
  position: absolute;
  left: 0;
  text-align: right;
  font-weight: bold;
  top: 0;
}
@media screen and (max-width: 767.98px) {
  #lp_ginza_en .shop_guide .access details .step_list li .text::before {
    width: 1.6em;
  }
}
@media screen and (min-width: 768px), print {
  #lp_ginza_en .shop_guide .access details .step_list li .text::before {
    width: 2em;
  }
}
#lp_ginza_en .shop_guide .access details + details {
  margin-top: 15px;
}

/* どこでも使用可能 */
:root {
  --fz10: calc(10 / 16 * 1rem);
  --fz11: calc(11 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz13: calc(13 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz15: calc(15 / 16 * 1rem);
  --fz16: calc(16 / 16 * 1rem);
  --fz17: calc(17 / 16 * 1rem);
  --fz18: calc(18 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz22: calc(22 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz26: calc(26 / 16 * 1rem);
  --fz27: calc(27 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz30: calc(30 / 16 * 1rem);
  --fz30: calc(30 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz34: calc(34 / 16 * 1rem);
  --fz35: calc(35 / 16 * 1rem);
  --fz36: calc(36 / 16 * 1rem);
  --fz38: calc(38 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz42: calc(42 / 16 * 1rem);
  --fz50: calc(50 / 16 * 1rem);
  --fz58: calc(58 / 16 * 1rem);
  --fz59: calc(59 / 16 * 1rem);
  --fz60: calc(60 / 16 * 1rem);
  --fz62: calc(62 / 16 * 1rem);
  --fz70: calc(70 / 16 * 1rem);
}

/* safari対策 */
* {
  min-height: 0vw;
  min-height: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* 日本語の禁則処理を調整 */
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

:not(h1):not(h2):not(h3) {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

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

a {
  text-decoration: none;
  color: #666;
}
@media screen and (min-width: 1200px), print {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px), print {
  a:hover {
    opacity: 0.8;
  }
}
a.link {
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  a.button:hover {
    -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
    opacity: 1;
  }
}

ul,
ol {
  list-style: none;
}

.center {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */