@charset "utf-8";

.main-items-title {
  height: 310px;
  background-image: url(../images/items-title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title {
  height: 310px;
  background-image: url(../images/online-shop-title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 10px #4b2c14;
}

.main-items-title,
.title h1 {
  font-family: "Montserrat",sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.main-items-title h2 {
  font-family: "Montserrat",sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main-items-title p {
  margin-top: 15px;
  font-size: 14px;
}


.items-contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.shop-item {
  flex-grow: 1;
  max-width: 765px;
}

.item-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit,300px);
  column-gap: 50px;
  row-gap: 20px;
}

.item-list li {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 40px;
  /* background-color: #4b2c14; */
}

.item-list a {
  display: block;
  transition-duration: 0.2s;
}

.item-list a:hover {
  transform: scale(1.05)
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.shop-menu {
  flex-shrink: 0;
  margin-right: 60px;
}

.shop-menu-inner {
 position: sticky;
 top: 30px;
 left: 0;
 right:0;
}

.shop-menu-inner ul {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 50px;
  margin-left: 20px;
}

.shop-menu-inner li {
  font-size: 14px;
  margin-top: 30px;
  margin-left: 50px
}

#category {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 50px;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px
}

#cigger {
  margin-left: 40px;
  margin-right: 0;
  padding-bottom: 30px;
  padding-top: 20px;
}

#cigger span {
  font-size: 15px;
}

.item-area {
  margin-top: 20px;
  display: flex;
  width: 100%;
}

.item-area img {
width: 60%;
/* height: 600px; */
object-fit: contain;
}

.about-item {
  margin-left: 30px;
  width: 30%;
}

.about-item .item-text {
  font-size: 14px;
  line-height: 26px;
}

.about-item .item-price {
  font-weight: bold;
  margin-top: 20px;
}

.about-item  a {
  background-color: #dde9a5;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: "Monserrat", sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 35px;
}

.about-item a:hover {
  background-color: #d8b500;
}

.shop-menu-inner h2 {
  margin-left: 0;
}

.shop-item h2 {
  margin-left: 0;
}

.left-mark::before {
  content: "　|　";
  color: #dde9a5;
}

.left-mark {
  padding-right: 2em;
  margin-top: 50px
}

/* reset */
* {
  box-sizing: border-box;
  padding: 0;
}
dl, dd {
  margin: 0;
}
/* アコーディオン */
.accordion-wrap {
  max-width: 300px;
  margin: 0 auto;
}
.accordion-item:nth-child(n+2) {
  margin-top: 10px;
}
.accordion-title {
  display: flex;/* flexで横並び */
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #d8d8d8;
  color: black;
  cursor: pointer;/* カーソルをポインターに */
  transition: 0.3s;
}
.accordion-title::after {
  content: '＋';/* 疑似要素で「＋」を設置 */
}
.accordion-title.open::after {
  content: 'ー';/* openクラスが付いたら「－」に */
}
.accordion-title:hover {
  opacity: 0.8;
}
.accordion-child-item {
  display: none;/* コンテンツ部分は非表示に */
  padding: 15px 20px;
  border: 1px solid #dde9a5;
  background-color: #dde9a5;
}

.accordion-child-inner {
  padding: 10px 5px;
}

.accordion-title {
  margin-top: 20px;
}

@media (max-width: 800px){

  .items-contents{
    display: block;
    max-width: 100%;
    margin-top: 60px;
  }

  .shop-item {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

.item-list {
  grid-template-columns: 1fr 1fr;
  column-gap: 35px;
}

.shop-menu {
  background-color: #d8d8d8;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 60px;
  margin-right: 0;
}

.shop-menu-inner {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.shop-menu-inner li {
  text-align: left;
}

.item-area {
  display: block;
}

.item-area {
  width: 100%;
  max-width: 100%;
}

.about-item {
  margin-top: 10px;
  margin-left: 0;
  width: 100%;
}

.about-item a {
  width: 100%;
}
}

.footer {
  margin-top: 0;
}