@charset "euc-jp";

body {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic UI","Yu Gothic","Meiryo",sans-serif;
  background-color: #fff;
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/bg.gif);
  color: #836545;
  font-size: 1rem;
}
a {
  color: #836545;
}
a:hover {
  opacity: .7;
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
}

ul, li {
 list-style: none;
 margin: 0;
}

button {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic UI","Yu Gothic","Meiryo",sans-serif;
}

/*
 * layout
 */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
  max-width: 95%;
  padding: 0;
  }
}

.container-small {
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container-small {
  max-width: 95%;
  padding: 0;
  }
}


/*
 * section
 */
.section {
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .section {
    margin: 50px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section {
    margin: 60px auto;
  }
}

.flex{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flex{
  flex-direction: column;
  }
}

/*--- 背景色 ---*/
.back-color {
 background-color: #F6F3EE;
 padding: 30px 0 55px;
}

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}

/*
 * font
 */
.bold {
  font-size: 1.5rem;
  color: #836545;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .bold {
  font-size: 1.2rem;
  }
}

.text-lg {
 font-size: 1.2rem;
 font-weight: 500;
}
@media screen and (max-width: 767px) {
  .text-lg {
  font-size: 1.15rem;
  }
}

/*--- タイトル ---*/
.section-title {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .section-title {
  font-size: 1.6rem;
  }
}


/*--- view moreボタン ---*/
.link-area {
  text-align: center;
  margin: 30px 0;
}

.view-more {
  grid-area: link;
  margin: 18px 0 0;
  align-self: end;
  justify-self: end;
  letter-spacing: .12em;
  color: #836545;
  position: relative;
  padding-right: 46px;
  padding-bottom: 4px;
  border-bottom: 1px solid #836545;
}

/* 矢印（右向きのライン＋山形） */
.view-more::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background: #836545;
  transform: translateY(-50%);
}
.view-more::before{
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #836545;
  transform: translateY(-50%) rotate(45deg);
}

/*--- ヘッダー ---*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}

#header.scrolled {
  background: #fff;
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  margin: 0 auto;
  padding: 12px 0;
}
@media screen and (max-width: 1024px) { 
  .header-container {
	position: relative;
    padding: 6px 0;
  }
}

/*ヘッダーロゴ*/
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 20%;
}
@media screen and (max-width: 1024px) { 
  .header-logo {
    width: 60%;
  }
}

.header-logo a {
  width: 35%;
}
@media screen and (max-width: 767px) { 
  .header-logo a {
   width: 100%;
  }
}

.header-logo img {
  width: 100%;
}

.header-logo p {
  font-size: .85rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) { 
  .header-logo p {
    font-size: .55rem;
  }
}
  

/*ヘッダーメニュー*/
@media screen and (max-width: 1024px) { 
  .header-menu {
    display: none;
  }
}
.header-menu-contents {
  display: flex;
  gap: 16px;
}

.header-menu-contents li a {
 font-family: "mrs-eaves", sans-serif;
} 

/*カテゴリーサブメニュー*/
.sub-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  z-index: 1000;
  width: 100vw;
  max-width: 100vw;
  padding: 24px 0; 
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  display: grid;
  grid-auto-rows: minmax(0,auto);
  grid-template-columns: repeat(4, minmax(320px, 420px)); 
  gap: 16px 40px;
  justify-content: center;   
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* 開いた状態（JSが .is-open を付与） */ 
li.is-open > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.sub-menu-link{
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #836545;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.side-image{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  background: #f3f3f3;
}

/* 右矢印 */
.sub-menu-link::after{
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  justify-self: end;
}

.sub-menu-link:hover{
  background:#836545;
  color:#fff;
  border-color:#836545;
}

/*アイコン付きメニュー*/
.header-right-menu {
  display:flex;
  align-items:center;
  gap:24px;
  margin:0;
  padding:0;
  list-style:none;
}
@media screen and (max-width: 1024px) { 
  .header-right-menu {
    gap: 6px;
    display: none;
  }
}


.header-right-menu > li{
  display:flex;
}

.header-right-menu a,
.header-right-menu .search-form .btn {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-decoration:none;
  font-size:12px;
  line-height:1.2;
  color: #836545;
}
@media screen and (max-width: 767px) { 
  .header-right-menu a,
.header-right-menu .search-form .btn {
    font-size: 0.4rem;
  }
}


.header-right-menu img {
  width:32px;
  height:auto;
  display:block;
}
@media screen and (max-width: 767px) { 
  .header-right-menu img {
    width: 22px;
  }
}


.search-form{
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
  margin: 0;
}
  
.search-form input[name="keyword"], .search-form-sp input[name="keyword"]{
  width:0;
  height: 0;
  opacity:0;
  padding:0;
  border:0;
  transition:width .25s ease, opacity .25s ease, padding .25s ease, border-color .25s ease;
}

.search-form.is-open input[name="keyword"]{
  width:200px;
  opacity:1;
  padding:6px 10px;
  border:1px solid #333;
  border-radius:4px;
  background:#fff;
}

.search-form .btn, .search-form-sp .btn{
  border: none;
  background: transparent;
  padding: 0;
  cursor:pointer;
}

.search-form .btn:hover, .search-form-sp .btn:hover {
 opacity: .7;
}

.search-form .btn img, .search-form-sp .btn img{
  margin:0;
}


/*スマホ用カート*/
.header-right-menu-sp {
  display:none;
  align-items:center;
  gap:24px;
  margin:0;
  padding:0;
  list-style:none;
}
@media screen and (max-width: 1024px) { 
  .header-right-menu-sp {
    gap: 6px;
    display: block;
  }
}


.header-right-menu-sp > li{
  display:flex;
}

.header-right-menu-sp a {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-decoration:none;
  font-size:12px;
  line-height:1.2;
  color: #836545;
  font-size: 0.8rem;
}

.header-right-menu-sp img {
  width:32px;
  height:auto;
  display:block;
}


/* 検索オーバーレイ */
.search-overlay{
  position: fixed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(34,34,34,.95);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
  transform: translateY(-100%);
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
}
.search-overlay.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ×ボタン */
.search-overlay__close{
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

/* フォーム中央寄せ */
.search-overlay-form{
  display: flex;
  gap: 12px;
  width: min(720px, 86vw);
}
.search-overlay-form input[name="keyword"]{
  flex: 1;
  padding: 14px 12px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}
.search-overlay-form input::placeholder{ color:#bfbfbf; }
.search-overlay-form button[type="submit"]{
  padding: 12px 18px;
  background: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

body.no-scroll{ overflow: hidden; }

/*スマホメニュー左側*/
.header-left-sp {
  display: none;
}

@media screen and (max-width: 1024px) { 
  .header-left-sp {
  display: flex;
   align-items: center;
 }
}

/*検索アイコンSP*/
.search-form-sp {
  margin: 0;
}

.search-form-sp .btn {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-decoration:none;
  font-size:0.8rem;
  line-height:1.2;
  color: #836545;
}

.search-form-sp img {
  width:32px;
  height:auto;
  display:block;
}

/* ハンバーガーメニュー */
@media screen and (max-width: 1024px) { 
  .hamburger-menu {
    position: relative;
    width: 42px;
    height: 58px;
    cursor: pointer;
    z-index: 2000;
    
  }
}

.hamburger-menu span {
  width: 1.6rem;
  height: 0.15rem;
  background: #836545;
  position: absolute;
  top: 21px;
  left: 5px;
  transition: all 0.5s ease-in-out;
}

.hamburger-menu span:nth-child(2) {
 top: 29px;   
}
.hamburger-menu span:nth-child(3) {
 top: 37px;
}

.open-sp {
 position: absolute;
 top: 5px;
 left: 0;
}

.hamburger-menu.open-sp  {
  background: #fdfdfd;
  color: #333;
}


.hamburger-menu.open-sp span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
  top: 17px;
}

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

.hamburger-menu.open-sp span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*--- スマホ用メニュー ---*/
@media (min-width: 1024px){
  .sp-drawer-nav{ display:none;
  }
}

@media screen and (max-width: 1024px) {
.sp-drawer-nav {
  position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-color: #fdfdfd;
    z-index: 1200;
    overflow: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .36s cubic-bezier(.22,.61,.36,1),opacity.28s ease,visibility .28s ease;
    will-change: transform;
    display: block;
    padding: 20px 0;
  }

  /* 開いた状態 */
  .sp-drawer-nav.open-menu{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

.sp-drawer-nav.open-menu {
  transform: translateX(0);
}

  .sp-drawer-inner {
    margin-top: 50px;
  }
  

/*メニュー*/
.sp-gnav {
 max-width: 100%;
 margin: 4% auto 0 auto;
}

.sp-gnav li {
  padding: 14px 0;
 border-bottom: 1px solid #eee;
}


.sp-gnav li:nth-child(1) {
 border-top: 1px solid #eee;
}

.sp-gnav li a {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 10px;
  font-family: "mrs-eaves", sans-serif;
}

/* サブメニュー展開 */
  /* 右端にアイコン用スペース */
  .sp-gnav .has-sub-sp > a {
    position: relative;
  }

  /* ＋／−アイコン（横棒） */
  .sp-gnav .has-sub-sp > a::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: currentColor;
    transition: opacity .2s ease, transform .2s ease;
  }

  /* ＋／−アイコン（縦棒） */
  .sp-gnav .has-sub-sp > a::before {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;  
    height: 16px;
    background: currentColor;
    transition: opacity .2s ease, transform .2s ease;
  }

  /* サブメニュー初期非表示 */
  .sp-gnav .has-sub-sp > .sp-sub-menu {
    display: none;
    padding: 8px 0 0;
  }

  .sp-gnav .has-sub-sp.is-sub-open > a::before {
    opacity: 0;
    transform: translateY(-50%) scaleY(0.2);
  }

 
  .sp-gnav .has-sub-sp > a {
    display: flex;
    align-items: center;
  }
  
  .sp-sub-menu li {
   border: none;
  }
  
  .sp-sub-menu li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
  }

  
 /*メニュー下段*/
.sp-two-col {
 display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 20px auto;
}
  .sp-two-col li {
   margin: 5px 6px; 
}


.sp-two-col li:nth-child(1), .sp-two-col li:nth-of-type(9) {
 margin-left: 6px;
}

.sp-two-col li a {
 font-size: 0.8rem;
 }

/*LINEバナー*/
  .header-menu-sp-line {
  margin: 0 auto;
  max-width: 95%;
  }
  
/*メニューsnsアイコン*/
.sp-sns {
  display:flex;
  justify-content:center;
  gap:12px;
  list-style:none;
  margin:16px 0 10px;
  padding:0;
}

.sp-sns li{ 
  margin:0;
  padding:0;
}

.sp-sns li a{
  width:32px; height:32px;
  border-radius:999px;
  background:#fff;
  display:grid; place-items:center;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
 }  
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  /*LINEバナー*/
  .header-menu-sp-line {
  max-width: 65%;
  }
}


/*--- 最近チェックした商品 ---*/
.product-list {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) { 
.product-list {
 grid-template-columns: 1fr 1fr;
 gap: 15px;
　}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .product-list {
   grid-template-columns: 1fr 1fr 1fr;
  　}
  }

.product-item-h {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 767px) { 
 .product-item-h {
   margin: 10px 0;
　}
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 .product-item-h {
 margin: 10px 0;
　}
}

.item-image-h {
 width: 100%;
  display: block;
  margin: 10px auto;
}

.h-container {
 width: 100%;
}

.item-name-h {

}

.item-price {
  margin-top: 10px;
 text-align: right;
  font-weight: 400;
}

.soldout {
  text-align: right;
 color: red;
}

/*--- ご利用ガイド ---*/
.contents-list.container{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px 32px;
}

/* カード本体 */
.contents1 a {
  display: grid;
  grid-template-columns: 96px 1fr; 
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "icon title"
    "icon text"
    ".    link";
  align-items: center;
  background: #F6F3EE;
  border-radius: 8px;
  padding: 24px 28px;
  text-decoration: none;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 .contents1 a {
   grid-template-columns: 60px 1fr; 
   padding: 15px;
   height: 150px;
　}
}
.contents1 a:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* アイコン（左） */
.contents1 img{
  grid-area: icon;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 .contents1 img{
  width: 50px;
  height: 50px;
 }
}

/* タイトル */
.contents-title {
  grid-area: title;
  margin: 0;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 20px);
  letter-spacing: .02em;
}

/* 説明文 */
.contents-text{
  grid-area: text;
  margin: 6px 0 0;
  line-height: 1.8;
}

/* 右下の詳しく見る */
.contents-link{
  grid-area: link;
  margin: 18px 0 0;
  align-self: end;
  justify-self: end;
  letter-spacing: .12em;
  color: #836545;
  position: relative;
  padding-right: 46px;
  padding-bottom: 4px;
  border-bottom: 1px solid #836545;
}

/* 矢印（右向きのライン＋山形） */
.contents-link::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 38px;
  height: 1px;
  background: #836545;
  transform: translateY(-50%);
}
.contents-link::before{
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #836545;
  transform: translateY(-50%) rotate(45deg);
}

/* スマホ（1カラム） */
@media (max-width: 767px){
  .contents-list.container{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contents1 a{
    grid-template-columns: 64px 1fr;
    padding: 18px 18px;
  }
  .contents1 img{ width: 56px; height: 56px; }
}

/*--- カタログバナー ---*/
.catalog-area a {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .catalog-area .flex {
    gap: 20px;
    align-items: center;
  }
  .catalog-area a {
  width: 90%;
    
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .catalog-area.container-small {
    max-width: 75%;
  }
}

.catalog-area a img {
  width: 100%;
}

/*--- フッター ---*/
#footer{
  background: #F6F3EE; 
  padding-top:48px;
  text-align:center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #footer {
  padding-top: 24px;
  padding-bottom: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 #footer {
  padding-top: 25px;
  padding-bottom: 15px;
  }
}

/* ロゴ */
#footer .footer-logo {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #footer .footer-logo {
  margin-bottom: 0;
  }
}

#footer .footer-logo img{
  width: 25%;
}
@media screen and (max-width: 767px) {
  #footer .footer-logo img{
  width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 #footer .footer-logo img{
  width: 50%;
  }
}

/*フッターメニュー*/
#footer .footer-menu {
  width: 52%;
  margin:24px auto 20px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:32px 48px;
  text-align:left;
  border-left: 1px solid #836545;
  border-right: 1px solid #836545;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #footer .footer-menu {
    width: 100%;
    grid-template-columns: 1fr;
    border:none;
    gap: 0;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 #footer .footer-menu {
  grid-template-columns: 1fr 1fr;
  width: 45%;
   gap: 20px;
  }
}

/* カラム内リストのリセット */
#footer .footer-menu-contents{
  margin:0;
  padding:0;
}

/* 見出し */
#footer .footer-menu-title {
  font-weight:500;
  font-size: 1.2rem;
  letter-spacing:.04em;
  margin:0 0 8px;
}
@media screen and (max-width: 767px) {
  #footer .footer-menu-title {
    margin-bottom: 3px;
    border-bottom: 1px solid #836545;
    padding: 10px 0;
  }
  .footer-menu-contents li {
  	margin-bottom: 5px;
  }
}


/* リンク */
#footer .footer-menu-contents a {
  display:inline-block;
  padding: 3px 0;
  font-size: .9rem;
}
@media screen and (max-width: 767px) {
  #footer .footer-menu-contents a {
    font-size: .8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) { 
 #footer .footer-menu-contents a {
   font-size: .7rem;
  }
}

#footer .footer-menu-contents .footer-menu-title-link {
  font-size: 1.2rem;
  padding: 0;
}

/*フッターメニューアコーディオン*/
@media screen and (max-width: 767px) {
  #footer .footer-acc .footer-menu-title {
    position: relative;
    margin: 0;
  }

  /* 右側の矢印ボタン */
  #footer .footer-acc-btn {
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    width: 28px;
    height: 28px;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    border: none;
  }
  
  /* 矢印アイコン（CSS描画） */
  #footer .footer-acc-btn::before {
    content: "";
    display: block;
    width: 8px; height: 8px;
    border-right: 2px solid #836545;
    border-bottom: 2px solid #836545;
    rotate: 45deg;
    margin: auto;
    position: absolute; inset: 0;
  }

  #footer .footer-acc.is-open .footer-acc-btn::before {
    rotate: -135deg;
  }

  /* 開閉パネル */
  #footer .footer-acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s ease;
  }

  /* リンクの行間など微調整 */
  #footer .footer-acc-panel li,
  #footer .footer-acc-panel a {
    font-size: .9rem;
    line-height: 1.8;
    padding: 5px 0;
  }

  #footer .footer-acc .footer-acc-panel li + li {
    border-top: 1px dotted rgba(131,101,69,.35);
  }
}


/*営業時間*/
.footer-info {
  width: 45%;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .footer-info {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-info {
    width: 50%;
    margin: 24px auto;
    padding-left: 2%;
  }
}

.opening-hours p {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.opening-hours p span {
  font-size: 1rem;
}

/*カレンダー*/
.calendar {
  max-width:75%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .calendar {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .calendar {
    max-width: 95%;
  }
}

.calendar-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 10px;
}

.tbl_calendar {
 background-color: #fdfdfd;
 padding: 2px 4px;
}

.tbl_calendar caption {
 color: #fdfdfd;
 background-color: #3B3B3B;
}

.tbl_calendar tr {
 border-bottom: 1px solid #CBCBCB;
}

.calendar table td {
    width: 25px;
    text-align: center;
}

.calendar-memo {
  text-align: left;
  line-height: 1.8rem;
  font-size: .9rem;
}

/* sns */
#footer .inline{
  display:flex;
  justify-content:center;
  gap:12px;
  list-style:none;
  margin:16px 0 10px;
  padding:0;
}
#footer .inline li{ 
  margin:0; padding:0; 
}
#footer .inline a {
  width:32px; height:32px;
  border-radius:999px;
  background:#fff;
  display:grid; place-items:center;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

/*フッターメニュー下段*/
.footer-under-menu {
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-under-menu ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .footer-under-menu ul {
    flex-direction: column;
    gap: 8px;
  }
}
.footer-under-menu ul li a{
  font-size: .8rem;
}

/* コピーライト */
#footer small{
  display:block;
  padding: 12px 0;
  font-size:12px;
  background-color: #fdfdfd;
}

/*--- 各ページ共通上部画像 ---*/
.subpage-image-area {
  position: relative;
}

.subpage-block .subpage-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
 .subpage-block .subpage-image {
  width: 100%;
  height: 230px;
 }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
 .subpage-block .subpage-image {
  width: 100%;
  height: 280px;
 }
}

.subpage-block .category-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #836545;
  font-weight: 500;
  background-color: rgb(253, 253, 253, 0.7);
  padding: 60px 120px;
}
@media screen and (max-width: 767px) {
 .subpage-block .category-title {
   padding: 30px 20px;
   margin: 0;
   width: 75%;
   text-align: center;
   font-size: 1.6rem;
 }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
 .subpage-block .category-title {
   padding: 60px 20px;
   margin: 0;
   max-width: 75%;
   width: 100%;
   text-align: center;
 }
}

/*カテゴリー画像位置調整*/
.category-image-1 {
  object-position: 50% 85%;
}

.category-image-2 {
  object-position: 50% 20%;
}

.category-image-3 {
  object-position: 50% 74%;
}

/*--- パンくずリスト ---*/
#container {
  max-width: 1200px;
  margin: 10px auto;
}

.breadcrumb {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.breadcrumb li {
 padding-right: 20px;
 position: relative;
 display: inlie-block
}

.breadcrumb li::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #836545;
  border-right: solid 1px #836545;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0px;
  margin: auto;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb a, .bread-product-name {
  font-size: 12px;
  white-space: initial;
}

/*--- 人と木についてページ ---*/
.preface-block.section {
  margin-bottom: 30px;
}

.explain {
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
   .explain {
    max-width: 100%;
	}
}

.explain-inner {
  display: inline-block;
  text-align: left;
  line-height: 2.3rem;
}


/*ギャラリー*/
.gallery-marquee{
  --gap: 0px;
  --speed: 40s;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .gallery-marquee {
  --speed: 10s;
 }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gallery-marquee {
  --speed: 15s;
 }
}

/* 横一列＋アニメーション */
.gallery-track{
  display: flex;
  align-items: center;
  gap: var(--gap);
  will-change: transform;
  animation: marquee var(--speed) linear infinite;
  animation-play-state: running;            
}

/* 画像 */
.gallery-track img{
  height: 250px;
  width: 250px;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .gallery-track img{
  height: 150px;
  width: 150px;
 }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gallery-track img {
  width: 200px;
  height: 200px;
 }
}

.gallery-marquee:hover .gallery-track{
  animation-play-state: running !important;
}

@media (prefers-reduced-motion: reduce){
  .gallery-track{ animation: none; }
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/*人と木が大切にしていること*/
@media screen and (max-width: 767px) {
  .preface-contents .section-title {
    text-align: left;
  }
}
.important-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.position-left {
  position: relative;
  margin: 80px 0 80px auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .position-left {
  flex-direction: column;
  margin: 50px 0 50px auto;
  gap: 0;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .position-left {
  margin: 60px 20px 60px auto;
 }
}


.position-left img {
  width: 50%;
  min-height: 380px;
  max-height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .position-left img {
  width: 100%;
   min-height: auto;
     max-height: 250px;
  }
}

.position-right {
  position: relative;
  margin: 80px auto 80px 0;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .position-right {
  flex-direction: column;
  margin: 50px 0 50px auto;
  gap: 0;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .position-right {
  margin: 60px auto 60px 20px;
 }
}

.position-right img {
  width: 50%;
  min-height: 380px;
  max-height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .position-right img {
  width: 100%;
   min-height: auto;
    max-height: 250px;
   order: 1;
  }
}

.important-text {
  width: 40%;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .important-text {
  	width: 100%;
    order: 2;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .important-text {
    width: 100%;
  }
}

/*人と木のクムキシリーズについて*/
.kumuki-contents {
  text-align: center;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .kumuki-contents {
  	text-align: left;
  }
  .kumuki-contents .section-title {
  	text-align: left;
  }
}

.kumuki-explain {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .kumuki-explain {
  	max-width: 100%;
  }
}


.kumuki-explain img {
  display: block;
  margin: 30px auto;
}

.kumuki-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kumuki-image img {
  	height: 280px;
  }
}
