@charset "UTF-8";
/* =========================================================
consol log
========================================================= */
/* =========================================================
body
========================================================= */
body {
  background: #fff;
  color: #000;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  font-feature-settings: "palt";
}

input, button, textarea, select {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  outline: none;
}

* {
  letter-spacing: 0.05em;
}

*:before, *:after {
  display: block;
}

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

img.w100 {
  width: 100%;
}

a {
  text-decoration: none;
}

a[href*="tel:"] {
  text-decoration: underline;
}

@media (hover: hover) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}
@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-disp {
    display: none !important;
  }
}
@media (hover: hover) {
  .opacity-link {
    transition: opacity 0.2s ease;
  }

  .opacity-link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .txt-link {
    padding: 0 0 0.1em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .txt-link:hover {
    border-color: initial;
  }
}
.wrapper {
  min-width: 320px;
  overflow-x: clip;
}

.main-cont.fade {
  transition-delay: 0.5s;
}

/* =========================================================
common parts
========================================================= */
/*------------------------------------------
image
------------------------------------------*/
.c-img01 {
  aspect-ratio: 1/1;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.c-img01 img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
}

/*------------------------------------------
button
------------------------------------------*/
[class*=c-btn01__type] a,
[class*=c-btn01__type] button {
  border-radius: 8px;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
  [class*=c-btn01__type] a:hover,
[class*=c-btn01__type] button:hover {
    background: #000;
    color: #fff;
  }
}
[class*=c-btn01__type].arrow a::before,
[class*=c-btn01__type].arrow button::before {
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease;
}

@media (hover: hover) {
  [class*=c-btn01__type].arrow a:hover::before,
[class*=c-btn01__type].arrow button:hover::before {
    border-color: #fff;
  }
}
[class*=c-btn01__type].external a::before,
[class*=c-btn01__type].external button::before {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-mask: url(../images/common/ico_external.svg) no-repeat center/contain;
          mask: url(../images/common/ico_external.svg) no-repeat center/contain;
  background: #000;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

@media (hover: hover) {
  [class*=c-btn01__type].external a:hover::before,
[class*=c-btn01__type].external button:hover::before {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .c-btn01__type01--52,
.c-btn01__type02--52,
.c-btn01__type03--52 {
    width: 200px;
  }
}
@media (min-width: 769px) {
  .c-btn01__type01--52,
.c-btn01__type02--52,
.c-btn01__type03--52 {
    width: 328px;
  }
}
@media (max-width: 768px) {
  .c-btn01__type01--52 a,
.c-btn01__type01--52 button,
.c-btn01__type02--52 a,
.c-btn01__type02--52 button,
.c-btn01__type03--52 a,
.c-btn01__type03--52 button {
    height: 44px;
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .c-btn01__type01--52 a,
.c-btn01__type01--52 button,
.c-btn01__type02--52 a,
.c-btn01__type02--52 button,
.c-btn01__type03--52 a,
.c-btn01__type03--52 button {
    height: 52px;
    font-size: 14px;
  }
}
.c-btn01__type01--52.arrow a::before,
.c-btn01__type01--52.arrow button::before,
.c-btn01__type02--52.arrow a::before,
.c-btn01__type02--52.arrow button::before,
.c-btn01__type03--52.arrow a::before,
.c-btn01__type03--52.arrow button::before {
  width: 8px;
  height: 8px;
}

.c-btn01__type01--36,
.c-btn01__type02--36,
.c-btn01__type03--36 {
  width: 152px;
}

.c-btn01__type01--36 a,
.c-btn01__type01--36 button,
.c-btn01__type02--36 a,
.c-btn01__type02--36 button,
.c-btn01__type03--36 a,
.c-btn01__type03--36 button {
  height: 36px;
  font-size: 12px;
}

.c-btn01__type01--36.arrow a::before,
.c-btn01__type01--36.arrow button::before,
.c-btn01__type02--36.arrow a::before,
.c-btn01__type02--36.arrow button::before,
.c-btn01__type03--36.arrow a::before,
.c-btn01__type03--36.arrow button::before {
  width: 4px;
  height: 4px;
}

[class*=c-btn01__type01] a,
[class*=c-btn01__type01] button {
  background: #F5F5F5;
  color: #000;
}

[class*=c-btn01__type01].arrow a::before,
[class*=c-btn01__type01].arrow button::before {
  border-color: #000;
}

[class*=c-btn01__type02] a,
[class*=c-btn01__type02] button {
  background: #fff;
}

[class*=c-btn01__type02].arrow a::before,
[class*=c-btn01__type02].arrow button::before {
  border-color: #000;
}

[class*=c-btn01__type03] a,
[class*=c-btn01__type03] button {
  background: #696969;
  color: #fff;
}

[class*=c-btn01__type03].arrow a::before,
[class*=c-btn01__type03].arrow button::before {
  border-color: #fff;
}

.c-btn02 a,
.c-btn02 button {
  border: 1px solid #B7B7B7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

@media (max-width: 768px) {
  .c-btn02 a,
.c-btn02 button {
    height: 40px;
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  .c-btn02 a,
.c-btn02 button {
    height: 37px;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .c-btn02 a:hover,
.c-btn02 button:hover {
    background: #000;
    color: #fff;
  }
}
.c-btn02.arrow a::before,
.c-btn02.arrow button::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease;
}

@media (hover: hover) {
  .c-btn02.arrow a:hover::before,
.c-btn02.arrow button:hover::before {
    border-color: #fff;
  }
}
.c-btn02.arrow.down a::before,
.c-btn02.arrow.down button::before {
  transform: translateY(-50%) rotate(135deg);
}

.c-btn02.current a,
.c-btn02.current button {
  background: #000;
  color: #fff;
}

/*------------------------------------------
title
------------------------------------------*/
.c-ttl01 {
  text-align: center;
}

.c-ttl01 > * + * {
  margin: 8px auto 0;
}

.c-ttl01__en {
  font-size: clamp(10px, 7.4666666667vw, 28px);
  line-height: 1.3;
  font-weight: 500;
}

.c-ttl01__en--small {
  font-size: clamp(10px, 3.7333333333vw, 14px);
}

.c-ttl01__ja {
  font-size: clamp(10px, 3.2vw, 12px);
  line-height: 1.5;
}

[class*=c-ttl02] {
  font-size: 24px;
  line-height: 1.5;
}

.c-ttl02__type01 {
  padding: 0 0 16px;
  border-bottom: 1px solid #B7B7B7;
}

/*------------------------------------------
card
------------------------------------------*/
[class*=c-card01] {
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 0;
}

[class*=c-card01]:has(.new) {
  padding: 23px 0 0;
}

[class*=c-card01] a {
  height: 100%;
  position: relative;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  align-items: end;
}

[class*=c-card01] a > * {
  width: 100%;
}

[class*=c-card01] .new {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
}

[class*=c-card01] .new::before {
  content: "NEW";
  padding: 0 0 2px;
  border-bottom: 1px solid #000;
  line-height: 1;
}

@media (max-width: 768px) {
  [class*=c-card01] .new::before {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  [class*=c-card01] .new::before {
    font-size: 12px;
  }
}
@media (hover: hover) {
  [class*=c-card01] .c-img01 img {
    transition: transform 0.2s ease;
  }

  [class*=c-card01] [class*=c-card01__txt] {
    transition: opacity 0.2s ease;
  }

  [class*=c-card01] a:hover .c-img01 img {
    transform: scale(1.1);
  }

  [class*=c-card01] a:hover [class*=c-card01__txt] {
    opacity: 0.6;
  }
}
[class*=c-card01__txt] {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-card01__txt01 {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .c-card01__txt01 {
    font-size: 12px;
  }
}
.c-card01__txt02 {
  font-weight: 500;
}

@media (max-width: 768px) {
  .c-card01__txt02 {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .c-card01__txt02 {
    font-size: 14px;
  }
}
.c-card01__txt03 {
  color: #696969;
}

@media (max-width: 768px) {
  .c-card01__txt03 {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .c-card01__txt03 {
    font-size: 12px;
  }
}
.c-card01--row3 {
  grid-row: span 3;
}

.c-card01--row3 .c-card01__txt01 {
  margin: 16px auto 0;
}

.c-card01--row3 .c-card01__txt02 {
  margin: 16px auto 0;
}

.c-card01--row3 .c-card01__txt03 {
  margin: 8px auto 0;
}

.c-card01--row4 {
  grid-row: span 4;
}

.c-card01--row4 .c-card01__txt01 {
  margin: 16px auto 0;
}

.c-card01--row4 .c-card01__txt02 {
  margin: 4px auto 0;
}

.c-card01--row4 .c-card01__txt03 {
  margin: 8px auto 0;
}

.c-card02 {
  border-top: 1px solid #B7B7B7;
}

.c-card02 a {
  padding: 24px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .c-card02 a {
    gap: 16px;
  }
}
@media (min-width: 769px) {
  .c-card02 a {
    gap: 24px;
  }
}
.c-card02 .c-img01 {
  width: clamp(10px, 21.33vw, 150px);
  border: 1px solid #B7B7B7;
}

.c-card02__detail {
  flex: 1;
}

.c-card02__detail > * + * {
  margin: 2px auto 0;
}

.c-card02__tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.c-card02__tag + .c-card02__tag {
  margin: 4px 0 0;
}

.c-card02__txt01 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.c-card02__txt02 {
  color: #696969;
}

@media (max-width: 768px) {
  .c-card02__txt02 {
    font-size: 10px;
    line-height: 2.1;
  }
}
@media (min-width: 769px) {
  .c-card02__txt02 {
    font-size: 12px;
    line-height: 1.75;
  }
}
.c-card02__txt03 {
  font-size: 12px;
  line-height: 1.5;
}

.c-card03 {
  height: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: 0;
}

.c-card03-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .c-card03-bottom {
    margin: 8px auto 0;
  }
}
@media (min-width: 769px) {
  .c-card03-bottom {
    margin: 16px auto 0;
  }
}
.c-card03-bottom > * {
  width: 100%;
}

.c-card03-shop {
  display: grid;
}

@media (max-width: 768px) {
  .c-card03-shop {
    grid-template-columns: 1fr clamp(10px, 12.5333333333vw, 47px);
    grid-template-rows: 1fr repeat(2, max-content);
    grid-template-areas: "floor logo" "name name" "category category";
    grid-gap: 4px 8px;
  }
}
@media (min-width: 769px) {
  .c-card03-shop {
    grid-template-columns: 1fr 64px;
    grid-template-rows: repeat(3, max-content);
    grid-template-areas: "floor logo" "name logo" "category logo";
    grid-gap: 4px 24px;
  }
}
.c-card03-shop .c-img01 {
  grid-area: logo;
}

.c-card03-shop__floor {
  grid-area: floor;
  font-size: 12px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .c-card03-shop__floor {
    display: flex;
    align-items: center;
  }
}
.c-card03-shop__name {
  grid-area: name;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.c-card03-shop__ctg {
  grid-area: category;
  color: #696969;
  font-size: 10px;
  line-height: 1.5;
}

.c-card03-article {
  flex: 1;
}

@media (max-width: 768px) {
  .c-card03-article {
    margin: 8px auto 0;
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  .c-card03-article {
    margin: 16px auto 0;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .c-card03-link {
    margin: 16px auto 0;
  }
}
@media (min-width: 769px) {
  .c-card03-link {
    margin: 24px auto 0;
  }
}
.c-card03-link a {
  font-size: 12px;
  line-height: 1.5;
  color: #696969;
}

.c-card03-link a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  background: url(../images/common/ico_pdf.svg) no-repeat center/contain;
  vertical-align: text-bottom;
}

.c-card03-link + .c-card03-link {
  margin: 8px auto 0;
}

/* =========================================================
common layout
========================================================= */
/*------------------------------------------
contents
------------------------------------------*/
@media (max-width: 768px) {
  .c-main-cont {
    padding: 0 6.4vw;
  }
}
@media (min-width: 769px) {
  .c-main-cont {
    padding: 0 4.6852122987vw;
  }
}
.c-main-cont .c-cont__in {
  max-width: 1032px;
  margin: 0 auto;
}

/*------------------------------------------
title
------------------------------------------*/
@media (max-width: 768px) {
  .page-ttl {
    padding: 64px 0;
  }
}
@media (min-width: 769px) {
  .page-ttl {
    padding: 72px 0 40px;
  }
}
/*------------------------------------------
block
------------------------------------------*/
.c-block01 + .c-block01 {
  margin: 64px auto 0;
}

.c-block01 > * + * {
  margin: 24px auto 0;
}

.c-block01__subttl a,
.c-block01__subttl span {
  display: block;
  background: #F5F5F5;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .c-block01__subttl a,
.c-block01__subttl span {
    padding: 8px 16px;
  }
}
@media (min-width: 769px) {
  .c-block01__subttl a,
.c-block01__subttl span {
    padding: 8px 32px;
  }
}
.c-block01__subttl a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .c-block01__subttl + * {
    margin: 16px auto 0;
  }
}
.c-block01__article {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-block01__article {
    padding: 0 16px;
  }
}
@media (min-width: 769px) {
  .c-block01__article {
    padding: 0 32px;
  }
}
.c-block01__article > *:first-child {
  margin-top: 0;
}

.c-block01__article > * + * {
  margin: 8px auto 0;
}

.c-block01__article hr {
  border: none;
  border-top: solid 1px #B7B7B7;
}

@media (max-width: 768px) {
  .c-block01__article hr {
    margin: 16px auto;
  }
}
@media (min-width: 769px) {
  .c-block01__article hr {
    margin: 24px auto;
  }
}
@media (min-width: 1025px) {
  .c-block02 {
    display: grid;
    grid-template-columns: 440px 1fr;
    grid-template-rows: repeat(3, max-content);
    grid-template-areas: "image head" "image article" "image bottom";
    grid-gap: 0 clamp(10px, 6.4421669107vw, 88px);
  }
}
@media (min-width: 769px) {
  .c-block02-head {
    padding: 0 0 16px;
    border-bottom: 1px solid #B7B7B7;
  }
}
@media (min-width: 1025px) {
  .c-block02-head {
    grid-area: head;
  }
}
.c-block02-head__wrap {
  display: flex;
  gap: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .c-block02-head__wrap {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .c-block02-head__wrap {
    font-size: 14px;
  }
}
.c-block02-head__date {
  color: #696969;
}

.c-block02-head__ttl {
  margin: 16px auto 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}

.c-block02-head__txt01 {
  margin: 8px auto 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.c-block02-img {
  overflow: hidden;
}

@media (max-width: 768px) {
  .c-block02-img {
    width: 100vw;
    margin: 40px 0 0 -6.4vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-block02-img {
    width: 500px;
    margin: 32px auto 0;
  }
}
@media (min-width: 1025px) {
  .c-block02-img {
    grid-area: image;
  }
}
.c-block02-img__thumb {
  overflow: hidden;
  margin: 16px auto 0;
  box-sizing: content-box;
}

@media (max-width: 768px) {
  .c-block02-img__thumb {
    padding: 0 calc(6.4vw - 8px);
  }
}
@media (min-width: 769px) {
  .c-block02-img__thumb {
    width: calc(100% + 16px);
    margin-left: -8px;
  }
}
.c-block02-img__thumb .c-img01 {
  aspect-ratio: auto;
  padding: 0 8px;
}

.c-block02-aticle {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-block02-aticle {
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .c-block02-aticle {
    margin: 32px auto 0;
  }
}
@media (min-width: 1025px) {
  .c-block02-aticle {
    grid-area: article;
    width: 100%;
  }
}
.c-block02-bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
}

@media (max-width: 768px) {
  .c-block02-bottom {
    margin: 24px auto 0;
    padding: 24px 0;
    gap: 16px;
  }
}
@media (min-width: 769px) {
  .c-block02-bottom {
    margin: 32px 0 0;
    padding: 32px 0;
    gap: 24px;
  }
}
@media (min-width: 1025px) {
  .c-block02-bottom {
    grid-area: bottom;
  }
}
.c-block02-bottom__detail {
  flex: 1;
}

.c-block02-bottom__detail > * + * {
  margin: 8px auto 0;
}

.c-block02-bottom__txt01 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.c-block02-bottom__txt02 {
  font-size: 14px;
  line-height: 1.5;
}

.c-block02-bottom__txt03 {
  font-size: 12px;
  line-height: 1.75;
  color: #696969;
}

@media (max-width: 768px) {
  .c-block02-bottom [class*=c-btn01] {
    width: 129px;
  }
}
@media (min-width: 769px) {
  .c-block02-bottom [class*=c-btn01] {
    width: 176px;
  }
}
@media (max-width: 768px) {
  .c-block02-bottom [class*=c-btn01] a {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .c-block02-bottom [class*=c-btn01] a::before {
    right: 10px;
  }
}
/*------------------------------------------
navigation
------------------------------------------*/
.c-nav01 {
  position: relative;
  z-index: 0;
}

.c-nav01::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-nav01__list {
  display: flex;
}

[class*=c-nav01__item] {
  flex: 1;
  position: relative;
}

[class*=c-nav01__item]::before {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
}

[class*=c-nav01__item] a {
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  [class*=c-nav01__item] a {
    height: 56px;
    font-size: 10px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  [class*=c-nav01__item] a {
    height: 64px;
    font-size: 14px;
    line-height: 1.5;
  }
}
body.page-floorguide .c-nav01__item--floorguide,
body.page-restaurant .c-nav01__item--restaurant,
body.page-cosmebeauty .c-nav01__item--cosmebeauty,
body.page-newshop .c-nav01__item--newshop {
  border: 1px solid #000;
  background: #fff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

body.page-floorguide .c-nav01__item--floorguide::before,
body.page-restaurant .c-nav01__item--restaurant::before,
body.page-cosmebeauty .c-nav01__item--cosmebeauty::before,
body.page-newshop .c-nav01__item--newshop::before {
  content: "";
}

body.page-information .c-nav01__item--information,
body.page-information-hours .c-nav01__item--hours {
  border: 1px solid #000;
  background: #fff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

body.page-information .c-nav01__item--information::before,
body.page-information-hours .c-nav01__item--hours::before {
  content: "";
}

/*------------------------------------------
list
------------------------------------------*/
.c-col1-2 {
  display: grid;
}

@media (min-width: 769px) {
  .c-col1-2 {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    grid-gap: 0 24px;
  }
}
.c-col2-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .c-col2-2 {
    grid-gap: 24px;
  }
}
@media (min-width: 769px) {
  .c-col2-2 {
    grid-gap: 40px;
  }
}
.c-col2-4 {
  display: grid;
}

@media (max-width: 768px) {
  .c-col2-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
}
@media (min-width: 769px) {
  .c-col2-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 32px 24px;
  }
}
/*------------------------------------------
breadcrumb
------------------------------------------*/
.breadcrumb {
  padding-bottom: 24px;
}

.breadcrumb__item {
  display: inline;
  font-size: 10px;
  line-height: 1.5;
  color: #B7B7B7;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "／";
  display: inline;
  margin: 0 0.5em 0 0;
  color: #000;
}

.breadcrumb__item a {
  color: #000;
}

/*------------------------------------------
no item
------------------------------------------*/
.c-no-item {
  padding: 120px 0;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

/*------------------------------------------
modal
------------------------------------------*/
.modal {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: auto;
  display: none;
}

@media (min-width: 769px) {
  .modal__wrap {
    min-height: 100vh;
    padding: 56px clamp(10px, 4.6852122987vw, 64px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.modal__block {
  width: 100%;
  background: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .modal__block {
    padding: 48px 16px 100px;
  }
}
@media (min-width: 769px) {
  .modal__block {
    max-width: 908px;
    margin: 0 auto;
    padding: 56px;
  }
}
.modal-close__top {
  position: absolute;
}

@media (max-width: 768px) {
  .modal-close__top {
    top: 16px;
    right: 16px;
  }
}
@media (min-width: 769px) {
  .modal-close__top {
    top: 24px;
    right: 24px;
  }
}
.modal-close__top button {
  display: block;
  width: 24px;
  height: 22px;
  position: relative;
}

.modal-close__top button::before, .modal-close__top button::after {
  content: "";
  width: 31px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close__top button::before {
  transform: translate(-50%, -50%) rotate(43deg);
}

.modal-close__top button::after {
  transform: translate(-50%, -50%) rotate(-43deg);
}

.modal-close__bottom {
  text-align: center;
}

@media (max-width: 768px) {
  .modal-close__bottom {
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .modal-close__bottom {
    margin: 32px auto 0;
  }
}
.modal-close__bottom button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
}

.modal-close__bottom .cross {
  display: block;
  width: 17px;
  height: 16px;
  position: relative;
}

.modal-close__bottom .cross::before, .modal-close__bottom .cross::after {
  content: "";
  width: 22px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal-close__bottom .cross::before {
  transform: translate(-50%, -50%) rotate(43deg);
}

.modal-close__bottom .cross::after {
  transform: translate(-50%, -50%) rotate(-43deg);
}

/*------------------------------------------
pager
------------------------------------------*/
.c-pager {
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}

.c-pager__txt {
  padding: 8px 0 0;
  color: #EFEFEF;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.c-pager__arrow {
  width: 40px;
  height: 14px;
  -webkit-mask: url(../images/common/ico_arrow02.svg) no-repeat center top/contain;
          mask: url(../images/common/ico_arrow02.svg) no-repeat center top/contain;
  background: #EFEFEF;
}

.c-pager a {
  display: flex;
  align-items: center;
  gap: 24px;
}

.c-pager a .c-pager__txt {
  color: #000;
}

.c-pager a .c-pager__arrow {
  background: #000;
}

[class*=c-pager__button] {
  display: flex;
  align-items: center;
  gap: 24px;
}

.c-pager__button--next .c-pager__arrow {
  transform: scale(-1, 1);
}

/* =========================================================
anime
========================================================= */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade.is-active {
  opacity: 1;
}

.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

.fadeup.is-active {
  transform: translateY(0);
  opacity: 1;
}

.wysiwyg {
  word-break: break-all;
}

.wysiwyg *,
.wysiwyg ::before,
.wysiwyg ::after {
  box-sizing: content-box;
}

.wysiwyg h1 {
  font-size: 2em;
  font-weight: 600;
}

.wysiwyg h2 {
  font-size: 1.5em;
  font-weight: 600;
}

.wysiwyg h3 {
  font-size: 1.17em;
  font-weight: 600;
}

.wysiwyg h4 {
  font-weight: 600;
}

.wysiwyg h5 {
  font-size: 0.83em;
  font-weight: 600;
}

.wysiwyg h6 {
  font-size: 0.67em;
  font-weight: 600;
}

.wysiwyg hr {
  display: block;
}

.wysiwyg a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .wysiwyg a:hover {
    opacity: 0.6;
  }
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 600;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  border-collapse: separate;
}

/* =========================================================
header
========================================================= */
.c-hd {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}

.c-hd__in {
  display: flex;
  align-items: center;
}

.c-hd-logo {
  flex: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .c-hd-logo {
    padding: 0 0 0 16px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo {
    padding: 0 16px 0 40px;
  }
}
.c-hd-logo a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .c-hd-logo__img {
    width: 130px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo__img {
    width: 186px;
  }
}
.c-hd-logo__txt {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  height: 14px;
}

.c-hd-logo__txt img {
  width: auto;
  height: 100%;
  vertical-align: top;
}

@media (max-width: 768px) {
  .c-hd:has(.telop-block) {
    padding: 0 0 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-hd:has(.telop-block) {
    padding: 0 0 16px;
  }
}
.lang-nav {
  position: relative;
  z-index: 1;
}

.lang-nav button {
  display: block;
}

@media (max-width: 768px) {
  .lang-nav button {
    height: 60px;
  }
}
@media (min-width: 769px) {
  .lang-nav button {
    padding: 0 16px;
    height: 33px;
    border-radius: 4px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
.lang-nav button::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}

@media (min-width: 769px) {
  .lang-nav button::after {
    content: "";
  }
}
.lang-nav__ico {
  width: 12px;
  height: 12px;
  -webkit-mask: url(../images/common/ico_lang.svg) no-repeat center/contain;
          mask: url(../images/common/ico_lang.svg) no-repeat center/contain;
  background: #000;
}

@media (max-width: 768px) {
  .lang-nav__ico {
    margin: 0 auto;
  }
}
.lang-nav__txt {
  line-height: 1;
}

@media (max-width: 768px) {
  .lang-nav__txt {
    margin: 6px auto 0;
    font-size: 10px;
    font-weight: 500;
  }
}
@media (min-width: 769px) {
  .lang-nav__txt {
    font-size: 12px;
  }
}
.lang-nav__list {
  display: none;
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .lang-nav__list {
    width: -moz-max-content;
    width: max-content;
    padding: 16px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 769px) {
  .lang-nav__list {
    width: 100%;
    padding: 16px 0 24px;
    border-radius: 0 0 4px 4px;
    background: #F5F5F5;
  }
}
.lang-nav__item {
  text-align: center;
}

.lang-nav__item span {
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .lang-nav__item span {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .lang-nav__item span {
    font-size: 12px;
  }
}
.lang-nav__item + .lang-nav__item {
  margin: 16px auto 0;
}

.lang-nav button.is-active::after {
  transform: rotate(-135deg) translate(-1px);
}

#wovn-machine-translated-modal .wovn-modal-background button.wovn-modal-ok-button {
  text-align: center;
}

/*------------------------------------------
telop
------------------------------------------*/
.telop-block {
  height: 34px;
  padding: 0 40px 0 8px;
  background: #F5F5F5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .telop-block {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0 20px 0 8px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .telop-block {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .telop-block {
    width: clamp(10px, 38.6530014641vw, 528px);
    position: absolute;
    top: 50%;
    right: 233px;
    transform: translateY(-50%);
  }
}
.telop-block::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: url(../images/common/ico_telop.svg) no-repeat center/contain;
}

.telop-block::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .telop-block::after {
    right: 8px;
  }
}
@media (min-width: 769px) {
  .telop-block::after {
    right: 24px;
  }
}
.telop-block__wrap {
  display: flex;
  position: relative;
  flex: 1;
  overflow: hidden;
}

.telop-block__in {
  display: inline-block;
  padding: 0 1em 0 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
}

.telop-block__wrap.is-anime .telop-block__in {
  animation: telop linear infinite;
}

@keyframes telop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*------------------------------------------
global navigation
------------------------------------------*/
.global-nav {
  visibility: hidden;
  transition: visibility 0s 0.5s;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

@media (min-width: 769px) {
  .global-nav {
    display: flex;
  }
}
.global-nav__btn {
  position: relative;
  z-index: 2;
}

.global-nav__btn button {
  display: block;
  position: relative;
}

@media (max-width: 768px) {
  .global-nav__btn button {
    width: 50px;
    height: 60px;
  }
}
@media (min-width: 769px) {
  .global-nav__btn button {
    width: 66px;
    height: 72px;
  }
}
.global-nav__btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: #000;
  position: absolute;
}

@media (max-width: 768px) {
  .global-nav__btn span {
    left: 16px;
  }
}
@media (min-width: 769px) {
  .global-nav__btn span {
    left: 24px;
  }
}
@media (max-width: 768px) {
  .global-nav__btn span:nth-child(1) {
    top: 22px;
  }
}
@media (min-width: 769px) {
  .global-nav__btn span:nth-child(1) {
    top: 28px;
  }
}
@media (max-width: 768px) {
  .global-nav__btn span:nth-child(2) {
    top: 30px;
  }
}
@media (min-width: 769px) {
  .global-nav__btn span:nth-child(2) {
    top: 36px;
  }
}
@media (max-width: 768px) {
  .global-nav__btn span:nth-child(3) {
    top: 38px;
  }
}
@media (min-width: 769px) {
  .global-nav__btn span:nth-child(3) {
    top: 44px;
  }
}
.global-nav__btn button.is-open span {
  width: 24px;
  transform-origin: left;
}

.global-nav__btn button.is-open span:nth-child(1) {
  transform: rotate(43deg);
}

.global-nav__btn button.is-open span:nth-child(2) {
  opacity: 0;
}

.global-nav__btn button.is-open span:nth-child(3) {
  transform: rotate(-43deg);
}

.global-nav__bg {
  width: 100vw;
  height: 100%;
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  background-color: rgba(0, 0, 0, 0.21);
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.global-nav__wrap {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  margin: 0 0 0 auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .global-nav__wrap {
    max-width: 338px;
    padding: 48px 36px 100px 24px;
  }
}
@media (min-width: 769px) {
  .global-nav__wrap {
    width: 407px;
    padding: 48px 64px;
  }
}
.global-nav__item01 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.global-nav__item01 + .global-nav__item01 {
  margin: 16px auto 0;
}

.global-nav__list02 {
  margin: 32px auto 0;
}

.global-nav__item02 + .global-nav__item02 {
  margin: 12px auto 0;
}

.global-nav__item02 a {
  font-size: 12px;
  line-height: 1.5;
}

.global-nav.is-open {
  visibility: visible;
  transition: visibility 0s;
}

.global-nav.is-open .global-nav__bg {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.global-nav.is-open .global-nav__wrap {
  transform: translateX(0);
}

.global-nav-sns {
  margin: 32px auto 0;
  padding: 32px 0 0;
  border-top: 1px solid #B7B7B7;
}

.global-nav-sns__ttl {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.global-nav-sns__list {
  margin: 16px auto 0;
  display: flex;
  gap: 32px;
}

.global-nav-sns__item a {
  display: block;
  width: 19px;
  height: 19px;
}

.global-nav-sns__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------
tax free
------------------------------------------*/
.taxfree-btn {
  position: fixed;
  left: 0;
  bottom: 88px;
  z-index: 10;
}

.taxfree-btn__close button {
  display: block;
  width: 14px;
  height: 14px;
  background: #696969;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -7px;
  transform: rotate(45deg);
}

.taxfree-btn__close button::before, .taxfree-btn__close button::after {
  content: "";
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.taxfree-btn__close button::before {
  width: 8px;
  height: 2px;
}

.taxfree-btn__close button::after {
  width: 2px;
  height: 8px;
}

.taxfree-btn a {
  display: block;
  padding: 16px;
  border-radius: 0 3px 3px 0;
  background: #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16);
  transition: background 0.2s ease;
}

.taxfree-btn__ico {
  width: 34px;
  height: 37px;
  margin: 0 auto;
  -webkit-mask: url(../images/common/ico_taxfree.svg) no-repeat center/contain;
          mask: url(../images/common/ico_taxfree.svg) no-repeat center/contain;
  background: #000;
  transition: background 0.2s ease;
}

.taxfree-btn__txt {
  margin: 10px auto 0;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .taxfree-btn a:hover {
    background: #000;
  }

  .taxfree-btn a:hover .taxfree-btn__ico {
    background: #fff;
  }

  .taxfree-btn a:hover .taxfree-btn__txt {
    color: #fff;
  }
}
/*------------------------------------------
SP sticky navigation
------------------------------------------*/
.sticky-nav {
  width: 100%;
  padding: 4px 6.4vw;
  background: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.16);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  display: none;
}

@media (max-width: 768px) {
  .sticky-nav {
    display: block;
  }
}
.sticky-nav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px;
}

.sticky-nav__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 4px;
}

.sticky-nav__item a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  grid-gap: 0;
}

.sticky-nav__ico {
  width: 32px;
  margin: 0 auto;
}

.sticky-nav__txt {
  font-size: 8px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-nav.is-show {
  transform: translateY(0);
}

/* =========================================================
footer
========================================================= */
/*------------------------------------------
sns
------------------------------------------*/
.c-ft-sns {
  transform: translateY(-1px);
}

.c-ft-sns .c-cont__in {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid #B7B7B7;
}

.c-ft-sns__list {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .c-ft-sns__list {
    gap: 32px;
  }
}
@media (min-width: 769px) {
  .c-ft-sns__list {
    gap: 24px;
  }
}
.c-ft-sns__item a {
  display: block;
  width: 24px;
  height: 24px;
}

.c-ft-sns__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------
banner
------------------------------------------*/
.c-ft-bnr {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #F5F5F5;
}

.c-ft-bnr__list {
  display: grid;
  grid-gap: 16px;
}

@media (max-width: 768px) {
  .c-ft-bnr__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-ft-bnr__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1025px) {
  .c-ft-bnr__list {
    grid-template-columns: repeat(8, 1fr);
  }
}
.c-ft {
  padding-top: 80px;
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .c-ft {
    padding-bottom: 144px;
  }
}
@media (min-width: 769px) {
  .c-ft {
    padding-bottom: 160px;
  }
}
@media (min-width: 769px) {
  .c-ft__in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
    grid-gap: 56px 32px;
    grid-template-areas: "logo sns" "list copyright";
  }
}
@media (max-width: 768px) {
  .c-ft__logo {
    width: 170px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .c-ft__logo {
    grid-area: logo;
    width: 220px;
  }
}
.c-ft__logo a {
  display: block;
}

.c-ft__copyright {
  line-height: 1;
}

@media (max-width: 768px) {
  .c-ft__copyright {
    margin: 64px auto 0;
    font-size: 10px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .c-ft__copyright {
    grid-area: copyright;
    align-self: self-end;
    font-size: 12px;
    text-align: right;
  }
}
.c-ft-list01 {
  display: flex;
}

@media (max-width: 768px) {
  .c-ft-list01 {
    margin: 56px auto 0;
    justify-content: center;
    gap: 40px;
  }
}
@media (min-width: 769px) {
  .c-ft-list01 {
    grid-area: sns;
    justify-content: flex-end;
    gap: 48px;
  }
}
[class*=c-ft-list01__item] a {
  display: block;
  background: #fff;
}

@media (max-width: 768px) {
  [class*=c-ft-list01__item] a {
    width: 23px;
    height: 22px;
  }
}
@media (min-width: 769px) {
  [class*=c-ft-list01__item] a {
    width: 28px;
    height: 25px;
  }
}
.c-ft-list01__item--mail a {
  -webkit-mask: url(../images/common/ico_mail.svg) no-repeat center/contain;
          mask: url(../images/common/ico_mail.svg) no-repeat center/contain;
}

.c-ft-list01__item--ig a {
  -webkit-mask: url(../images/common/ico_ig.svg) no-repeat center/contain;
          mask: url(../images/common/ico_ig.svg) no-repeat center/contain;
}

.c-ft-list01__item--fb a {
  -webkit-mask: url(../images/common/ico_fb.svg) no-repeat center/contain;
          mask: url(../images/common/ico_fb.svg) no-repeat center/contain;
}

.c-ft-list01__item--x a {
  -webkit-mask: url(../images/common/ico_x.svg) no-repeat center/contain;
          mask: url(../images/common/ico_x.svg) no-repeat center/contain;
}

.c-ft-list01__item--yt a {
  -webkit-mask: url(../images/common/ico_yt.svg) no-repeat center/contain;
          mask: url(../images/common/ico_yt.svg) no-repeat center/contain;
}

.c-ft-list02 {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, max-content);
  grid-gap: 16px 40px;
}

@media (max-width: 768px) {
  .c-ft-list02 {
    margin: 56px auto 0;
  }
}
@media (min-width: 769px) {
  .c-ft-list02 {
    grid-area: list;
  }
}
@media (min-width: 1025px) {
  .c-ft-list02 {
    grid-gap: 16px 64px;
  }
}
.c-ft-list02__item a {
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-ft-list02__item a {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  .c-ft-list02__item a {
    font-size: 12px;
  }
}
.c-ft-list02__blank {
  display: none;
}

@media (min-width: 1025px) {
  .c-ft-list02__blank {
    display: block;
  }
}