@charset "utf-8";
/****************
default
****************/
/*ハンバーガーメニューを開いた時のがたつき防止*/
html {
  overflow-y: scroll; /* scrollbar-gutter未対応ブラウザ向けフォールバック */
  scrollbar-gutter: stable;
  font-size: 100%;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg_lb);
  font-size: 1rem;
}
body, p {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.5;
  letter-spacing: .1em;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
main {
    min-height: calc(100vh - 350px);
    min-height: calc(100svh - 350px);
}
body:not(.home) main {
  padding-top: var(--header-height);
}
/* スライド */
.swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide video,
.swiper-slide img:not(.lens_img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.base_img_box {
    z-index: 0;
}

.lens_img_box {
    position: absolute;
    opacity:0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
    border-radius: 100%;
    border: solid 5px #fff;
    z-index: 1;
}
.lens_img{
    position: absolute;
    transform-origin: top left;
}
.swiper-pagination-bullet {
  background: var(--maincolor);
}
.pause-icon {
  background: none;
}
.pause-icon::before {
  content: '';
  display: block;
  width: 12px;
  height: 14px;
  border-left: 4px solid var(--maincolor);
  border-right: 4px solid var(--maincolor);
  background: none;
}
.play-icon::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent var(--maincolor);
}
button.swiper-pause-btn {
  border: none;
  position: absolute;
  z-index: 1;
  bottom: 12px;
  left: calc(50% + 52px);
  display: inline-block;
  background: none;
  z-index: 100;
}
/* ミュートボタン */
.mute-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.mute-btn img {
  filter: invert(100%) sepia(0%) saturate(7495%) hue-rotate(354deg) brightness(99%) contrast(104%);
  width: 30px;
}
.breadcrumb {
  text-align: right;
  margin-top: .5vw;
  margin-top: .5cqw;
  width: var(--w-inner);
  margin-inline: auto;
}

.breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  column-gap: 16px;
  font-size: .9rem;
}

.breadcrumb__item + .breadcrumb__item:before {
  content: "/";
  position: relative;
  left: -.5em;
}
#page_top {
  position: fixed;
  right: 2%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#page_top a {
  background: var(--maincolor);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-block;
}
#page_top a:after {
  content: "";
  position: absolute;
  left: 38%;
  top: 38%;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  box-sizing: border-box;
  border-top: 2px solid;
  border-left: 2px solid;
}
#page_top a:hover {
  background-color: var(--lg);
  border: 1px solid var(--maincolor);
  color: var(--maincolor);
  text-decoration: none;
}
#page_top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ハンバーガーメニュー */
.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: #00000080;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
}

.overlay.-active {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.hamburger {
  display: none;
  height: 43px;
  position: absolute;
  z-index: 100;
  width: 43px;
  top: 50%;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line:before {
  top: 0;
  transform: rotate(30deg);
}
.hamburger.-active .hamburger__line:after {
  top: 0;
  transform: rotate(-30deg);
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  background: var(--maincolor);
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background: var(--maincolor);
  transition: inherit;
}

.hamburger__line:before {
  top: -10px;
}
.hamburger__line:after {
  top: 10px;
}
body:not(.-active) header.top_header:not(.is_top) .hamburger__line,
body:not(.-active) header.top_header:not(.is_top) .hamburger__line:before,
body:not(.-active) header.top_header:not(.is_top) .hamburger__line:after {
  background: #fff;
}


/* メニューのスタイル */
.js-nav-area {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #ffffffb3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 1vw;
  z-index: 5;
}

/* メニューが開いたとき */
.js-nav-area.-active {
  opacity: 1; /* 不透明にする */
  pointer-events: auto; /* クリック可能にする */
}
.sp_nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
}
.sp_nav__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sp_nav__wrap li {
  opacity: 0;
  transform: translateY(30px);
}

/* active時 */
.header__nav-area.-active .sp_nav__wrap li {
  animation: navFadeUp 2s cubic-bezier(.19,1,.22,1) forwards;
}

/* 時間差をゆっくり */
.header__nav-area.-active .sp_nav__wrap li:nth-child(1) {
  animation-delay: .24s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(2) {
  animation-delay: .36s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(3) {
  animation-delay: .48s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(4) {
  animation-delay: .60s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(5) {
  animation-delay: .72s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(6) {
  animation-delay: .84s;
}

.header__nav-area.-active .sp_nav__wrap li:nth-child(7) {
  animation-delay: .86s;
}

/* 閉じる時に即リセット */
.header__nav-area:not(.-active) .sp_nav__wrap li {
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}
/* 2回目以降（no-animクラスあり）はアニメーションなしで即表示 */
.header__nav-area.-active.no-anim .sp_nav__wrap li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  animation: none;
  transition: none;
}

/* テキスト */
.sp_nav__wrap a {
  display: inline-block;
  font-size: clamp(2rem, 3vw, 30px);
  letter-spacing: .08em;
  line-height: 1.2;
}
/* アニメーション */
@keyframes navFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.sp_nav__sns_list {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}
.sp_nav__sns_list img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(0%) saturate(7300%) hue-rotate(49deg) brightness(93%) contrast(107%);
}
.sp_nav__sns_list li:last-child {
  padding-bottom: 2px;
}
header {
  --gap: clamp(16px, 3vw, 50px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  transition: background-color 0.4s ease-in-out;
  background: var(--bg_lb);
}
header.top_header:not(.is_top) {
  background: #2418144d;
}
header.is_top,
header:not(.top_header) {
  background: var(--bg_lb);
}
footer {
  background: var(--bg_lb);
}
.header__inner {
  width: var(--w-inner);
  margin-inline: auto;
  position: relative;
  border-bottom: 1px solid var(--maincolor);
}
body.home main {
  padding-top: 0;
}

body:not(.-active) header.top_header:not(.is_top) .header__logo img,
header.top_header:not(.is_top) .header__sns_list img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(108%);
}
.header__logo {
  width: clamp(200px, 20vw, 400px);
}
.header_item__wrap {
  padding-block: clamp(16px, 1.5vw, 28px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  transition: 0.4s ease-in-out;
  column-gap: var(--gap);
}
header.top_header:not(.is_top) .header_item__wrap {
  padding-block: clamp(16px, 1.5vw, 28px);
}
.header_item__wrap {
  padding-block: clamp(16px, 1vw, 28px);
}
.header__right {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: flex-end;
  column-gap: var(--gap);
}
.global_nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: var(--gap);
  font-size: 0.95rem;
}
.global_nav a {
  color: var(--maincolor);
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.global_nav a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--maincolor);
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.global_nav a:hover:after {
  transform: translate(0, 0);
}
.top_header.is_top .global_nav a {
  color: var(--maincolor);
}
.top_header .global_nav a {
  color: #fff;
}
body:not(.-active) header.top_header:not(.is_top) .header__inner {
  border-bottom: none;
}
header.top_header:not(.is_top) .global_nav a:after {
  background-color: #fff;
}
.header__sns_list {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.header__sns_list li {
  padding: .5em;
}
.header__sns_list li:last-child {
  padding-right: 0;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: #00000080;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.-active {
  width: 100%;
  height: 100%;
  opacity: 1;
}
html.-active, body.-active {
  overflow: hidden;
}
.header__nav-area {
  position: fixed;
  right: -100%;
  z-index: 90;
  width: 100%;
  visibility: hidden;
  transition: 0.4s;
  background: #fff;
  top: 0;
}
.header__nav-area.-active {
  right: 0;
  visibility: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 6vw;
  overflow-y: scroll;
}
.copyright, .footer__nav_list a {
  font-family: var(--f-gothic);
  font-weight: 500;
  letter-spacing: normal;
}
.copyright {
  text-align: center;
  font-size: .8rem;
}
footer {
  padding-bottom: 2px;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px 16px;
  width: var(--w-inner);
  margin-inline: auto;
  border-top: 1px solid var(--maincolor);
}
.footer__sns_list {
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.footer__sns {
  margin-top: clamp(40px, 8vw, 180px);
}
.footer__nav_list, .footer__sns_list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 30px);
}

.logo {
  margin-top: var(--s-mm);
}
.logo img {
  margin-inline: auto;
}
.theme {
  font-size: 1.6rem;
  letter-spacing: .3em;
  font-weight: 600;
  margin-right: -.3em;
}
.slide_on {
  position: absolute;
  z-index: 10;
  top: calc(var(--header-height) + 3%);
  right: 4%;
  text-align: right;
}
.slide_btn {
  --arrow: 45px;
  margin-top: 1vw;
  width: fit-content;
  margin-left: auto;
  word-break: keep-all;
  white-space: nowrap;
}
.slide_btn a {
  color: var(--maincolor);
  border: 1px solid;
  font-size: 1rem;
  display: grid;
  grid-template-columns: auto var(--arrow);
  column-gap: 8px;
  align-items: baseline;
  position: relative;
  padding-block: 12px;
  padding-inline: 24px;
}
/*----arrow----*/
.arrow, .arrow02 {
  position: relative;
  right: 0;
  transition: all 0.5s ease;
}
.arrow::after, .arrow02::after{
  content: "";
  background: url(../img/arrow.svg)no-repeat bottom;
  display: inline-block;
  width: 45px;
  height: 1em;
}

.slide_btn a:hover .arrow {
    transform: translateX(10px);
    transition: all 0.5s ease-in-out;
}

.scroll_arrow {
  position: absolute;
  right: 4%;
  bottom: 8px;
  z-index: 1;
  display: block;
}

/*btn01*/
.btn01 {
  width: fit-content;
  margin-inline: auto;
  --arrow : clamp(2em, 4vw, 58px)
}
.btn01 a {
  border: 1px solid;
  border-color: inherit;
  font-size: 1.1rem;
  display: grid;
  grid-template-columns: auto var(--arrow);
  align-items: baseline;
  position: relative;
  padding-block: 12px;
  padding-inline: clamp(24px, 3vw, 30px);
  background: #fff;
  letter-spacing: .3em;
  transition: all 0.3s ease-in-out;
}
.btn01__text {
  position: relative;
  transition: all 0.3s ease-in-out;
  letter-spacing: .2em;
}
.btn01 a:hover, .slide_btn a:hover {
  color: var(--hov);

}
.btn01 a:hover .btn01__txt {
  color: var(--hov);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.btn01 a .arrow {
  transition: all 0.5s ease-in-out;
}
.btn01 a:hover .arrow {
  transform: translateX(10px);
}


/*TOP content*/
.philosophy__wrap .btn01 {
  margin-block: 2vw;
  margin-block: 2cqw;
}
.top_content {
  margin-top: var(--s-mm);
  margin-bottom: var(--s-mm);
}
.top_content:not(.philosophy__wrap) {
  margin-top: var(--s-l);
}
.top_content__inner {
  width: var(--w-inner);
  margin-inline: auto;
}
.top_content__ttl {
  font-family: var(--f-en);
  font-size: 2.4rem;
  letter-spacing: .1em;
}
.ttl_link__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5vw;
  margin-bottom: 1.5cqw;
}
.top_content hgroup p {
  font-size: 1.2rem;
  margin-top: 4px;
}
.collection__list, .news__list, .item_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  column-gap: clamp(8px, 2vw, 32px);
  row-gap: 6vw;
  row-gap: 6cqw;
}
@media screen and (min-width: 1600px) {
  .collection__list, .news__list, .item_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection__list li img, .product__list li img, .news__list li img, .item_list li img {
  width: 100%;
}
.collection__list li img, .product__list li img, .item_list li img {
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
@supports not (aspect-ratio: 1) {
  .collection__list li figure, .product__list li figure, .item_list li figure {
    position: relative;
    padding-top: 100%; /* 1:1 */
    height: 0;
  }
  .collection__list li figure img, .product__list li figure img, .item_list li figure img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.news__list li {
  display: grid;
}
.news__list li a {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.news__list img {
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
@supports not (aspect-ratio: 1) {
  .news__list li figure {
    position: relative;
    padding-top: 66.67%; /* 3:2 = 2÷3×100% */
    height: 0;
  }
  .news__list li figure img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.collection__list h3, .product__list h3 {
  font-size: var(--ttl);
  font-family: var(--f-en);
  margin-top: 1vw;
  margin-top: 1cqw;
  text-align: center;
}
.product__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  column-gap: clamp(8px, 2vw, 32px);
  row-gap: 6vw;
  row-gap: 6cqw;
}
.product__list li figure, .collection__list li figure, .news__list li figure, .item_list li figure {
  overflow: hidden;
}
.product__list img, .collection__list img, .news__list img, .item_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
@media (any-hover: hover) {
  .product__list a:hover img, .collection__list a:hover img, .news__list a:hover img, .item_list a:hover img {
    transform: scale(1.1);
  }
}

@media screen and (min-width: 1600px) {
  .product__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.news__list h3 {
  font-size: var(--ttl);
  margin-top: 1vw;
  margin-top: 1cqw;
  margin-bottom: 4px;
}
.list_date {
  font-family: var(--f-gothic);
  font-weight: 600;
  margin-top: auto;
}
.venue {
  margin-bottom: 4px;
}
.product__list h3, .news__list h3 {
  font-weight: 600;
}
.top_detail_btn {
  text-align: right;
}
.top_detail_btn a {
  position: relative;
  --arrow: 50px;
  display: grid;
  grid-template-columns: auto var(--arrow);
  column-gap: 8px;
  transition: all 0.5s ease-in-out;
}
.top_detail_btn a:hover .arrow02 {
    transform: translateX(10px);
    transition: all 0.5s ease-in-out;
}
.philosophy {
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* 改行制御 */
.br {
  display: inline-block;
}
.sp_br {display: none;}

/* アニメーション */
/*.line {
  opacity: 0;
  filter: blur(6px);

  transition:
    opacity 2.8s cubic-bezier(.19,1,.22,1),
    filter 2.8s cubic-bezier(.19,1,.22,1);
}

.philosophy.is-show .line {
  opacity: 1;
  filter: blur(0);
}

.philosophy.is-show .line:nth-of-type(1) {
  transition-delay: 0s;
}

.philosophy.is-show .line:nth-of-type(2) {
  transition-delay: 0.8s;
}

.philosophy.is-show .line:nth-of-type(3) {
  transition-delay: 1.6s;
}
*/

/** page **/
.page_content h1, .news_cate_ttl {
  text-align: center;
  padding-block: clamp(24px, 4vw, 56px);
  font-size: var(--page_ttl);
  font-family: var(--f-en);
  letter-spacing: .15em;
  margin-top: -29px;
}
.news_cate_ttl {
  font-weight: 500;
}

.page_ttl {
  text-align: center;
  padding-block: clamp(24px, 4vw, 56px);
  letter-spacing: .15em;
  margin-top: -29px;
}

.page_ttl h1 {
  font-size: var(--page_ttl);
  font-family: var(--f-en);
  letter-spacing: .15em;
}
.page_ttl p {
  font-size: 1.2em;
  margin-top: 4px;
}
.company td a {
  text-decoration: underline;
}
.content_header img {
  width: 100%;
}
.content__inner, .img_content {
  width: var(--w-inner);
  margin-inline: auto;
  padding-block: clamp(40px, 5vw, 100px);
}
.products .content__inner, .stocklist .content__inner {
  padding-top: revert;
}

.bland-story .page_content:not(:has(.content_header)) .content__inner  {
  border-top: 1px solid;
}
h2.content__ttl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: var(--s-m);
}
.collection h2.content__ttl {
  letter-spacing: .2rem;
}
.content__txt p {
  font-size: var(--fs-mm);
  line-height: 2;
  text-align: center;
  margin-bottom: var(--s-m);
}

.content__philosophy {
  font-size: var(--fs-l);
  margin-bottom: var(--s-m);
  text-align: center;
}

.soh_content {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 4vw;
}

.soh_content article + article {
  border-left: 1px solid;
}

.soh_content article {
  padding-inline: clamp(16px, 2vw, 24px);
  text-align: center;
}

.soh_info {
  line-height: 2;
}

.soh_content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.detail_page__btn {
  margin-top: clamp(30px, 4vw,60px);
}

.detail_page__btn a {
  letter-spacing: normal;
}

.btn01.detail_page__btn a {
  gap: 4px;
  font-size: 1.2rem;
  padding-inline: clamp(16px, 2vw, 24px);
}

.img_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}
.l-img {
  flex-direction: row-reverse;
}
.img_content__txt {
  flex: 1;
  /*padding: clamp(24px, 3vw, 48px);*/
}
.img_content__img {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img_content__img img {
  width: 100%;
}
.r-img {
  margin-right: calc(50% - 50vw);
}
.l-img {
  margin-left: calc(50% - 50vw);
}

.default_page .page_content_01 .img_content, .news_list .content__inner, .news_content__wrap .content__inner {
  padding-top: 0;
}
.zoom {
  overflow: hidden;
}
.zoom img {
  transition: transform .8s ease;
}
.zoom img:hover {
  transform: scale(1.05);
}
.header_zoom {
  overflow: hidden;
  width: 100%;
  display: block;
}
.header_zoom img{
    transition: transform .8s ease;
}
.header_zoom img:hover {
  transform: scale(1.05);
}

@supports not (aspect-ratio: 1) {
  .img_content__img {
    position: relative;
    padding-top: 33.33%; /* 3:2の比率 × 幅50% = 2÷3×50% */
    height: 0;
  }
  .img_content__img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
  }
}
.default_page h2.content__ttl, .default_page .content__philosophy, .default_page .content__txt p {
  text-align: left;
}
.default_page .content__txt {
  font-size: var(--fs-mm);
}
th, td {
  text-align: left;
  font-weight: 600;
  padding: 1rem;
}
tr {
  border-top: 1px solid;
}
tbody {
  border-bottom: 1px solid;
}
th {
  border-right: 1px solid;
}
.txt_content {
  width: var(--w-inner);
  margin-inline: auto;
  padding-inline: clamp(24px, 3vw, 48px);
}

@media screen and (min-width:2000px) {
  .r-img {
    margin-right: revert;
  }
  .l-img {
    margin-left: revert;
  }
  .img_content {
    max-width: 2000px;
    margin-inline: auto;
  }
  .txt_content {
    padding-inline: revert;
  }
}

.item_list li {
  display: grid;
  grid-template-columns: 1fr; /* subgrid未対応ブラウザ向けフォールバック */
  grid-template-columns: subgrid;
  grid-template-rows: max-content 1fr;
}
.product_info {
  margin-block: var(--s-sm);
  display: flex;
  flex-direction: column;
}
.price {
  margin-block: 8px;
  font-family: var(--f-gothic);
  font-weight: 600;
}
.item_ttl {
  font-size: var(--ttl);
  font-weight: 600;
}
.category_ttl {
  font-size: 2rem;
  letter-spacing: .1em;
  margin-bottom: 1.5vw;
  margin-bottom: 1.5cqw;
}
.category_info {
    margin-bottom: 1.5vw;
    margin-bottom: 1.5cqw;
}
.fadeup_list li {
  opacity: 0;
  filter: blur(0.4em);
  transform: translateY(40px);
  will-change: transform, opacity, filter;
  animation-fill-mode: forwards;
}

.fadeup_list li.is-visible {
  animation-name: fadeUpBlur;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeUpBlur {
  0% {
    opacity: 0;
    filter: blur(0.4em);
    transform: translateY(40px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.shop_location {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2vw;
  margin-bottom: 2cqw;
}
.shop_name {
  font-weight: 600;
  font-size: 1.3rem;
}
.shop_add, .handled {
  font-family: var(--f-gothic);
}

.handled {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.shop_info__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  margin-top: 1.5vw;
  margin-top: 1.5cqw;
}
.stock_list {
  margin-bottom: 6vw;
  margin-bottom: 6cqw;
}
.stock_list > li {
  margin-block: var(--s-sm);
  padding-block: var(--s-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
  align-items: stretch;
}
.stock_list, .stock_list > li + li {
  border-top: 1px solid #ddd;
}
.shop_info__link a {
  display: flex;
  align-items: self-end;
  column-gap: 8px;
}
.s_arrow {
  position: relative;
  right: 0;
  transition: all 0.5s ease;
}
.s_arrow:after {
  content: "";
  background: url(../img/arrow.svg)no-repeat bottom;
  display: inline-block;
  width: 45px;
  height: 1em;
}

.news_content {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(24px, 4vw, 56px);
  margin-top: 4vw;
  margin-top: 4cqw;
}
.news__img {
  flex-shrink: 0;
  width: 40%;
}
.news__img img {
  width: 100%;
}
.txt__wrap {
  flex: 1;
  padding: clamp(24px, 3vw, 48px);
  display: grid;
  row-gap: 3vw;
  row-gap: 3cqw;
}
.news__txt p {
  font-family: var(--f-gothic);
}
.news__txt p a {
  text-decoration: underline;
}
.news__txt p + p {
  margin-top: 1em;
}
.news_detail_btn {
  margin-top: auto;
}
/* ページネーション */
.pagination {
  margin-top: clamp(40px, 5vw, 80px);
  text-align: center;
}
.pagination__list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.pagination__item a,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid currentColor;
  color: var(--maincolor);
  transition: background-color 0.3s, color 0.3s;
}
.pagination__item a:hover {
  background: var(--maincolor);
  color: #fff;
}
.pagination__item--current span {
  background: var(--maincolor);
  color: #fff;
  border-color: var(--maincolor);
}
.pagination__item--prev a,
.pagination__item--next a {
  font-size: 1.2rem;
}
.content__txt table p {
  margin-bottom: 0;
}