/* ==========================================================================

Description

- html
- body
- a
- header
- main
  - container
  - sidebar
  - calendar
- pagetop
- footer

========================================================================== */

html{
  font-family:'Noto Sans JP', sans-serif;
font-weight: 300;
  font-size: 62.5%;
}

body{
  background-color: #F0ECE1;
  color: #4B3830;
  line-height: 2;
  font-size: 1.2rem;
    min-width: 1300px;
}

@media only screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

::selection {
  background-color: #62483F;
  color: #F0ECE1;
}

::-moz-selection {
  background-color: #62483F;
  color: #F0ECE1;
}

a {
  color: #4B3830;
  text-decoration: none;
  transition: .8s;
}
a:hover {
  opacity: .8;
}

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

/* 表示切り替え */
.pc-only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/* header */
.header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: auto;
  min-width: 1300px;
}
.header-info {
  background-color: #5F93B2;
  /* 無料クールの色：#5F93B2 元の色：#62483F */
  text-align: center;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.06em;
  padding: 10px 0 9px;
  opacity: 1;
  transition: all .4s;
}
.header-info-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.header-info-inner a {
  color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #44352C;
  padding: 15px 0 24px;
    min-height: 90px;
    box-sizing: border-box;
}

.header.is-fixed .header-info {
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

/* 検索フォーム */
.header-search {
  position: relative;
  top: 4px;
}
.header-search form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search select {
  background-color: #fff;
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-bottom.svg);
  background-position: top 50% right 10px;
  background-repeat: no-repeat;
  background-size: 12px 7px;
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  font-size: 1.4rem;
  width: 158px;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  margin-right: 15px;
   color: #4B3830;
}
.header-search .form-input {
  display: flex;
}
.header-search .form-input input[type="text"] {
  display: flex;
  border: none;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  width: 312px;
  padding: 0 22px;
   font-size: 1.4rem;
}
.header-search .form-input input[type="text"]:focus {
  outline: none;
}
.header-search .form-input input[type="text"]::placeholder {
  color:#A79E9A;
  font-size: 14px;
}
.header-search .form-input button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border-radius: 0 8px 8px 0;
  background-color: #7C665D;
  border: solid 1px #7C665D;
  cursor: pointer;
  width: 70px;
  height: 40px;
}

.header-logo {
  line-height: 0;
  margin: 7px 78px 0 0;
  /* margin: 0 78px 0 0; */
}
.header-list-user {
  display: flex;
  position: relative;
    top: 6px;
    right: -30px;
  list-style: none;
  margin: 0;
}
.header-list-user li + li{
  margin-left: 14px;
}
.header-list-user-list {
  display: block;
  text-align: center;
  line-height: .9;
  color: #fff;
}
.header-list-user-img {
  display: block;
}
.header-list-user-ja {
    position: relative;
    bottom: -4px;
    font-size: 1rem;
    line-height: 1.4;
}

/* globalnav */
.nav-global {
  background-color: #F8F6EF;
  margin-top: 130px;
  /*　margin-top: 90px(infoなし),130px(info1つ),150px(info2つ);*/
}
.nav-global-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 60px;
  margin: 0;
}
.nav-global-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 27px;
}
.nav-global-list-ja {
  display: block;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.nav-global-list-en {
  display: block;
  line-height: 1;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  
  .header-logo {
    margin: 7px 30px 0 0;
  }
  
  .header-search .form-input input[type="text"] {
  width:220px;
  }
  
  .header-list-user {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    min-width: auto;
  }
  .btn-nav {
    line-height: 1;
    border: none;
    width: 28px;
    height: 22px;
    margin-left: 20px;
  }
  .btn-nav button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }
  .btn-nav button span {
    display: block;
    width: 0;
    height: 0;
    text-indent: -9999px;
  }
  .btn-nav button i {
    display: block;
    background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-hamburger.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 22px;
  }

  .header-info {
    display: none;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    height: 60px;
    min-height: 0;
  }
  
  /* 検索フォーム */
  .header-search {
    display: none;
  }

  .header-logo {
/*    position: absolute;
*/    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 174px;
    height: 22px;
    margin: auto;
  }
  .header-list-user {
    position: static;
    padding: 0 20px 0 0;
    margin: 0 0 0 auto;
  }
  .header-list-user li:first-child{
    display: none;
  }
  .header-list-user li + li{
    margin-left: 14px;
  }
  .header-list-user-list {
    display: block;
    text-align: center;
    line-height: .9;
    color: #fff;
  }
  .header-list-user-img {
    display: block;
  }
  .header-list-user-ja {
    display: none;
  }
  
  /* globalnav */
  .nav-global {
    margin-top: 60px;
  }
  .nav-global-list {
    display: none;
  }

  .nav-search {
    padding: 14px 20px;
  }
  .nav-search form {
    display: block;
  }
  .nav-search select {
    background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-bottom.svg);
    background-position: top 50% right 10px;
    background-repeat: no-repeat;
    background-size: 12px 7px;
    border-radius: 8px;
    border-color: #BAAA9E;
    color: #4B3830;
    background-color: #fff;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    font-size: 1.4rem;
    line-height: 1;
    width: 254px;
    max-width: 80%;
    height: 40px;
    padding: 0 14px;
    margin-right: 15px;
    margin-bottom: 8px;
  }
  .nav-search .form-input {
    display: flex;
  }
  .nav-search .form-input input[type="text"] {
    display: flex;
    border: solid 1px #BAAA9E;
    box-sizing: border-box;
    border-radius: 8px 0 0 8px;
    width: 100%;
    padding: 0 22px;
  }
  .nav-search .form-input input[type="text"]:focus {
    outline: none;
  }
  .nav-search .form-input input[type="text"]::placeholder {
    color:#A79E9A;
    font-size: 14px;
  }
  .nav-search .form-input button {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border-radius: 0 8px 8px 0;
    background-color: #7C665D;
    border: solid 1px #8a837e;
    border-left: none;
    cursor: pointer;
    width: 72px;
    height: 40px;
  }

  .drawer-gnav {
    display: block;
    position: absolute;
    left: -100vw;
    top: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    transition: .8s;
  }
  .drawer-gnav.is-active {
    left: 0;
    transition: .8s;
  }
  .drawer-gnav-inner {
    position: fixed;
    background-color: #F3F0EA;
    width: 100vw;
    height: 100%;
    display: block;
    overflow: scroll;
  }

  .btn-nav-close {
    line-height: 1;
    border: none;
    width: 18px;
    height: 18px;
    margin: 20px 20px 20px auto;
  }
  .btn-nav-close button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }
  .btn-nav-close button span {
    display: block;
    width: 0;
    height: 0;
    text-indent: -9999px;
  }
  .btn-nav-close button i {
    display: block;
    background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-close.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
  }

  .drawer-gnav-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E4E0D7;
    border-top: solid 1px #BFB9B5;
    position: relative;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #4B3830;
    height: 60px;
    padding: 0;
    margin: 0;
  }
  .drawer-gnav-ttl::after {
    display: block;
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-nav.svg);
    width: 16px;
    height: 8px;
    margin: auto;
  }
  .drawer-gnav-ttl.single::after {
    display: none;
  }
  .drawer-gnav-ttl.is-active::after {
    transform: rotateZ(180deg);  
  }
  .drawer-gnav-list {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: solid 1px #BFB9B5;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .drawer-gnav-list.single {
    display: flex;
  }
  .drawer-gnav-list.is-open {
    display: flex;
  }
  .drawer-gnav-list li {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: solid 1px #BFB9B5;
    position: relative;
    line-height: 1.25;
    width: 50%;
    height: 54px;
    padding: 12px;
  }
  .drawer-gnav-list li a {
    width: 100%;
      font-size: 1.4rem;
  }
  .drawer-gnav-list li::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #BFB9B5;
    height: 30px;
    width: 1px;
    content: "";
    display: block;
    margin: auto;
  }
  .drawer-gnav-list li:nth-child(even):after {
    display: none;
  }
  .drawer-gnav-list li:last-child:after {
    display: none;
  }

  .drawer-gnav-list li::before {
    display: block;
    flex: none;
    content: "";
    background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r-02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 6px;
    height: 7px;
    margin-right: 8px;
  }
  .drawer-gnav-list li:last-child {
    border-bottom: none;
  }

  /* first */
  .drawer-gnav-block.first .drawer-gnav-list {
    border-top: none;
  }
  .drawer-gnav-block.first .drawer-gnav-list li.guide{
    width: 100%;
  }
  .drawer-gnav-block.first .drawer-gnav-list li.guide::after{
    display: none;
  }
  .drawer-gnav-block.first .drawer-gnav-list li:nth-last-child(2){
    border-bottom: none;
  }
  .drawer-gnav-block.first .drawer-gnav-list li:nth-child(even):after {
    display: block;
  }

  /* last */
  .drawer-gnav-block.last .drawer-gnav-list {
    border-bottom: solid 1px #BFB9B5;
  }
  .drawer-gnav-block.last .drawer-gnav-list li {
    width: 100%;
  }

  /* user */
  .drawer-gnav-list-user {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
  }
  .drawer-gnav-list-user li {
    box-sizing: border-box;
    position: relative;
    width: 50%;
    padding: 6px 16px;
    margin-bottom: 22px;
  }
  .drawer-gnav-list-user li a {
    display: block;
      font-size: 1.4rem;
  }
  .drawer-gnav-list-user li::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #BFB9B5;
    height: 30px;
    width: 1px;
    content: "";
    display: block;
    margin: auto;
  }
  .drawer-gnav-list-user li:nth-child(even):after {
    display: none;
  }

  /* overlay */
  .overlay {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    display: block;
    background: #000;
    height: 100vh;
    width: 100vw;
    margin: auto;
  }
  .overlay.is-active {
    opacity: .4;
  }
}


/* contents ________________________________________ */
.container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1366px;
  margin: 0 auto;
}

.main {
  position: relative;
  overflow-x: hidden;
  background-color: #F0ECE1;
  width: 100%;
  padding: 54px 0 150px 40px;
}
.breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
}
.breadcrumb-list {
  display: flex;
  list-style: none;
}
.breadcrumb-list li + li {
  position: relative;
  margin-left: 40px;
}
.breadcrumb-list li + li::before {
  position: absolute;
  top: 0%;
  bottom: 0;
  left: -24px;
  content: "";
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-breadcrumb.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 7px;
  height: 9px;
  margin: auto;
}

.sidebar {
  flex: none;
  box-sizing: border-box;
  background-color: #D6D2C6;
  width: 340px;
  padding: 55px;
}
.sidebar ul {
  font-size: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-ttl {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 0;
  margin: 50px 0;
}
h2.sidebar-ttl {
  margin: 45px 0 0 0;
}

h2.sidebar-ttl a{
  display: block;
  position: relative;
  padding: 5px 0 5px 5px;
}

h2.sidebar-ttl a:hover{
    color: #a3938d;
}

.sidebar-block.first * .sidebar-ttl {
  margin: 0 0 20px;
}

.sidebar-list-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list-nav li a {
  display: block;
  position: relative;
  padding: 5px 0 5px 10px;
}
.sidebar-list-nav li a::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #4B3830;
    border-right: 1px solid #4B3830;
}

.sidebar-list-nav li a:hover {
  color: #a3938d;
}

.sidebar-list-nav.list-normal {
  margin: 50px 0;
}
.sidebar-list-nav.list-normal li::before {
  background-image: none;
}

@media only screen and (max-width: 768px) {
  .container {
    display: block;
    max-width: 100%;
  }
  
  .main {
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    padding: 40px 20px;
  }
  .breadcrumb {
    width: 100%;
  }
  .breadcrumb-list {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
  }
  .breadcrumb-list li {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.2rem;
  }
  .sidebar {
    display: none;
  }
}

/* products ________________________________________ */
.list-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.list-product:before {
  content: "";
  display: block;
  width: 23.13167259786477%;
  order: 1;
}
.list-product:after {
  content: "";
  display: block;
  width: 23.13167259786477%;
}
.list-product-item {
  line-height: 1.4;
  letter-spacing: 0.06em;
  width: 23.13167259786477%;
  max-width: 195px;
  margin-bottom: 40px;
}

.list-product-item__thumbnail {
  position: relative;
  text-align: center;
  background-color: #D6D2C6;
  color: #fff;
  line-height: 0;
  padding: 0;
  margin: 0 0 16px;
}
.list-product-item__thumbnail.thum-soldout::before {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/bg-soldout.png);
  background-size: cover;
}

.list-product-item__cat {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.list-product-item__ttl {
  font-size: 1.4rem;
   font-weight: 400;
  margin-bottom: 8px;
}
.list-product-item__memo {
  font-size: 1.2rem;
  margin-bottom: 5px;
   color: #98877C;
}
.list-product-item__price {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 400;
   color: #4B3830;
}

@media only screen and (max-width: 1024px) {
  .list-product:before {
    content: none;
  }
  .list-product:after {
    width: 30.27950313559006%;
  }
  .list-product-item {
  width: 30.27950313559006%;
  }
}

@media only screen and (max-width: 768px) {
  .list-product {
    padding: 0;
    margin: 0 0 10px;
  }
  .list-product-item {
    line-height: 1.4;
    letter-spacing: 0.06em;
    width: 48%;
    margin-bottom: 40px;
  }
  
  .list-product-item__thumbnail {
    background-color: #D6D2C6;
    color: #fff;
    line-height: 0;
    padding: 0;
    margin: 0 0 16px;
  }
  
  .list-product-item__cat {
    margin-bottom: 14px;
  }
  .list-product-item__ttl {
  }
  .list-product-item__memo {
  }
  .list-product-item__price {
    font-size: 2.4rem;
  }
}


/* calender ________________________________________ */
.calender{
  background: #fff;
  padding: 40px 0;
  margin: 0;
}
.calendar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.calendar-inner .ttl-02::before {
  display: none;
}
.calendar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar-txt {
  font-size: 1.4rem;
}
.calendar-block {
  display: flex;
  align-items: flex-start;
}
.tbl_calendar {
  flex: none;
  border: 1px solid #BFB9B5;
    border-radius: 6px;
  /*border-collapse: collapse;*/
  border-spacing: 0;
  height: auto;
  width: 270px;
}
.tbl_calendar + .tbl_calendar {
  margin-left: 40px;
}
.tbl_calendar th, .tbl_calendar td {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  box-sizing: border-box;
  padding: 4px;
  text-align: center;
  border: none;
  width: 28px;
  height: 28px;
  margin: 5px;
}
.tbl_calendar tr {
  display: flex;
  justify-content: space-between;
}
.tbl_calendar th {
  border: none;
}
.tbl_calendar td {
  border-radius: 100%;
  padding: 0;
    border-radius: 50%;
}
.tbl_calendar caption{
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 24px;
}
.tbl_calendar .sun {
    color: #B14545;
}
.tbl_calendar .sat {
    color: #B14545;
}

@media only screen and (max-width: 768px) {
  .calender{
    padding: 36px 20px 66px;
  }
  .calendar-inner {
    max-width: 100%;
      padding: 0;
  }
  .calendar-flex {
    display: block;
  }
  .calendar-txt {
    font-size: 1.3rem;
  }
  .calendar-block {
    display: block;
    margin: 0 auto;
  }
  .tbl_calendar {
    width: 100%;
    margin: 40px 0 0;
  }
  .tbl_calendar + .tbl_calendar {
    margin: 70px 0 0;
  }
  .tbl_calendar caption{
    margin: 0 0 12px;
  }
  .tbl_calendar tr {
    box-sizing: border-box;
    margin: 4px;
  }
  .tbl_calendar th {
    border-top: none;
  }
  .tbl_calendar th, .tbl_calendar td {
    border-bottom: none;
      font-size: 1.3rem;
  }
  .tbl_calendar td {
    margin: 4px;
  }
}

/* pagetop ________________________________________ */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: -80px;
  display: block;
}

@media only screen and (max-width: 768px) {
  .pagetop img {
    width: 40px;
    height: 40px;
  }

}

/* footer ________________________________________ */
.footer {
  background-color: #4B3830;
  font-size: 1.5rem;
  color: #fff;
}
.footer-inner {
  padding: 65px 0;
}
.footer-inner a {
  text-decoration: none;
  color: #fff;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 90px;
}
.footer-content-item {
  border-left: solid #fff 1px;
  line-height: 2;
  max-width: 350px;
  padding: 0 55px;
  margin: 0;
}
.footer-content-item:first-child {
  border-left: none;
  padding: 0 45px 0 0;
}
.footer-content-item:last-child {
  padding: 0 0 0 55px;
}
.footer-content-item dt {
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  margin: 0 0 35px;
}
.footer-content-item dd {
  font-size: 1.3rem;
  padding: 0;
  margin: 0;
}

.footer-content-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-content-item-list li {
  display: flex;
  align-items: center;
}
.footer-content-item-list li::before {
  display: block;
  content: "";
  background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 7px;
  margin-right: 16px;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 40px;
}
.footer-nav-list li {
  font-size: 1.3rem;
  margin: 0 20px;
}

/* EDIT ST 20241107 */
.footer-copyrite {
  text-align: center;
  font-size: 1.2rem;
	display: flex;
	justify-content: center;
}

.footer-copyrite p.notes {
	font-size: 2rem;
	font-weight: 400;
}
.footer-copyrite img {
	width: 120px;
	height: auto;
}
/* EDIT ED 20241107 */

.footer-blank-nav {
    display: flex;
    justify-content: center;
    gap: 0 40px;
    margin: 0 0 40px;
}

@media only screen and (max-width: 768px) {
  .footer {
    font-size: 1.5rem;
    padding: 0 20px;
  }
  .footer-inner {
    padding: 40px 0;
  }
  .footer-content {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 90px;
  }
	
/* EDIT ST 20241107 */
.footer-copyrite {
	display: block;
	}

.footer-copyrite img {
	display: block;
	width: 300px;
	height: auto;
	margin: 0 auto;
}
/* EDIT ED 20241107 */
	
  .footer-content-item {
    border-top: solid #fff 1px;
    border-left: none;
    max-width: 100%;
    padding: 40px 0;
    margin: 0;
  }
  .footer-content-item:first-child {
    border-top: none;
    padding: 0 0 15px;
  }
  .footer-content-item:last-child {
    padding: 40px 0 0;
  }
  .footer-content-item dt {
    margin: 0 0 25px;
  }
  .footer-content-item dt img {
    height: 18px;
  }
  .footer-content-item dd {
    margin: 0;
  }
  
  .footer-content-item-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
  .footer-content-item-list li {
    font-weight: 700;
    width: 50%;
    margin-bottom: 25px;
  }
  .footer-content-item-list li::before {
    margin-right: 10px;
  }
  
  .footer-nav-list {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 40px;
  }
  .footer-nav-list li {
    display: flex;
    align-items: flex-start;
    font-weight: 700;
    line-height: 1.4;
    font-size: 1.5rem;
    width: 50%;
    margin: 0 0 20px;
  }
  .footer-nav-list li:before {
    display: block;
    content: "";
    background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 6px;
    height: 7px;
    margin: 6px 10px auto 0;
  }
  .footer-copyrite {
    text-align: left;
    font-size: 1.2rem;
  }
/* EDIT ST 20241107 */
.footer-copyrite p.notes {
	font-size: 2rem;
	font-weight: 400;
}
/* EDIT ED 20241107 */	
  .footer-copyrite-text {
    text-align: center;
    font-size: 1.4rem;
  }

  .footer-change-view button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0ECE1;
    border-radius: 4px;
      border: solid 1px #4B3830;
    color: #4B3830;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    max-width: 336px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
  }
  .footer-change-view button i {
    display: inline-block;
    background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-desktop.svg");
    background-size: contain;
    width: 35px;
    height: 30px;
    margin-left: 12px;
  }
  .footer-blank-nav {
    flex-direction: column;
    align-items: center;
    gap: 24px 0;
    margin: 0 0 60px;
  }
}

/* ==========================================================================

Description

CSS modules

========================================================================== */

.ttl-page-wrap {
  line-height: 1;
  margin-bottom: 48px;
}
.ttl-page {
  text-align: center;
}

/* title */
.ttl-02 {
  position: relative;
  line-height: 1;
  margin: 0 0 18px;
  z-index: 0;
}
.ttl-02::after {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-color: #98877C;
  height: 1px;
  z-index: -1;
}
.ttl-02 .ttl-text {
  display: inline-block;
  padding-right: 32px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  white-space: nowrap;
  background: #F0ECE1;
}
.calender .ttl-02 .ttl-text {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .ttl-02 .ttl-text img {
    height: 18px;
  }
}

.ttl-03 {
  position: relative;
  line-height: 1;
  margin: 0 0 18px;
  z-index: 0;
}
.ttl-03::after {
  position: absolute;
  top: 50%;
  right: -100vw;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background-color: #BFB9B5;
  height: 1px;
  z-index: -1;
}
.ttl-03 .ttl-text {
  display: inline-block;
  padding-right: 32px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  white-space: nowrap;
  background: #F0ECE1;
}
@media only screen and (max-width: 768px) {
  .ttl-03 .ttl-text img {
    height: 18px;
  }
}

.ttl-04 {
  display: flex;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 18px;
}
.ttl-04::before {
  content: "[";
  line-height: 1;
  margin-right: 1rem;
}
.ttl-04::after {
  content: "]";
  line-height: 1;
  margin-left: 1rem;
}
@media only screen and (max-width: 768px) {

}

/* button */
.btn-01 {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4B3830;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  color: #fff;
  min-width: 382px;
  min-height: 57px;
  font-size: 1.5rem;
}
.btn-01 .btn-text {
  position: relative;
  display: inline-block;
}
.btn-01 .btn-text::before {
  content: "";
  position: relative;
  display: inline-block;
  background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 8px;
  height: 10px;
  margin: 0 18px 0 0;
}
@media only screen and (max-width: 768px) {
  .btn-01 {
    min-width: 100%;
      font-size: 1.3rem;
  }
}

.btn-02 {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4B3830;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  color: #fff;
  min-width: 280px;
  min-height: 57px;
}
.btn-02 .btn-text {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .btn-02 {
    min-width: 100%;
  }
}

.btn-03 {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #E3D2C1;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  color: #4B3830;
  min-width: 280px;
  min-height: 57px;
}
.btn-03 .btn-text {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .btn-03 {
    min-width: 100%;
  }
}

.btn-cart {
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4B3830;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  color: #fff;
  min-width: 374px;
  min-height: 50px;
  margin-bottom: 30px;
   border-radius: 6px;
}
.btn-cart .btn-text {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .btn-cart {
    min-height: 64px;
    min-width: 100%;
  }
}

.btn-cta {
  cursor: pointer;
  box-sizing: border-box;
  border: solid 1px #4B3830;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border-radius: 6px;
  text-align: center;
  line-height: 1;
  color: #4B3830;
  min-width: 374px;
  min-height: 40px;
}
.btn-cta .btn-text {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
}
.btn-cta .btn-text::before {
  content: "";
  position: relative;
  display: inline-block;
  background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r-02.svg");
  background-position: top 20% center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 7px;
  margin: 0 18px 0 0;
}
@media only screen and (max-width: 768px) {
  .btn-cta {
    min-height: 44px;
    min-width: 100%;
  }
}

/* aligin */
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}

/* text */
.color-red {
  color: #B14545;
}

/* font size */
.font-mid {
  font-size: 1.5rem;
}

/* weight */
.font-b {
  font-weight: 700;
}

/* flex */
.flex-01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {

}

/* tab */
.tab-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
  border-bottom: solid 1px #98877C;
  padding: 0;
  margin: 0 0 63px;
  z-index: 0;
}
.tab-list:before {
  content: "";
  display: block;
  position: absolute;
  right: -100vw;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #98877C;
  z-index: -1;
}
.tab-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  background-color: #D6D2C6;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 410px;
  min-height: 73px;
  margin: 0 7px;
}
.tab-list li::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-b.svg);
  background-repeat: no-repeat;
  width: 7px;
  height: 9px;
  margin: auto;
}
.tab-list li.is-active {
  background-color: #F0ECE1;
  border: solid 1px #98877C;
  border-bottom: none;
}
.tab-list li.is-active::after {
  background-color: #F0ECE1;
  background-image: none;
  bottom: -1px;
  height: 1px;
  width: 100%;
}

.tbl-cmn-01 {
  border-collapse: collapse;
  width: 100%;
}
.tbl-cmn-01 tr,
.tbl-cmn-01 td, 
.tbl-cmn-01 th {
  font-weight: 500;
  border-bottom: solid 1px #DED8CD;
}
.tbl-cmn-01 td, 
.tbl-cmn-01 th {
  padding: 4px 0;
  margin: 0;
}
.tbl-cmn-01 th {
  text-align: left;
  width: 170px;
  max-width: 100%;
}

.block-list {
  display: none;
}
.block-list.is-show {
  display: block;
}
@media only screen and (max-width: 768px) {
  .tab-list {
    margin: 0 0 63px;
  }
  .tab-list li {
    border-radius: 10px 10px 0 0;
    font-size: 1.4rem;
    min-height: 40px;
    margin: 0 7px;
  }
  .tab-list li::after {
    background-size: contain;
    bottom: 5px;
    width: 4px;
    height: 5px;
  }
  .tab-list li.is-active::after {
    background-image: none;
    bottom: -1px;
    height: 1px;
    width: 100%;
  }
}

/* hr */
.hr-01 {
  background-color: #BFB9B5;
  border: none;
  height: 1px;
  width: 100%;
  padding: 0;
  margin: 44px 0;
}

/* anchor */
.list-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  font-weight: 700;
  padding: 0;
  margin: 80px auto 0;
}
.list-anchor:after{
  content: "";
  display: block;
  width: 31%;
  max-width: 236px;
}
.list-anchor li {
  display: flex;
  border-bottom: solid 1px #BFB9B5;
  width: 31%;
  max-width: 236px;
  margin: 0 0 36px;
}
.list-anchor li:nth-child(3n) {
  margin: 0 0 36px 0;
}
.list-anchor li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 0 6px;
  font-size: 1.4rem;
}
.list-anchor li a::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-image: url("https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-bottom.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 15px;
  height: 8px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .list-anchor {
    display: block;
    margin: 80px auto 0;
  }
  .list-anchor li {
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px 0;
  }
  .list-anchor li:nth-child(3n) {
    margin: 0 0 18px 0;
  }
}

.list-caution {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-caution li {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
}
.list-caution li::before {
  content: "※";
}

/* 一覧_並び順 */
.text-search-hit {
  display: inline-block;
}
.list-order-sort {
  display: inline-block;
  width: auto;
  max-width: 400px;
}
.list-order-sort li {
  position: relative;
  display: inline-block;
  width: auto;
}
.list-order-sort li.is-current {
  font-weight: 700;
}
.list-order-sort li + li::before {
  display: inline-block;
  position: relative;
  content: "/";
  margin: 0 14px;
}
@media only screen and (max-width: 768px) {
  .text-search-hit {
    display: block;
    font-size: 1.3rem;
    text-align: center;
    width: 100%;
    margin: 20px 0 0;
  }
  .list-order-sort {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .list-order-sort li {
    display: inline-block;
    font-size: 1.3rem;
    width: auto;
    padding: 0;
    margin: 0;
  }
  .list-order-sort li + li::before {
    margin: 0 7px;
  }
}

/* margin */
.mt00 {
  margin-top: 0!important;
}
.mb20 {
  margin-bottom: 20px!important;
}
.mb30 {
  margin-bottom: 30px!important;
}
.mb00 {
  margin-bottom: 0!important;
}
.mb50 {
  margin-bottom: 50px!important;
}

.mb80 {
  margin-bottom: 80px!important;
}
.mb90 {
  margin-bottom: 90px!important;
}

@media only screen and (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px!important;
  }
  .mb90 {
    margin-bottom: 45px!important;
  }
}

/* ==========================================================================

Description

ショッピングガイド

========================================================================== */

.guide .text-lead {
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.guide-point {
  display: flex;
  justify-content: space-between;
}
.guide-point dl {
  width: calc(100% / 3);
}
.guide-point dl + dl {
  margin-left: 20px;
}
.guide-point dt {
  background-color: #F8F6EF;
  border-radius: 4px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 16px;
}
.guide-point dd {
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  margin: 24px 0 0;
}

.font-mid {
  margin-top: 40px;
}

.guide {
    max-width: 840px;

  padding: 0;
    margin: 0 auto 0 0;
}

.section-guide {
  font-size: 1.4rem;
}

.section-guide figure {
  padding: 0;
  margin: 0;
}

.section-guide + .section-guide {
  margin-top: 80px;
}

.box-solid-01 {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px #483931;
  padding: 24px;
}

.box-solid-02 {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px #B14545;
  color: #B14545;
  padding: 24px;
  min-width: 560px;
}

.dl-guide {
  display: flex;
}
.dl-guide dt::after {
  content: "：";
}
.dl-guide dd {
  padding: 0;
  margin: 0;
}

.tbl-guide {
  border-collapse: collapse;
  border: solid 1px #D6D2C6;
  margin-bottom: 25px;
}
.tbl-guide th,
.tbl-guide td {
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #D6D2C6;
  text-align: center;
  font-weight: 700;
  color: #B14545;
  padding: 16px;
}
.tbl-guide th {
  background-color: #ECE4D8;
}
.tbl-guide th.th-style-01 {
  background-color: #DEDBD1;
  color: #4B3830;
}
.tbl-guide .font-small {
  line-height: 1.4;
  font-size: 11px;
}

.img-guide-map {
  flex: none;
  width: 294px;
}
.text-guide-map {
  width: 508px;
}

.section-guide-flex {
  display: flex;
  flex-wrap: wrap;
}
.section-guide-flex .btn-wrap + .btn-wrap {
  margin-left: 30px;
}

.section-guide-flex-2 {
  display: flex;
  justify-content: space-between;
}

.section-guide-cta {
  border-top: solid 1px #BFB9B5;
  padding: 40px 0 0;
}
.section-guide-cta-text {
  font-size: 1.4rem;
}
.section-guide-cta-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 750px;
  margin-top: 33px;
}
.section-guide-cta-flex__item {
  box-sizing: border-box;
  display: block;
  background-color: #F8F6EF;
  border-radius: 4px;
  text-align: center;
  width: 360px;
  padding: 22px 40px;
}
.section-guide-cta-flex__item h3 {
  display: block;
  line-height: 1;
  font-size: 2rem;
  letter-spacing: 0.06em;
  padding: 0;
  margin: 0;
}
.section-guide-cta-flex__item .text-small {
  font-size: 1.3rem;
}
.section-guide-cta__tel-link {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
  font-weight: 700;
  margin: 20px 0 10px;
}
.section-guide-cta__tel-link a {
  font-size: 2.7rem;
  margin-left: 15px;
}
.section-guide-cta-flex__item .btn-wrap {
  margin-top: 20px;
}


@media only screen and (max-width: 768px) {

  .guide .text-lead {
    margin-bottom: 15px;  
  }

  .guide-point {
    display: block;
  }
  .guide-point dl {
    width: 100%;
  }
  .guide-point dl + dl {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .guide-point dt {
    font-size: 1.6rem;
  }

  .font-mid {
    margin-top: 20px;
  }

  .section-guide + .section-guide {
    margin-top: 40px;
  }

  .box-solid-01 {
    padding: 18px;
  }

  .box-solid-02 {
    padding: 18px;
    min-width: 0;
  }

  .dl-guide dt {
    flex: none;
  }

  .tbl-guide {
    margin-bottom: 16px;
  }
  .tbl-guide th,
  .tbl-guide td {
    padding: 12px;
  }

  .img-guide-map {
    width: 100%;
  }
  .text-guide-map {
    width: 100%;
  }

  .section-guide-flex {
    display: block;
  }
  .section-guide-flex .btn-wrap + .btn-wrap {
    margin-left: 0;
    margin-top: 20px;
  }

  .section-guide-flex-2 {
    display: block;
  }

  .section-guide-cta {
    padding: 20px 0 0;
  }
  .section-guide-cta-flex {
    max-width: 100%;
    margin-top: 16px;
  }
  .section-guide-cta-flex__item {
    box-sizing: border-box;
    display: block;
    background-color: #F8F6EF;
    border-radius: 4px;
    text-align: center;
    width: 360px;
    padding: 22px 40px;
  }
  .section-guide-cta-flex__item h3 {
    display: block;
    line-height: 1;
    font-size: 2rem;
    letter-spacing: 0.06em;
    padding: 0;
    margin: 0;
  }
  .section-guide-cta-flex__item .text-small {
    font-size: 1.1rem;
  }
  .section-guide-cta__tel-link {
    margin: 20px 0 10px;
  }
  .section-guide-cta__tel-link a {
    font-size: 2.4rem;
    margin-left: 15px;
  }
  .section-guide-cta-flex__item .btn-wrap {
    margin-top: 20px;
  }

}

/* ==========================================================================

Description

CSS よくある質問

========================================================================== */
.section-faq + .section-faq {
  margin: 120px 0 0 0;
}
.dl-faq {
  margin-top: 30px;
}
.dl-faq dt {
  cursor: pointer;
  position: relative;
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r-02.svg);
  background-repeat: no-repeat;
  background-size: 6px 7px;
  background-position: left 20px top 48%;
  background-color: #F8F6EF;
  border-radius: 4px;
  padding: 20px 40px;
}
.dl-faq dt i::before,
.dl-faq dt i::after {
  position: absolute;
  top: 48%;
  right: 20px;
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-top: 2px solid #483931;
  transform: translateX(-50%);
  transition: all .6s;
}
.dl-faq dt i::after {
  top: 30%;
  right: 20px;
  transform: rotate(-90deg);
}
.dl-faq.is-active dt i::after {
  top: 48%;
  right: 20px;
  transform: translateX(-50%);
}

.dl-faq dd {
  display: none;
  margin-top: 33px;
}

.faq {
  font-size: 1.4rem;
    max-width: 840px;
  padding: 0;
    margin: 0 auto 0 0;
}
.faq .btn-wrap {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {

  .faq {
    overflow: visible;
    max-width: 840px;
  }

  .dl-faq {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 33px;
  }
  .dl-faq dt {
    background-image: none;
    padding: 20px 45px 20px 20px;
  }
  .dl-faq dd {
    margin: 33px 20px;
  }
  .dl-faq dt i {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
  }
  .dl-faq dt i::before,
  .dl-faq dt i::after {
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 7px;
    right: 0;
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #483931;
    transform: translateX(-50%);
  }
  .dl-faq dt i::after {
    top: 0;
    bottom: 0;
    right: 0;
    left: -5px;
    transform: rotate(90deg);
  }
  .dl-faq.is-active dt i::after {
    left: 0;
    transform: translateX(0);
  }
}

/* ==========================================================================

Description

- 商品カテゴリ
- 商品一覧ページ

========================================================================== */

/* 商品カテゴリー一覧__4カラム */
.products-index-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.3rem;
  padding: 0;
  margin: 45px 0 0;
}
.products-index-list li {
  position: relative;
  width: calc(96% / 4);
  padding: 0;
  margin: 0 1% 0 0;
}
.products-index-list li::after {
  content: "";
  background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.products-index-list li a {
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-triangle-r-02.svg);
  background-repeat: no-repeat;
  background-position: top 48% left 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
  padding: 12px 0 12px 28px;
  font-size: 1.4rem;
}
.products-index-list li a:hover {
  opacity: .7;
}
.products-index-list li:nth-child(4n) {
  margin-right: 0;
}


/* 商品カテゴリー一覧__3カラム */
.products-index-list-02 {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.3rem;
  padding: 0;
  margin: 45px 0 0;
}
.products-index-list-02 li {
  position: relative;
  width: calc(80% / 3);
  padding: 0;
  margin: 10px 5% 0 0;
    background: #F8F6EF;
  border-radius: 6px;
}
/*.products-index-list-02 li::after {
  content: "";
  background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}*/
.products-index-list-02 li a {
  background-repeat: no-repeat;
    background-position: top 48% left 10px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: flex;
    padding: 12px;
    font-size: 1.6rem;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    color: #62483f;
}
.products-index-list-02 li:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {

  .products .ttl-01 {
    margin-top: 30px;
  }

  /* 商品カテゴリー一覧__4カラム */
  .products-index-list {
    background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left bottom -1px;
    background-repeat: repeat-x;
    width: 100vw;
    margin: 20px calc(50% - 50vw) 0;
  }
  .products-index-list li {
    box-sizing: border-box;
    line-height: 1.25;
    width: 50%;
    padding: 0;
    margin: 0;
  }
  .products-index-list li::after,
  .products-index-list li:nth-last-child(2)::before {
    content: "";
    background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left top;
    background-repeat: repeat-x;
    position: absolute;
  }
  .products-index-list li:nth-last-child(2)::before {
    display: block;
    bottom: -1px;
    width: 100vw;
    height: 1px;
  }
  .products-index-list li a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 55px;
    padding: 12px 12px 12px 28px;
  }
  .products-index-list li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #BFB9B5;
    height: 30px;
    width: 1px;
    content: "";
    display: block;
    margin: auto;
  }
  .products-index-list li:nth-child(2n) {
    margin-right: 0;
  }
  .products-index-list li:nth-child(2n) a::after,
  .products-index-list li:last-child a::after {
    display: none;
  }

  /* 商品カテゴリー一覧__3カラム */
  .products-index-list-02 {
    background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left bottom -1px;
    background-repeat: repeat-x;
    width: inherit;
    margin: inherit;
      justify-content: space-between;
  }
  .products-index-list-02 li {
    box-sizing: border-box;
    line-height: 1.25;
    width: 48%;
    padding: 0;
    margin: 0;
      margin-bottom: 10px;
  }
  .products-index-list-02 li:nth-last-child(2)::before {
    display: block;
    bottom: -1px;
    width: 100vw;
    height: 1px;
  }
  .products-index-list-02 li a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-position: top 50% left 10px;
    height: 100%;
    min-height: 75px;
    padding: 14px 20px 14px 20px;
      font-size: 1.4rem;
  }
  .products-index-list-02 li:nth-child(2n) {
    margin-right: 0;
  }
  .products-index-list-02 li:nth-child(2n) a::after,
  .products-index-list-02 li:last-child a::after {
    display: none;
  }
}

/* 商品一覧ページ */
.products_index {
  margin-top: -4px;
  max-width: 843px;
}
.products_index .ttl-01 {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .products_index {
    margin-top: 0;
  }
  .products_index .ttl-01 {
    font-size: 2rem;
    text-align: center;
  }
}

/* ページャー */
.pager {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}
.pager li {
  color: #4B3830;
  line-height: 1;
  font-size: 1.3rem;
  text-align: center;
  box-sizing: border-box;
  height: 40px;
  width: 178px;
}
.pager li:first-child .btn-pager::before {
  display: block;
  content: "";
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 11px;
  margin-right: 18px;
}
.pager li:last-child .btn-pager::after {
  display: block;
  content: "";
  background-image: url(https://file002.shop-pro.jp/PA01356/240/assets/image/common/icon-arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 11px;
  margin-left: 18px;
}
.pager .btn-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: solid 1px #BFB9B5;
  width: 100%;
  height: 100%;
}
.pager .btn-text {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .pager li {
    font-size: 1.2rem;
    border-radius: 0;
    height: auto;
    width: auto;
  }
  .pager .btn-pager {
    border: none;
  }
  .pager li:first-child .btn-pager::before {
    width: 4px;
    height: 8px;
    margin-right: 12px;
  }
  .pager li:last-child .btn-pager::after {
    width: 4px;
    height: 8px;
    margin-left: 12px;
  }
}

/* ==========================================================================

Description

武川蒸留酒販売について

========================================================================== */
.about {
  overflow-x: hidden;
}
.about-slider {
  width: 840px;
  max-width: 100%;
}
.about-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.about-slider-dots {
  position: relative;
  line-height: 1;
  height: 10px;
  bottom: -15px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.about-slider-dots li {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  background-color: #847E79;
  border-radius: 100%;
  top: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 5px;
}
.about-slider-dots button {
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  position: absolute;
  background: none;
  border: none;
  outline: none;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
}
.about-slider-dots li.slick-active {
  background-color: transparent;
  border: solid 1px #847E79;
}

.about .text-lead {
  box-sizing: border-box;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.06em;
  max-width: 840px;
  margin: 36px 0 30px;
}

.about-img-list {
  display: flex;
  justify-content: space-between;
  max-width: 840px;
  margin-top: 104px;
}
 .about-img-list-item {
  width: calc(100% / 3);
}
.about-img-list .about-img-list-item + .about-img-list-item {
  margin-left: 7px;
}

.about-block {
  margin-top: 118px;
}

.tbl-about {
  border-collapse: collapse;
  margin-bottom: 25px;
  width: 720px;
  max-width: 100%;
}
.tbl-about th,
.tbl-about td {
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.3rem;
  padding: 20px 0;
}
.tbl-about th {
  text-align: left;
  width: 90px;
}
.tbl-about th::after,
.tbl-about td::after {
  content: "";
    background-image: linear-gradient(to right, #74706E, #74706E 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.tbl-about-02 {
  border-collapse: collapse;
  margin-bottom: 25px;
  width: 720px;
  max-width: 100%;
}
.tbl-about-02 th,
.tbl-about-02 td {
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.3rem;
  min-height: 34px;
  padding: 6px 0;
}
.tbl-about-02 th {
  vertical-align: top;
  text-align: left;
  width: 116px;
  border-right: solid 1px #BFB9B5;
}
.tbl-about-02 td {
  padding-left: 48px;
}

@media only screen and (max-width: 768px) {
  
  .about {
  margin-top: 40px;
}

  .ttl-about.ttl-02 {
    align-items: center;
    justify-content: center;
    margin-bottom: 25px!important;
  }
  .ttl-about.ttl-02 .ttl-text {
    font-size: 1.5rem;
  }
  .ttl-about.ttl-02::before,
  .ttl-about.ttl-02::after {
    display: none;
  }

  .about-slider {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  
  .about .text-lead {
    text-align: left;
    margin: 36px 0 30px;
  }
  
  .about-img-list {
    display: block;
    margin-top: 60px;
  }
   .about-img-list-item {
    width: 100%;
  }
  .about-img-list .about-img-list-item + .about-img-list-item {
    margin-top: 16px;
    margin-left: 0;
  }
  
  .about-block {
    margin-top: 60px;
  }
  
  .tbl-about {
    margin-bottom: 25px;
  }
  
  .tbl-about-02 {
    margin-bottom: 25px;
      width: 100%;
  }
  .tbl-about-02 th {
    width: 90px;
  }
  .tbl-about-02 td {
    padding-left: 30px;
  }
}
/* ==========================================================================

Description

CSS 利用規約

========================================================================== */
.terms {
  overflow-x: hidden;
  max-width: 660px;
}
.terms h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.terms h3 + p {
  margin-top: 0;
}
.terms p {
  font-size: 1.4rem;
}
.terms p + h3 {
  margin-top: 30px;
}
.terms ol,
.terms ul {
  font-size: 1.4rem;
  list-style: none;
  padding: 0;
}




/*年齢確認画面カスタマイズ*/
#header_i {
  position: static;
  margin: 40px 0;
}
#main_i {
  width: auto;
  overflow: initial;
  margin: 0 0 40px;
  padding: 0;
  border: none;
  background: none;
  box-sizing: border-box;
}
#validation_txt_i {
  margin: 40px 0;
  padding: 0;
  color: #B14545;
}
#validation_select_yes,
#validation_select_no {
  display: inline-block;
  width: 120px;
  margin: 0 8px;
  padding: 0;
}
#validation_select_yes a,
#validation_select_no a {
  display: block;
color: #fff;
text-decoration: none;
padding: 20px 0;
background: #4B3830;
border-radius: 8px;
}
#validation_select_no a {
background: #ccc;
}

#validation_select_yes a:hover,
#validation_select_no a:hover {
text-decoration: none;
opacity: 0.9;
}
#validation_txt_sub_i {
margin-bottom: 30px;
}
#logo_i {
  margin: 0;
  padding: 0;
}
#logo_i a {
  display: block;
  width: 328px;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
  text-decoration: none;
  text-indent: -9999px;
  background: url(https://img21.shop-pro.jp/PA01356/240/etc/logo_br.png) no-repeat 0 0;
  background-size: 328px 40px;
}
#footer_i {
  margin: 0;
}
#footer_i a {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  #header_i {
    margin: 24px 0;
  }
  #logo_i a {
    width: 280px;
    height: 34px;
    background-size: 280px 34px;
  }
  #main_i {
    margin: 0 16px 24px;
  }
  #main_i form > img {
    width: 100px;
  }
  #validation_txt_i {
    margin: 24px 0;
  }
  #validation_select_yes,
  #validation_select_no {
}
}
  
.sidebar-list-nav li.paper a {
  display: block;
  position: relative;
  padding: 15px 0 15px 10px;
  font-weight: bold;
}


.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}


.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}