/* ----------------------------------------------------------
 slider / swiper
---------------------------------------------------------- */
.home-hero-slider {
  position: relative;
  margin: 2rem 0 4rem;
  overflow: hidden;
  --hero-slider-slide-width: calc(100% / 1.18);
  --hero-slider-space: 16px;
  --hero-slider-arrow-position: calc((100% - var(--hero-slider-slide-width)) / 2 - (var(--hero-slider-space) / 2) - 22px);
}
.home-hero-slider__source {
  display: none;
}
.home-hero-slider:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -2.75rem;
  display: block;
  width: 85%;
  height: 100%;
  transform: translateX(-50%);
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/deco-slider.svg) no-repeat center bottom / contain;
  pointer-events: none;
}
.home-hero-slider .swiper {
  width: 100%;
  overflow: visible;
}
.home-hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}
.home-hero-slider__slide-inner {
  display: block;
  width: 100%;
  transform: scale(1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}
.home-hero-slider .swiper-slide-prev .home-hero-slider__slide-inner,
.home-hero-slider .swiper-slide-next .home-hero-slider__slide-inner {
  transform: scale(0.95);
  opacity: 0.75;
}
.home-hero-slider__slide-inner a {
  display: block;
  position: relative;
}
.home-hero-slider__slide-inner a:hover {
  opacity: 0.8;
}
.home-hero-slider__slide-inner a::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  display: block;
  border: 1px solid var(--white);
  pointer-events: none;
}
.home-hero-slider img {
  display: block;
  width: 100%;
  height: auto;
}
.home-hero-slider .swiper-button-prev,
.home-hero-slider .swiper-button-next {
  top: 50%;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  background-color: var(--green);
  transition: .3s;
}
.home-hero-slider .swiper-button-prev:hover,
.home-hero-slider .swiper-button-next:hover {
  color: var(--white);
  background-color: var(--gold);
  transition: .3s;
}
.home-hero-slider .swiper .swiper-button-prev {
  left: var(--hero-slider-arrow-position) !important;
  right: auto !important;
}
.home-hero-slider .swiper .swiper-button-next {
  right: var(--hero-slider-arrow-position) !important;
  left: auto !important;
}
.home-hero-slider .swiper-button-prev svg,
.home-hero-slider .swiper-button-next svg {
  width: 1rem !important;
  height: 1rem !important;
}
.home-hero-slider .swiper-pagination {
  bottom: 1.5rem !important;
  left: 50% !important;
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: auto !important;
  transform: translateX(-50%);
}
.home-hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--white);
  cursor: pointer;
  opacity: 0.55;
}
.home-hero-slider .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}
.home-hero-slider .is-fallback .swiper-wrapper {
  display: block;
}
.home-hero-slider .is-fallback .swiper-slide:not(:first-child) {
  display: none;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  .home-hero-slider {
    margin: 1.5rem 0;
    --hero-slider-arrow-position: 0;
  }
  .home-hero-slider .swiper-button-prev,
  .home-hero-slider .swiper-button-next {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
  }
  .home-hero-slider .swiper-button-prev svg,
  .home-hero-slider .swiper-button-next svg {
    width: 0.75rem !important;
    height: 0.75rem !important;
  }
  .home-hero-slider__slide-inner a::before {
    top: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  .home-hero-slider {
    --hero-slider-slide-width: calc(100% / 1.42);
    --hero-slider-space: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-hero-slider {
    --hero-slider-slide-width: calc(100% / 1.58);
    --hero-slider-space: 36px;
  }
}

/* ----------------------------------------------------------
 Quick Search
---------------------------------------------------------- */
section.search {
  padding-bottom: 4rem;
}
/* キーワード検索 */
section.search .searchbox {
  margin-bottom: 2rem;
}
section.search .searchbox form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--gray);
  border-radius: 3em;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
section.search .searchbox form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
section.search .searchbox form input[type="text"] {
  flex: 1;
  min-width: 0;
  height: initial !important;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  outline: 0;
  background-color: transparent;
  font-family: "Noto Serif JP", serif;
}
section.search .searchbox form input[type="text"]::placeholder {
  color: #999;
}
section.search .searchbox form button {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 3rem;
  padding: 0;
  color: var(--black);
  background-color: transparent;
  border-left: 0;
  border-radius: 0;
  font-family: "Noto Serif JP", serif;
  transition: color 0.3s ease;
}
section.search .searchbox form button img,
section.search .searchbox form button svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

/* ブランド・アイテムから探す */
section.search .search-item h3 span {
  display: block;
  padding: 1rem;
  color: var(--white);
  background-color: var(--green);
  text-align: center;
}
section.search .search-item select {
  border: 1px solid var(--gray);
  font-size: 1rem;
}
section.search .search-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.search .search-item ul li {
  width: calc((100% - 0.5rem) / 2);
  margin-bottom: 0.5rem;
  border: 1px solid var(--gray);
  border-radius: 9999px;
  background-color: var(--lightgray);
  text-align: center;
}
section.search .search-item ul li:hover {
  border-color: var(--gold);
}
section.search .search-item ul li a {
  display: block;
  padding: 0.5rem;
  color: #555;
}
section.search .search-item ul li:hover a,
section.search .search-item ul li a:hover {
  color: var(--gold) !important;
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.search .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.search .searchbox form input[type="text"] {
    width: 25em;
  }
  section.search .search-item {
    display: flex;
    width: 45rem;
    margin: 1rem auto;
  }
  section.search .search-item h3 {
    width: 15rem;
    margin-right: 2rem;
  }
  section.search .search-item h3 span {
    position: relative;
  }
  section.search .search-item h3 span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.65rem solid var(--green);
    transform: translateY(-50%);
  }
  section.search .search-item h3 + * {
    width: calc(100% - 17rem);
    min-height: 3.5rem;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.search {
    padding-bottom: 2rem;
  }
  .search-item {
    margin-bottom: 1.5rem;
  }
  section.search .search-item h3 {
    margin-bottom: 1rem;
  }
  section.search .search-item h3 span {
    padding: 0.25rem 0.5rem;
    text-align: left;
  }
  section.search .search-item select {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    line-height: 1.4;
  }
  section.search .search-item ul li a {
    padding: 0.25rem;
    font-size: var(--ft-s);
  }
}


/* ----------------------------------------------------------
 banner
---------------------------------------------------------- */
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.banner {
    margin: 0 auto 3rem auto;
    text-align: center;
  }
  section.banner img {
    width: 80%;
    max-width: 300px;
    margin: 0 10%;
  }
}


/* ----------------------------------------------------------
 instagram
---------------------------------------------------------- */
section.instagram {
  padding: 4rem 0 6rem 0;
  background-color: var(--lightgray);
  text-align: center;
}
section.instagram .leepbox {
  margin: 2rem auto 0 auto;
}
section.instagram .link a::after {
  content: none;
}
section.instagram .link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section.instagram .link a img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.instagram .leepbox {
    width: 80%;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.instagram {
    padding: 2rem 0 4rem 0;
  }
  section.instagram .link a {
    padding: 1rem 0;
  }
}


/* ----------------------------------------------------------
 about
---------------------------------------------------------- */
section.about {
  position: relative;
  padding: 6rem 0 4rem 0;
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bg-shop.jpg) no-repeat center center / cover;
  text-align: center;
}
section.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(13 66 47 / 0.9);
}
section.about > * {
  position: relative;
}
section.about h2 {
  margin-bottom: 2rem;
}
section.about h2 img {
  width: 12.5rem;
  height: auto;
}
section.about .section-lead {
  color: var(--white);
}
section.about .showroom {
  margin-top: 2rem;
}
section.about .showroom .detail {
  position: relative;
}
section.about .showroom-link-pc {
  display: none;
}
section.about .showroom-link-sp {
  display: block;
  margin: 1.5rem auto;
  /* ボタンのデザイン */
}
section.about .showroom .detail figure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
section.about .showroom .detail figure img {
  width: calc((100% - 2rem) / 3);
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.about .showroom {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: 3rem auto 0 auto;
    overflow-x: hidden;
  }
  section.about .showroom .wrap {
    position: relative;
  }
  section.about .showroom > figure {
    width: 55vw;
    max-width: 900px;
    height: auto;
  }
  section.about .showroom > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  section.about .showroom .wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  section.about .showroom .detail {
    position: relative;
    width: 50%;
    margin-left: 50%;
    padding: 3rem;
    background-color: var(--white);
    text-align: left;
    transition: .3s;
  }
  section.about .showroom .detail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-1px);
  }
  section.about .showroom .detail:hover {
    transform: translate(0.125rem,0.125rem);
    transition: .3s;
  }
  section.about .more {
    display: flex;
    align-items: center;
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 1rem;
    color: var(--gold);
  }
  section.about .more::after {
    content: "";
    display: block;
    transform: rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    margin-left: 1rem;
  }
  section.about .showroom-link-pc {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
  }
  section.about .showroom-link-sp {
    display: none;
  }
  section.about .showroom .detail figure {
    width: 75%;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.about {
    padding-top: 4rem;
  }
  section.about .showroom {
    position: relative;
    padding-bottom: 2rem;
  }
  section.about .showroom::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(100% - 5rem);
    background-color: var(--white);
  }
  section.about .showroom > figure {
    position: relative;
    width: calc(100% - 4rem);
    max-width: 35rem;
    margin: 0 auto 1rem auto;
  }
  section.about .showroom .detail {
    text-align: left;
  }
  section.about .showroom .detail .sub-title {
    margin-bottom: 1rem;
  }
  section.about .showroom .detail p.link a {
    width: 100%;
  }
  section.about .showroom .detail figure {
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
  }
  section.about .showroom .detail figure img {
    width: calc((100% - 1rem) / 3);
  }
}

/* ----------------------------------------------------------
 quality
---------------------------------------------------------- */
section.quality {
  padding: 4rem 0;
}
section.quality h3 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: var(--ft-m);
}
section.quality p a {
  color: var(--gold);
  text-decoration: underline;
}
section.quality p a:hover {
  text-decoration: underline !important;
}
section.quality p.aacd {
  margin: 1rem auto 2rem auto;
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.quality {
    text-align: center;
  }
  section.quality p.aacd img {
    width: 15rem;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.quality {
    padding: 2rem 0;
  }
  section.quality .main-title {
    margin-bottom: 1rem;
  }
  section.quality h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section.quality .aacd {
    padding: 0 1rem;
    text-align: center;
  }
  section.quality p.aacd img {
    max-width: 20rem;
  }
}


/* ----------------------------------------------------------
 recommend
---------------------------------------------------------- */
section.recommend {
  padding: 4rem 0;
}


/* ----------------------------------------------------------
 items
---------------------------------------------------------- */
section.items {
  padding: 4rem 0;
}
section.items .items-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
section.items .items-main li {
  position: relative;
  background-color: var(--green);
  width: 100%;
  margin: 0;
}
section.items .items-main li::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
  border: 1px solid rgba(255 255 255 / 0.4);
}
section.items .items-main li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
section.items .items-main li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 1rem;
  color: var(--white) !important;
}
section.items .items-main li a img {
  width: 4rem;
  height: auto;
}
section.items .items-main li a span.en {
  font-size: 1.2rem;
}
section.items .items-main li a span.ja {
  font-size: var(--ft-s);
  line-height: 150%;
  font-feature-settings: "halt";
}
section.items .items-sub {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 1rem auto 4rem auto;
}
section.items .items-sub li {
  position: relative;
  background-color: #D7EBD7;
  width: 100%;
  margin: 0;
  border: 1px solid rgb(18 74 54 / 0.25);
}
section.items .items-sub li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #31725A;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
section.items .items-sub li a {
  position: relative;
  display: block;
  padding: 0.75rem;
  color: var(--black);
  font-size: var(--ft-s);
  line-height: 150%;
}
section.items .gift .sub-title {
  margin-bottom: 1rem;
}
section.items .gift .sub-title .ja {
  font-size: 1rem;
}
section.items .gift ul li {
  position: relative;
  margin-bottom: 0.5rem;
  border: 1px solid var(--gray);
}
section.items .gift ul li::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 7rem;
  height: 100%;
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bn-gift01.jpg) no-repeat center right / cover;
}
section.items .gift ul li:nth-child(1)::before {
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bn-gift01.jpg) no-repeat center right / cover;
}
section.items .gift ul li:nth-child(2)::before {
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bn-gift02.jpg) no-repeat center right / cover;
}
section.items .gift ul li:nth-child(3)::before {
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bn-gift03.jpg) no-repeat center right / cover;
}
section.items .gift ul li:nth-child(4)::before {
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/bn-gift04.jpg) no-repeat center right / cover;
}
section.items .gift ul li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 7rem;
  height: 100%;
  background: linear-gradient(89.28deg, #FFFFFF 10%, rgba(255, 255, 255, 0.87) 30%, rgba(255, 255, 255, 0) 100%)
}
section.items .gift ul li a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.5rem 1rem;
}
section.items .gift p.banner {
  margin: 2rem auto 0 auto;
  text-align: center;
}
section.items .gift p.banner img {
  width: 720px;
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.items .items-main {
    width: 60rem;
    margin: 2rem auto;
  }
  section.items .items-sub {
    width: 60rem;
  }
  section.items .items-main li,
  section.items .items-sub li {
    transition: .3s;
  }
  section.items .items-main li:hover,
  section.items .items-sub li:hover {
    transform: translate(0.125rem,0.125rem);
    transition: .3s;
  }
  section.items .items-main li a {
    aspect-ratio: 1 / 1;
  }
  section.items .gift {
    width: 70rem;
    margin: 4rem auto 2rem auto;
  }
  section.items .gift ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  section.items .gift ul li {
    margin: 0.5rem;
    transition: .3s;
  }
  section.items .gift p.banner {
    transition: .3s;
  }
  section.items .gift ul li:hover,
  section.items .gift p.banner:hover {
    transform: translate(0.125rem,0.125rem);
    transition: .3s;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.items {
    padding-top: 2rem;
  }
  section.items .items-main {
    grid-template-columns: repeat(2, 1fr);
    margin: 1.5rem auto;
  }
  section.items .items-main li a {
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
  }
  section.items .items-main li a img {
    width: 3rem;
  }
  section.items .items-main li a span.en {
    font-size: 1rem;
    line-height: 1.25;
  }
  section.items .items-sub {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  section.items .items-sub li a {
    padding: 0.5rem;
  }
  section.items .wrap.gift {
    width: 100%;
  }
  section.items .gift ul li a {
    padding: 1rem;
  }
  section.items .gift p.banner {
    margin-top: 1rem;
  }
}


/* ----------------------------------------------------------
 pickupbrands
---------------------------------------------------------- */
section.pickupbrands {
  padding: 4rem 0;
}
section.pickupbrands .pickupbrands-list {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
}
section.pickupbrands .pickupbrands-list figure img {
  width: 100%;
}
section.pickupbrands .pickupbrands-list__main h3 {
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 6rem;
}
section.pickupbrands .pickupbrands-list__main h3 img {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  width: 4rem;
}
section.pickupbrands .pickupbrands-list__main h3 div {
  position: relative;
  display: flex;
  flex-direction: column;
}
section.pickupbrands .pickupbrands-list__main h3 div .text {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.5em;
  color: var(--white);
  background-color: var(--grandir);
  font-size: var(--ft-s);
  line-height: 150%;
}
section.pickupbrands .pickupbrands-list__sub h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem;
}
section.pickupbrands .pickupbrands-list h3 .en {
  font-size: 1.2rem;
  line-height: 140%;
}
section.pickupbrands .pickupbrands-list h3 .ja {
  font-size: var(--ft-s);
  line-height: 150%;
}
section.pickupbrands .pickupbrands-list__main,
section.pickupbrands .pickupbrands-list__sub {
  color: var(--white) !important;
}
section.pickupbrands .pickupbrands-list .pottery {
  background-color: var(--pottery);
}
section.pickupbrands .pickupbrands-list .grandir {
  color: var(--grandir) !important;
  background-color: #F4ECD7;
}
section.pickupbrands .pickupbrands-list .wedgwood {
  background-color: var(--wedgwood);
}
section.pickupbrands .pickupbrands-list .copen {
  background-color: var(--copen);
}
section.pickupbrands .pickupbrands-list .iittala {
  background-color: var(--iittala);
}
section.pickupbrands .pickupbrands-list .arabia {
  background-color: var(--arabia);
}

@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.pickupbrands .pickupbrands-list {
    justify-content: space-between;
    width: 100%;
    max-width: 70rem;
  }
  section.pickupbrands .pickupbrands-list__main {
    width: calc((100% - 1rem) / 2);
    margin-bottom: 1rem;
    transition: .3s;
  }
  section.pickupbrands .pickupbrands-list__sub {
    width: calc((100% - 3rem) / 4);
    transition: .3s;
  }
  section.pickupbrands .pickupbrands-list__main:hover,
  section.pickupbrands .pickupbrands-list__sub:hover {
    transform: translate(0.125rem,0.125rem);
    transition: .3s;
  }
  section.pickupbrands .link a {
    width: 100%;
    max-width: 70rem;
  }
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  .pickupbrands-list__main {
    margin-bottom: 1rem;
  }
  section.pickupbrands .pickupbrands-list__main h3 {
    padding: 0.5rem 0.5rem 0.5rem 4.25rem;
  }
  section.pickupbrands .pickupbrands-list__main h3 div .text {
    font-size: 11px;
  }
  section.pickupbrands .pickupbrands-list__main h3 img {
    width: 3rem;
  }
  .pickupbrands-list__sub {
    margin-bottom: 1rem;
    width: 100%;
  }
  .pickupbrands-list__sub a {
    display: flex;
  }
  .pickupbrands-list__sub a figure {
    width: 5rem;
  }
  .pickupbrands-list__sub a figure img {
    height: 100%;
    object-fit: cover;
  }
  .pickupbrands-list__sub a h3 {
    align-items: flex-start !important;
    width: calc(100% - 5rem);
  }
  .pickupbrands-list__sub a h3 .en {
    font-size: 1rem !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* tablet portrait */
  section.pickupbrands .pickupbrands-list {
    justify-content: space-between;
    width: 100%;
    max-width: 70rem;
  }
  section.pickupbrands .pickupbrands-list__main {
    width: calc((100% - 1rem) / 2);
    margin-bottom: 1rem;
    transition: .3s;
  }
  section.pickupbrands .pickupbrands-list__main h3 {
    padding: 0.75rem 0.75rem 0.75rem 6rem;
  }
  section.pickupbrands .pickupbrands-list__main h3 img {
    width: 4rem;
  }
  section.pickupbrands .pickupbrands-list__main h3 div .text {
    font-size: var(--ft-s);
  }
  section.pickupbrands .pickupbrands-list__sub {
    width: calc((100% - 3rem) / 4);
    margin-bottom: 0;
    transition: .3s;
  }
  section.pickupbrands .pickupbrands-list__sub a {
    display: block;
  }
  section.pickupbrands .pickupbrands-list__sub a figure {
    width: auto;
  }
  section.pickupbrands .pickupbrands-list__sub a figure img {
    height: auto;
    object-fit: initial;
  }
  section.pickupbrands .pickupbrands-list__sub a h3 {
    align-items: center !important;
    width: auto;
  }
  section.pickupbrands .pickupbrands-list__sub a h3 .en {
    font-size: 1.2rem !important;
    text-align: center;
  }
  section.pickupbrands .link a {
    width: 100%;
    max-width: 70rem;
  }
}


/* ----------------------------------------------------------
 note
---------------------------------------------------------- */
section.note {
  padding: 4rem 0;
}
section.note h2 img {
  width: 10rem;
  margin-bottom: 0.5rem;
}
section.note.product-section .product-slider__item a {
  justify-content: flex-start;
  padding-bottom: 2rem;
}
section.note.product-section .product-slider__item a:after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/icon-exlink_gray.svg) no-repeat center center / contain;
  border: 0;
  transform: initial;
}
section.note .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: var(--ft-s);
  line-height: 1.5;
}
section.note .info .note-feed__date {
  color: var(--darkgray);
}
section.note .info .note-feed__label {
  display: inline-block;
  padding: 0.125em 0.5em;
  color: var(--white);
  background-color: var(--green);
}
section.note .info .note-feed__label--pickup {
  background-color: var(--gold);
}
section.note .info .note-feed__label--news {
  background-color: var(--green);
}
section.note .info .note-feed__label--story {
  background-color: var(--red);
}
section.note.product-section h3 {
  font-size: 1rem;
  line-height: 175%;
}
section.note .link {
  margin-top: 3rem !important;
}
section.note .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: url(https://file003.shop-pro.jp/PA01445/849/template/nihonnotsurugi/icon-exlink.svg) no-repeat center center / contain;
  transform: translateY(-50%);
  border: 0;
}


/* ----------------------------------------------------------
 news
---------------------------------------------------------- */
section.news {
  padding: 4rem 0;
}
section.news .news-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray);
}
section.news .wrap .news-list {
  position: relative;
}
section.news .wrap .link a {
  text-align: left;
  background-color: var(--green);
}
section.news .wrap .link a::after {
  border-color: var(--gold);
}
@media only screen and (min-width: 1200px), only screen and (min-width: 768px) and (orientation: landscape) { /* pc */
  section.news .wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    max-width: 70rem;
    padding: 2rem 4rem 3rem 4rem;
    background-color: var(--lightgray);
  }
  section.news .wrap::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: calc(100% - 0.5rem);
    height: calc(100% - 0.5rem);
    border: 1px solid var(--white);
  }
  section.news .wrap h2 {
    width: 10rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 1em;
  }
  section.news .wrap .news-list {
    width: calc(100% - 10rem);
  }
  section.news .news-item {
    display: flex;
  }
  section.news .wrap .link {
    width: 100%;
    text-align: right;
  }
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.news {
    padding: 2rem 0 0 0;
  }
  section.news .news-item {
    padding: 0.5rem 0;
  }
}

/* ----------------------------------------------------------
 product slider / おすすめ商品・新着商品
---------------------------------------------------------- */
section.product-section {
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 4rem 0;
  overflow: hidden;
  background-color: var(--lightgray);
}
section.product-section h2 {
  margin-bottom: 1rem;
}
section.product-section > p {
  margin: 1rem 1rem 2rem;
  text-align: center;
}
section.product-section .swiper {
  overflow: initial !important;
  overflow-x: hidden;
}
section.product-section .product-slider {
  width: 100vw;
  margin: 1rem auto;
  overflow: initial !important;
  overflow-x: hidden;
}
section.product-section .product-slider__list {
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
section.product-section .product-slider__item {
  height: auto;
  color: inherit;
  background-color: var(--white);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
  transition: .3s;
}
section.product-section .product-slider__item:hover {
  transform: translate(0.125rem,0.125rem);
  transition: .3s;
}
section.product-section .product-slider__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  height: 100%;
  overflow: hidden;
}
section.product-section .product-slider__item a:after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  display: block;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
section.product-section .product-slider__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 1rem;
}
section.product-section .product-slider__new-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  color: var(--white);
  font-family: "Lora", serif;
  font-size: 0;
  line-height: 1;
}
section.product-section .product-slider__new-badge::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 3.5rem solid #CC0828;
  border-left: 3.5rem solid transparent;
}
section.product-section .product-slider__new-badge::after {
  content: "New";
  position: absolute;
  top: 0.85rem;
  right: 0.2rem;
  font-size: 0.8rem;
  transform: rotate(45deg);
}
section.product-section .product-slider__item.is-new .product-slider__new-badge {
  display: block;
}
section.product-section .product-slider__name {
  margin-bottom: 1rem;
}
section.product-section .product-slider__price,
section.product-section .product-slider__soldout {
  margin-top: auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--darkgray);
}
section.product-section .product-slider__regular-price {
  display: block;
  color: var(--text-gray, #777);
  font-size: 0.85em;
  font-weight: 400;
}
section.product-section .product-slider__discount {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--gold);
}
section.product-section .product-slider__soldout {
  color: var(--text-gray, #777);
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) { /* sp */
  section.new-item {
    padding: 2rem 0 4rem 0;
  }
}
