/* ===== base ===== */
* {
  box-sizing: border-box;
}

html {font-size: 16px; scroll-behavior: smooth;}
body, h1, h2, h3, h4, h5, h6, p, address,ul, ol, li, dl, dt, dd,table, th, td, img, form, input,figure {margin: 0; padding: 0; list-style-type: none; font-size: 1rem; font-style: normal; font-family: "Noto Sans JP", sans-serif; font-weight: 400; -webkit-text-size-adjust: 100%; font-feature-settings: "palt";}
a {text-decoration: none;　color: inherit;}
a:hover {filter:alpha(opacity=100); -ms-filter: "alpha(opacity=100)"; -moz-opacity:1.0; -khtml-opacity: 1.0; opacity:1.0; zoom:1;}

body.is-menu-open {
  overflow: hidden;
}

/* noto-sans-jp-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-jp-v55-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-jp-v55-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*-----------------/// Header ///-----------------*/
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: auto;
  transition: background-color .4s ease, box-shadow .4s ease;
}

.global-header a {
  transition: color .4s ease;
}

.global-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}

/*/// TOP-Page menu-color ///*/
.home .global-header a,
.home .global-header a:link,
.home .global-header a:visited {
  color: #ffffff;
}

/*/// CONTENTS-Page menu-color ///*/
.page .global-header a,
.single .global-header a,
.archive .global-header a {
  color: #4d4d4d;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.global-menu {
  display: flex;
  gap: 20px;
}

.global-menu a {
  font-size: 0.85rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

.global-header .global-menu > li > a {
  color: #ffffff;
  transition: color .3s ease;
}

/*/// Logo ///*/
.global-header .global-logo {
  position: relative;
}

.global-header .global-logo .storelogo {
  display: block;
  width: 70px;
  height: 70px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center center;
  transition: 0.3s ease;
  background: #ffffff;
  -webkit-mask-image: url('../img/logo.svg');
  mask-image: url('../img/logo.svg');
}

.global-header .global-logo .site-logo-link {
  display: block;
}

.global-header .global-logo .site-logo-image {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/*/// Icon(FV) ///*/
.global-header .global-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.global-header .global-icons .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center center;
  transition: 0.3s ease;
  background: #ffffff;
}

.global-header .global-icons .icon:hover {
  background: #4d4d4d;
}

.global-icons .icon-x {
  -webkit-mask-image: url('../img/icon_x.svg');
  mask-image: url('../img/icon_x.svg');
}

.global-icons .icon-instagram {
  -webkit-mask-image: url('../img/icon_instagram.svg');
  mask-image: url('../img/icon_instagram.svg');
}

.global-icons .icon-tiktok {
  -webkit-mask-image: url('../img/icon_tiktok.svg');
  mask-image: url('../img/icon_tiktok.svg');
}

.global-icons .icon-line {
  -webkit-mask-image: url('../img/icon_line.svg');
  mask-image: url('../img/icon_line.svg');
}

.global-icons .icon-youtube {
  -webkit-mask-image: url('../img/icon_youtube.svg');
  mask-image: url('../img/icon_youtube.svg');
}

.global-icons .icon-facebook {
  -webkit-mask-image: url('../img/icon_facebook.svg');
  mask-image: url('../img/icon_facebook.svg');
}

.global-icons a.icon-circle {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  position: relative;
}

.global-icons a.icon-circle:hover {
  background-color: #9f9a8e;
}

.global-icons .icon-circle>.largeicon {
  display: block;
  width: 22px;
  height: 22px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center center;
  transition: 0.3s ease;
  background: #9f9a8e;
  pointer-events: auto;
}

.global-icons .icon-circle>.icon-user {
  -webkit-mask-image: url('../img/icon_user.svg');
  mask-image: url('../img/icon_user.svg');
}

.global-icons .icon-circle>.icon-cart {
  -webkit-mask-image: url('../img/icon_cart.svg');
  mask-image: url('../img/icon_cart.svg');
}

.global-icons .icon-circle {
  position: relative;
}

.global-icons .cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background-color: #d7263d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
  box-sizing: border-box;
}

.global-icons .cart-badge.is-visible {
  display: inline-block;
}

.global-icons .icon-circle.is-hidden {
  display: none;
}

.global-icons .icon-circle>.largeicon:hover {
  background-color: #ffffff;
}

.global-icons .global-user {
  position: relative;
}

.global-icons .global-user .user-tooltip {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 6px);
  background: #4d4d4d;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.global-icons .global-user .user-tooltip__name {
  display: block;
  margin-bottom: 6px;
}

.global-icons .global-user .user-tooltip__hint {
  display: block;
  font-size: 11px;
  opacity: 0.85;
}

.front-search.is-hidden {
  display: none;
}

.rank-link-disabled {
  pointer-events: none;
  cursor: default;
}

.global-icons .global-user:hover .user-tooltip,
.global-icons .global-user:focus-within .user-tooltip {
  opacity: 1;
  transform: translate(-50%, 10px);
  pointer-events: auto;
}

/*/// Header Scrolled ///*/
.global-header.is-scrolled {background: rgba(255,255,255,0.95); box-shadow: 0 4px 16px rgba(0,0,0,0.08);}
.global-header.is-scrolled .global-menu>li>div>a {color: #4d4d4d;}
.global-header.is-scrolled .storelogo {background: #4d4d4d;}
.global-header.is-scrolled .global-icons img {filter: none;}
.global-header.is-scrolled .global-icons .icon {background: #4d4d4d;}
.global-header.is-scrolled .hamburger span {background: #4d4d4d;}
.global-header.is-scrolled .hamburger.is-open span {background: #ffffff;}
.global-header.is-scrolled .global-icons a.icon-circle {background-color: #4d4d4d;}
.global-header.is-scrolled .global-icons a.icon-circle:hover {background-color: #9f9a8e;}
.global-header.is-scrolled .global-icons .icon-circle>.largeicon {background: #ffffff;}
.global-header.is-scrolled .global-icons .icon-circle>.largeicon:hover {background-color: #ffffff;}

/*/// Mega menu ///*/
.has-mega {
  position: relative;
}

.mega-menu {
  position: fixed;
  left: 0;
  top: 60px; /* ヘッダー高さに合わせる */
  width: 100%;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 100%
  );
  padding: 40px 60px;
  opacity: 0;
  visibility: hidden;
  /*transform: translateY(10px);*/
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.has-mega:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  /*transform: translateY(0);*/
}

.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 20px;
}

.mega-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-menu>.mega-list>li>a,
.mega-menu>.mega-list>li>a:link,
.mega-menu>.mega-list>li>a:visited {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: #4d4d4d;
  letter-spacing: 0.05em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.mega-menu>.mega-list>li>a>.mega-list-photo {
  width: 100px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto 10px;
  border-radius: 5px;
}

.mega-menu>.mega-list>li>a>.mega-list-photo>img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mega-menu>.mega-list>li>a:hover>.mega-list-photo>img {
  transform: scale(1.05);
}

.mega-menu>.mega-list>li>a>span {
  display: block;
  color: #4d4d4d;
  letter-spacing: 0.05em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

/*/// SP Mega menu 非表示 ///*/
.sp-toggle {
  display: none;
}

/*/// Hamburger Menu ///*/
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: transform .4s ease, opacity .3s ease, background .3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

/*/// Hamburger Menu OPEN ///*/
.hamburger.is-open span {
  background: #ffffff; /* OPEN中は白 */
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

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

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/*-----------------/// SP Header ///-----------------*/
@media screen and (max-width: 1000px) {
.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform .4s ease;
}

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

.global-menu {
  width: 90%;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}
	
.global-menu a {
  font-size: 1.0rem;
  letter-spacing: 0.08em;
}
	
.global-header__inner {
  padding: 12px 4%;
}
	
.global-header .global-logo .storelogo {
  width: 45px;
  height: 45px;
}

.global-header .global-logo .site-logo-image {
  width: 45px;
  height: 45px;
}

.global-icons {
  justify-content: center;
}

.global-icons .icon {
  width: 22px;
  height: 22px;
  background: #ffffff;
}

.global-icons a.icon-circle {
  width: 30px;
  height: 30px;
  background: none;
  border: 1px solid #ffffff;
}
	
.global-icons a.icon-circle:hover {
  background-color: #4d4d4d;
}

.global-icons .icon-circle>.largeicon {
  width: 22px;
  height: 22px;
  background: #ffffff;
}

.hamburger {display: block;}

/*/// SP Mega menu ///*/
.nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  font-size: 1.0rem;
  padding: 10px 0;
  display: block;
}

.sp-toggle {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  position: relative;
  display: flex;
}

.sp-toggle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(45deg);
  transition: transform .3s;
}

.has-mega.is-open .sp-toggle::before {
  transform: rotate(-135deg);
}

.mega-menu {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
}
	
.mega-list {
  display: block;
  width: 95%;
  margin: 0 auto 20px;
  transition: transform .4s ease;
}

.mega-list li {
  margin: 0 auto 12px;
}

.mega-menu>.mega-list>li>a,
.mega-menu>.mega-list>li>a:link,
.mega-menu>.mega-list>li>a:visited {
  color: #ffffff;
  text-align: left;
}

.mega-menu>.mega-list>li>a>span {
  color: #ffffff;
}

.mega-menu>.mega-list>li>a>.mega-list-photo {
  display: none;
}

.has-mega.is-open .mega-menu {
  display: block;
  padding: 0;
  background: none;
  box-shadow: none;
}

.has-mega {border-bottom: 1px solid #ffffff;}
.has-mega::after {height: 0;}
	
.global-header.is-scrolled .global-menu>li>div>a {color: #ffffff;}
.global-header.is-scrolled .global-icons .icon {background: #ffffff;}
.global-header.is-scrolled .global-icons a.icon-circle {background-color: #000000;}
}


/*-----------------/// FV ///-----------------*/
.fv-swiper {
  width: 100%;
  height: 60vh;
  max-height: 800px;
}

.fv-swiper .swiper-slide {
  overflow: hidden;
}

.fv-swiper .fv-slide-alt-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: #f3f3f3;
  color: #555;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.fv-swiper a {
  display: block;
  width: 100%;
  height: 100%;
}

.fv-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

.fv-swiper .swiper-slide-active img {
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 798px) {
.fv-swiper {
    height: 70vh;
  }

.fv-swiper .swiper-slide-active img {
    transform: scale(1.05); /* スマホはズーム弱め */
  }
}

/*-----------------/// FV Slider ///-----------------*/
.slider-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 50px;
  overflow: hidden;
  background-color: #cbd2d2;
}

.slick-slide {
  margin: 0 20px; /* スライド間の隙間 */
  height: auto !important;
  transition: transform 0.4s ease; /* アニメーションを滑らかに */
  opacity: 0.5; /* 中央以外を少し薄く（お好みで） */
}

.slick-track {
  display: flex;
  align-items: center;
}

.slide-item .banner-slide-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3e6e6;
  color: #666;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.08em;
}

.slick-center {
  transform: scale(1.1);
  z-index: 10;
  opacity: 1;
}

.slick-list {
  padding: 20px 0 30px !important; /* 上下の拡大分を確保 */
}

.slide-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.slide-item a {
  display: block;
  text-decoration: none;
}

.slick-dots li button:before {
  content: none !important;
}

.slick-dots {
  bottom: -30px; /* スライダーの下からの距離 */
  text-align: center;
}

.slick-dots li button {
  width: 10px;           /* ドットの大きさ */
  height: 10px;          /* ドットの大きさ */
  padding: 0;
  cursor: pointer;
  background: transparent; /* 背景透明 */
  border: 1px solid #ffffff; /* 枠線 */
  border-radius: 50%;
  outline: none;
  transition: all 0.3s;  /* 切り替わりを滑らかに */
  font-size: 0;
  color: transparent;
  display: block;
}

.slick-dots li.slick-active button {
  background: #ffffff;
}

.slick-dots li {
  margin: 0 6px;
  width: 12px;
  height: 12px;
  display: inline-block;
}

@media screen and (max-width: 1000px) {
.slider-container {
  padding: 3%;
}
}

/*-----------------/// Philosophy ///-----------------*/
.philosophy-container {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #cbd2d2;
}

.philosophy-container>.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.philosophy-container>.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.philosophy-container>.content>.text-box {
  width: 50%;
}

.philosophy-container>.content>.text-box>h2.title {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3rem;
}

.philosophy-container>.content>.text-box>p.lead {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  padding-left: 3rem;
}

.philosophy-container>.content>.text-box>.description>p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  font-weight: 400;
  color: #ffffff;
  padding-left: 3rem;
}

@media screen and (max-width: 1100px) {
.philosophy-container>.content {
  max-width: 1000px;
}
}

@media screen and (max-width: 1000px) {
.philosophy-container {
  flex-direction: column;
  height: auto;
}

.philosophy-container>.background-image {
  position: relative; /* スマホ版では下に配置 */
  height: 450px; /* 画像の表示高さを指定 */
  object-position: right;
}

.philosophy-container>.content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.philosophy-container>.content>.text-box {
  width: 100%;
  margin-bottom: 0;
}

.philosophy-container>.content>.text-box>h2.title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.philosophy-container>.content>.text-box>p.lead {
  font-size: 1.0rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.philosophy-container>.content>.text-box>.description>p {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.8em;
  font-weight: 400;
  padding-left: 0;
}
}

/*-----------------/// TOP Menu ///-----------------*/
.topmenu {width: 1050px; margin: 30px auto 150px; padding: 0;}
.topmenu>.menuList {width: 70%; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;}
.topmenu>.menuList>div {text-align: center;}
/*.topmenu>.menuList>div::after {content: "／"; margin: 0 auto 0 50px;}*/
.topmenu>.menuList>div>a {margin: 0 auto 0; padding: 0 0 8px; font-size: 1.0rem; font-weight: 400; line-height: 1.0; letter-spacing: 0.05em; font-family: "Montserrat", "Noto Sans JP", sans-serif; color: #4d4d4d; text-align: center; text-decoration: none; position: relative;}
.topmenu>.menuList>div>a::after {content: ""; position: absolute; left: 50%; bottom: -2px; width: 100%; height: 1px; background-color: #4d4d4d; transform: translateX(-50%) scaleX(0); transform-origin: center; transition: transform 0.3s ease;}
.topmenu>.menuList>div>a:hover::after {transform: translateX(-50%) scaleX(1);}

@media screen and (max-width: 1050px) {
.topmenu {width: 100%;}
}

@media screen and (max-width: 1000px) {
.topmenu {margin: 10px auto 100px;}
.topmenu>.menuList {width: 90%; grid-template-columns: repeat(1, 1fr); gap: 0;}
.topmenu>.menuList>div {margin: 0 auto 30px;}
.topmenu>.menuList>div>a {font-size: 1.0rem;}
}

/*-----------------/// News ///-----------------*/
.news-section {
  width: 100%;
  padding-left: 10%; /* PC版の左余白 */
  padding-right: 2%; /* 右側もバランスのため少し確保（必要に応じて0に） */
}

.news-section>.news-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.news-section>.news-header>h2 {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #4d4d4d;
}

.news-section>.news-header>.news-header>span {
  font-size: 13px;
  color: #4d4d4d;
}

.news-section>.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.news-section>.news-grid>.news-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-section>.news-grid>.news-item>.news-date {
  font-size: 0.7rem;
  margin-bottom: 10px;
  display: block;
}

.news-section>.news-grid>.news-item>.news-image {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.news-section>.news-grid>.news-item>.news-image>a>img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-section>.news-grid>.news-item>.news-image>a:hover>img {
  transform: scale(1.05);
}


.news-section>.news-grid>.news-item>a.news-text,
.news-section>.news-grid>.news-item>a:link,
.news-section>.news-grid>.news-item>a:visited {
  font-size: 0.8rem;
  color: #4d4d4d;
  line-height: 2.0;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-section>.topNav-all {
	width: 100%;
	margin: 0 auto 10px;
	text-align: right;
}

.news-section>.topNav-all>a {
    width: 80px;
    font-size: 0.9rem;
	padding: 7px 20px 10px 30px;
    color: #333;
    border: solid 1px #BFBFBF;
    cursor: pointer;
    text-align: left;
    transition: .3s;
    position: relative;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.news-section>.topNav-all>a>span::before,
.news-section>.topNav-all>a>span::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 1px;
    background-color: #333;
    border-radius: 100vh;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}

.news-section>.topNav-all>a>span::after {
    transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 1000px) {
.news-section {
  padding-left: 20px;
  padding-right: 20px;
}

.news-section>.news-grid {
  width: 90%;
  margin: 0 auto;
  grid-template-columns: 1fr; /* 縦並び */
  gap: 40px;
}

.news-section>.news-header>h2 {
  font-size: 1.3rem;
}

.news-section>.news-grid>.news-item>a.news-text,
.news-section>.news-grid>.news-item>a:link,
.news-section>.news-grid>.news-item>a:visited {
  font-size: 0.7rem;
  line-height: 1.8;
}
}

/*-----------------/// Business ///-----------------*/
.business-section {  
	margin: 0 auto; 
	padding: 150px 0;
}

.business-section>.business-container {
    width: 100%;
    max-width: none;
	margin: 0 auto;
    position: relative;
}

.business-section .content_box_white {
    color: #ffffff;
    display: flex;
    position: relative;
    z-index: 2;
}

.business-section .content_box_white::before {
    content: '';
    width: calc(100% - 100px);
    height: 100%;
    background-color: var(--section2-bg-color, #807a73);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.business-section .business-image {
    width: 35%;
    position: relative;
    top: 50px;
    overflow: hidden;
}

.business-section .image-box:first-child {
    width: 100%;
}

.business-section .image-box img {
    display: block;
    width: 100%;
    height: auto;
}

.business-section .image-box .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    background: #d8d8d8;
    color: #555;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 0.1em;
}

.business-section .business_content {
    padding: 20px;
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-section .business_content-inner {
    max-width: 500px;
}


.business-section .business_content-inner>h2.business-title-en {
    margin: 0 auto 25px;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 2.0rem;
    color: #ffffff;
    letter-spacing: 0.10em;
    display: block;
    line-height: 1.0;
    font-weight: 400;
}

.business-section .business_content-inner>h2>span {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    display: block;
    margin-top: 10px;
}

.business-section .business_content-inner>p {
    font-size: 0.95rem;
    line-height: 2;
    color: #ffffff;
    font-weight: 400;
    text-align: justify;
}

@media screen and (max-width: 1000px) {
.business-section {  
	padding: 100px 0;
	}

.business-section>.business-container {
	width: 100%;
	max-width: none;
    }

.business-section .content_box_white {
    display: flex;
	flex-wrap: wrap;
	}

.business-section .content_box_white::before {
    width: 100%;
    height: 100%;
}

.business-section .business_content {
    width: 100%;
	padding: 40px 7%;
	order: 2;
    }

.business-section .business_content-inner {
	max-width: none;
	width: 100%;
    }
	
.business-section .business-image {
	width: 100%;
	top: 0;
	order: 1;
    }

.business-section .image-box img {
	vertical-align: top;
    }
	
.business-section .business_content-inner>h2.business-title-en {
    font-size: 1.4rem;
	}

.business-section .business_content-inner>h2>span {
    font-size: 1.0rem;
	}

.business-section .business_content-inner>p {
    font-size: 0.8rem;
    font-weight: 400;
	}
}

/*-----------------/// Business Menu ///-----------------*/
.business-menu-section {width: 1050px; margin: 30px auto 0; padding: 0;}
.business-menu-section>.menuList {width: 100%; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;}
.business-menu-section>.menuList>div {text-align: center; color: #4d4d4d; border-right: 1px solid #cfcfcf;}
.business-menu-section>.menuList>div:last-child {border: none;}
.business-menu-section>.menuList>div>h2 {margin: 0 auto 10px; padding: 0; font-size: 1.3rem; font-weight: 400; line-height: 1.0; letter-spacing: 0.05em; font-family: "Montserrat", "Noto Sans JP", sans-serif;}
.business-menu-section>.menuList>div>h2::before {content: "／"; margin-right: 10px;}
.business-menu-section>.menuList>div>h2::after {content: "／"; margin-left: 10px;}
.business-menu-section>.menuList>div>img {display: block; width: 250px; margin: 0 auto 10px;}
.business-menu-section>.menuList>div>h3 {margin: 0 auto 10px; padding: 0; font-size: 1.2rem; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em;}
.business-menu-section>.menuList>div>p {margin: 0 auto 30px; padding: 0; font-size: 0.9rem; font-weight: 400; line-height: 1.8; letter-spacing: 0.01em;}
.business-menu-section>.menuList>div>a {display: block; width: 250px; margin: 0 auto 0; padding: 13px 0 13px; font-size: 0.9rem; font-weight: 400; line-height: 1.0; letter-spacing: 0.05em; font-family: "Montserrat", "Noto Sans JP", sans-serif; color: #4d4d4d; text-align: center; text-decoration: none; border: 1px solid #4d4d4d; transition: background-color 0.3s ease, color 0.3s ease;}
.business-menu-section>.menuList>div>a:hover {color: #ffffff; background-color: #4d4d4d;}
.business-menu-section>.menuList>div>a>span::after {content: "▶"; margin-left: 10px; font-size: 0.6rem; color: #4d4d4d; top: -1px; position: relative;}
.business-menu-section>.menuList>div>a:hover>span::after {color: #ffffff;}

@media screen and (max-width: 1050px) {
.business-menu-section {width: 100%;}
}

@media screen and (max-width: 1000px) {
.business-menu-section {margin: 10px auto 0;}
.business-menu-section>.menuList {width: 90%; grid-template-columns: repeat(1, 1fr); gap: 0;}
.business-menu-section>.menuList>div {width: 100%; margin: 0 auto 50px; padding: 0 0 50px;  border-right: none; border-bottom: 1px solid #cfcfcf;}
.business-menu-section>.menuList>div:last-child {margin: 0 auto ; padding: 0;}
.business-menu-section>.menuList>div>h2 {font-size: 1.15rem;}
.business-menu-section>.menuList>div>img {width: 50%; margin: 0 auto 0;}
.business-menu-section>.menuList>div>h3 {font-size: 1.0rem;}
.business-menu-section>.menuList>div>p {font-size: 0.85rem;}
.business-menu-section>.menuList>div>a,
.business-menu-section>.menuList>div>a:link,
.business-menu-section>.menuList>div>a:visited {width: 80%; font-size: 0.8rem;}
}

/*-----------------/// Cosmetics ///-----------------*/
.cosmetics-section {  
	margin: 0 auto; 
	padding: 150px 0;
}

.cosmetics-section>.cosmetics-container {
    width: 100%;
    max-width: none;
	margin: 0 auto;
    position: relative;
}

.cosmetics-section .content_box_white {
    color: #ffffff;
    display: flex;
    position: relative;
    z-index: 2;
}

.cosmetics-section .content_box_white::before {
    content: '';
    width: calc(100% - 100px);
    height: 100%;
    background-color: var(--section4-bg-color, #807a73);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cosmetics-section .cosmetics-image {
    width: 35%;
    position: relative;
    top: 50px;
    overflow: hidden;
}

.cosmetics-section .image-box:first-child {
    width: 100%;
}

.cosmetics-section .image-box img {
    display: block;
    width: 100%;
    height: auto;
}

.cosmetics-section .image-box .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    background: #d8d8d8;
    color: #555;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: 0.1em;
}

.cosmetics-section .cosmetics_content {
    padding: 20px;
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cosmetics-section .cosmetics_content-inner {
    max-width: 500px;
}


.cosmetics-section .cosmetics_content-inner>h2.business-title-en {
    margin: 0 auto 25px;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 2.0rem;
    color: #ffffff;
    letter-spacing: 0.10em;
    display: block;
    line-height: 1.0;
    font-weight: 400;
}

.cosmetics-section .cosmetics_content-inner>h2>span {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    display: block;
    margin-top: 10px;
}

.cosmetics-section .cosmetics_content-inner>p {
    font-size: 0.95rem;
    line-height: 2;
    color: #ffffff;
    font-weight: 400;
    text-align: justify;
}

@media screen and (max-width: 1000px) {
.cosmetics-section {  
	padding: 100px 0;
	}

.cosmetics-section>.cosmetics-container {
	width: 100%;
	max-width: none;
    }

.cosmetics-section .content_box_white {
    display: flex;
	flex-wrap: wrap;
	}

.cosmetics-section .content_box_white::before {
    width: 100%;
    height: 100%;
}

.cosmetics-section .cosmetics_content {
    width: 100%;
	padding: 40px 7%;
	order: 2;
    }

.cosmetics-section .cosmetics_content-inner {
	max-width: none;
	width: 100%;
    }
	
.cosmetics-section .cosmetics-image {
	width: 100%;
	top: 0;
	order: 1;
    }

.cosmetics-section .image-box img {
	vertical-align: top;
    }
	
.cosmetics-section .cosmetics_content-inner>h2.business-title-en {
    font-size: 1.4rem;
	}

.cosmetics-section .cosmetics_content-inner>h2>span {
    font-size: 1.0rem;
	}

.cosmetics-section .cosmetics_content-inner>p {
    font-size: 0.8rem;
    font-weight: 400;
	}
}

/*-----------------/// Brand ///-----------------*/
.brand-section {
	width: 1050px;
	margin: 0 auto 100px;
	padding: 0;
}
.brand-section>.brand-container {
	width: 100%;
	margin: 50px auto 0;
	padding: 0;
}
.brand-section>.brand-container>.brand-bnr {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.brand-section>.brand-container>.brand-bnr>li {
	width: calc((100% - 0px) / 3);
	margin: 0;
}
.brand-section>.brand-container>.brand-bnr>li>p.catch {
	margin: 0 auto 15px;
    font-size: 1.1rem;
    line-height: 1.0;
	min-height: 1.1em;
    color: #4d4d4d;
    font-weight: 400;
    text-align: center;
}
.brand-section>.brand-container>.brand-bnr>li>a {
	display: block;
	color: #4d4d4d;
	transition: 0.3s;
}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image {
	margin: 0 auto 10px;
	position: relative;
	aspect-ratio: 4 / 3;
    transition: 0.3s;
	overflow: hidden;
}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
	transition: 0.3s;
}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image>img {
    display: block;
	width: 100%;
    height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image>.bnr-image-placeholder {
	width: 100%;
	height: 100%;
	background: #d8d8d8;
}
.brand-section>.brand-container>.brand-bnr>li>a:hover>.bnr-image>img {
  transform: scale(1.05);
}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image>.bnr-txt {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 0.10em;
    line-height: 1.0;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.brand-section>.brand-container>.brand-bnr>li>a>.brand-text {
    width: 90%;
    margin: 0 auto 0;
}

.brand-section>.brand-container>.brand-bnr>li>a>.brand-text>p {
    font-size: 0.9rem;
	letter-spacing: 0.02em;
    line-height: 1.8;
    font-weight: 400;
	text-align: justify;
}

@media screen and (max-width: 1050px) {
.brand-section {
	width: 100%;
	}
}

@media screen and (max-width: 1000px) {
.brand-section {
	margin: 0 auto 100px;
	}
.brand-section>.brand-container {
	width: 90%;
	}
.brand-section>.brand-container>.brand-bnr>li {
	width: calc((100% - 0px) / 1);
	margin: 0 auto 40px;
	}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image {
	height: 200px;
	align-items: center;
    display: flex;
	object-position: center;
	}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image>img {
    width: 100%;
	}
.brand-section>.brand-container>.brand-bnr>li>p.catch {
	font-size: 1.0rem;
	}
.brand-section>.brand-container>.brand-bnr>li>a>.bnr-image>.bnr-txt {
	font-size: 1.2rem;
	}
.brand-section>.brand-container>.brand-bnr>li>a>.brand-text>p {
    font-size: 0.8rem;
	font-weight: 400;
	}
}

/*-----------------/// Product ///-----------------*/
.product-section {
	width: 1050px;
	margin: 0 auto 100px;
	padding: 0;
}
.product-section>.product-container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.product-section>.product-container>li {
	width: calc((100% - 20px) / 5);
	margin: 0 auto 30px;
}
.product-section>.product-container>li>a>img {
    display: block;
	max-width: 100%;
	margin: 0 auto 10px;
    height: auto;
}
.product-section>.product-container>li>a>p {
    font-size: 0.8rem;
	letter-spacing: 0.02em;
    line-height: 1.4;
    font-weight: 400;
	color: #4d4d4d;
	text-align: center;
}

@media screen and (max-width: 1050px) {
.product-section {
	width: 100%;
	}
}

@media screen and (max-width: 1000px) {
.product-section {
	margin: 0 auto 100px;
	}
.product-section>.product-container {
	width: 90%;
	}
.product-section>.product-container>li {
	width: calc((100% - 10px) / 2);
	margin: 0 auto 20px;
	}

}

/*-----------------/// Ranking ///-----------------*/
.ranking-container {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto 80px;
}
.rank-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin:20px auto 40px;
}
.rank-tabs label {
	width: 200px;
	height: 45px;
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s;
}
input[type="radio"] {
	display: none;
}
#rank-tab1:checked ~ .rank-tabs label[for="rank-tab1"],
#rank-tab2:checked ~ .rank-tabs label[for="rank-tab2"],
#rank-tab3:checked ~ .rank-tabs label[for="rank-tab3"],
#rank-tab4:checked ~ .rank-tabs label[for="rank-tab4"],
#rank-tab5:checked ~ .rank-tabs label[for="rank-tab5"],
#rank-tab6:checked ~ .rank-tabs label[for="rank-tab6"],
#rank-tab7:checked ~ .rank-tabs label[for="rank-tab7"],
#rank-tab8:checked ~ .rank-tabs label[for="rank-tab8"],
#rank-tab9:checked ~ .rank-tabs label[for="rank-tab9"],
#rank-tab10:checked ~ .rank-tabs label[for="rank-tab10"] {
	background-color: #4d4d4d;
	color: #ffffff;
	border-color: #4d4d4d;
}
.ranking-container>.ranking-content {
	display: none;
	/*grid-template-columns: repeat(6, 160px);*/
	justify-content: space-between;
	gap: 0;
	flex-wrap: wrap;
}
#rank-tab1:checked ~ #rank-content1,
#rank-tab2:checked ~ #rank-content2,
#rank-tab3:checked ~ #rank-content3,
#rank-tab4:checked ~ #rank-content4,
#rank-tab5:checked ~ #rank-content5,
#rank-tab6:checked ~ #rank-content6,
#rank-tab7:checked ~ #rank-content7,
#rank-tab8:checked ~ #rank-content8,
#rank-tab9:checked ~ #rank-content9,
#rank-tab10:checked ~ #rank-content10 {
	/*display: grid;*/
	display: flex;
}
.rank-item {
	width: calc((100% - 0px) / 6);
	margin: 0 auto;
	text-align: center;
	font-size: 0.8rem;
}
.ranking-content>.rank-item>a {
	color: #4d4d4d;
}
.ranking-content>.rank-item>.rank-number {
	display: block;
	margin-bottom: 10px;
	font-family: "Lato", "Noto Sans JP", sans-serif;
    font-size: 0.7rem;
    color: #4d4d4d;
    letter-spacing: 0.1em;
    line-height: 1.0;
    font-weight: 400;
}
.ranking-content>.rank-item>a>.product-img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	margin-bottom: 15px;
}
.ranking-content>.rank-item>a>.product-name {
	line-height: 1.5;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ranking-content>.rank-item>a>.price {
	font-family: "Lato", "Noto Sans JP", sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
    line-height: 1.0;
	font-weight: 400;
}
.ranking-content>.rank-item>a>.price>span {
	font-size: 0.6rem;
}

@media screen and (max-width: 1000px) {
.ranking-container {
	width: 92%;
}
.ranking-content {
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 15px;
	justify-items: center;
	}
.rank-tabs label {
	flex: 1;
	width: auto;
	font-size: 12px;
	}
.rank-item {
	width: calc((100% - 0px) / 3);
	margin: 0 auto 40px;
}
.ranking-content>.rank-item>.rank-number {
	margin-bottom: 0;
}
.ranking-content>.rank-item>a>.product-img {
	width: 100%;
	max-width: 160px;
	margin: 0 auto 5px;
    }
}

/*-----------------/// Search ///-----------------*/
.search-container {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 600px; /* 横幅はお好みで */
	height: 54px;     /* 高さ */
	margin: 0 auto 150px;
	border: 1.5px solid #000; /* 黒い細い枠線 */
	border-radius: 50px;      /* カプセル型にする */
	padding: 2px 0 2px 20px; /* 内側の余白（左側に文字の余裕を持たせる） */
	box-sizing: border-box;
	background-color: #fff;
}

.search-input {
	flex-grow: 1;      /* 残りの幅をすべて使う */
	border: none;      /* 枠線を消す */
	outline: none;     /* クリック時の青い枠を消す */
	font-size: 16px;   /* 文字サイズ */
	color: #4d4d4d;
}

.search-input::placeholder {
	color: #ccc;
}

.search-button {
	width: 54px;       /* ボタンの幅 */
	height: 54px;      /* ボタンの高さ（正方形にする） */
	background-color: #000; /* 背景色を黒に */
	border: none;
	border-radius: 50%; /* 正円にする */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s;
}

.search-button:hover {
	opacity: 0.8;
}

.search-icon {
	width: 20px;
	height: 20px;
	stroke: #fff;     /* アイコンの色を白に */
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media screen and (max-width: 1000px) {
.search-container {
	width: 85%;
	height: 60px;  
	}
.search-button {
	width: 60px;
	height: 60px;
	border-radius: 60%;}
}

/*-----------------/// Membership ///-----------------*/
.membership-section {width: 100%; margin: 30px auto 0; padding: 50px 0 70px; background-color: #f5f5f5;}
.membership-section>.membership-container {width: 1050px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(var(--membership-cols, 4), 1fr); gap: 0;}
.membership-section>.membership-container>div {text-align: center; color: #4d4d4d;}
.membership-section>.membership-container>div:last-child {border: none;}
.membership-section>.membership-container>div>h2 {margin: 0 auto 15px; padding: 0; font-size: 1.2rem; font-weight: 400; line-height: 1.0; letter-spacing: 0.05em;}
.membership-section>.membership-container>div>img {display: block; width: 120px; margin: 0 auto 10px;}
.membership-section>.membership-container>div>p {margin: 0 auto; padding: 0; font-size: 0.8rem; font-weight: 400; line-height: 1.8; letter-spacing: 0.01em;}

@media screen and (max-width: 1050px) {
.membership-section {width: 100%;}
}

@media screen and (max-width: 1000px) {
.membership-section {margin: 10px auto 0;}
.membership-section>.membership-container {width: 90%; grid-template-columns: repeat(var(--membership-cols-sp, 2), 1fr); gap: 0;}
.membership-section>.membership-container>div {width: 100%; margin: 0 auto 50px; padding: 0;}
.membership-section>.membership-container>div:last-child {margin: 0 auto ; padding: 0;}
.membership-section>.membership-container>div>h2 {font-size: 1.0rem;}
.membership-section>.membership-container>div>img {width: 65%; margin: 0 auto 10px;}
.membership-section>.membership-container>div>p {font-size: 0.80rem; letter-spacing: 0.02em;}
}

/*-----------------/// Footer ///-----------------*/
.global-footer {width: 100%; margin: 30px auto 0; padding: 80px 0 80px;}
.global-footer>.global-footer__inner {width: 1050px; margin: 0 auto; padding: 0; display: grid; gap: 0;}
.global-footer>.global-footer__inner>div {text-align: left; color: #4d4d4d;}
.global-footer>.global-footer__inner>div>h3 {margin: 0 auto 25px; padding: 0; font-family: "Montserrat", "Noto Sans JP", sans-serif; font-size: 1.1rem; font-weight: 400; line-height: 1.0; letter-spacing: 0.05em;}
.global-footer>.global-footer__inner>div>a {display: block; margin: 0 auto 20px 20px; color: #4d4d4d; font-size: 0.80rem; line-height: 1.0; letter-spacing: 0.05em;}
.global-footer>.global-footer__inner>div>.global-logo {width: 100%; margin: 50px auto 0;}
.global-footer>.global-footer__inner>div>.global-logo .storelogo {
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center center;
	transition: 0.3s ease;
	background: #4d4d4d;
	-webkit-mask-image: url('../img/logo.svg');
	mask-image: url('../img/logo.svg');
}

.global-footer>.global-footer__inner>div>.global-logo .site-logo-link {
	display: block;
}

.global-footer>.global-footer__inner>div>.global-logo .site-logo-image {
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	object-fit: contain;
}

.global-footer>.global-footer__inner>div>.global-icons {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
}

.global-footer>.global-footer__inner>div>.global-icons .icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center center;
	transition: 0.3s ease;
	background: #4d4d4d;
}

@media (min-width: 1000px) {
.global-footer>.global-footer__inner {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 1050px) {
.global-footer>.global-footer__inner {width: 90%;}
}

@media screen and (max-width: 1000px) {
.global-footer>.global-footer__inner {grid-template-columns: repeat(2, 1fr); gap: 0;}
.global-footer>.global-footer__inner>div {margin: 0 0 40px;}
.global-footer>.global-footer__inner>div>h3 {font-size: 1.0rem;}
.global-footer>.global-footer__inner>div>a {font-size: 0.75rem;}
.global-footer>.global-footer__inner>div:last-child {grid-column: span 2; margin: 0 auto;}
}

/* フッターメニュー（wp_nav_menu対応） */
.footer-menu-list {list-style: none; margin: 0; padding: 0;}
.footer-menu-list li {margin: 0 0 20px 20px;}
.footer-menu-list li a {display: block; color: #4d4d4d; font-size: 0.80rem; line-height: 1.0; letter-spacing: 0.05em;}
@media screen and (max-width: 1000px) {
.footer-menu-list li a {font-size: 0.75rem;}
}

/*-----------------//////////// Common ////////////-----------------*/
.section-ttl {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.section-ttl>h2 {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    color: #4d4d4d;
    letter-spacing: 0.10em;
    line-height: 2.0;
    font-weight: 400;
}
.section-ttl>h2>span {
	display: block;
	font-size: 0.75rem;
	margin: 0 auto;
	padding: 0;
	font-weight: 400;
}

@media screen and (max-width: 1000px) {
.section-ttl>h2 {
	font-size: 1.2rem;
	}
}

.Nav-all {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.all-btn {
	display: block;
	max-width: 300px;
	margin: 0 auto;
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	border: 1px solid #4d4d4d;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.0;
	letter-spacing: 0.05em;
	padding: 18px 0;
	text-align: center;
}
.all-btn.slide {
	background: #4d4d4d;
	color: #ffffff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.all-btn.slide::after {
	background: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.all-btn.slide:hover {
	color: #4d4d4d;
}
.all-btn.slide:hover::after {
	transform: scale(1, 1);
}

/*-----------------/// NEWS Archive ///-----------------*/
.news-archive-section {
	width: 100%;
	max-width: 1050px;
	margin: 120px auto 100px;
	padding: 0 20px;
}

.news-archive-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.news-archive-header h1 {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #4d4d4d;
	margin-bottom: 10px;
}

.news-archive-header span {
	font-size: 0.9rem;
	color: #666;
}

.news-archive-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.news-archive-grid .news-item {
	text-decoration: none;
	color: inherit;
}

.news-archive-grid .no-posts {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px;
	color: #666;
}

.pagination-wrapper {
	margin-top: 50px;
	text-align: center;
}

.pagination-wrapper .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pagination-wrapper .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #ccc;
	color: #4d4d4d;
	font-size: 0.9rem;
	transition: all 0.3s;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
	background-color: #4d4d4d;
	color: #fff;
	border-color: #4d4d4d;
}

@media screen and (max-width: 1000px) {
	.news-archive-section {
		margin: 100px auto 80px;
	}
	.news-archive-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/*-----------------/// NEWS Single ///-----------------*/
.news-single-section {
	width: 100%;
	max-width: 800px;
	margin: 120px auto 100px;
	padding: 0 20px;
}

.news-single-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}

.news-single-header .news-date {
	display: block;
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 15px;
}

.news-single-header .news-title {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.6;
	color: #4d4d4d;
}

.news-featured-image {
	margin-bottom: 40px;
}

.news-featured-image img {
	width: 100%;
	height: auto;
}

.news-content {
	font-size: 0.95rem;
	line-height: 2;
	color: #4d4d4d;
}

.news-content p {
	margin-bottom: 1.5em;
}

.news-content h2, .news-content h3 {
	margin: 2em 0 1em;
	font-weight: 700;
}

.news-single-footer {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #ccc;
	text-align: center;
}

.back-to-list {
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #4d4d4d;
	color: #4d4d4d;
	font-size: 0.9rem;
	transition: all 0.3s;
}

.back-to-list:hover {
	background-color: #4d4d4d;
	color: #fff;
}

@media screen and (max-width: 1000px) {
	.news-single-section {
		margin: 100px auto 80px;
	}
	.news-single-header .news-title {
		font-size: 1.2rem;
	}
}
